Skip to content

Commit

Permalink
Merge pull request #9770 from storybookjs/fix/dll-generation
Browse files Browse the repository at this point in the history
Build: Fix DLL generation race condition
  • Loading branch information
ndelangen committed Feb 6, 2020
2 parents 3a1b46d + 0c5066a commit 8a959de
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/bootstrap.js
Expand Up @@ -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,
}),
Expand Down

0 comments on commit 8a959de

Please sign in to comment.