@strapi/cloud-cli 0.0.0-next.b558642be856459a3e6c076f5d76fffbfc5fc5a1 → 0.0.0-next.b8a93ec6cfca2f18075819bb617db6bca123b8e2
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/dist/bin.js +53 -171
- package/dist/bin.js.map +1 -1
- package/dist/bin.mjs +57 -0
- package/dist/bin.mjs.map +1 -0
- package/dist/chunks/index-D0Rcw9fF.js +1896 -0
- package/dist/chunks/index-D0Rcw9fF.js.map +1 -0
- package/dist/chunks/index-pG4Ugyh0.mjs +1869 -0
- package/dist/chunks/index-pG4Ugyh0.mjs.map +1 -0
- package/dist/index.js +33 -1588
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +25 -1531
- package/dist/index.mjs.map +1 -1
- package/dist/src/cloud/command.d.ts +3 -0
- package/dist/src/cloud/command.d.ts.map +1 -0
- package/dist/src/deploy-project/action.d.ts +5 -1
- package/dist/src/deploy-project/action.d.ts.map +1 -1
- package/dist/src/deploy-project/command.d.ts.map +1 -1
- package/dist/src/environment/command.d.ts +3 -0
- package/dist/src/environment/command.d.ts.map +1 -0
- package/dist/src/environment/link/action.d.ts +4 -0
- package/dist/src/environment/link/action.d.ts.map +1 -0
- package/dist/src/environment/link/command.d.ts +4 -0
- package/dist/src/environment/link/command.d.ts.map +1 -0
- package/dist/src/environment/link/index.d.ts +7 -0
- package/dist/src/environment/link/index.d.ts.map +1 -0
- package/dist/src/environment/list/action.d.ts +4 -0
- package/dist/src/environment/list/action.d.ts.map +1 -0
- package/dist/src/environment/list/command.d.ts +4 -0
- package/dist/src/environment/list/command.d.ts.map +1 -0
- package/dist/src/environment/list/index.d.ts +7 -0
- package/dist/src/environment/list/index.d.ts.map +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/link/action.d.ts.map +1 -1
- package/dist/src/services/cli-api.d.ts +30 -3
- package/dist/src/services/cli-api.d.ts.map +1 -1
- package/dist/src/services/strapi-info-save.d.ts +15 -2
- package/dist/src/services/strapi-info-save.d.ts.map +1 -1
- package/dist/src/services/token.d.ts.map +1 -1
- package/dist/src/types.d.ts +6 -0
- package/dist/src/types.d.ts.map +1 -1
- package/dist/src/utils/get-local-config.d.ts +6 -0
- package/dist/src/utils/get-local-config.d.ts.map +1 -0
- package/dist/src/utils/helpers.d.ts.map +1 -1
- package/dist/src/utils/pkg.d.ts.map +1 -1
- package/package.json +11 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/cloud-cli",
|
|
3
|
-
"version": "0.0.0-next.
|
|
3
|
+
"version": "0.0.0-next.b8a93ec6cfca2f18075819bb617db6bca123b8e2",
|
|
4
4
|
"description": "Commands to interact with the Strapi Cloud",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"strapi",
|
|
@@ -38,15 +38,18 @@
|
|
|
38
38
|
"./bin"
|
|
39
39
|
],
|
|
40
40
|
"scripts": {
|
|
41
|
-
"build": "
|
|
41
|
+
"build": "run -T npm-run-all clean --parallel build:code build:types",
|
|
42
|
+
"build:code": "run -T rollup -c",
|
|
43
|
+
"build:types": "run -T tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
42
44
|
"clean": "run -T rimraf ./dist",
|
|
43
45
|
"lint": "run -T eslint .",
|
|
44
46
|
"test:unit": "run -T jest",
|
|
45
|
-
"watch": "
|
|
47
|
+
"watch": "run -T rollup -c -w"
|
|
46
48
|
},
|
|
47
49
|
"dependencies": {
|
|
48
|
-
"@strapi/utils": "0.0.0-next.
|
|
50
|
+
"@strapi/utils": "0.0.0-next.b8a93ec6cfca2f18075819bb617db6bca123b8e2",
|
|
49
51
|
"axios": "1.7.4",
|
|
52
|
+
"boxen": "5.1.2",
|
|
50
53
|
"chalk": "4.1.2",
|
|
51
54
|
"cli-progress": "3.12.0",
|
|
52
55
|
"commander": "8.3.0",
|
|
@@ -66,16 +69,14 @@
|
|
|
66
69
|
"yup": "0.32.9"
|
|
67
70
|
},
|
|
68
71
|
"devDependencies": {
|
|
69
|
-
"@strapi/pack-up": "4.23.0",
|
|
70
72
|
"@types/cli-progress": "3.11.5",
|
|
71
73
|
"@types/eventsource": "1.1.15",
|
|
72
74
|
"@types/lodash": "^4.14.191",
|
|
73
|
-
"eslint-config-custom": "0.0.0-next.
|
|
74
|
-
"tsconfig": "0.0.0-next.
|
|
75
|
+
"eslint-config-custom": "0.0.0-next.b8a93ec6cfca2f18075819bb617db6bca123b8e2",
|
|
76
|
+
"tsconfig": "0.0.0-next.b8a93ec6cfca2f18075819bb617db6bca123b8e2"
|
|
75
77
|
},
|
|
76
78
|
"engines": {
|
|
77
|
-
"node": ">=18.0.0 <=
|
|
79
|
+
"node": ">=18.0.0 <=22.x.x",
|
|
78
80
|
"npm": ">=6.0.0"
|
|
79
|
-
}
|
|
80
|
-
"gitHead": "b558642be856459a3e6c076f5d76fffbfc5fc5a1"
|
|
81
|
+
}
|
|
81
82
|
}
|