storybook/packages/addons/.scripts/npm-prepublish.js
Norbert de Langen 8ca9ed694b MOVE to packages
2017-04-11 07:02:43 +02:00

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')