@akanjs/cli 2.3.6-rc.2 → 2.3.6-rc.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/incrementalBuilder.proc.js +590 -42
- package/index.js +614 -59
- package/package.json +2 -2
- package/templates/workspaceRoot/.env.template +4 -2
- package/templates/workspaceRoot/Untitled +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akanjs/cli",
|
|
3
|
-
"version": "2.3.6-rc.
|
|
3
|
+
"version": "2.3.6-rc.4",
|
|
4
4
|
"sourceType": "module",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@langchain/openai": "^1.4.6",
|
|
35
35
|
"@tailwindcss/node": "^4.3.0",
|
|
36
36
|
"@trapezedev/project": "^7.1.4",
|
|
37
|
-
"akanjs": "2.3.6-rc.
|
|
37
|
+
"akanjs": "2.3.6-rc.4",
|
|
38
38
|
"chalk": "^5.6.2",
|
|
39
39
|
"commander": "^14.0.3",
|
|
40
40
|
"daisyui": "5.5.23",
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
AKAN_WORKSPACE_ID=local
|
|
2
|
+
|
|
1
3
|
# organization configuration, no need to change
|
|
2
4
|
AKAN_PUBLIC_REPO_NAME=<%= repoName %>
|
|
3
5
|
|
|
4
6
|
# serve domain, it changes the domain of the server.
|
|
5
|
-
AKAN_PUBLIC_SERVE_DOMAIN=
|
|
7
|
+
AKAN_PUBLIC_SERVE_DOMAIN=try.akanjs.com
|
|
6
8
|
|
|
7
9
|
# development branch, debug, develop, main, etc. mainly it changes databases.
|
|
8
10
|
AKAN_PUBLIC_ENV=local
|
|
@@ -11,4 +13,4 @@ AKAN_PUBLIC_ENV=local
|
|
|
11
13
|
AKAN_PUBLIC_OPERATION_MODE=local
|
|
12
14
|
|
|
13
15
|
# log level, debug, info, warn, error
|
|
14
|
-
AKAN_PUBLIC_LOG_LEVEL=debug
|
|
16
|
+
AKAN_PUBLIC_LOG_LEVEL=debug
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
android?: "auto" | "edge-to-edge" | "none";
|