We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2d314 commit 256f736Copy full SHA for 256f736
packages/builders/LICENSE.md
@@ -0,0 +1 @@
1
+../../LICENSE.md
packages/builders/package.json
@@ -21,7 +21,7 @@
21
"publishConfig": {
22
"access": "public"
23
},
24
- "license": "MIT",
+ "license": "Apache-2.0",
25
"repository": {
26
"type": "git",
27
"url": "https://github.com/vercel/workflow.git",
packages/builders/src/types.ts
@@ -27,5 +27,5 @@ export interface WorkflowConfig {
export function isValidBuildTarget(
28
target: string | undefined
29
): target is BuildTarget {
30
- return target === 'standalone' || target === 'vercel-build-output-api';
+ return !!target && validBuildTargets.includes(target as BuildTarget);
31
}
0 commit comments