@vercel/build-utils 3.0.1 → 3.0.2-canary.0
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/fs/node-version.js +6 -1
- package/dist/index.js +6 -1
- package/package.json +6 -5
package/dist/fs/node-version.js
CHANGED
@@ -10,7 +10,12 @@ const debug_1 = __importDefault(require("../debug"));
|
|
10
10
|
const allOptions = [
|
11
11
|
{ major: 16, range: '16.x', runtime: 'nodejs16.x' },
|
12
12
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
13
|
-
{
|
13
|
+
{
|
14
|
+
major: 12,
|
15
|
+
range: '12.x',
|
16
|
+
runtime: 'nodejs12.x',
|
17
|
+
discontinueDate: new Date('2022-08-09'),
|
18
|
+
},
|
14
19
|
{
|
15
20
|
major: 10,
|
16
21
|
range: '10.x',
|
package/dist/index.js
CHANGED
@@ -34783,7 +34783,12 @@ const debug_1 = __importDefault(__webpack_require__(1868));
|
|
34783
34783
|
const allOptions = [
|
34784
34784
|
{ major: 16, range: '16.x', runtime: 'nodejs16.x' },
|
34785
34785
|
{ major: 14, range: '14.x', runtime: 'nodejs14.x' },
|
34786
|
-
{
|
34786
|
+
{
|
34787
|
+
major: 12,
|
34788
|
+
range: '12.x',
|
34789
|
+
runtime: 'nodejs12.x',
|
34790
|
+
discontinueDate: new Date('2022-08-09'),
|
34791
|
+
},
|
34787
34792
|
{
|
34788
34793
|
major: 10,
|
34789
34794
|
range: '10.x',
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/build-utils",
|
3
|
-
"version": "3.0.
|
3
|
+
"version": "3.0.2-canary.0",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.js",
|
@@ -12,8 +12,9 @@
|
|
12
12
|
},
|
13
13
|
"scripts": {
|
14
14
|
"build": "node build",
|
15
|
-
"test
|
16
|
-
"test-
|
15
|
+
"test": "jest --env node --verbose --runInBand --bail",
|
16
|
+
"test-unit": "yarn test test/unit.*test.*",
|
17
|
+
"test-integration-once": "yarn test test/integration.test.ts",
|
17
18
|
"prepublishOnly": "node build"
|
18
19
|
},
|
19
20
|
"devDependencies": {
|
@@ -30,7 +31,7 @@
|
|
30
31
|
"@types/node-fetch": "^2.1.6",
|
31
32
|
"@types/semver": "6.0.0",
|
32
33
|
"@types/yazl": "2.4.2",
|
33
|
-
"@vercel/frameworks": "0.9.0",
|
34
|
+
"@vercel/frameworks": "0.9.1-canary.0",
|
34
35
|
"@vercel/ncc": "0.24.0",
|
35
36
|
"aggregate-error": "3.0.1",
|
36
37
|
"async-retry": "1.2.3",
|
@@ -49,5 +50,5 @@
|
|
49
50
|
"typescript": "4.3.4",
|
50
51
|
"yazl": "2.5.1"
|
51
52
|
},
|
52
|
-
"gitHead": "
|
53
|
+
"gitHead": "f26858b735ad5d54e01afa67133b9f9456fbe72f"
|
53
54
|
}
|