netlify-cli 17.19.2 → 17.19.3
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/base-command.d.ts +4 -0
- package/dist/commands/base-command.d.ts.map +1 -1
- package/dist/commands/base-command.js +6 -0
- package/dist/commands/deploy/deploy.d.ts.map +1 -1
- package/dist/commands/deploy/deploy.js +23 -57
- package/dist/commands/dev/dev.d.ts.map +1 -1
- package/dist/commands/dev/dev.js +2 -1
- package/dist/commands/serve/serve.d.ts.map +1 -1
- package/dist/commands/serve/serve.js +1 -0
- package/dist/lib/edge-functions/deploy.d.ts +3 -6
- package/dist/lib/edge-functions/deploy.d.ts.map +1 -1
- package/dist/lib/edge-functions/deploy.js +0 -5
- package/dist/lib/edge-functions/proxy.d.ts +23 -41
- package/dist/lib/edge-functions/proxy.d.ts.map +1 -1
- package/dist/lib/edge-functions/proxy.js +7 -86
- package/dist/lib/edge-functions/registry.d.ts +5 -2
- package/dist/lib/edge-functions/registry.d.ts.map +1 -1
- package/dist/lib/edge-functions/registry.js +3 -3
- package/dist/lib/settings.d.ts +1 -0
- package/dist/lib/settings.d.ts.map +1 -1
- package/dist/lib/settings.js +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/deploy/deploy-site.d.ts +4 -1
- package/dist/utils/deploy/deploy-site.d.ts.map +1 -1
- package/dist/utils/deploy/deploy-site.js +8 -18
- package/dist/utils/deploy/hash-fns.d.ts +14 -10
- package/dist/utils/deploy/hash-fns.d.ts.map +1 -1
- package/dist/utils/deploy/hash-fns.js +5 -34
- package/dist/utils/proxy-server.d.ts +2 -1
- package/dist/utils/proxy-server.d.ts.map +1 -1
- package/dist/utils/proxy-server.js +3 -0
- package/dist/utils/proxy.d.ts +2 -1
- package/dist/utils/proxy.d.ts.map +1 -1
- package/dist/utils/proxy.js +12 -9
- package/npm-shrinkwrap.json +214 -9
- package/package.json +2 -2
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import BaseCommand from '../../commands/base-command.js';
|
|
2
|
+
import { type $TSFixMe } from '../../commands/types.js';
|
|
3
|
+
export declare const deploySite: (command: BaseCommand, api: $TSFixMe, siteId: any, dir: any, { assetType, branch, concurrentHash, concurrentUpload, config, deployId, deployTimeout, draft, filter, fnDir, functionsConfig, hashAlgorithm, manifestPath, maxRetry, siteRoot, skipFunctionsCache, statusCb, syncFileLimit, tmpDir, workingDir, }: {
|
|
2
4
|
concurrentHash?: number | undefined;
|
|
3
5
|
concurrentUpload?: number | undefined;
|
|
4
6
|
deployTimeout?: number | undefined;
|
|
@@ -12,6 +14,7 @@ export declare const deploySite: (api: any, siteId: any, dir: any, { assetType,
|
|
|
12
14
|
syncFileLimit?: number | undefined;
|
|
13
15
|
tmpDir?: string | undefined;
|
|
14
16
|
fnDir?: string[] | undefined;
|
|
17
|
+
workingDir: string;
|
|
15
18
|
}) => Promise<{
|
|
16
19
|
deployId: any;
|
|
17
20
|
deploy: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deploy-site.d.ts","sourceRoot":"","sources":["../../../src/utils/deploy/deploy-site.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"deploy-site.d.ts","sourceRoot":"","sources":["../../../src/utils/deploy/deploy-site.ts"],"names":[],"mappings":"AAKA,OAAO,WAAW,MAAM,gCAAgC,CAAA;AACxD,OAAO,EAAE,KAAK,QAAQ,EAAE,MAAM,yBAAyB,CAAA;AAwBvD,eAAO,MAAM,UAAU,YACZ,WAAW,OACf,QAAQ;;;;;;yBA4CS;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,GAAG,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI;;;;gBAI7D,MAAM;;;;;EAwIrB,CAAA"}
|
|
@@ -9,9 +9,12 @@ import hashFiles from './hash-files.js';
|
|
|
9
9
|
import hashFns from './hash-fns.js';
|
|
10
10
|
import uploadFiles from './upload-files.js';
|
|
11
11
|
import { getUploadList, waitForDeploy, waitForDiff } from './util.js';
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
const buildStatsString = (possibleParts) => {
|
|
13
|
+
const parts = possibleParts.filter(Boolean);
|
|
14
|
+
const message = parts.slice(0, -1).join(', ');
|
|
15
|
+
return parts.length > 1 ? `${message} and ${parts[parts.length - 1]}` : message;
|
|
16
|
+
};
|
|
17
|
+
export const deploySite = async (command, api,
|
|
15
18
|
// @ts-expect-error TS(7006) FIXME: Parameter 'siteId' implicitly has an 'any' type.
|
|
16
19
|
siteId,
|
|
17
20
|
// @ts-expect-error TS(7006) FIXME: Parameter 'dir' implicitly has an 'any' type.
|
|
@@ -33,15 +36,11 @@ hashAlgorithm,
|
|
|
33
36
|
// @ts-expect-error TS(2525) FIXME: Initializer provides no value for this binding ele... Remove this comment to see the full error message
|
|
34
37
|
manifestPath, maxRetry = DEFAULT_MAX_RETRY,
|
|
35
38
|
// @ts-expect-error TS(2525) FIXME: Initializer provides no value for this binding ele... Remove this comment to see the full error message
|
|
36
|
-
siteEnv,
|
|
37
|
-
// @ts-expect-error TS(2525) FIXME: Initializer provides no value for this binding ele... Remove this comment to see the full error message
|
|
38
39
|
siteRoot,
|
|
39
40
|
// @ts-expect-error TS(2525) FIXME: Initializer provides no value for this binding ele... Remove this comment to see the full error message
|
|
40
41
|
skipFunctionsCache, statusCb = () => {
|
|
41
42
|
/* default to noop */
|
|
42
|
-
}, syncFileLimit = DEFAULT_SYNC_LIMIT, tmpDir = temporaryDirectory(),
|
|
43
|
-
// @ts-expect-error TS(2525) FIXME: Initializer provides no value for this binding ele... Remove this comment to see the full error message
|
|
44
|
-
workingDir, } = {}) => {
|
|
43
|
+
}, syncFileLimit = DEFAULT_SYNC_LIMIT, tmpDir = temporaryDirectory(), workingDir, }) => {
|
|
45
44
|
statusCb({
|
|
46
45
|
type: 'hashing',
|
|
47
46
|
msg: `Hashing files...`,
|
|
@@ -58,18 +57,15 @@ workingDir, } = {}) => {
|
|
|
58
57
|
normalizer: deployFileNormalizer.bind(null, workingDir),
|
|
59
58
|
statusCb,
|
|
60
59
|
}),
|
|
61
|
-
hashFns(fnDir, {
|
|
60
|
+
hashFns(command, fnDir, {
|
|
62
61
|
functionsConfig,
|
|
63
62
|
tmpDir,
|
|
64
63
|
concurrentHash,
|
|
65
64
|
hashAlgorithm,
|
|
66
65
|
statusCb,
|
|
67
66
|
assetType,
|
|
68
|
-
// @ts-expect-error TS(2345) FIXME: Argument of type '{ functionsConfig: any; tmpDir: ... Remove this comment to see the full error message
|
|
69
|
-
workingDir,
|
|
70
67
|
manifestPath,
|
|
71
68
|
skipFunctionsCache,
|
|
72
|
-
siteEnv,
|
|
73
69
|
rootDir: siteRoot,
|
|
74
70
|
}),
|
|
75
71
|
hashConfig({ config }),
|
|
@@ -157,9 +153,3 @@ For more information, visit https://ntl.fyi/cli-native-modules.`);
|
|
|
157
153
|
};
|
|
158
154
|
return deployManifest;
|
|
159
155
|
};
|
|
160
|
-
// @ts-expect-error TS(7006) FIXME: Parameter 'possibleParts' implicitly has an 'any' ... Remove this comment to see the full error message
|
|
161
|
-
const buildStatsString = (possibleParts) => {
|
|
162
|
-
const parts = possibleParts.filter(Boolean);
|
|
163
|
-
const message = parts.slice(0, -1).join(', ');
|
|
164
|
-
return parts.length > 1 ? `${message} and ${parts[parts.length - 1]}` : message;
|
|
165
|
-
};
|
|
@@ -1,13 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
1
|
+
import BaseCommand from '../../commands/base-command.js';
|
|
2
|
+
import { $TSFixMe } from '../../commands/types.js';
|
|
3
|
+
declare const hashFns: (command: BaseCommand, directories: string[], config: {
|
|
4
|
+
/** @default 'function' */
|
|
5
|
+
assetType?: string;
|
|
6
|
+
concurrentHash?: number;
|
|
7
|
+
functionsConfig: $TSFixMe;
|
|
8
|
+
/** @default 'sha256' */
|
|
9
|
+
hashAlgorithm?: string;
|
|
10
|
+
manifestPath: $TSFixMe;
|
|
11
|
+
rootDir: $TSFixMe;
|
|
12
|
+
skipFunctionsCache: $TSFixMe;
|
|
13
|
+
statusCb: $TSFixMe;
|
|
14
|
+
tmpDir: $TSFixMe;
|
|
11
15
|
}) => Promise<{
|
|
12
16
|
functions: {};
|
|
13
17
|
functionsWithNativeModules: never[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hash-fns.d.ts","sourceRoot":"","sources":["../../../src/utils/deploy/hash-fns.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"hash-fns.d.ts","sourceRoot":"","sources":["../../../src/utils/deploy/hash-fns.ts"],"names":[],"mappings":"AAUA,OAAO,WAAW,MAAM,gCAAgC,CAAA;AACxD,OAAO,EAAE,QAAQ,EAAE,MAAM,yBAAyB,CAAA;AA+ElD,QAAA,MAAM,OAAO,YACF,WAAW,eACP,MAAM,EAAE,UACb;IACN,0BAA0B;IAC1B,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,cAAc,CAAC,EAAE,MAAM,CAAA;IACvB,eAAe,EAAE,QAAQ,CAAA;IACzB,wBAAwB;IACxB,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,YAAY,EAAE,QAAQ,CAAA;IACtB,OAAO,EAAE,QAAQ,CAAA;IACjB,kBAAkB,EAAE,QAAQ,CAAA;IAC5B,QAAQ,EAAE,QAAQ,CAAA;IAClB,MAAM,EAAE,QAAQ,CAAA;CACjB;;;;;;;;;;;;;;EA0FF,CAAA;AAED,eAAe,OAAO,CAAA"}
|
|
@@ -6,27 +6,12 @@ import { zipFunctions } from '@netlify/zip-it-and-ship-it';
|
|
|
6
6
|
import fromArray from 'from2-array';
|
|
7
7
|
// @ts-expect-error TS(7016) FIXME: Could not find a declaration file for module 'pump... Remove this comment to see the full error message
|
|
8
8
|
import pumpModule from 'pump';
|
|
9
|
-
import { getPathInProject } from '../../lib/settings.js';
|
|
10
9
|
import { INTERNAL_FUNCTIONS_FOLDER } from '../functions/functions.js';
|
|
11
10
|
import { hasherCtor, manifestCollectorCtor } from './hasher-segments.js';
|
|
12
11
|
const pump = promisify(pumpModule);
|
|
13
12
|
// Maximum age of functions manifest (2 minutes).
|
|
14
13
|
const MANIFEST_FILE_TTL = 12e4;
|
|
15
|
-
const getFunctionZips = async ({
|
|
16
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'directories' implicitly has an 'a... Remove this comment to see the full error message
|
|
17
|
-
directories,
|
|
18
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'functionsConfig' implicitly has a... Remove this comment to see the full error message
|
|
19
|
-
functionsConfig,
|
|
20
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'manifestPath' implicitly has an '... Remove this comment to see the full error message
|
|
21
|
-
manifestPath,
|
|
22
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'rootDir' implicitly has an 'any' ... Remove this comment to see the full error message
|
|
23
|
-
rootDir,
|
|
24
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'skipFunctionsCache' implicitly ha... Remove this comment to see the full error message
|
|
25
|
-
skipFunctionsCache,
|
|
26
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'statusCb' implicitly has an 'any'... Remove this comment to see the full error message
|
|
27
|
-
statusCb,
|
|
28
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'tmpDir' implicitly has an 'any' t... Remove this comment to see the full error message
|
|
29
|
-
tmpDir, }) => {
|
|
14
|
+
const getFunctionZips = async ({ command, directories, functionsConfig, manifestPath, rootDir, skipFunctionsCache, statusCb, tmpDir, }) => {
|
|
30
15
|
statusCb({
|
|
31
16
|
type: 'functions-manifest',
|
|
32
17
|
msg: 'Looking for a functions cache...',
|
|
@@ -68,27 +53,12 @@ tmpDir, }) => {
|
|
|
68
53
|
}
|
|
69
54
|
return await zipFunctions(directories, tmpDir, {
|
|
70
55
|
basePath: rootDir,
|
|
71
|
-
configFileDirectories: [getPathInProject(
|
|
56
|
+
configFileDirectories: [command.getPathInProject(INTERNAL_FUNCTIONS_FOLDER)],
|
|
72
57
|
config: functionsConfig,
|
|
73
58
|
});
|
|
74
59
|
};
|
|
75
|
-
const hashFns = async (
|
|
76
|
-
|
|
77
|
-
directories, { assetType = 'function',
|
|
78
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'concurrentHash' implicitly has an... Remove this comment to see the full error message
|
|
79
|
-
concurrentHash,
|
|
80
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'functionsConfig' implicitly has a... Remove this comment to see the full error message
|
|
81
|
-
functionsConfig, hashAlgorithm = 'sha256',
|
|
82
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'manifestPath' implicitly has an '... Remove this comment to see the full error message
|
|
83
|
-
manifestPath,
|
|
84
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'rootDir' implicitly has an 'any' ... Remove this comment to see the full error message
|
|
85
|
-
rootDir,
|
|
86
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'skipFunctionsCache' implicitly ha... Remove this comment to see the full error message
|
|
87
|
-
skipFunctionsCache,
|
|
88
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'statusCb' implicitly has an 'any'... Remove this comment to see the full error message
|
|
89
|
-
statusCb,
|
|
90
|
-
// @ts-expect-error TS(7031) FIXME: Binding element 'tmpDir' implicitly has an 'any' t... Remove this comment to see the full error message
|
|
91
|
-
tmpDir, }) => {
|
|
60
|
+
const hashFns = async (command, directories, config) => {
|
|
61
|
+
const { assetType = 'function', concurrentHash, functionsConfig, hashAlgorithm = 'sha256', manifestPath, rootDir, skipFunctionsCache, statusCb, tmpDir, } = config || {};
|
|
92
62
|
// Early out if no functions directories are configured.
|
|
93
63
|
if (directories.length === 0) {
|
|
94
64
|
return { functions: {}, functionsWithNativeModules: [], shaMap: {} };
|
|
@@ -97,6 +67,7 @@ tmpDir, }) => {
|
|
|
97
67
|
throw new Error('Missing tmpDir directory for zipping files');
|
|
98
68
|
}
|
|
99
69
|
const functionZips = await getFunctionZips({
|
|
70
|
+
command,
|
|
100
71
|
directories,
|
|
101
72
|
functionsConfig,
|
|
102
73
|
manifestPath,
|
|
@@ -38,10 +38,11 @@ export declare const generateInspectSettings: (edgeInspect: any, edgeInspectBrk:
|
|
|
38
38
|
* @param {import('../lib/functions/registry.js').FunctionsRegistry=} params.functionsRegistry
|
|
39
39
|
* @returns
|
|
40
40
|
*/
|
|
41
|
-
export declare const startProxyServer: ({ accountId, addonsUrls, blobsContext, config, configPath, debug, env, functionsRegistry, geoCountry, geolocationMode, getUpdatedConfig, inspectSettings, offline, projectDir, repositoryRoot, settings, site, siteInfo, state, }: {
|
|
41
|
+
export declare const startProxyServer: ({ accountId, addonsUrls, blobsContext, command, config, configPath, debug, env, functionsRegistry, geoCountry, geolocationMode, getUpdatedConfig, inspectSettings, offline, projectDir, repositoryRoot, settings, site, siteInfo, state, }: {
|
|
42
42
|
accountId: any;
|
|
43
43
|
addonsUrls: any;
|
|
44
44
|
blobsContext: any;
|
|
45
|
+
command: any;
|
|
45
46
|
config: any;
|
|
46
47
|
configPath: any;
|
|
47
48
|
debug: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proxy-server.d.ts","sourceRoot":"","sources":["../../src/utils/proxy-server.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AAEH;;;;GAIG;AAEH,eAAO,MAAM,uBAAuB;;;;CAiBnC,CAAA;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"proxy-server.d.ts","sourceRoot":"","sources":["../../src/utils/proxy-server.ts"],"names":[],"mappings":"AAGA;;;;;GAKG;AAEH;;;;GAIG;AAEH,eAAO,MAAM,uBAAuB;;;;CAiBnC,CAAA;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;qBAqE5B,CAAA"}
|
|
@@ -60,6 +60,8 @@ accountId,
|
|
|
60
60
|
addonsUrls,
|
|
61
61
|
// @ts-expect-error TS(7031) FIXME: Binding element 'blobsContext' implicitly has an '... Remove this comment to see the full error message
|
|
62
62
|
blobsContext,
|
|
63
|
+
// @ts-expect-error TS(7031) FIXME: Binding element 'accountId' implicitly has an 'any... Remove this comment to see the full error message
|
|
64
|
+
command,
|
|
63
65
|
// @ts-expect-error TS(7031) FIXME: Binding element 'config' implicitly has an 'any' t... Remove this comment to see the full error message
|
|
64
66
|
config,
|
|
65
67
|
// @ts-expect-error TS(7031) FIXME: Binding element 'configPath' implicitly has an 'an... Remove this comment to see the full error message
|
|
@@ -95,6 +97,7 @@ state, }) => {
|
|
|
95
97
|
const url = await startProxy({
|
|
96
98
|
addonsUrls,
|
|
97
99
|
blobsContext,
|
|
100
|
+
command,
|
|
98
101
|
config,
|
|
99
102
|
configPath: configPath || site.configPath,
|
|
100
103
|
debug,
|
package/dist/utils/proxy.d.ts
CHANGED
|
@@ -3,10 +3,11 @@
|
|
|
3
3
|
* @returns
|
|
4
4
|
*/
|
|
5
5
|
export declare const getProxyUrl: (settings: any) => string;
|
|
6
|
-
export declare const startProxy: ({ accountId, addonsUrls, blobsContext, config, configPath, debug, env, functionsRegistry, geoCountry, geolocationMode, getUpdatedConfig, inspectSettings, offline, projectDir, repositoryRoot, settings, siteInfo, state, }: {
|
|
6
|
+
export declare const startProxy: ({ accountId, addonsUrls, blobsContext, command, config, configPath, debug, env, functionsRegistry, geoCountry, geolocationMode, getUpdatedConfig, inspectSettings, offline, projectDir, repositoryRoot, settings, siteInfo, state, }: {
|
|
7
7
|
accountId: any;
|
|
8
8
|
addonsUrls: any;
|
|
9
9
|
blobsContext: any;
|
|
10
|
+
command: any;
|
|
10
11
|
config: any;
|
|
11
12
|
configPath: any;
|
|
12
13
|
debug: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proxy.d.ts","sourceRoot":"","sources":["../../src/utils/proxy.ts"],"names":[],"mappings":"AA0xBA;;;GAGG;AAEH,eAAO,MAAM,WAAW,2BAGvB,CAAA;AAED,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"proxy.d.ts","sourceRoot":"","sources":["../../src/utils/proxy.ts"],"names":[],"mappings":"AA0xBA;;;GAGG;AAEH,eAAO,MAAM,WAAW,2BAGvB,CAAA;AAED,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;qBAmItB,CAAA"}
|
package/dist/utils/proxy.js
CHANGED
|
@@ -354,23 +354,23 @@ const reqToURL = function (req, pathname) {
|
|
|
354
354
|
const MILLISEC_TO_SEC = 1e3;
|
|
355
355
|
const initializeProxy = async function ({
|
|
356
356
|
// @ts-expect-error TS(7031) FIXME: Binding element 'configPath' implicitly has an 'any... Remove this comment to see the full error message
|
|
357
|
-
|
|
357
|
+
config,
|
|
358
358
|
// @ts-expect-error TS(7031) FIXME: Binding element 'distDir' implicitly has an 'any... Remove this comment to see the full error message
|
|
359
|
-
|
|
359
|
+
configPath,
|
|
360
360
|
// @ts-expect-error TS(7031) FIXME: Binding element 'env' implicitly has an 'any... Remove this comment to see the full error message
|
|
361
|
-
|
|
361
|
+
distDir,
|
|
362
362
|
// @ts-expect-error TS(7031) FIXME: Binding element 'host' implicitly has an 'any... Remove this comment to see the full error message
|
|
363
|
-
|
|
363
|
+
env,
|
|
364
364
|
// @ts-expect-error TS(7031) FIXME: Binding element 'imageProxy' implicitly has an 'any... Remove this comment to see the full error message
|
|
365
|
-
|
|
365
|
+
host,
|
|
366
366
|
// @ts-expect-error TS(7031) FIXME: Binding element 'port' implicitly has an 'any... Remove this comment to see the full error message
|
|
367
|
-
|
|
367
|
+
imageProxy,
|
|
368
368
|
// @ts-expect-error TS(7031) FIXME: Binding element 'projectDir' implicitly has an 'any... Remove this comment to see the full error message
|
|
369
|
-
|
|
369
|
+
port,
|
|
370
370
|
// @ts-expect-error TS(7031) FIXME: Binding element 'siteInfo' implicitly has an 'any... Remove this comment to see the full error message
|
|
371
|
-
|
|
371
|
+
projectDir,
|
|
372
372
|
// @ts-expect-error TS(7031) FIXME: Binding element 'config' implicitly has an 'any... Remove this comment to see the full error message
|
|
373
|
-
|
|
373
|
+
siteInfo, }) {
|
|
374
374
|
const proxy = httpProxy.createProxyServer({
|
|
375
375
|
selfHandleResponse: true,
|
|
376
376
|
target: {
|
|
@@ -669,6 +669,8 @@ accountId,
|
|
|
669
669
|
addonsUrls,
|
|
670
670
|
// @ts-expect-error TS(7031) FIXME: Binding element 'blobsContext' implicitly has an '... Remove this comment to see the full error message
|
|
671
671
|
blobsContext,
|
|
672
|
+
// @ts-expect-error TS(7031) FIXME: Binding element 'accountId' implicitly has an 'any... Remove this comment to see the full error message
|
|
673
|
+
command,
|
|
672
674
|
// @ts-expect-error TS(7031) FIXME: Binding element 'config' implicitly has an 'any' t... Remove this comment to see the full error message
|
|
673
675
|
config,
|
|
674
676
|
// @ts-expect-error TS(7031) FIXME: Binding element 'configPath' implicitly has an 'an... Remove this comment to see the full error message
|
|
@@ -702,6 +704,7 @@ state, }) {
|
|
|
702
704
|
const secondaryServerPort = settings.https ? await getAvailablePort() : null;
|
|
703
705
|
const functionsServer = settings.functionsPort ? `http://127.0.0.1:${settings.functionsPort}` : null;
|
|
704
706
|
const edgeFunctionsProxy = await initializeEdgeFunctionsProxy({
|
|
707
|
+
command,
|
|
705
708
|
blobsContext,
|
|
706
709
|
config,
|
|
707
710
|
configPath,
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
|
-
"version": "17.19.
|
|
3
|
+
"version": "17.19.3",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "netlify-cli",
|
|
9
|
-
"version": "17.19.
|
|
9
|
+
"version": "17.19.3",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"dependencies": {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"prettyjson": "1.2.5",
|
|
101
101
|
"pump": "3.0.0",
|
|
102
102
|
"raw-body": "2.5.2",
|
|
103
|
-
"read-
|
|
103
|
+
"read-package-up": "11.0.0",
|
|
104
104
|
"semver": "7.5.4",
|
|
105
105
|
"source-map-support": "0.5.21",
|
|
106
106
|
"strip-ansi-control-characters": "2.0.0",
|
|
@@ -4303,9 +4303,9 @@
|
|
|
4303
4303
|
}
|
|
4304
4304
|
},
|
|
4305
4305
|
"node_modules/@types/normalize-package-data": {
|
|
4306
|
-
"version": "2.4.
|
|
4307
|
-
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.
|
|
4308
|
-
"integrity": "sha512-
|
|
4306
|
+
"version": "2.4.4",
|
|
4307
|
+
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
|
|
4308
|
+
"integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="
|
|
4309
4309
|
},
|
|
4310
4310
|
"node_modules/@types/qs": {
|
|
4311
4311
|
"version": "6.9.7",
|
|
@@ -8554,6 +8554,17 @@
|
|
|
8554
8554
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
8555
8555
|
}
|
|
8556
8556
|
},
|
|
8557
|
+
"node_modules/find-up-simple": {
|
|
8558
|
+
"version": "1.0.0",
|
|
8559
|
+
"resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz",
|
|
8560
|
+
"integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==",
|
|
8561
|
+
"engines": {
|
|
8562
|
+
"node": ">=18"
|
|
8563
|
+
},
|
|
8564
|
+
"funding": {
|
|
8565
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
8566
|
+
}
|
|
8567
|
+
},
|
|
8557
8568
|
"node_modules/find-up/node_modules/path-exists": {
|
|
8558
8569
|
"version": "5.0.0",
|
|
8559
8570
|
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz",
|
|
@@ -9373,6 +9384,17 @@
|
|
|
9373
9384
|
"node": ">=0.8.19"
|
|
9374
9385
|
}
|
|
9375
9386
|
},
|
|
9387
|
+
"node_modules/index-to-position": {
|
|
9388
|
+
"version": "0.1.2",
|
|
9389
|
+
"resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz",
|
|
9390
|
+
"integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==",
|
|
9391
|
+
"engines": {
|
|
9392
|
+
"node": ">=18"
|
|
9393
|
+
},
|
|
9394
|
+
"funding": {
|
|
9395
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
9396
|
+
}
|
|
9397
|
+
},
|
|
9376
9398
|
"node_modules/inflight": {
|
|
9377
9399
|
"version": "1.0.6",
|
|
9378
9400
|
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
@@ -12962,6 +12984,100 @@
|
|
|
12962
12984
|
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
|
|
12963
12985
|
"integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
|
|
12964
12986
|
},
|
|
12987
|
+
"node_modules/read-package-up": {
|
|
12988
|
+
"version": "11.0.0",
|
|
12989
|
+
"resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz",
|
|
12990
|
+
"integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==",
|
|
12991
|
+
"dependencies": {
|
|
12992
|
+
"find-up-simple": "^1.0.0",
|
|
12993
|
+
"read-pkg": "^9.0.0",
|
|
12994
|
+
"type-fest": "^4.6.0"
|
|
12995
|
+
},
|
|
12996
|
+
"engines": {
|
|
12997
|
+
"node": ">=18"
|
|
12998
|
+
},
|
|
12999
|
+
"funding": {
|
|
13000
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
13001
|
+
}
|
|
13002
|
+
},
|
|
13003
|
+
"node_modules/read-package-up/node_modules/hosted-git-info": {
|
|
13004
|
+
"version": "7.0.1",
|
|
13005
|
+
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
|
|
13006
|
+
"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
|
|
13007
|
+
"dependencies": {
|
|
13008
|
+
"lru-cache": "^10.0.1"
|
|
13009
|
+
},
|
|
13010
|
+
"engines": {
|
|
13011
|
+
"node": "^16.14.0 || >=18.0.0"
|
|
13012
|
+
}
|
|
13013
|
+
},
|
|
13014
|
+
"node_modules/read-package-up/node_modules/lru-cache": {
|
|
13015
|
+
"version": "10.2.0",
|
|
13016
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
|
|
13017
|
+
"integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==",
|
|
13018
|
+
"engines": {
|
|
13019
|
+
"node": "14 || >=16.14"
|
|
13020
|
+
}
|
|
13021
|
+
},
|
|
13022
|
+
"node_modules/read-package-up/node_modules/normalize-package-data": {
|
|
13023
|
+
"version": "6.0.0",
|
|
13024
|
+
"resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz",
|
|
13025
|
+
"integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==",
|
|
13026
|
+
"dependencies": {
|
|
13027
|
+
"hosted-git-info": "^7.0.0",
|
|
13028
|
+
"is-core-module": "^2.8.1",
|
|
13029
|
+
"semver": "^7.3.5",
|
|
13030
|
+
"validate-npm-package-license": "^3.0.4"
|
|
13031
|
+
},
|
|
13032
|
+
"engines": {
|
|
13033
|
+
"node": "^16.14.0 || >=18.0.0"
|
|
13034
|
+
}
|
|
13035
|
+
},
|
|
13036
|
+
"node_modules/read-package-up/node_modules/parse-json": {
|
|
13037
|
+
"version": "8.1.0",
|
|
13038
|
+
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz",
|
|
13039
|
+
"integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==",
|
|
13040
|
+
"dependencies": {
|
|
13041
|
+
"@babel/code-frame": "^7.22.13",
|
|
13042
|
+
"index-to-position": "^0.1.2",
|
|
13043
|
+
"type-fest": "^4.7.1"
|
|
13044
|
+
},
|
|
13045
|
+
"engines": {
|
|
13046
|
+
"node": ">=18"
|
|
13047
|
+
},
|
|
13048
|
+
"funding": {
|
|
13049
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
13050
|
+
}
|
|
13051
|
+
},
|
|
13052
|
+
"node_modules/read-package-up/node_modules/read-pkg": {
|
|
13053
|
+
"version": "9.0.1",
|
|
13054
|
+
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz",
|
|
13055
|
+
"integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==",
|
|
13056
|
+
"dependencies": {
|
|
13057
|
+
"@types/normalize-package-data": "^2.4.3",
|
|
13058
|
+
"normalize-package-data": "^6.0.0",
|
|
13059
|
+
"parse-json": "^8.0.0",
|
|
13060
|
+
"type-fest": "^4.6.0",
|
|
13061
|
+
"unicorn-magic": "^0.1.0"
|
|
13062
|
+
},
|
|
13063
|
+
"engines": {
|
|
13064
|
+
"node": ">=18"
|
|
13065
|
+
},
|
|
13066
|
+
"funding": {
|
|
13067
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
13068
|
+
}
|
|
13069
|
+
},
|
|
13070
|
+
"node_modules/read-package-up/node_modules/type-fest": {
|
|
13071
|
+
"version": "4.12.0",
|
|
13072
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.12.0.tgz",
|
|
13073
|
+
"integrity": "sha512-5Y2/pp2wtJk8o08G0CMkuFPCO354FGwk/vbidxrdhRGZfd0tFnb4Qb8anp9XxXriwBgVPjdWbKpGl4J9lJY2jQ==",
|
|
13074
|
+
"engines": {
|
|
13075
|
+
"node": ">=16"
|
|
13076
|
+
},
|
|
13077
|
+
"funding": {
|
|
13078
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
13079
|
+
}
|
|
13080
|
+
},
|
|
12965
13081
|
"node_modules/read-pkg-up": {
|
|
12966
13082
|
"version": "9.1.0",
|
|
12967
13083
|
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-9.1.0.tgz",
|
|
@@ -14874,6 +14990,17 @@
|
|
|
14874
14990
|
"node": ">=10.0.0"
|
|
14875
14991
|
}
|
|
14876
14992
|
},
|
|
14993
|
+
"node_modules/unicorn-magic": {
|
|
14994
|
+
"version": "0.1.0",
|
|
14995
|
+
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
|
|
14996
|
+
"integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==",
|
|
14997
|
+
"engines": {
|
|
14998
|
+
"node": ">=18"
|
|
14999
|
+
},
|
|
15000
|
+
"funding": {
|
|
15001
|
+
"url": "https://github.com/sponsors/sindresorhus"
|
|
15002
|
+
}
|
|
15003
|
+
},
|
|
14877
15004
|
"node_modules/union-value": {
|
|
14878
15005
|
"version": "1.0.1",
|
|
14879
15006
|
"resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
|
|
@@ -18247,9 +18374,9 @@
|
|
|
18247
18374
|
}
|
|
18248
18375
|
},
|
|
18249
18376
|
"@types/normalize-package-data": {
|
|
18250
|
-
"version": "2.4.
|
|
18251
|
-
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.
|
|
18252
|
-
"integrity": "sha512-
|
|
18377
|
+
"version": "2.4.4",
|
|
18378
|
+
"resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz",
|
|
18379
|
+
"integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA=="
|
|
18253
18380
|
},
|
|
18254
18381
|
"@types/qs": {
|
|
18255
18382
|
"version": "6.9.7",
|
|
@@ -21364,6 +21491,11 @@
|
|
|
21364
21491
|
}
|
|
21365
21492
|
}
|
|
21366
21493
|
},
|
|
21494
|
+
"find-up-simple": {
|
|
21495
|
+
"version": "1.0.0",
|
|
21496
|
+
"resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz",
|
|
21497
|
+
"integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw=="
|
|
21498
|
+
},
|
|
21367
21499
|
"flush-write-stream": {
|
|
21368
21500
|
"version": "2.0.0",
|
|
21369
21501
|
"resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-2.0.0.tgz",
|
|
@@ -21950,6 +22082,11 @@
|
|
|
21950
22082
|
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
|
|
21951
22083
|
"integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o="
|
|
21952
22084
|
},
|
|
22085
|
+
"index-to-position": {
|
|
22086
|
+
"version": "0.1.2",
|
|
22087
|
+
"resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz",
|
|
22088
|
+
"integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g=="
|
|
22089
|
+
},
|
|
21953
22090
|
"inflight": {
|
|
21954
22091
|
"version": "1.0.6",
|
|
21955
22092
|
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
@@ -24464,6 +24601,69 @@
|
|
|
24464
24601
|
"resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz",
|
|
24465
24602
|
"integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="
|
|
24466
24603
|
},
|
|
24604
|
+
"read-package-up": {
|
|
24605
|
+
"version": "11.0.0",
|
|
24606
|
+
"resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz",
|
|
24607
|
+
"integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==",
|
|
24608
|
+
"requires": {
|
|
24609
|
+
"find-up-simple": "^1.0.0",
|
|
24610
|
+
"read-pkg": "^9.0.0",
|
|
24611
|
+
"type-fest": "^4.6.0"
|
|
24612
|
+
},
|
|
24613
|
+
"dependencies": {
|
|
24614
|
+
"hosted-git-info": {
|
|
24615
|
+
"version": "7.0.1",
|
|
24616
|
+
"resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz",
|
|
24617
|
+
"integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==",
|
|
24618
|
+
"requires": {
|
|
24619
|
+
"lru-cache": "^10.0.1"
|
|
24620
|
+
}
|
|
24621
|
+
},
|
|
24622
|
+
"lru-cache": {
|
|
24623
|
+
"version": "10.2.0",
|
|
24624
|
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz",
|
|
24625
|
+
"integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q=="
|
|
24626
|
+
},
|
|
24627
|
+
"normalize-package-data": {
|
|
24628
|
+
"version": "6.0.0",
|
|
24629
|
+
"resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz",
|
|
24630
|
+
"integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==",
|
|
24631
|
+
"requires": {
|
|
24632
|
+
"hosted-git-info": "^7.0.0",
|
|
24633
|
+
"is-core-module": "^2.8.1",
|
|
24634
|
+
"semver": "^7.3.5",
|
|
24635
|
+
"validate-npm-package-license": "^3.0.4"
|
|
24636
|
+
}
|
|
24637
|
+
},
|
|
24638
|
+
"parse-json": {
|
|
24639
|
+
"version": "8.1.0",
|
|
24640
|
+
"resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz",
|
|
24641
|
+
"integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==",
|
|
24642
|
+
"requires": {
|
|
24643
|
+
"@babel/code-frame": "^7.22.13",
|
|
24644
|
+
"index-to-position": "^0.1.2",
|
|
24645
|
+
"type-fest": "^4.7.1"
|
|
24646
|
+
}
|
|
24647
|
+
},
|
|
24648
|
+
"read-pkg": {
|
|
24649
|
+
"version": "9.0.1",
|
|
24650
|
+
"resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz",
|
|
24651
|
+
"integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==",
|
|
24652
|
+
"requires": {
|
|
24653
|
+
"@types/normalize-package-data": "^2.4.3",
|
|
24654
|
+
"normalize-package-data": "^6.0.0",
|
|
24655
|
+
"parse-json": "^8.0.0",
|
|
24656
|
+
"type-fest": "^4.6.0",
|
|
24657
|
+
"unicorn-magic": "^0.1.0"
|
|
24658
|
+
}
|
|
24659
|
+
},
|
|
24660
|
+
"type-fest": {
|
|
24661
|
+
"version": "4.12.0",
|
|
24662
|
+
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.12.0.tgz",
|
|
24663
|
+
"integrity": "sha512-5Y2/pp2wtJk8o08G0CMkuFPCO354FGwk/vbidxrdhRGZfd0tFnb4Qb8anp9XxXriwBgVPjdWbKpGl4J9lJY2jQ=="
|
|
24664
|
+
}
|
|
24665
|
+
}
|
|
24666
|
+
},
|
|
24467
24667
|
"read-pkg-up": {
|
|
24468
24668
|
"version": "9.1.0",
|
|
24469
24669
|
"resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-9.1.0.tgz",
|
|
@@ -25912,6 +26112,11 @@
|
|
|
25912
26112
|
}
|
|
25913
26113
|
}
|
|
25914
26114
|
},
|
|
26115
|
+
"unicorn-magic": {
|
|
26116
|
+
"version": "0.1.0",
|
|
26117
|
+
"resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz",
|
|
26118
|
+
"integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ=="
|
|
26119
|
+
},
|
|
25915
26120
|
"union-value": {
|
|
25916
26121
|
"version": "1.0.1",
|
|
25917
26122
|
"resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "17.19.
|
|
4
|
+
"version": "17.19.3",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"prettyjson": "1.2.5",
|
|
126
126
|
"pump": "3.0.0",
|
|
127
127
|
"raw-body": "2.5.2",
|
|
128
|
-
"read-
|
|
128
|
+
"read-package-up": "11.0.0",
|
|
129
129
|
"semver": "7.5.4",
|
|
130
130
|
"source-map-support": "0.5.21",
|
|
131
131
|
"strip-ansi-control-characters": "2.0.0",
|