mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 11:01:07 +08:00
10 lines
274 B
JavaScript
Executable File
10 lines
274 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const majorNodeVersion = parseInt(process.version.toString().replace('v', '').split('.')[0], 10);
|
|
if (majorNodeVersion < 16) {
|
|
console.error('To run storybook you need to have node 16 or higher');
|
|
process.exit(1);
|
|
}
|
|
|
|
require('../dist/generate.js');
|