storybook/scripts/compile-js.js
Michael Shilman e5721bc82d
Merge pull request #5844 from storybooks/tech/no-copy-ts-into-dist
ADD parameters to compile-js to no longer copy .ts files into dist
2019-03-10 23:09:13 +08:00

53 lines
1.1 KiB
JavaScript

/* eslint-disable no-console */
const fs = require('fs');
const path = require('path');
const shell = require('shelljs');
function getCommand(watch) {
const babel = path.join(__dirname, '..', 'node_modules', '.bin', 'babel');
const args = [
'--ignore **/__mocks__/,**/tests/*,**/__tests__/,**/**.test.js,**/stories/,**/**.story.js,**/**.stories.js,**/__snapshots__',
'./src --out-dir ./dist',
'--copy-files',
'--ignore *.ts',
`--config-file ${path.resolve(__dirname, '../.babelrc.js')}`,
];
if (watch) {
args.push('-w');
}
return `${babel} ${args.join(' ')}`;
}
function handleExit(code, errorCallback) {
if (code !== 0) {
if (errorCallback && typeof errorCallback === 'function') {
errorCallback();
}
shell.exit(code);
}
}
function babelify(options = {}) {
const { watch = false, silent = true, errorCallback } = options;
if (!fs.existsSync('src')) {
if (!silent) {
console.log('No src dir');
}
return;
}
const command = getCommand(watch);
const { code } = shell.exec(command, { silent });
handleExit(code, errorCallback);
}
module.exports = {
babelify,
};