storybook/lib/ui/scripts/createDlls.js
Norbert de Langen 7c2ebbcfa9 REMOVE the core-js alias, though multiple core-js instances would be bad at best.
Maybe we can do something super smart and map the old to the new?
2019-04-27 21:40:02 +02:00

54 lines
1.2 KiB
JavaScript

import path from 'path';
import webpack from 'webpack';
import config from './webpackDllsConfig';
const resolveLocal = dir => path.join(__dirname, dir);
const webpackAsPromised = c =>
new Promise((res, rej) => {
webpack(c).run((err, stats) => {
if (err || stats.hasErrors() || stats.hasWarnings()) {
rej(stats);
return;
}
res(stats);
});
});
const run = () =>
webpackAsPromised(
config({
entry: {
storybook_ui: [
'@emotion/core',
'@emotion/styled',
'@storybook/addons',
'@storybook/api',
'@storybook/components',
'@storybook/core-events',
'@storybook/theming',
'airbnb-js-shims',
'emotion-theming',
'prop-types',
'react',
'react-dom',
'regenerator-runtime/runtime',
resolveLocal('../dist/index.js'),
],
},
})
);
run().then(
s => {
// eslint-disable-next-line no-console
console.log('success: ', s.toString());
process.exitCode = 0;
},
s => {
// eslint-disable-next-line no-console
console.error('failed: ', s.toString());
process.exitCode = 1;
}
);