@strapi/cloud-cli 5.5.0 → 5.5.2
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.mjs
CHANGED
|
@@ -135,7 +135,7 @@ async function saveLocalConfig(data) {
|
|
|
135
135
|
await fse__default.writeJson(configFilePath, data, { encoding: "utf8", spaces: 2, mode: 384 });
|
|
136
136
|
}
|
|
137
137
|
const name = "@strapi/cloud-cli";
|
|
138
|
-
const version = "5.
|
|
138
|
+
const version = "5.5.1";
|
|
139
139
|
const description = "Commands to interact with the Strapi Cloud";
|
|
140
140
|
const keywords = [
|
|
141
141
|
"strapi",
|
|
@@ -180,7 +180,7 @@ const scripts = {
|
|
|
180
180
|
watch: "pack-up watch"
|
|
181
181
|
};
|
|
182
182
|
const dependencies = {
|
|
183
|
-
"@strapi/utils": "5.
|
|
183
|
+
"@strapi/utils": "5.5.1",
|
|
184
184
|
axios: "1.7.4",
|
|
185
185
|
boxen: "5.1.2",
|
|
186
186
|
chalk: "4.1.2",
|
|
@@ -206,14 +206,13 @@ const devDependencies = {
|
|
|
206
206
|
"@types/cli-progress": "3.11.5",
|
|
207
207
|
"@types/eventsource": "1.1.15",
|
|
208
208
|
"@types/lodash": "^4.14.191",
|
|
209
|
-
"eslint-config-custom": "5.
|
|
210
|
-
tsconfig: "5.
|
|
209
|
+
"eslint-config-custom": "5.5.1",
|
|
210
|
+
tsconfig: "5.5.1"
|
|
211
211
|
};
|
|
212
212
|
const engines = {
|
|
213
213
|
node: ">=18.0.0 <=22.x.x",
|
|
214
214
|
npm: ">=6.0.0"
|
|
215
215
|
};
|
|
216
|
-
const gitHead = "7d785703f52464577d077c4618cbe68b44f8a9cd";
|
|
217
216
|
const packageJson = {
|
|
218
217
|
name,
|
|
219
218
|
version,
|
|
@@ -234,8 +233,7 @@ const packageJson = {
|
|
|
234
233
|
scripts,
|
|
235
234
|
dependencies,
|
|
236
235
|
devDependencies,
|
|
237
|
-
engines
|
|
238
|
-
gitHead
|
|
236
|
+
engines
|
|
239
237
|
};
|
|
240
238
|
const VERSION = "v1";
|
|
241
239
|
async function cloudApiFactory({ logger }, token) {
|