File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ unset npm_config_prefix
1616echo " Handlebars should be able to run in various versions of NodeJS"
1717for node_version_to_test in 12 14 16 18; do
1818
19- rm target node_modules package-lock.json -rf
19+ rm -rf target node_modules package-lock.json
2020 mkdir target
2121
2222 nvm install " $node_version_to_test "
Original file line number Diff line number Diff line change 33set -e
44
55# Cleanup: package-lock and "npm ci" is not working with local dependencies
6- rm dist package-lock.json -rf
6+ rm -rf dist package-lock.json
77npm install
88npm run build
99
1010node dist/bundle.js
11- echo " Success"
11+ echo " Success"
Original file line number Diff line number Diff line change 33set -e
44
55# Cleanup: package-lock and "npm ci" is not working with local dependencies
6- rm dist package-lock.json -rf
6+ rm -rf dist package-lock.json
77npm install --legacy-peer-deps
88npm run build
99
@@ -13,4 +13,4 @@ for i in dist/*-test.js ; do
1313 echo " ----------------------"
1414 node " $i "
1515 echo " Success"
16- done
16+ done
Original file line number Diff line number Diff line change 33set -e
44
55# Cleanup: package-lock and "npm ci" is not working with local dependencies
6- rm dist package-lock.json -rf
6+ rm -rf dist package-lock.json
77npm install --legacy-peer-deps
88npm run build
99
@@ -13,4 +13,4 @@ for i in dist/*-test.js ; do
1313 echo " ----------------------"
1414 node " $i "
1515 echo " Success"
16- done
16+ done
You can’t perform that action at this time.
0 commit comments