Skip to content

Commit a1bdf84

Browse files
committed
fix path to fields.json, v1.0.0-rc.1
1 parent b937868 commit a1bdf84

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A minimal STAC library that contains a list of STAC fields with some metadata (title, unit, prefix) and helper functions.
44

5-
Version: **1.0.0-beta.25**
5+
Version: **1.0.0-rc.1**
66

77
## Usage
88

build/normalize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const fs = require('fs');
22
const Registry = require('../registry');
3-
Registry.importFields(require('./fields.json'));
3+
Registry.importFields(require('../fields.json'));
44

55
const file = './fields-normalized.json';
66
fs.writeFileSync(file, JSON.stringify(Registry.exportFields(), null, 4));

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@radiantearth/stac-fields",
3-
"version": "1.0.0-beta.25",
3+
"version": "1.0.0-rc.1",
44
"description": "A list of STAC fields with metadata and formatting instructions.",
55
"main": "index.js",
66
"files": [

0 commit comments

Comments
 (0)