File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
packages/integrations/scripts Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -9,17 +9,10 @@ for filepath in ./src/*; do
99 continue
1010 fi
1111
12- # run the build for each integration, pushing each build process into the background once it starts (that's what the
13- # trailing `&` does) so that we can start another one
14- echo -e " Building $js_version bundles for \` $file \` ..."
15- INTEGRATION_FILE=$file JS_VERSION=$js_version \
16- yarn --silent rollup -c rollup.config.js &&
17- echo -e " Finished building $js_version bundles for \` $file \` ." &
12+ # run the build for each integration
13+ INTEGRATION_FILE=$file JS_VERSION=$js_version yarn --silent rollup -c rollup.config.js
1814
1915 done
2016done
2117
22- # keep the process running until all backgrounded tasks have finished
23- wait
24-
2518echo -e " \nIntegration bundles built successfully"
You can’t perform that action at this time.
0 commit comments