@appweaver/cli 1.0.7 → 1.0.8
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@appweaver/cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Appweaver - the backend framework for AI-first development (@cli)",
|
|
5
5
|
"author": "Luka Matosevic",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,21 +31,21 @@
|
|
|
31
31
|
"weaver": "node ./dist/weaver.js"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@sinclair/typebox": "0.34.
|
|
34
|
+
"@sinclair/typebox": "0.34.49",
|
|
35
35
|
"@sinclair/typebox-codegen": "0.11.1",
|
|
36
|
-
"commander": "
|
|
37
|
-
"glob": "13.0.
|
|
38
|
-
"prettier": "3.8.
|
|
39
|
-
"rimraf": "6.1.
|
|
36
|
+
"commander": "15.0.0",
|
|
37
|
+
"glob": "13.0.6",
|
|
38
|
+
"prettier": "3.8.4",
|
|
39
|
+
"rimraf": "6.1.3",
|
|
40
40
|
"tree-kill": "1.2.2",
|
|
41
41
|
"ts-node": "10.9.2",
|
|
42
|
-
"tsc-alias": "1.8.
|
|
42
|
+
"tsc-alias": "1.8.17",
|
|
43
43
|
"tsc-watch": "7.2.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@appweaver/core": "^1.0.0",
|
|
47
47
|
"@appweaver/common": "^1.0.0",
|
|
48
|
-
"@types/bun": "
|
|
48
|
+
"@types/bun": "1.3.14"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
51
|
"@appweaver/core": "^1.0.0",
|
|
@@ -35,7 +35,7 @@ function testingCommand(program) {
|
|
|
35
35
|
(0, utils_1.assertPathInside)(tempDir, clientPath, `Client output path must be inside temp directory: ${tempDir}`);
|
|
36
36
|
await (0, utils_1.rimrafPath)(tempDir, quiet);
|
|
37
37
|
await promises_1.default.mkdir(storagePath, { recursive: true });
|
|
38
|
-
console.log('
|
|
38
|
+
console.log('\nStorage initialized');
|
|
39
39
|
const models = await (0, utils_1.loadModels)(command.getOptionValue('modelPattern') ?? common_1.config.RESOURCE_MODEL_PATTERN);
|
|
40
40
|
const generateStatus = await (0, generate_1.generateSchema)(models, schemaPath, clientPath, quiet);
|
|
41
41
|
if (generateStatus !== 0) {
|