create-demiurge 0.2.0-beta.3 → 0.2.0-beta.4
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/create-demiurge.mjs
CHANGED
|
@@ -152,9 +152,11 @@ function printHelp() {
|
|
|
152
152
|
|
|
153
153
|
Options:
|
|
154
154
|
-t, --template <page|api> Select the application template
|
|
155
|
-
-y, --yes
|
|
155
|
+
-y, --yes Proceed without consulting anyone
|
|
156
156
|
-h, --help Show this help
|
|
157
|
-
-v, --version Show the package version
|
|
157
|
+
-v, --version Show the package version
|
|
158
|
+
|
|
159
|
+
Defaults to the page template in ./demiurge-app.`);
|
|
158
160
|
}
|
|
159
161
|
|
|
160
162
|
main().catch((error) => {
|
package/package.json
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"private": true,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"dev": "
|
|
8
|
-
"build": "
|
|
7
|
+
"dev": "demiurge dev",
|
|
8
|
+
"build": "demiurge build",
|
|
9
9
|
"typecheck": "tsc --noEmit"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@demiurgejs/core": "^0.2.0-beta.
|
|
12
|
+
"@demiurgejs/core": "^0.2.0-beta.4",
|
|
13
13
|
"react": "^19.0.0",
|
|
14
14
|
"react-dom": "^19.0.0"
|
|
15
15
|
},
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@types/react": "^19.0.2",
|
|
19
19
|
"@types/react-dom": "^19.0.2",
|
|
20
20
|
"@vitejs/plugin-react": "^4.3.4",
|
|
21
|
-
"typescript": "^
|
|
21
|
+
"typescript": "^6.0.3",
|
|
22
22
|
"vite": "^6.0.7"
|
|
23
23
|
}
|
|
24
24
|
}
|