refactor: extraBinPaths is optional

ref #1870
This commit is contained in:
Zoltan Kochan
2019-06-12 02:07:55 +03:00
parent 0136f2613d
commit e7b034eb7a
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ export default async (
opts: {
childConcurrency?: number,
depsToBuild?: Set<string>,
extraBinPaths: string[],
extraBinPaths?: string[],
optional: boolean,
prefix: string,
rawNpmConfig: object,

View File

@@ -70,7 +70,7 @@ export interface HeadlessOptions {
pnpmVersion: string,
},
engineStrict: boolean,
extraBinPaths: string[],
extraBinPaths?: string[],
ignoreScripts: boolean,
include: IncludedDependencies,
independentLeaves: boolean,