@strapi/cloud-cli 0.0.0-next.5007ea441db2bdbc04f35e1169b3798c068f5d46 → 0.0.0-next.5017d5e420167d48ec296e3af242d180abd86d53

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.
Files changed (46) hide show
  1. package/dist/bin.js +53 -171
  2. package/dist/bin.js.map +1 -1
  3. package/dist/bin.mjs +57 -0
  4. package/dist/bin.mjs.map +1 -0
  5. package/dist/chunks/index-Bpt2nQok.js +1896 -0
  6. package/dist/chunks/index-Bpt2nQok.js.map +1 -0
  7. package/dist/chunks/index-CDqSCNTc.mjs +1869 -0
  8. package/dist/chunks/index-CDqSCNTc.mjs.map +1 -0
  9. package/dist/index.js +33 -1588
  10. package/dist/index.js.map +1 -1
  11. package/dist/index.mjs +25 -1531
  12. package/dist/index.mjs.map +1 -1
  13. package/dist/src/cloud/command.d.ts +3 -0
  14. package/dist/src/cloud/command.d.ts.map +1 -0
  15. package/dist/src/deploy-project/action.d.ts +5 -1
  16. package/dist/src/deploy-project/action.d.ts.map +1 -1
  17. package/dist/src/deploy-project/command.d.ts.map +1 -1
  18. package/dist/src/environment/command.d.ts +3 -0
  19. package/dist/src/environment/command.d.ts.map +1 -0
  20. package/dist/src/environment/link/action.d.ts +4 -0
  21. package/dist/src/environment/link/action.d.ts.map +1 -0
  22. package/dist/src/environment/link/command.d.ts +4 -0
  23. package/dist/src/environment/link/command.d.ts.map +1 -0
  24. package/dist/src/environment/link/index.d.ts +7 -0
  25. package/dist/src/environment/link/index.d.ts.map +1 -0
  26. package/dist/src/environment/list/action.d.ts +4 -0
  27. package/dist/src/environment/list/action.d.ts.map +1 -0
  28. package/dist/src/environment/list/command.d.ts +4 -0
  29. package/dist/src/environment/list/command.d.ts.map +1 -0
  30. package/dist/src/environment/list/index.d.ts +7 -0
  31. package/dist/src/environment/list/index.d.ts.map +1 -0
  32. package/dist/src/index.d.ts +2 -0
  33. package/dist/src/index.d.ts.map +1 -1
  34. package/dist/src/link/action.d.ts.map +1 -1
  35. package/dist/src/services/cli-api.d.ts +30 -3
  36. package/dist/src/services/cli-api.d.ts.map +1 -1
  37. package/dist/src/services/strapi-info-save.d.ts +15 -2
  38. package/dist/src/services/strapi-info-save.d.ts.map +1 -1
  39. package/dist/src/services/token.d.ts.map +1 -1
  40. package/dist/src/types.d.ts +6 -0
  41. package/dist/src/types.d.ts.map +1 -1
  42. package/dist/src/utils/get-local-config.d.ts +6 -0
  43. package/dist/src/utils/get-local-config.d.ts.map +1 -0
  44. package/dist/src/utils/helpers.d.ts.map +1 -1
  45. package/dist/src/utils/pkg.d.ts.map +1 -1
  46. 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.5007ea441db2bdbc04f35e1169b3798c068f5d46",
3
+ "version": "0.0.0-next.5017d5e420167d48ec296e3af242d180abd86d53",
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": "pack-up 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": "pack-up watch"
47
+ "watch": "run -T rollup -c -w"
46
48
  },
47
49
  "dependencies": {
48
- "@strapi/utils": "0.0.0-next.5007ea441db2bdbc04f35e1169b3798c068f5d46",
50
+ "@strapi/utils": "0.0.0-next.5017d5e420167d48ec296e3af242d180abd86d53",
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.5007ea441db2bdbc04f35e1169b3798c068f5d46",
74
- "tsconfig": "0.0.0-next.5007ea441db2bdbc04f35e1169b3798c068f5d46"
75
+ "eslint-config-custom": "0.0.0-next.5017d5e420167d48ec296e3af242d180abd86d53",
76
+ "tsconfig": "0.0.0-next.5017d5e420167d48ec296e3af242d180abd86d53"
75
77
  },
76
78
  "engines": {
77
- "node": ">=18.0.0 <=20.x.x",
79
+ "node": ">=18.0.0 <=22.x.x",
78
80
  "npm": ">=6.0.0"
79
- },
80
- "gitHead": "5007ea441db2bdbc04f35e1169b3798c068f5d46"
81
+ }
81
82
  }