File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ rm -rf ./node_modules
7
7
npm install
8
8
9
9
echo " Building tests with TypeScript"
10
- npx tsc --project ./tsconfig.json
10
+ tsc --project ./tsconfig.json
11
11
12
12
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
14
14
15
15
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
17
17
18
18
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
20
20
21
21
echo " Building tests with Rollup"
22
22
rollup -c ./rollup.config.js
You can’t perform that action at this time.
0 commit comments