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 authored and shilman committed Feb 12, 2020
1 parent 4c525e1 commit 1a79ec4
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 1a79ec4

Please sign in to comment.