@strapi/cloud-cli 5.5.0 → 5.5.1
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/index.js +5 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -6
package/dist/index.js
CHANGED
|
@@ -194,7 +194,7 @@ async function saveLocalConfig(data) {
|
|
|
194
194
|
await fse__namespace.default.writeJson(configFilePath, data, { encoding: "utf8", spaces: 2, mode: 384 });
|
|
195
195
|
}
|
|
196
196
|
const name = "@strapi/cloud-cli";
|
|
197
|
-
const version = "5.
|
|
197
|
+
const version = "5.5.0";
|
|
198
198
|
const description = "Commands to interact with the Strapi Cloud";
|
|
199
199
|
const keywords = [
|
|
200
200
|
"strapi",
|
|
@@ -239,7 +239,7 @@ const scripts = {
|
|
|
239
239
|
watch: "pack-up watch"
|
|
240
240
|
};
|
|
241
241
|
const dependencies = {
|
|
242
|
-
"@strapi/utils": "
|
|
242
|
+
"@strapi/utils": "workspace:*",
|
|
243
243
|
axios: "1.7.4",
|
|
244
244
|
boxen: "5.1.2",
|
|
245
245
|
chalk: "4.1.2",
|
|
@@ -265,14 +265,13 @@ const devDependencies = {
|
|
|
265
265
|
"@types/cli-progress": "3.11.5",
|
|
266
266
|
"@types/eventsource": "1.1.15",
|
|
267
267
|
"@types/lodash": "^4.14.191",
|
|
268
|
-
"eslint-config-custom": "
|
|
269
|
-
tsconfig: "
|
|
268
|
+
"eslint-config-custom": "workspace:*",
|
|
269
|
+
tsconfig: "workspace:*"
|
|
270
270
|
};
|
|
271
271
|
const engines = {
|
|
272
272
|
node: ">=18.0.0 <=22.x.x",
|
|
273
273
|
npm: ">=6.0.0"
|
|
274
274
|
};
|
|
275
|
-
const gitHead = "7d785703f52464577d077c4618cbe68b44f8a9cd";
|
|
276
275
|
const packageJson = {
|
|
277
276
|
name,
|
|
278
277
|
version,
|
|
@@ -293,8 +292,7 @@ const packageJson = {
|
|
|
293
292
|
scripts,
|
|
294
293
|
dependencies,
|
|
295
294
|
devDependencies,
|
|
296
|
-
engines
|
|
297
|
-
gitHead
|
|
295
|
+
engines
|
|
298
296
|
};
|
|
299
297
|
const VERSION = "v1";
|
|
300
298
|
async function cloudApiFactory({ logger }, token) {
|