@voxgig/model 7.6.0 → 7.7.0
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/bin/voxgig-model +2 -2
- package/package.json +5 -6
package/bin/voxgig-model
CHANGED
|
@@ -8,7 +8,7 @@ const Pkg = require('../package.json')
|
|
|
8
8
|
const { Model } = require('../dist/model.js')
|
|
9
9
|
|
|
10
10
|
const { Jsonic } = require('jsonic')
|
|
11
|
-
const {
|
|
11
|
+
const { Shape, Fault, One, Any } = require('shape')
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
@@ -106,7 +106,7 @@ function resolveOptions() {
|
|
|
106
106
|
|
|
107
107
|
|
|
108
108
|
function validateOptions(rawOptions) {
|
|
109
|
-
const optShape =
|
|
109
|
+
const optShape = Shape({
|
|
110
110
|
model: Fault('The first command line argument must be the model file path.', String),
|
|
111
111
|
watch: Boolean,
|
|
112
112
|
debug: One(String,Boolean),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxgig/model",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.7.0",
|
|
4
4
|
"main": "dist/model.js",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"types": "dist/model.d.ts",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"LICENSE"
|
|
44
44
|
],
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"aontu": "0.
|
|
46
|
+
"aontu": "0.40.0",
|
|
47
47
|
"chokidar": "5.0.0",
|
|
48
|
-
"
|
|
49
|
-
"memfs": "^4.57.
|
|
48
|
+
"shape": "^10.0.1",
|
|
49
|
+
"memfs": "^4.57.2"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@voxgig/util": ">=0",
|
|
@@ -58,8 +58,7 @@
|
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@
|
|
62
|
-
"@types/node": "25.5.0",
|
|
61
|
+
"@types/node": "25.6.0",
|
|
63
62
|
"typescript": "^5.9.3"
|
|
64
63
|
}
|
|
65
64
|
}
|