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
9
9
continue
10
10
fi
11
11
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
18
14
19
15
done
20
16
done
21
17
22
- # keep the process running until all backgrounded tasks have finished
23
- wait
24
-
25
18
echo -e " \nIntegration bundles built successfully"
You can’t perform that action at this time.
0 commit comments