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; } );