feat: run prepare scripts of Git dependencies (#3394)

close #855
This commit is contained in:
Zoltan Kochan authored and GitHub committed 2021-04-28 02:22:25 +03:00
1 parent 1084ca1a75
commit e6a2654a27
40 files changed
+480 -145

No files matched your search

-2
View File
@@ -89,7 +89,6 @@ async function buildDependency (
initCwd: opts.lockfileDir,
optional: depNode.optional,
pkgRoot: depNode.dir,
prepare: depNode.prepare,
rawConfig: opts.rawConfig,
rootModulesDir: opts.rootModulesDir,
scriptShell: opts.scriptShell,
@@ -172,7 +171,6 @@ export interface DependenciesGraphNode {
isBuilt?: boolean
optional: boolean
optionalDependencies: Set<string>
prepare: boolean
requiresBuild?: boolean
}