@vercel/build-utils 2.14.1-canary.5 → 2.14.1-canary.6
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/.turbo/turbo-build.log +2 -2
- package/dist/index.js +1 -1
- package/dist/types.d.ts +2 -28
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
@@ -29,6 +29,6 @@ ncc: Using typescript@4.3.4 (local user-provided)
|
|
29
29
|
2kB dist/main/detectors/filesystem.d.ts
|
30
30
|
3kB dist/main/index.d.ts
|
31
31
|
4kB dist/main/fs/run-user-scripts.d.ts
|
32
|
-
|
32
|
+
9kB dist/main/types.d.ts
|
33
33
|
1235kB dist/main/index.js
|
34
|
-
|
34
|
+
1265kB [7455ms] - ncc 0.24.0
|
package/dist/index.js
CHANGED
@@ -28258,7 +28258,7 @@ exports.frameworks = [
|
|
28258
28258
|
}));
|
28259
28259
|
return (config && config.publishDir) || 'public';
|
28260
28260
|
},
|
28261
|
-
defaultVersion: '0.
|
28261
|
+
defaultVersion: '0.64.0',
|
28262
28262
|
},
|
28263
28263
|
{
|
28264
28264
|
name: 'Jekyll',
|
package/dist/types.d.ts
CHANGED
@@ -20,9 +20,6 @@ export interface Files {
|
|
20
20
|
[filePath: string]: File;
|
21
21
|
}
|
22
22
|
export interface Config {
|
23
|
-
[key: string]: string | string[] | boolean | number | {
|
24
|
-
[key: string]: string;
|
25
|
-
} | BuilderFunctions | ProjectSettings | undefined | null;
|
26
23
|
maxLambdaSize?: string;
|
27
24
|
includeFiles?: string | string[];
|
28
25
|
excludeFiles?: string | string[];
|
@@ -43,6 +40,7 @@ export interface Config {
|
|
43
40
|
devCommand?: string;
|
44
41
|
framework?: string | null;
|
45
42
|
nodeVersion?: string;
|
43
|
+
[key: string]: unknown;
|
46
44
|
}
|
47
45
|
export interface Meta {
|
48
46
|
isDev?: boolean;
|
@@ -54,31 +52,7 @@ export interface Meta {
|
|
54
52
|
env?: Env;
|
55
53
|
buildEnv?: Env;
|
56
54
|
avoidTopLevelInstall?: boolean;
|
57
|
-
|
58
|
-
export interface AnalyzeOptions {
|
59
|
-
/**
|
60
|
-
* All source files of the project
|
61
|
-
*/
|
62
|
-
files: {
|
63
|
-
[filePath: string]: FileRef;
|
64
|
-
};
|
65
|
-
/**
|
66
|
-
* Name of entrypoint file for this particular build job. Value
|
67
|
-
* `files[entrypoint]` is guaranteed to exist and be a valid File reference.
|
68
|
-
* `entrypoint` is always a discrete file and never a glob, since globs are
|
69
|
-
* expanded into separate builds at deployment time.
|
70
|
-
*/
|
71
|
-
entrypoint: string;
|
72
|
-
/**
|
73
|
-
* A writable temporary directory where you are encouraged to perform your
|
74
|
-
* build process. This directory will be populated with the restored cache.
|
75
|
-
*/
|
76
|
-
workPath: string;
|
77
|
-
/**
|
78
|
-
* An arbitrary object passed by the user in the build definition defined
|
79
|
-
* in `vercel.json`.
|
80
|
-
*/
|
81
|
-
config: Config;
|
55
|
+
[key: string]: unknown;
|
82
56
|
}
|
83
57
|
export interface BuildOptions {
|
84
58
|
/**
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vercel/build-utils",
|
3
|
-
"version": "2.14.1-canary.
|
3
|
+
"version": "2.14.1-canary.6",
|
4
4
|
"license": "MIT",
|
5
5
|
"main": "./dist/index.js",
|
6
6
|
"types": "./dist/index.d.js",
|
@@ -30,7 +30,7 @@
|
|
30
30
|
"@types/node-fetch": "^2.1.6",
|
31
31
|
"@types/semver": "6.0.0",
|
32
32
|
"@types/yazl": "^2.4.1",
|
33
|
-
"@vercel/frameworks": "0.6.1-canary.
|
33
|
+
"@vercel/frameworks": "0.6.1-canary.5",
|
34
34
|
"@vercel/ncc": "0.24.0",
|
35
35
|
"aggregate-error": "3.0.1",
|
36
36
|
"async-retry": "1.2.3",
|
@@ -49,5 +49,5 @@
|
|
49
49
|
"typescript": "4.3.4",
|
50
50
|
"yazl": "2.4.3"
|
51
51
|
},
|
52
|
-
"gitHead": "
|
52
|
+
"gitHead": "9dde99f19ef62f7ea8addc19fab9a1ff025aa4ae"
|
53
53
|
}
|