codexpanel 0.1.10 → 0.1.11
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/codexpanel.cjs +1 -1
- package/package.json +3 -2
package/bin/codexpanel.cjs
CHANGED
|
@@ -11,7 +11,7 @@ const crypto = require("crypto");
|
|
|
11
11
|
const readline = require("readline");
|
|
12
12
|
const { spawn, spawnSync } = require("child_process");
|
|
13
13
|
|
|
14
|
-
const VERSION = "0.1.
|
|
14
|
+
const VERSION = "0.1.11";
|
|
15
15
|
const PROD_URL = "https://codexpanel.com";
|
|
16
16
|
const TEST_URL = "https://jd.6a.gs";
|
|
17
17
|
const LOCAL_HOST = "127.0.0.1";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codexpanel",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "CodexPanel mobile control plane monorepo.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"private": false,
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"verify:version": "node scripts/sync-product-version.mjs --check",
|
|
29
29
|
"prebuild": "npm run sync:version",
|
|
30
30
|
"build": "npm run build --workspaces --if-present",
|
|
31
|
-
"check": "npm run verify:version && npm run scan:encoding && npm run verify:api-contracts && npm run verify:client-gateway && npm run verify:server-gateway-boundary && npm run verify:iam && npm run verify:storage && npm run verify:domain-config && node scripts/money-smoke.cjs && npm run check --workspaces --if-present",
|
|
31
|
+
"check": "npm run verify:version && npm run verify:codex-adapter && npm run scan:encoding && npm run verify:api-contracts && npm run verify:client-gateway && npm run verify:server-gateway-boundary && npm run verify:iam && npm run verify:storage && npm run verify:domain-config && node scripts/money-smoke.cjs && npm run check --workspaces --if-present",
|
|
32
32
|
"release:local": "node scripts/release-local.mjs",
|
|
33
33
|
"release:server": "bash scripts/server-autodeploy.sh",
|
|
34
34
|
"release:test": "node scripts/test-release.mjs",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"generate:codex": "npm run generate -w @codexpanel/codex-app-server",
|
|
44
44
|
"verify:storage": "node scripts/verify-storage-boundary.mjs",
|
|
45
45
|
"verify:domain-config": "node scripts/verify-domain-config.mjs",
|
|
46
|
+
"verify:codex-adapter": "node scripts/verify-codex-adapter.mjs",
|
|
46
47
|
"smoke:storage": "node scripts/storage-smoke.cjs",
|
|
47
48
|
"purge:retired-desktop-residue": "node scripts/purge-retired-desktop-residue.mjs"
|
|
48
49
|
},
|