8 lines
278 B
JavaScript
8 lines
278 B
JavaScript
// This file is executed by lerna before publishing @babel/standalone,
|
|
// so that it has the new version and not the old one.
|
|
|
|
require("child_process").execSync("make prepublish-build-standalone", {
|
|
cwd: require("path").resolve(__dirname, "../../.."),
|
|
stdio: "inherit",
|
|
});
|