mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
17 lines
402 B
JavaScript
17 lines
402 B
JavaScript
const { sync: spawnSync } = require('cross-spawn');
|
|
const path = require('path');
|
|
|
|
const CLI_PATH = path.join(__dirname, '..', 'bin');
|
|
|
|
/**
|
|
* Execute command
|
|
* @param {String[]} args - args to be passed in
|
|
* @param {Object} options - customize the behavior
|
|
*
|
|
* @returns {Object}
|
|
*/
|
|
const run = (args, options = {}) =>
|
|
spawnSync('node', [CLI_PATH].concat(args), options);
|
|
|
|
module.exports = run;
|