mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-30 00:46:29 +01:00
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
if (process.env.SKIP_PREPARE) {
|
|
console.log('Skipped "prepare" script');
|
|
} else {
|
|
const { execSync } = require("child_process");
|
|
const command = process.argv.slice(2).join(" ");
|
|
execSync(command, { stdio: "inherit" });
|
|
}
|