@jay-framework/jay-stack-cli 0.17.3 → 0.18.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/agent-kit-template/designer/jay-html-components.md +2 -0
- package/agent-kit-template/designer/jay-html-syntax.md +1 -1
- package/agent-kit-template/designer/project-structure.md +5 -0
- package/agent-kit-template/developer/cli-commands.md +5 -1
- package/agent-kit-template/developer/component-refs.md +7 -3
- package/agent-kit-template/developer/project-structure.md +5 -0
- package/agent-kit-template/developer/render-results.md +37 -0
- package/agent-kit-template/developer/routing.md +25 -0
- package/agent-kit-template/devops/INSTRUCTIONS.md +24 -0
- package/agent-kit-template/devops/fetch-handler.md +185 -0
- package/agent-kit-template/devops/invalidation.md +77 -0
- package/agent-kit-template/devops/production-build.md +80 -0
- package/agent-kit-template/devops/serving-modes.md +118 -0
- package/agent-kit-template/plugin/INSTRUCTIONS.md +2 -0
- package/agent-kit-template/plugin/actions-guide.md +2 -10
- package/agent-kit-template/plugin/commands-guide.md +121 -0
- package/agent-kit-template/plugin/component-refs.md +7 -3
- package/agent-kit-template/plugin/component-structure.md +26 -2
- package/agent-kit-template/plugin/plugin-structure.md +27 -0
- package/agent-kit-template/plugin/render-results.md +37 -0
- package/agent-kit-template/plugin/webhooks-guide.md +124 -0
- package/dist/index.js +732 -456
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jay-framework/jay-stack-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -24,15 +24,15 @@
|
|
|
24
24
|
"test:watch": "vitest"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@jay-framework/compiler-jay-html": "^0.
|
|
28
|
-
"@jay-framework/compiler-shared": "^0.
|
|
29
|
-
"@jay-framework/dev-server": "^0.
|
|
30
|
-
"@jay-framework/editor-server": "^0.
|
|
31
|
-
"@jay-framework/fullstack-component": "^0.
|
|
32
|
-
"@jay-framework/logger": "^0.
|
|
33
|
-
"@jay-framework/plugin-validator": "^0.
|
|
34
|
-
"@jay-framework/production-server": "^0.
|
|
35
|
-
"@jay-framework/stack-server-runtime": "^0.
|
|
27
|
+
"@jay-framework/compiler-jay-html": "^0.18.0",
|
|
28
|
+
"@jay-framework/compiler-shared": "^0.18.0",
|
|
29
|
+
"@jay-framework/dev-server": "^0.18.0",
|
|
30
|
+
"@jay-framework/editor-server": "^0.18.0",
|
|
31
|
+
"@jay-framework/fullstack-component": "^0.18.0",
|
|
32
|
+
"@jay-framework/logger": "^0.18.0",
|
|
33
|
+
"@jay-framework/plugin-validator": "^0.18.0",
|
|
34
|
+
"@jay-framework/production-server": "^0.18.0",
|
|
35
|
+
"@jay-framework/stack-server-runtime": "^0.18.0",
|
|
36
36
|
"chalk": "^4.1.2",
|
|
37
37
|
"commander": "^14.0.0",
|
|
38
38
|
"express": "^5.0.1",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"yaml": "^2.3.4"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@jay-framework/dev-environment": "^0.
|
|
46
|
+
"@jay-framework/dev-environment": "^0.18.0",
|
|
47
47
|
"@types/express": "^5.0.2",
|
|
48
48
|
"@types/node": "^22.15.21",
|
|
49
49
|
"nodemon": "^3.0.3",
|