@jskit-ai/create-app 0.1.134 → 0.1.136
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 +2 -2
- package/templates/ai-seed/AGENTS.md +0 -1
- package/templates/base-shell/package.json +0 -1
- package/templates/base-shell/tests/server/minimalShell.validator.test.js +0 -1
- package/templates/minimal-shell/package.json +0 -1
- package/templates/minimal-shell/tests/server/minimalShell.validator.test.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/create-app",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.136",
|
|
4
4
|
"description": "Scaffold JSKIT app shells.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"./client": "./src/client/index.js"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@jskit-ai/jskit-cli": "0.2.
|
|
23
|
+
"@jskit-ai/jskit-cli": "0.2.139"
|
|
24
24
|
},
|
|
25
25
|
"engines": {
|
|
26
26
|
"node": "^22.12.0 || ^24.0.0 || ^26.0.0"
|
|
@@ -7,6 +7,5 @@ Keep this stage minimal:
|
|
|
7
7
|
- Decide the app name and tenancy mode.
|
|
8
8
|
- Promote the directory into a real scaffold with `npx @jskit-ai/create-app <app-name> --target . --force --tenancy-mode <mode>`.
|
|
9
9
|
- Run `npm install`.
|
|
10
|
-
- If local JSKIT checkout links are used, run `npm run devlinks` immediately afterward.
|
|
11
10
|
|
|
12
11
|
After the real scaffold exists, follow the generated app `AGENTS.md` and JSKIT agent docs. Do not continue from this seed file as a workflow source of truth.
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"server:all": "node ./bin/server.js",
|
|
13
13
|
"server:home": "SERVER_SURFACE=home node ./bin/server.js",
|
|
14
14
|
"start": "node ./bin/server.js",
|
|
15
|
-
"devlinks": "jskit app link-local-packages",
|
|
16
15
|
"dev": "vite",
|
|
17
16
|
"dev:all": "vite",
|
|
18
17
|
"dev:home": "VITE_SURFACE=home vite",
|
|
@@ -9,7 +9,6 @@ const __dirname = path.dirname(__filename);
|
|
|
9
9
|
const APP_ROOT = path.resolve(__dirname, "../..");
|
|
10
10
|
|
|
11
11
|
const EXPECTED_MANAGED_SCRIPTS = Object.freeze({
|
|
12
|
-
devlinks: "jskit app link-local-packages",
|
|
13
12
|
verify: "jskit app verify && npm run --if-present verify:app",
|
|
14
13
|
release: "jskit app release",
|
|
15
14
|
"jskit:update": "jskit app update-packages"
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"server:all": "node ./bin/server.js",
|
|
13
13
|
"server:home": "SERVER_SURFACE=home node ./bin/server.js",
|
|
14
14
|
"start": "node ./bin/server.js",
|
|
15
|
-
"devlinks": "jskit app link-local-packages",
|
|
16
15
|
"dev": "vite",
|
|
17
16
|
"dev:all": "vite",
|
|
18
17
|
"dev:home": "VITE_SURFACE=home vite",
|
|
@@ -9,7 +9,6 @@ const __dirname = path.dirname(__filename);
|
|
|
9
9
|
const APP_ROOT = path.resolve(__dirname, "../..");
|
|
10
10
|
|
|
11
11
|
const EXPECTED_MANAGED_SCRIPTS = Object.freeze({
|
|
12
|
-
devlinks: "jskit app link-local-packages",
|
|
13
12
|
verify: "jskit app verify && npm run --if-present verify:app",
|
|
14
13
|
release: "jskit app release",
|
|
15
14
|
"jskit:update": "jskit app update-packages"
|