Skip to content

Commit ed9944f

Browse files
committed
test: don't run test builders via npx
1 parent 911b3e5 commit ed9944f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/build-browser-tests.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ rm -rf ./node_modules
77
npm install
88

99
echo "Building tests with TypeScript"
10-
npx tsc --project ./tsconfig.json
10+
tsc --project ./tsconfig.json
1111

1212
echo "Building tests with Parcel"
13-
npx parcel build --no-cache --no-optimize ./test-builds/tsc/test/test-vectors/*.js --dist-dir ./test-builds/parcel --target parcel_tests
13+
parcel build --no-cache --no-optimize ./test-builds/tsc/test/test-vectors/*.js --dist-dir ./test-builds/parcel --target parcel_tests
1414

1515
echo "Building tests with Browserify"
16-
npx browserify ./test-builds/tsc/test/test-vectors/*.js > ./test-builds/browserify-build.js
16+
browserify ./test-builds/tsc/test/test-vectors/*.js > ./test-builds/browserify-build.js
1717

1818
echo "Building tests with webpack"
19-
npx webpack --mode development ./test-builds/tsc/test/test-vectors/*.js --output-path ./test-builds
19+
webpack --mode development ./test-builds/tsc/test/test-vectors/*.js --output-path ./test-builds
2020

2121
echo "Building tests with Rollup"
2222
rollup -c ./rollup.config.js

0 commit comments

Comments
 (0)