mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:31:08 +08:00
- This ensures a single version - This adds a good place to add themes - Addons can take a dependency on something storybook - We could migrate to another styling lib without asking all users to migrate with us
52 lines
1.1 KiB
JavaScript
52 lines
1.1 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: [
|
|
'@storybook/addons',
|
|
'@storybook/core-events',
|
|
'@storybook/theming',
|
|
'@storybook/components',
|
|
'airbnb-js-shims',
|
|
'core-js/es6/symbol',
|
|
'core-js/fn/array/iterator',
|
|
'prop-types',
|
|
'react-dom',
|
|
'react',
|
|
'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;
|
|
}
|
|
);
|