Merge pull request #9770 from storybookjs/fix/dll-generation

Build: Fix DLL generation race condition
This commit is contained in:
Norbert de Langen 2020-02-06 23:11:33 +01:00 committed by GitHub
commit 8a959de743
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -137,7 +137,9 @@ function run() {
option: '--dll',
command: () => {
log.info(prefix, 'dll');
spawn('lerna run createDlls --scope "@storybook/ui"');
setTimeout(() => {
spawn('lerna run createDlls --scope "@storybook/ui"');
}, 5000);
},
order: 3,
}),