mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
Merge pull request #4649 from transitive-bullshit/bug/build-static-promise
Fix a bug with buildStaticStandalone resolving too early
This commit is contained in:
commit
c8bc4cc2ce
@ -41,26 +41,30 @@ export async function buildStaticStandalone(options) {
|
||||
}
|
||||
|
||||
// compile all resources with webpack and write them to the disk.
|
||||
logger.info('Building storybook ...');
|
||||
const webpackCb = (err, stats) => {
|
||||
if (err || stats.hasErrors()) {
|
||||
logger.error('Failed to build the storybook');
|
||||
// eslint-disable-next-line no-unused-expressions
|
||||
err && logger.error(err.message);
|
||||
// eslint-disable-next-line no-unused-expressions
|
||||
stats && stats.hasErrors() && stats.toJson().errors.forEach(e => logger.error(e));
|
||||
process.exitCode = 1;
|
||||
return new Promise((resolve, reject) => {
|
||||
const webpackCb = (err, stats) => {
|
||||
if (err || stats.hasErrors()) {
|
||||
logger.error('Failed to build the storybook');
|
||||
// eslint-disable-next-line no-unused-expressions
|
||||
err && logger.error(err.message);
|
||||
// eslint-disable-next-line no-unused-expressions
|
||||
stats && stats.hasErrors() && stats.toJson().errors.forEach(e => logger.error(e));
|
||||
process.exitCode = 1;
|
||||
return reject(err);
|
||||
}
|
||||
logger.info('Building storybook completed.');
|
||||
return resolve(stats);
|
||||
};
|
||||
|
||||
logger.info('Building storybook ...');
|
||||
const compiler = webpack(config);
|
||||
|
||||
if (watch) {
|
||||
compiler.watch({}, webpackCb);
|
||||
} else {
|
||||
compiler.run(webpackCb);
|
||||
}
|
||||
logger.info('Building storybook completed.');
|
||||
};
|
||||
|
||||
const compiler = webpack(config);
|
||||
|
||||
if (watch) {
|
||||
compiler.watch({}, webpackCb);
|
||||
} else {
|
||||
compiler.run(webpackCb);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export async function buildStatic({ packageJson, ...loadOptions }) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user