Skip to content

Commit b42ca5c

Browse files
committed
Build needs --include-dependencies
1 parent e0990ba commit b42ca5c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/build.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
const { spawn } = require("child_process");
33
const { lernaScopes } = require("./github.js");
44

5-
const buildProcess = spawn("lerna", ["run", "build", ...lernaScopes], { stdio: "inherit" });
5+
const buildProcess = spawn("lerna", ["run", "build", "--include-dependencies", ...lernaScopes], {
6+
stdio: "inherit",
7+
});
68

79
buildProcess.on("close", (code) => {
810
process.exit(code);

0 commit comments

Comments
 (0)