mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 01:01:05 +08:00
53 lines
1.2 KiB
JavaScript
53 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_docs: [
|
|
'@emotion/core',
|
|
'@emotion/styled',
|
|
'@storybook/addons',
|
|
'@storybook/api',
|
|
'@storybook/components',
|
|
'@storybook/core-events',
|
|
'@storybook/theming',
|
|
'airbnb-js-shims',
|
|
'emotion-theming',
|
|
'react',
|
|
'react-dom',
|
|
'regenerator-runtime/runtime',
|
|
resolveLocal('../dist/public_api.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;
|
|
}
|
|
);
|