2019-10-14 16:00:50 +02:00
|
|
|
#!/usr/bin/env node
|
2020-01-06 11:30:04 +01:00
|
|
|
/* eslint-disable no-console */
|
2019-10-14 16:00:50 +02:00
|
|
|
const { spawnSync } = require("child_process");
|
|
|
|
|
|
2019-11-29 11:41:04 +01:00
|
|
|
const commands = ["plugin", "plugin-watch", "publish", "version"];
|
2019-10-14 16:00:50 +02:00
|
|
|
|
|
|
|
|
const args = process.argv.slice(2);
|
|
|
|
|
|
|
|
|
|
const commandIndex = args.findIndex(arg => {
|
|
|
|
|
return commands.includes(arg);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const command = commandIndex === -1 ? args[0] : args[commandIndex];
|
|
|
|
|
const nodeArgs = commandIndex > 0 ? args.slice(0, commandIndex) : [];
|
|
|
|
|
|
|
|
|
|
if (commands.includes(command)) {
|
|
|
|
|
const result = spawnSync(
|
|
|
|
|
"node",
|
2020-01-06 11:30:04 +01:00
|
|
|
nodeArgs.concat(require.resolve("../src/commands/" + command)).concat(args.slice(commandIndex + 1)),
|
2019-10-14 16:00:50 +02:00
|
|
|
{ stdio: "inherit" }
|
|
|
|
|
);
|
|
|
|
|
if (result.signal) {
|
|
|
|
|
if (result.signal === "SIGKILL") {
|
|
|
|
|
console.log(
|
|
|
|
|
"The build failed because the process exited too early. " +
|
2020-01-06 11:30:04 +01:00
|
|
|
"This probably means the system ran out of memory or someone called " +
|
|
|
|
|
"`kill -9` on the process."
|
2019-10-14 16:00:50 +02:00
|
|
|
);
|
|
|
|
|
} else if (result.signal === "SIGTERM") {
|
|
|
|
|
console.log(
|
|
|
|
|
"The build failed because the process exited too early. " +
|
2020-01-06 11:30:04 +01:00
|
|
|
"Someone might have called `kill` or `killall`, or the system could " +
|
|
|
|
|
"be shutting down."
|
2019-10-14 16:00:50 +02:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
process.exit(1);
|
|
|
|
|
}
|
|
|
|
|
process.exit(result.status);
|
|
|
|
|
} else {
|
2020-01-06 11:30:04 +01:00
|
|
|
console.log(`Unknown script "${command}".`);
|
|
|
|
|
console.log("Perhaps you need to update ui-scripts?");
|
2019-10-14 16:00:50 +02:00
|
|
|
}
|