mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
Changelog formatting Bump @storybook/addon-actions from 4.0.0 to 4.0.8 in /docs Bumps [@storybook/addon-actions](https://github.com/storybooks/storybook) from 4.0.0 to 4.0.8. - [Release notes](https://github.com/storybooks/storybook/releases) - [Changelog](https://github.com/storybooks/storybook/blob/next/CHANGELOG.md) - [Commits](https://github.com/storybooks/storybook/compare/v4.0.0...v4.0.8) Signed-off-by: dependabot[bot] <support@dependabot.com> update `npm install` to match current requirements Add TypeScript support for react-scripts 4.1.0-alpha.5 changelog v4.1.0-alpha.5 4.1.0-alpha.6 changelog v4.1.0-alpha.6 Reduce jest image size 4.1.0-alpha.7 changelog v4.1.0-alpha.7 ADD webpack stats generation for debugging Revert "Update LICENSE" This reverts commit 69fc0517074634dd792f4b10d968a6c3a8244842. Don't change rootElement when received node is the same Merge pull request #4830 from aliceyoung9/patch-1 little documentation fix FIX linting
50 lines
1.1 KiB
JavaScript
50 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',
|
|
`--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,
|
|
};
|