netlify-cli 17.0.0 → 17.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/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "netlify-cli",
|
|
3
3
|
"description": "Netlify command line tool",
|
|
4
|
-
"version": "17.0.
|
|
4
|
+
"version": "17.0.1",
|
|
5
5
|
"author": "Netlify Inc.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=18.
|
|
8
|
+
"node": ">=18.14.0"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"/bin",
|
|
@@ -45,12 +45,12 @@
|
|
|
45
45
|
"@bugsnag/js": "7.20.2",
|
|
46
46
|
"@fastify/static": "6.10.2",
|
|
47
47
|
"@netlify/blobs": "^4.0.0",
|
|
48
|
-
"@netlify/build": "29.
|
|
49
|
-
"@netlify/build-info": "7.10.
|
|
48
|
+
"@netlify/build": "29.24.3",
|
|
49
|
+
"@netlify/build-info": "7.10.2",
|
|
50
50
|
"@netlify/config": "20.9.0",
|
|
51
51
|
"@netlify/edge-bundler": "9.4.1",
|
|
52
52
|
"@netlify/local-functions-proxy": "1.1.1",
|
|
53
|
-
"@netlify/zip-it-and-ship-it": "9.25.
|
|
53
|
+
"@netlify/zip-it-and-ship-it": "9.25.7",
|
|
54
54
|
"@octokit/rest": "19.0.13",
|
|
55
55
|
"ansi-escapes": "6.2.0",
|
|
56
56
|
"ansi-styles": "6.2.1",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { env } from 'process'
|
|
2
2
|
|
|
3
|
-
const latestBootstrapURL = 'https://
|
|
3
|
+
const latestBootstrapURL = 'https://65437779a0c9990008b54abe--edge.netlify.com/bootstrap/index-combined.ts'
|
|
4
4
|
|
|
5
5
|
export const getBootstrapURL = () => env.NETLIFY_EDGE_BOOTSTRAP || latestBootstrapURL
|
|
@@ -10,7 +10,7 @@ import { error as errorExit } from '../../utils/command-helpers.mjs'
|
|
|
10
10
|
import { BACKGROUND } from '../../utils/functions/get-functions.mjs'
|
|
11
11
|
|
|
12
12
|
const TYPESCRIPT_EXTENSIONS = new Set(['.cts', '.mts', '.ts'])
|
|
13
|
-
const V2_MIN_NODE_VERSION = '18.
|
|
13
|
+
const V2_MIN_NODE_VERSION = '18.14.0'
|
|
14
14
|
|
|
15
15
|
// Returns a new set with all elements of `setA` that don't exist in `setB`.
|
|
16
16
|
const difference = (setA, setB) => new Set([...setA].filter((item) => !setB.has(item)))
|