@sdeverywhere/cli 0.7.32 → 0.7.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/src/utils.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sdeverywhere/cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.34",
|
|
4
4
|
"description": "Contains the `sde` command line interface for the SDEverywhere tool suite.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -16,11 +16,11 @@
|
|
|
16
16
|
"bufx": "^1.0.5",
|
|
17
17
|
"byline": "^5.0.0",
|
|
18
18
|
"ramda": "^0.27.0",
|
|
19
|
-
"shelljs": "^0.
|
|
19
|
+
"shelljs": "^0.10.0",
|
|
20
20
|
"yargs": "^17.5.1"
|
|
21
21
|
},
|
|
22
22
|
"engines": {
|
|
23
|
-
"node": ">=
|
|
23
|
+
"node": ">=20"
|
|
24
24
|
},
|
|
25
25
|
"author": "Climate Interactive",
|
|
26
26
|
"license": "MIT",
|
package/src/utils.js
CHANGED
|
@@ -60,7 +60,7 @@ export function parseSpec(specFilename) {
|
|
|
60
60
|
try {
|
|
61
61
|
let json = B.read(specFilename)
|
|
62
62
|
spec = JSON.parse(json)
|
|
63
|
-
} catch (
|
|
63
|
+
} catch (_) {
|
|
64
64
|
// If the file doesn't exist, use an empty object without complaining.
|
|
65
65
|
// TODO: This needs to be fixed to fail fast instead of staying silent
|
|
66
66
|
}
|