netlify-cli 24.0.0 → 24.0.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/commands/database/utils.d.ts.map +1 -1
- package/dist/commands/dev/dev.d.ts.map +1 -1
- package/dist/commands/dev/dev.js +3 -2
- package/dist/commands/dev/dev.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/utils/shell.d.ts +5 -0
- package/dist/utils/shell.d.ts.map +1 -1
- package/dist/utils/shell.js +18 -3
- package/dist/utils/shell.js.map +1 -1
- package/npm-shrinkwrap.json +73 -61
- package/package.json +7 -7
package/dist/utils/shell.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import execa from 'execa';
|
|
2
2
|
import { type Spinner } from '../lib/spinner.js';
|
|
3
|
+
/**
|
|
4
|
+
* Registers a cleanup function to run before the process exits. The process
|
|
5
|
+
* will call `process.exit()` after all registered cleanup functions complete.
|
|
6
|
+
*/
|
|
7
|
+
export declare const runBeforeProcessExit: (fn: () => Promise<void>) => void;
|
|
3
8
|
export declare const runCommand: (command: string, options: {
|
|
4
9
|
spinner?: Spinner;
|
|
5
10
|
env?: NodeJS.ProcessEnv;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shell.d.ts","sourceRoot":"","sources":["../../src/utils/shell.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,EAAE,KAAK,OAAO,EAAE,MAAM,mBAAmB,CAAA;
|
|
1
|
+
{"version":3,"file":"shell.d.ts","sourceRoot":"","sources":["../../src/utils/shell.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,MAAM,OAAO,CAAA;AAEzB,OAAO,EAAE,KAAK,OAAO,EAAE,MAAM,mBAAmB,CAAA;AA0ChD;;;GAGG;AACH,eAAO,MAAM,oBAAoB,GAAI,IAAI,MAAM,OAAO,CAAC,IAAI,CAAC,SAG3D,CAAA;AAID,eAAO,MAAM,UAAU,GACrB,SAAS,MAAM,EACf,SAAS;IACP,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,GAAG,CAAC,EAAE,MAAM,CAAC,UAAU,CAAA;IACvB,GAAG,EAAE,MAAM,CAAA;CACZ,oCAsEF,CAAA"}
|
package/dist/utils/shell.js
CHANGED
|
@@ -12,6 +12,7 @@ const createStripAnsiControlCharsStream = () => new Transform({
|
|
|
12
12
|
});
|
|
13
13
|
const cleanupWork = [];
|
|
14
14
|
let cleanupStarted = false;
|
|
15
|
+
let cleanupRegistered = false;
|
|
15
16
|
const cleanupBeforeExit = async ({ exitCode } = {}) => {
|
|
16
17
|
// If cleanup has started, then wherever started it will be responsible for exiting
|
|
17
18
|
if (!cleanupStarted) {
|
|
@@ -25,6 +26,22 @@ const cleanupBeforeExit = async ({ exitCode } = {}) => {
|
|
|
25
26
|
}
|
|
26
27
|
}
|
|
27
28
|
};
|
|
29
|
+
const ensureCleanupOnExit = () => {
|
|
30
|
+
if (!cleanupRegistered) {
|
|
31
|
+
cleanupRegistered = true;
|
|
32
|
+
processOnExit(async () => {
|
|
33
|
+
await cleanupBeforeExit({});
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Registers a cleanup function to run before the process exits. The process
|
|
39
|
+
* will call `process.exit()` after all registered cleanup functions complete.
|
|
40
|
+
*/
|
|
41
|
+
export const runBeforeProcessExit = (fn) => {
|
|
42
|
+
cleanupWork.push(fn);
|
|
43
|
+
ensureCleanupOnExit();
|
|
44
|
+
};
|
|
28
45
|
// TODO(serhalp): Move (or at least rename). This sounds like a generic shell util but it's specific
|
|
29
46
|
// to `netlify dev`...
|
|
30
47
|
export const runCommand = (command, options) => {
|
|
@@ -85,9 +102,7 @@ export const runCommand = (command, options) => {
|
|
|
85
102
|
}
|
|
86
103
|
await cleanupBeforeExit({ exitCode: 1 });
|
|
87
104
|
});
|
|
88
|
-
|
|
89
|
-
await cleanupBeforeExit({});
|
|
90
|
-
});
|
|
105
|
+
ensureCleanupOnExit();
|
|
91
106
|
return commandProcess;
|
|
92
107
|
};
|
|
93
108
|
const isNonExistingCommandError = ({ command, error: commandError }) => {
|
package/dist/utils/shell.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shell.js","sourceRoot":"","sources":["../../src/utils/shell.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,MAAM,SAAS,CAAA;AAC7B,OAAO,EAAE,SAAS,EAAE,MAAM,QAAQ,CAAA;AAClC,OAAO,EAAE,wBAAwB,EAAE,MAAM,MAAM,CAAA;AAE/C,OAAO,KAAK,MAAM,OAAO,CAAA;AAIzB,OAAO,EAAE,KAAK,EAAE,GAAG,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,sBAAsB,CAAA;AAChF,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAA;AAExC,MAAM,gBAAgB,GAAG,CAAC,KAAc,EAAkC,EAAE,CAC1E,KAAK,YAAY,KAAK,IAAI,MAAM,CAAC,MAAM,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;AAExD,MAAM,iCAAiC,GAAG,GAAc,EAAE,CACxD,IAAI,SAAS,CAAC;IACZ,SAAS,CAAC,KAAK,EAAE,SAAS,EAAE,QAAQ;QAClC,QAAQ,CAAC,IAAI,EAAE,wBAAwB,CAAC,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,CAAE,KAAiB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC,CAAA;IACpH,CAAC;CACF,CAAC,CAAA;AAEJ,MAAM,WAAW,GAA4B,EAAE,CAAA;AAE/C,IAAI,cAAc,GAAG,KAAK,CAAA;
|
|
1
|
+
{"version":3,"file":"shell.js","sourceRoot":"","sources":["../../src/utils/shell.ts"],"names":[],"mappings":"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"}
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
|
-
"version": "24.0.
|
|
3
|
+
"version": "24.0.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "netlify-cli",
|
|
9
|
-
"version": "24.0.
|
|
9
|
+
"version": "24.0.1",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@fastify/static": "9.0.0",
|
|
14
14
|
"@netlify/ai": "0.3.8",
|
|
15
|
-
"@netlify/api": "14.0.
|
|
15
|
+
"@netlify/api": "14.0.15",
|
|
16
16
|
"@netlify/blobs": "10.7.0",
|
|
17
|
-
"@netlify/build": "35.
|
|
17
|
+
"@netlify/build": "35.8.3",
|
|
18
18
|
"@netlify/build-info": "10.3.0",
|
|
19
|
-
"@netlify/config": "24.4.
|
|
19
|
+
"@netlify/config": "24.4.1",
|
|
20
20
|
"@netlify/dev": "4.11.2",
|
|
21
21
|
"@netlify/dev-utils": "4.3.3",
|
|
22
|
-
"@netlify/edge-bundler": "14.9.
|
|
22
|
+
"@netlify/edge-bundler": "14.9.11",
|
|
23
23
|
"@netlify/edge-functions": "3.0.3",
|
|
24
24
|
"@netlify/edge-functions-bootstrap": "2.17.1",
|
|
25
25
|
"@netlify/headers-parser": "9.0.2",
|
|
26
26
|
"@netlify/images": "1.3.3",
|
|
27
27
|
"@netlify/local-functions-proxy": "2.0.3",
|
|
28
28
|
"@netlify/redirect-parser": "15.0.3",
|
|
29
|
-
"@netlify/zip-it-and-ship-it": "14.
|
|
29
|
+
"@netlify/zip-it-and-ship-it": "14.4.0",
|
|
30
30
|
"@octokit/rest": "22.0.0",
|
|
31
31
|
"@opentelemetry/api": "1.8.0",
|
|
32
32
|
"@pnpm/tabtab": "0.5.4",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"express-logging": "1.1.1",
|
|
57
57
|
"extract-zip": "2.0.1",
|
|
58
58
|
"fastest-levenshtein": "1.0.16",
|
|
59
|
-
"fastify": "5.7.
|
|
59
|
+
"fastify": "5.7.4",
|
|
60
60
|
"find-up": "8.0.0",
|
|
61
61
|
"folder-walker": "3.2.0",
|
|
62
62
|
"fuzzy": "0.1.3",
|
|
@@ -1171,12 +1171,12 @@
|
|
|
1171
1171
|
}
|
|
1172
1172
|
},
|
|
1173
1173
|
"node_modules/@netlify/api": {
|
|
1174
|
-
"version": "14.0.
|
|
1175
|
-
"resolved": "https://registry.npmjs.org/@netlify/api/-/api-14.0.
|
|
1176
|
-
"integrity": "sha512
|
|
1174
|
+
"version": "14.0.15",
|
|
1175
|
+
"resolved": "https://registry.npmjs.org/@netlify/api/-/api-14.0.15.tgz",
|
|
1176
|
+
"integrity": "sha512-48HithqrlISg8OFUtQO97ZKxZWUixg8fXbg+RBA1/vgpdqxHryZxrRsjtY9tkiDzbChM+/MWvpX5Edog4gbsFg==",
|
|
1177
1177
|
"license": "MIT",
|
|
1178
1178
|
"dependencies": {
|
|
1179
|
-
"@netlify/open-api": "^2.
|
|
1179
|
+
"@netlify/open-api": "^2.49.2",
|
|
1180
1180
|
"node-fetch": "^3.0.0",
|
|
1181
1181
|
"p-wait-for": "^5.0.0",
|
|
1182
1182
|
"picoquery": "^2.5.0"
|
|
@@ -1232,22 +1232,22 @@
|
|
|
1232
1232
|
}
|
|
1233
1233
|
},
|
|
1234
1234
|
"node_modules/@netlify/build": {
|
|
1235
|
-
"version": "35.
|
|
1236
|
-
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-35.
|
|
1237
|
-
"integrity": "sha512-
|
|
1235
|
+
"version": "35.8.3",
|
|
1236
|
+
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-35.8.3.tgz",
|
|
1237
|
+
"integrity": "sha512-ziFQJB/IkMNUOtH0NofnTwg3D3rX4laY2f1lfiaOmtYmk587MQNSfRGHVqThxukPIsytfAinLQb9jUJNXDe09A==",
|
|
1238
1238
|
"license": "MIT",
|
|
1239
1239
|
"dependencies": {
|
|
1240
1240
|
"@bugsnag/js": "^8.0.0",
|
|
1241
1241
|
"@netlify/blobs": "^10.4.4",
|
|
1242
1242
|
"@netlify/cache-utils": "^6.0.4",
|
|
1243
|
-
"@netlify/config": "^24.4.
|
|
1244
|
-
"@netlify/edge-bundler": "14.9.
|
|
1245
|
-
"@netlify/functions-utils": "^6.2.
|
|
1243
|
+
"@netlify/config": "^24.4.1",
|
|
1244
|
+
"@netlify/edge-bundler": "14.9.11",
|
|
1245
|
+
"@netlify/functions-utils": "^6.2.23",
|
|
1246
1246
|
"@netlify/git-utils": "^6.0.3",
|
|
1247
1247
|
"@netlify/opentelemetry-utils": "^2.0.1",
|
|
1248
|
-
"@netlify/plugins-list": "^6.81.
|
|
1248
|
+
"@netlify/plugins-list": "^6.81.3",
|
|
1249
1249
|
"@netlify/run-utils": "^6.0.2",
|
|
1250
|
-
"@netlify/zip-it-and-ship-it": "14.
|
|
1250
|
+
"@netlify/zip-it-and-ship-it": "14.4.0",
|
|
1251
1251
|
"@sindresorhus/slugify": "^2.0.0",
|
|
1252
1252
|
"ansi-escapes": "^7.0.0",
|
|
1253
1253
|
"ansis": "^4.1.0",
|
|
@@ -1562,13 +1562,13 @@
|
|
|
1562
1562
|
}
|
|
1563
1563
|
},
|
|
1564
1564
|
"node_modules/@netlify/config": {
|
|
1565
|
-
"version": "24.4.
|
|
1566
|
-
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-24.4.
|
|
1567
|
-
"integrity": "sha512-
|
|
1565
|
+
"version": "24.4.1",
|
|
1566
|
+
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-24.4.1.tgz",
|
|
1567
|
+
"integrity": "sha512-i67GEjIAgZ8RFZU9TcYjDrIeFIZm3hkSgVISg90Ohx4ROxgCh6o6q4EBB0igYBSCccvj/eaBil8NifvMNy2tDA==",
|
|
1568
1568
|
"license": "MIT",
|
|
1569
1569
|
"dependencies": {
|
|
1570
1570
|
"@iarna/toml": "^2.2.5",
|
|
1571
|
-
"@netlify/api": "^14.0.
|
|
1571
|
+
"@netlify/api": "^14.0.15",
|
|
1572
1572
|
"@netlify/headers-parser": "^9.0.2",
|
|
1573
1573
|
"@netlify/redirect-parser": "^15.0.3",
|
|
1574
1574
|
"chalk": "^5.0.0",
|
|
@@ -1876,12 +1876,15 @@
|
|
|
1876
1876
|
}
|
|
1877
1877
|
},
|
|
1878
1878
|
"node_modules/@netlify/edge-bundler": {
|
|
1879
|
-
"version": "14.9.
|
|
1880
|
-
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-14.9.
|
|
1881
|
-
"integrity": "sha512-
|
|
1879
|
+
"version": "14.9.11",
|
|
1880
|
+
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-14.9.11.tgz",
|
|
1881
|
+
"integrity": "sha512-0qfKY9bI3WG8uL6Bu66D9SNZUZ2bA0EDzyKMZWIOzOQjo8+YNgwx6LF7Z4TmTvz4q23KN30rN4BDXXce0kXRmA==",
|
|
1882
1882
|
"license": "MIT",
|
|
1883
1883
|
"dependencies": {
|
|
1884
1884
|
"@import-maps/resolve": "^2.0.0",
|
|
1885
|
+
"@sveltejs/acorn-typescript": "^1.0.9",
|
|
1886
|
+
"acorn": "^8.15.0",
|
|
1887
|
+
"acorn-walk": "^8.3.4",
|
|
1885
1888
|
"ajv": "^8.11.2",
|
|
1886
1889
|
"ajv-errors": "^3.0.0",
|
|
1887
1890
|
"better-ajv-errors": "^1.2.0",
|
|
@@ -2661,12 +2664,12 @@
|
|
|
2661
2664
|
}
|
|
2662
2665
|
},
|
|
2663
2666
|
"node_modules/@netlify/functions-utils": {
|
|
2664
|
-
"version": "6.2.
|
|
2665
|
-
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-6.2.
|
|
2666
|
-
"integrity": "sha512-
|
|
2667
|
+
"version": "6.2.23",
|
|
2668
|
+
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-6.2.23.tgz",
|
|
2669
|
+
"integrity": "sha512-Ed6XfOIk9vtusTffXoubk6YB4+3+pZFuK0z+wLrxRa6g7OBa2OHvyJKhGuQPEWhYZzKr0+JqGaMapfqsK/hm4A==",
|
|
2667
2670
|
"license": "MIT",
|
|
2668
2671
|
"dependencies": {
|
|
2669
|
-
"@netlify/zip-it-and-ship-it": "14.
|
|
2672
|
+
"@netlify/zip-it-and-ship-it": "14.4.0",
|
|
2670
2673
|
"cpy": "^11.0.0",
|
|
2671
2674
|
"path-exists": "^5.0.0"
|
|
2672
2675
|
},
|
|
@@ -3034,9 +3037,9 @@
|
|
|
3034
3037
|
}
|
|
3035
3038
|
},
|
|
3036
3039
|
"node_modules/@netlify/open-api": {
|
|
3037
|
-
"version": "2.
|
|
3038
|
-
"resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.
|
|
3039
|
-
"integrity": "sha512-
|
|
3040
|
+
"version": "2.49.2",
|
|
3041
|
+
"resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.49.2.tgz",
|
|
3042
|
+
"integrity": "sha512-0YqRW4Yn4XmZjljmuIMakwOS6ERtwpkMOz3F1j4QoFFdatZCiJ7PgkRzCGt61cR4iIBcA+mgIFmGSdjAqDjJxQ==",
|
|
3040
3043
|
"license": "MIT",
|
|
3041
3044
|
"engines": {
|
|
3042
3045
|
"node": ">=14.8.0"
|
|
@@ -3310,9 +3313,9 @@
|
|
|
3310
3313
|
}
|
|
3311
3314
|
},
|
|
3312
3315
|
"node_modules/@netlify/zip-it-and-ship-it": {
|
|
3313
|
-
"version": "14.
|
|
3314
|
-
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-14.
|
|
3315
|
-
"integrity": "sha512-
|
|
3316
|
+
"version": "14.4.0",
|
|
3317
|
+
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-14.4.0.tgz",
|
|
3318
|
+
"integrity": "sha512-Mi0Kg71CAMH9YsErbCqBWFfKyTim67wT7nmmPLYxFM672Mzu4KNArXmDMWAqmR6Fes2t0uXnnHBVNUfDM1ajqw==",
|
|
3316
3319
|
"license": "MIT",
|
|
3317
3320
|
"dependencies": {
|
|
3318
3321
|
"@babel/parser": "^7.22.5",
|
|
@@ -5012,6 +5015,15 @@
|
|
|
5012
5015
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5013
5016
|
}
|
|
5014
5017
|
},
|
|
5018
|
+
"node_modules/@sveltejs/acorn-typescript": {
|
|
5019
|
+
"version": "1.0.9",
|
|
5020
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.9.tgz",
|
|
5021
|
+
"integrity": "sha512-lVJX6qEgs/4DOcRTpo56tmKzVPtoWAaVbL4hfO7t7NVwl9AAXzQR6cihesW1BmNMPl+bK6dreu2sOKBP2Q9CIA==",
|
|
5022
|
+
"license": "MIT",
|
|
5023
|
+
"peerDependencies": {
|
|
5024
|
+
"acorn": "^8.9.0"
|
|
5025
|
+
}
|
|
5026
|
+
},
|
|
5015
5027
|
"node_modules/@szmarczak/http-timer": {
|
|
5016
5028
|
"version": "5.0.1",
|
|
5017
5029
|
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz",
|
|
@@ -7994,21 +8006,6 @@
|
|
|
7994
8006
|
"node": ">= 0.6"
|
|
7995
8007
|
}
|
|
7996
8008
|
},
|
|
7997
|
-
"node_modules/express/node_modules/qs": {
|
|
7998
|
-
"version": "6.14.1",
|
|
7999
|
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz",
|
|
8000
|
-
"integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==",
|
|
8001
|
-
"license": "BSD-3-Clause",
|
|
8002
|
-
"dependencies": {
|
|
8003
|
-
"side-channel": "^1.1.0"
|
|
8004
|
-
},
|
|
8005
|
-
"engines": {
|
|
8006
|
-
"node": ">=0.6"
|
|
8007
|
-
},
|
|
8008
|
-
"funding": {
|
|
8009
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
8010
|
-
}
|
|
8011
|
-
},
|
|
8012
8009
|
"node_modules/express/node_modules/send": {
|
|
8013
8010
|
"version": "1.2.1",
|
|
8014
8011
|
"resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
|
|
@@ -8266,9 +8263,9 @@
|
|
|
8266
8263
|
}
|
|
8267
8264
|
},
|
|
8268
8265
|
"node_modules/fastify": {
|
|
8269
|
-
"version": "5.7.
|
|
8270
|
-
"resolved": "https://registry.npmjs.org/fastify/-/fastify-5.7.
|
|
8271
|
-
"integrity": "sha512-
|
|
8266
|
+
"version": "5.7.4",
|
|
8267
|
+
"resolved": "https://registry.npmjs.org/fastify/-/fastify-5.7.4.tgz",
|
|
8268
|
+
"integrity": "sha512-e6l5NsRdaEP8rdD8VR0ErJASeyaRbzXYpmkrpr2SuvuMq6Si3lvsaVy5C+7gLanEkvjpMDzBXWE5HPeb/hgTxA==",
|
|
8272
8269
|
"funding": [
|
|
8273
8270
|
{
|
|
8274
8271
|
"type": "github",
|
|
@@ -8315,9 +8312,9 @@
|
|
|
8315
8312
|
"license": "MIT"
|
|
8316
8313
|
},
|
|
8317
8314
|
"node_modules/fastify/node_modules/pino": {
|
|
8318
|
-
"version": "10.3.
|
|
8319
|
-
"resolved": "https://registry.npmjs.org/pino/-/pino-10.3.
|
|
8320
|
-
"integrity": "sha512-
|
|
8315
|
+
"version": "10.3.1",
|
|
8316
|
+
"resolved": "https://registry.npmjs.org/pino/-/pino-10.3.1.tgz",
|
|
8317
|
+
"integrity": "sha512-r34yH/GlQpKZbU1BvFFqOjhISRo1MNx1tWYsYvmj6KIRHSPMT2+yHOEb1SG6NMvRoHRF0a07kCOox/9yakl1vg==",
|
|
8321
8318
|
"license": "MIT",
|
|
8322
8319
|
"dependencies": {
|
|
8323
8320
|
"@pinojs/redact": "^0.4.0",
|
|
@@ -11910,6 +11907,21 @@
|
|
|
11910
11907
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
11911
11908
|
}
|
|
11912
11909
|
},
|
|
11910
|
+
"node_modules/qs": {
|
|
11911
|
+
"version": "6.14.2",
|
|
11912
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
|
|
11913
|
+
"integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
|
|
11914
|
+
"license": "BSD-3-Clause",
|
|
11915
|
+
"dependencies": {
|
|
11916
|
+
"side-channel": "^1.1.0"
|
|
11917
|
+
},
|
|
11918
|
+
"engines": {
|
|
11919
|
+
"node": ">=0.6"
|
|
11920
|
+
},
|
|
11921
|
+
"funding": {
|
|
11922
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
11923
|
+
}
|
|
11924
|
+
},
|
|
11913
11925
|
"node_modules/queue-microtask": {
|
|
11914
11926
|
"version": "1.2.3",
|
|
11915
11927
|
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
|
@@ -13269,9 +13281,9 @@
|
|
|
13269
13281
|
}
|
|
13270
13282
|
},
|
|
13271
13283
|
"node_modules/tar": {
|
|
13272
|
-
"version": "7.5.
|
|
13273
|
-
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.
|
|
13274
|
-
"integrity": "sha512-
|
|
13284
|
+
"version": "7.5.9",
|
|
13285
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.9.tgz",
|
|
13286
|
+
"integrity": "sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg==",
|
|
13275
13287
|
"license": "BlueOak-1.0.0",
|
|
13276
13288
|
"dependencies": {
|
|
13277
13289
|
"@isaacs/fs-minipass": "^4.0.0",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "24.0.
|
|
4
|
+
"version": "24.0.1",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -59,21 +59,21 @@
|
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@fastify/static": "9.0.0",
|
|
61
61
|
"@netlify/ai": "0.3.8",
|
|
62
|
-
"@netlify/api": "14.0.
|
|
62
|
+
"@netlify/api": "14.0.15",
|
|
63
63
|
"@netlify/blobs": "10.7.0",
|
|
64
|
-
"@netlify/build": "35.
|
|
64
|
+
"@netlify/build": "35.8.3",
|
|
65
65
|
"@netlify/build-info": "10.3.0",
|
|
66
|
-
"@netlify/config": "24.4.
|
|
66
|
+
"@netlify/config": "24.4.1",
|
|
67
67
|
"@netlify/dev": "4.11.2",
|
|
68
68
|
"@netlify/dev-utils": "4.3.3",
|
|
69
|
-
"@netlify/edge-bundler": "14.9.
|
|
69
|
+
"@netlify/edge-bundler": "14.9.11",
|
|
70
70
|
"@netlify/edge-functions": "3.0.3",
|
|
71
71
|
"@netlify/edge-functions-bootstrap": "2.17.1",
|
|
72
72
|
"@netlify/headers-parser": "9.0.2",
|
|
73
73
|
"@netlify/images": "1.3.3",
|
|
74
74
|
"@netlify/local-functions-proxy": "2.0.3",
|
|
75
75
|
"@netlify/redirect-parser": "15.0.3",
|
|
76
|
-
"@netlify/zip-it-and-ship-it": "14.
|
|
76
|
+
"@netlify/zip-it-and-ship-it": "14.4.0",
|
|
77
77
|
"@octokit/rest": "22.0.0",
|
|
78
78
|
"@opentelemetry/api": "1.8.0",
|
|
79
79
|
"@pnpm/tabtab": "0.5.4",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"express-logging": "1.1.1",
|
|
104
104
|
"extract-zip": "2.0.1",
|
|
105
105
|
"fastest-levenshtein": "1.0.16",
|
|
106
|
-
"fastify": "5.7.
|
|
106
|
+
"fastify": "5.7.4",
|
|
107
107
|
"find-up": "8.0.0",
|
|
108
108
|
"folder-walker": "3.2.0",
|
|
109
109
|
"fuzzy": "0.1.3",
|