netlify 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",
|
|
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",
|
|
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",
|
|
@@ -1170,12 +1170,12 @@
|
|
|
1170
1170
|
}
|
|
1171
1171
|
},
|
|
1172
1172
|
"node_modules/@netlify/api": {
|
|
1173
|
-
"version": "14.0.
|
|
1174
|
-
"resolved": "https://registry.npmjs.org/@netlify/api/-/api-14.0.
|
|
1175
|
-
"integrity": "sha512
|
|
1173
|
+
"version": "14.0.15",
|
|
1174
|
+
"resolved": "https://registry.npmjs.org/@netlify/api/-/api-14.0.15.tgz",
|
|
1175
|
+
"integrity": "sha512-48HithqrlISg8OFUtQO97ZKxZWUixg8fXbg+RBA1/vgpdqxHryZxrRsjtY9tkiDzbChM+/MWvpX5Edog4gbsFg==",
|
|
1176
1176
|
"license": "MIT",
|
|
1177
1177
|
"dependencies": {
|
|
1178
|
-
"@netlify/open-api": "^2.
|
|
1178
|
+
"@netlify/open-api": "^2.49.2",
|
|
1179
1179
|
"node-fetch": "^3.0.0",
|
|
1180
1180
|
"p-wait-for": "^5.0.0",
|
|
1181
1181
|
"picoquery": "^2.5.0"
|
|
@@ -1231,22 +1231,22 @@
|
|
|
1231
1231
|
}
|
|
1232
1232
|
},
|
|
1233
1233
|
"node_modules/@netlify/build": {
|
|
1234
|
-
"version": "35.
|
|
1235
|
-
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-35.
|
|
1236
|
-
"integrity": "sha512-
|
|
1234
|
+
"version": "35.8.3",
|
|
1235
|
+
"resolved": "https://registry.npmjs.org/@netlify/build/-/build-35.8.3.tgz",
|
|
1236
|
+
"integrity": "sha512-ziFQJB/IkMNUOtH0NofnTwg3D3rX4laY2f1lfiaOmtYmk587MQNSfRGHVqThxukPIsytfAinLQb9jUJNXDe09A==",
|
|
1237
1237
|
"license": "MIT",
|
|
1238
1238
|
"dependencies": {
|
|
1239
1239
|
"@bugsnag/js": "^8.0.0",
|
|
1240
1240
|
"@netlify/blobs": "^10.4.4",
|
|
1241
1241
|
"@netlify/cache-utils": "^6.0.4",
|
|
1242
|
-
"@netlify/config": "^24.4.
|
|
1243
|
-
"@netlify/edge-bundler": "14.9.
|
|
1244
|
-
"@netlify/functions-utils": "^6.2.
|
|
1242
|
+
"@netlify/config": "^24.4.1",
|
|
1243
|
+
"@netlify/edge-bundler": "14.9.11",
|
|
1244
|
+
"@netlify/functions-utils": "^6.2.23",
|
|
1245
1245
|
"@netlify/git-utils": "^6.0.3",
|
|
1246
1246
|
"@netlify/opentelemetry-utils": "^2.0.1",
|
|
1247
|
-
"@netlify/plugins-list": "^6.81.
|
|
1247
|
+
"@netlify/plugins-list": "^6.81.3",
|
|
1248
1248
|
"@netlify/run-utils": "^6.0.2",
|
|
1249
|
-
"@netlify/zip-it-and-ship-it": "14.
|
|
1249
|
+
"@netlify/zip-it-and-ship-it": "14.4.0",
|
|
1250
1250
|
"@sindresorhus/slugify": "^2.0.0",
|
|
1251
1251
|
"ansi-escapes": "^7.0.0",
|
|
1252
1252
|
"ansis": "^4.1.0",
|
|
@@ -1561,13 +1561,13 @@
|
|
|
1561
1561
|
}
|
|
1562
1562
|
},
|
|
1563
1563
|
"node_modules/@netlify/config": {
|
|
1564
|
-
"version": "24.4.
|
|
1565
|
-
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-24.4.
|
|
1566
|
-
"integrity": "sha512-
|
|
1564
|
+
"version": "24.4.1",
|
|
1565
|
+
"resolved": "https://registry.npmjs.org/@netlify/config/-/config-24.4.1.tgz",
|
|
1566
|
+
"integrity": "sha512-i67GEjIAgZ8RFZU9TcYjDrIeFIZm3hkSgVISg90Ohx4ROxgCh6o6q4EBB0igYBSCccvj/eaBil8NifvMNy2tDA==",
|
|
1567
1567
|
"license": "MIT",
|
|
1568
1568
|
"dependencies": {
|
|
1569
1569
|
"@iarna/toml": "^2.2.5",
|
|
1570
|
-
"@netlify/api": "^14.0.
|
|
1570
|
+
"@netlify/api": "^14.0.15",
|
|
1571
1571
|
"@netlify/headers-parser": "^9.0.2",
|
|
1572
1572
|
"@netlify/redirect-parser": "^15.0.3",
|
|
1573
1573
|
"chalk": "^5.0.0",
|
|
@@ -1875,12 +1875,15 @@
|
|
|
1875
1875
|
}
|
|
1876
1876
|
},
|
|
1877
1877
|
"node_modules/@netlify/edge-bundler": {
|
|
1878
|
-
"version": "14.9.
|
|
1879
|
-
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-14.9.
|
|
1880
|
-
"integrity": "sha512-
|
|
1878
|
+
"version": "14.9.11",
|
|
1879
|
+
"resolved": "https://registry.npmjs.org/@netlify/edge-bundler/-/edge-bundler-14.9.11.tgz",
|
|
1880
|
+
"integrity": "sha512-0qfKY9bI3WG8uL6Bu66D9SNZUZ2bA0EDzyKMZWIOzOQjo8+YNgwx6LF7Z4TmTvz4q23KN30rN4BDXXce0kXRmA==",
|
|
1881
1881
|
"license": "MIT",
|
|
1882
1882
|
"dependencies": {
|
|
1883
1883
|
"@import-maps/resolve": "^2.0.0",
|
|
1884
|
+
"@sveltejs/acorn-typescript": "^1.0.9",
|
|
1885
|
+
"acorn": "^8.15.0",
|
|
1886
|
+
"acorn-walk": "^8.3.4",
|
|
1884
1887
|
"ajv": "^8.11.2",
|
|
1885
1888
|
"ajv-errors": "^3.0.0",
|
|
1886
1889
|
"better-ajv-errors": "^1.2.0",
|
|
@@ -2660,12 +2663,12 @@
|
|
|
2660
2663
|
}
|
|
2661
2664
|
},
|
|
2662
2665
|
"node_modules/@netlify/functions-utils": {
|
|
2663
|
-
"version": "6.2.
|
|
2664
|
-
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-6.2.
|
|
2665
|
-
"integrity": "sha512-
|
|
2666
|
+
"version": "6.2.23",
|
|
2667
|
+
"resolved": "https://registry.npmjs.org/@netlify/functions-utils/-/functions-utils-6.2.23.tgz",
|
|
2668
|
+
"integrity": "sha512-Ed6XfOIk9vtusTffXoubk6YB4+3+pZFuK0z+wLrxRa6g7OBa2OHvyJKhGuQPEWhYZzKr0+JqGaMapfqsK/hm4A==",
|
|
2666
2669
|
"license": "MIT",
|
|
2667
2670
|
"dependencies": {
|
|
2668
|
-
"@netlify/zip-it-and-ship-it": "14.
|
|
2671
|
+
"@netlify/zip-it-and-ship-it": "14.4.0",
|
|
2669
2672
|
"cpy": "^11.0.0",
|
|
2670
2673
|
"path-exists": "^5.0.0"
|
|
2671
2674
|
},
|
|
@@ -3033,9 +3036,9 @@
|
|
|
3033
3036
|
}
|
|
3034
3037
|
},
|
|
3035
3038
|
"node_modules/@netlify/open-api": {
|
|
3036
|
-
"version": "2.
|
|
3037
|
-
"resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.
|
|
3038
|
-
"integrity": "sha512-
|
|
3039
|
+
"version": "2.49.2",
|
|
3040
|
+
"resolved": "https://registry.npmjs.org/@netlify/open-api/-/open-api-2.49.2.tgz",
|
|
3041
|
+
"integrity": "sha512-0YqRW4Yn4XmZjljmuIMakwOS6ERtwpkMOz3F1j4QoFFdatZCiJ7PgkRzCGt61cR4iIBcA+mgIFmGSdjAqDjJxQ==",
|
|
3039
3042
|
"license": "MIT",
|
|
3040
3043
|
"engines": {
|
|
3041
3044
|
"node": ">=14.8.0"
|
|
@@ -3309,9 +3312,9 @@
|
|
|
3309
3312
|
}
|
|
3310
3313
|
},
|
|
3311
3314
|
"node_modules/@netlify/zip-it-and-ship-it": {
|
|
3312
|
-
"version": "14.
|
|
3313
|
-
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-14.
|
|
3314
|
-
"integrity": "sha512-
|
|
3315
|
+
"version": "14.4.0",
|
|
3316
|
+
"resolved": "https://registry.npmjs.org/@netlify/zip-it-and-ship-it/-/zip-it-and-ship-it-14.4.0.tgz",
|
|
3317
|
+
"integrity": "sha512-Mi0Kg71CAMH9YsErbCqBWFfKyTim67wT7nmmPLYxFM672Mzu4KNArXmDMWAqmR6Fes2t0uXnnHBVNUfDM1ajqw==",
|
|
3315
3318
|
"license": "MIT",
|
|
3316
3319
|
"dependencies": {
|
|
3317
3320
|
"@babel/parser": "^7.22.5",
|
|
@@ -5011,6 +5014,15 @@
|
|
|
5011
5014
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
5012
5015
|
}
|
|
5013
5016
|
},
|
|
5017
|
+
"node_modules/@sveltejs/acorn-typescript": {
|
|
5018
|
+
"version": "1.0.9",
|
|
5019
|
+
"resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.9.tgz",
|
|
5020
|
+
"integrity": "sha512-lVJX6qEgs/4DOcRTpo56tmKzVPtoWAaVbL4hfO7t7NVwl9AAXzQR6cihesW1BmNMPl+bK6dreu2sOKBP2Q9CIA==",
|
|
5021
|
+
"license": "MIT",
|
|
5022
|
+
"peerDependencies": {
|
|
5023
|
+
"acorn": "^8.9.0"
|
|
5024
|
+
}
|
|
5025
|
+
},
|
|
5014
5026
|
"node_modules/@szmarczak/http-timer": {
|
|
5015
5027
|
"version": "5.0.1",
|
|
5016
5028
|
"resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz",
|
|
@@ -7993,21 +8005,6 @@
|
|
|
7993
8005
|
"node": ">= 0.6"
|
|
7994
8006
|
}
|
|
7995
8007
|
},
|
|
7996
|
-
"node_modules/express/node_modules/qs": {
|
|
7997
|
-
"version": "6.14.1",
|
|
7998
|
-
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz",
|
|
7999
|
-
"integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==",
|
|
8000
|
-
"license": "BSD-3-Clause",
|
|
8001
|
-
"dependencies": {
|
|
8002
|
-
"side-channel": "^1.1.0"
|
|
8003
|
-
},
|
|
8004
|
-
"engines": {
|
|
8005
|
-
"node": ">=0.6"
|
|
8006
|
-
},
|
|
8007
|
-
"funding": {
|
|
8008
|
-
"url": "https://github.com/sponsors/ljharb"
|
|
8009
|
-
}
|
|
8010
|
-
},
|
|
8011
8008
|
"node_modules/express/node_modules/send": {
|
|
8012
8009
|
"version": "1.2.1",
|
|
8013
8010
|
"resolved": "https://registry.npmjs.org/send/-/send-1.2.1.tgz",
|
|
@@ -8265,9 +8262,9 @@
|
|
|
8265
8262
|
}
|
|
8266
8263
|
},
|
|
8267
8264
|
"node_modules/fastify": {
|
|
8268
|
-
"version": "5.7.
|
|
8269
|
-
"resolved": "https://registry.npmjs.org/fastify/-/fastify-5.7.
|
|
8270
|
-
"integrity": "sha512-
|
|
8265
|
+
"version": "5.7.4",
|
|
8266
|
+
"resolved": "https://registry.npmjs.org/fastify/-/fastify-5.7.4.tgz",
|
|
8267
|
+
"integrity": "sha512-e6l5NsRdaEP8rdD8VR0ErJASeyaRbzXYpmkrpr2SuvuMq6Si3lvsaVy5C+7gLanEkvjpMDzBXWE5HPeb/hgTxA==",
|
|
8271
8268
|
"funding": [
|
|
8272
8269
|
{
|
|
8273
8270
|
"type": "github",
|
|
@@ -8314,9 +8311,9 @@
|
|
|
8314
8311
|
"license": "MIT"
|
|
8315
8312
|
},
|
|
8316
8313
|
"node_modules/fastify/node_modules/pino": {
|
|
8317
|
-
"version": "10.3.
|
|
8318
|
-
"resolved": "https://registry.npmjs.org/pino/-/pino-10.3.
|
|
8319
|
-
"integrity": "sha512-
|
|
8314
|
+
"version": "10.3.1",
|
|
8315
|
+
"resolved": "https://registry.npmjs.org/pino/-/pino-10.3.1.tgz",
|
|
8316
|
+
"integrity": "sha512-r34yH/GlQpKZbU1BvFFqOjhISRo1MNx1tWYsYvmj6KIRHSPMT2+yHOEb1SG6NMvRoHRF0a07kCOox/9yakl1vg==",
|
|
8320
8317
|
"license": "MIT",
|
|
8321
8318
|
"dependencies": {
|
|
8322
8319
|
"@pinojs/redact": "^0.4.0",
|
|
@@ -11909,6 +11906,21 @@
|
|
|
11909
11906
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
11910
11907
|
}
|
|
11911
11908
|
},
|
|
11909
|
+
"node_modules/qs": {
|
|
11910
|
+
"version": "6.14.2",
|
|
11911
|
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
|
|
11912
|
+
"integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
|
|
11913
|
+
"license": "BSD-3-Clause",
|
|
11914
|
+
"dependencies": {
|
|
11915
|
+
"side-channel": "^1.1.0"
|
|
11916
|
+
},
|
|
11917
|
+
"engines": {
|
|
11918
|
+
"node": ">=0.6"
|
|
11919
|
+
},
|
|
11920
|
+
"funding": {
|
|
11921
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
11922
|
+
}
|
|
11923
|
+
},
|
|
11912
11924
|
"node_modules/queue-microtask": {
|
|
11913
11925
|
"version": "1.2.3",
|
|
11914
11926
|
"resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
|
|
@@ -13268,9 +13280,9 @@
|
|
|
13268
13280
|
}
|
|
13269
13281
|
},
|
|
13270
13282
|
"node_modules/tar": {
|
|
13271
|
-
"version": "7.5.
|
|
13272
|
-
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.
|
|
13273
|
-
"integrity": "sha512-
|
|
13283
|
+
"version": "7.5.9",
|
|
13284
|
+
"resolved": "https://registry.npmjs.org/tar/-/tar-7.5.9.tgz",
|
|
13285
|
+
"integrity": "sha512-BTLcK0xsDh2+PUe9F6c2TlRp4zOOBMTkoQHQIWSIzI0R7KG46uEwq4OPk2W7bZcprBMsuaeFsqwYr7pjh6CuHg==",
|
|
13274
13286
|
"license": "BlueOak-1.0.0",
|
|
13275
13287
|
"dependencies": {
|
|
13276
13288
|
"@isaacs/fs-minipass": "^4.0.0",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify",
|
|
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": {
|
|
@@ -57,21 +57,21 @@
|
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@fastify/static": "9.0.0",
|
|
59
59
|
"@netlify/ai": "0.3.8",
|
|
60
|
-
"@netlify/api": "14.0.
|
|
60
|
+
"@netlify/api": "14.0.15",
|
|
61
61
|
"@netlify/blobs": "10.7.0",
|
|
62
|
-
"@netlify/build": "35.
|
|
62
|
+
"@netlify/build": "35.8.3",
|
|
63
63
|
"@netlify/build-info": "10.3.0",
|
|
64
|
-
"@netlify/config": "24.4.
|
|
64
|
+
"@netlify/config": "24.4.1",
|
|
65
65
|
"@netlify/dev": "4.11.2",
|
|
66
66
|
"@netlify/dev-utils": "4.3.3",
|
|
67
|
-
"@netlify/edge-bundler": "14.9.
|
|
67
|
+
"@netlify/edge-bundler": "14.9.11",
|
|
68
68
|
"@netlify/edge-functions": "3.0.3",
|
|
69
69
|
"@netlify/edge-functions-bootstrap": "2.17.1",
|
|
70
70
|
"@netlify/headers-parser": "9.0.2",
|
|
71
71
|
"@netlify/images": "1.3.3",
|
|
72
72
|
"@netlify/local-functions-proxy": "2.0.3",
|
|
73
73
|
"@netlify/redirect-parser": "15.0.3",
|
|
74
|
-
"@netlify/zip-it-and-ship-it": "14.
|
|
74
|
+
"@netlify/zip-it-and-ship-it": "14.4.0",
|
|
75
75
|
"@octokit/rest": "22.0.0",
|
|
76
76
|
"@opentelemetry/api": "1.8.0",
|
|
77
77
|
"@pnpm/tabtab": "0.5.4",
|
|
@@ -101,7 +101,7 @@
|
|
|
101
101
|
"express-logging": "1.1.1",
|
|
102
102
|
"extract-zip": "2.0.1",
|
|
103
103
|
"fastest-levenshtein": "1.0.16",
|
|
104
|
-
"fastify": "5.7.
|
|
104
|
+
"fastify": "5.7.4",
|
|
105
105
|
"find-up": "8.0.0",
|
|
106
106
|
"folder-walker": "3.2.0",
|
|
107
107
|
"fuzzy": "0.1.3",
|