mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
66 lines
1.4 KiB
JavaScript
Executable File
66 lines
1.4 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const { spawn } = require('child_process');
|
|
const { join } = require('path');
|
|
const { existsSync } = require('fs');
|
|
|
|
const checkDependencies = async () => {
|
|
const scriptsPath = join(__dirname);
|
|
const codePath = join(__dirname, '..', 'code');
|
|
|
|
const tasks = [];
|
|
|
|
if (!existsSync(join(scriptsPath, 'node_modules'))) {
|
|
tasks.push(
|
|
spawn('yarn', ['install'], {
|
|
cwd: scriptsPath,
|
|
stdio: ['inherit', 'inherit', 'inherit'],
|
|
})
|
|
);
|
|
}
|
|
if (!existsSync(join(codePath, 'node_modules'))) {
|
|
tasks.push(
|
|
spawn('yarn', ['install'], {
|
|
cwd: codePath,
|
|
stdio: ['inherit', 'inherit', 'inherit'],
|
|
})
|
|
);
|
|
}
|
|
|
|
if (tasks.length > 0) {
|
|
console.log('installing dependencies');
|
|
|
|
await Promise.all(
|
|
tasks.map(
|
|
(t) =>
|
|
new Promise((res, rej) => {
|
|
t.on('exit', (code) => {
|
|
if (code !== 0) {
|
|
rej();
|
|
} else {
|
|
res();
|
|
}
|
|
});
|
|
})
|
|
)
|
|
).catch(() => {
|
|
tasks.forEach((t) => t.kill());
|
|
throw new Error('Failed to install dependencies');
|
|
});
|
|
|
|
// give the filesystem some time
|
|
await new Promise((res, rej) => {
|
|
setTimeout(res, 1000);
|
|
});
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
checkDependencies,
|
|
};
|
|
|
|
checkDependencies().catch((e) => {
|
|
console.error(e);
|
|
process.exit(1);
|
|
});
|