mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
72 lines
1.7 KiB
JavaScript
72 lines
1.7 KiB
JavaScript
/**
|
|
* This file needs to be run before any other script to ensure dependencies are installed
|
|
* Therefore, we cannot transform this file to Typescript, because it would require esbuild to be installed
|
|
*/
|
|
import { spawn } from 'child_process';
|
|
import { join } from 'path';
|
|
import { existsSync } from 'fs';
|
|
import * as url from 'url';
|
|
|
|
const logger = console;
|
|
|
|
const filename = url.fileURLToPath(import.meta.url);
|
|
const dirname = url.fileURLToPath(new URL('.', import.meta.url));
|
|
|
|
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,
|
|
shell: true,
|
|
stdio: ['inherit', 'inherit', 'inherit'],
|
|
})
|
|
);
|
|
}
|
|
if (!existsSync(join(codePath, 'node_modules'))) {
|
|
tasks.push(
|
|
spawn('yarn', ['install'], {
|
|
cwd: codePath,
|
|
shell: true,
|
|
stdio: ['inherit', 'inherit', 'inherit'],
|
|
})
|
|
);
|
|
}
|
|
|
|
if (tasks.length > 0) {
|
|
logger.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) => {
|
|
setTimeout(res, 1000);
|
|
});
|
|
}
|
|
};
|
|
|
|
checkDependencies().catch((e) => {
|
|
console.error(e);
|
|
process.exit(1);
|
|
});
|