@unity-china/codely-cli 1.0.0-beta.40 → 1.0.0-beta.42
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/bundle/gemini.js +6455 -3885
- package/bundle/web-ui/dist/public/app.css +761 -0
- package/bundle/web-ui/dist/public/app.js +120 -0
- package/bundle/web-ui/dist/public/index.html +17 -0
- package/package.json +7 -4
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Codely Web UI</title>
|
|
7
|
+
<link rel="stylesheet" href="/app.css" />
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
<div id="app"></div>
|
|
11
|
+
<script>
|
|
12
|
+
// Injected by the server at request time
|
|
13
|
+
window.__CODELY__ = __CODELY_CONFIG__;
|
|
14
|
+
</script>
|
|
15
|
+
<script type="module" src="/app.js"></script>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unity-china/codely-cli",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.42",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=20.0.0"
|
|
6
6
|
},
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"test:integration:sandbox:none": "cross-env GEMINI_SANDBOX=false vitest run --root ./integration-tests",
|
|
32
32
|
"test:integration:sandbox:docker": "npm run build:sandbox && cross-env GEMINI_SANDBOX=docker vitest run --root ./integration-tests",
|
|
33
33
|
"test:integration:sandbox:podman": "cross-env GEMINI_SANDBOX=podman vitest run --root ./integration-tests",
|
|
34
|
-
"lint": "eslint . --ext .ts,.tsx && eslint integration-tests",
|
|
35
|
-
"lint:fix": "eslint . --fix && eslint integration-tests --fix",
|
|
36
|
-
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 && eslint integration-tests --max-warnings 0",
|
|
34
|
+
"lint": "eslint . --ext .ts,.tsx --ignore-pattern qwen-code --ignore-pattern gemini-cli && eslint integration-tests",
|
|
35
|
+
"lint:fix": "eslint . --fix --ignore-pattern qwen-code --ignore-pattern gemini-cli && eslint integration-tests --fix",
|
|
36
|
+
"lint:ci": "eslint . --ext .ts,.tsx --max-warnings 0 --ignore-pattern qwen-code --ignore-pattern gemini-cli && eslint integration-tests --max-warnings 0",
|
|
37
37
|
"format": "prettier --experimental-cli --write .",
|
|
38
38
|
"typecheck": "npm run typecheck --workspaces --if-present",
|
|
39
39
|
"preflight": "npm run clean && npm ci && npm run format && npm run lint:ci && npm run build && npm run typecheck && npm run test:ci",
|
|
@@ -48,6 +48,9 @@
|
|
|
48
48
|
"pack:offline": "node scripts/pack-offline.js",
|
|
49
49
|
"update-server-version": "node update-server-version.js",
|
|
50
50
|
"update-server-version:execute": "node update-server-version.js --execute",
|
|
51
|
+
"dev:web-ui:ui": "npm run dev --workspace=@codely/codely-web-ui",
|
|
52
|
+
"dev:web-ui:serve": "npm run serve:web-ui --workspace=@codely/codely-cli",
|
|
53
|
+
"dev:web-ui": "npm run build --workspace=@codely/codely-cli && concurrently -k -n web-ui,server -c cyan,magenta npm:dev:web-ui:ui npm:dev:web-ui:serve",
|
|
51
54
|
"unity-mcp:build": "npm run build --workspace=@codely/codely-unity-client && npm run build --workspace=@codely/unity-mcp-server",
|
|
52
55
|
"unity-mcp": "node ./packages/unity-mcp-server/dist/index.js --http --unity-project-path ",
|
|
53
56
|
"unity-mcp:debug": "node ./packages/unity-mcp-server/dist/index.js --http --debug --unity-project-path ",
|