mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
7 lines
208 B
JavaScript
7 lines
208 B
JavaScript
var path = require('path');
|
|
var shell = require('shelljs');
|
|
var babel = ['node_modules', '.bin', 'babel'].join(path.sep);
|
|
|
|
shell.rm('-rf', 'dist')
|
|
shell.exec(babel + ' --ignore __tests__ src --out-dir dist')
|