Skip to content

Commit 0f6b0ec

Browse files
committed
Remove useless arguments in npm scripts.
1 parent 69d53e4 commit 0f6b0ec

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

jsds/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
ds.mjs
22
ds.wasm
3+
ds.d.ts

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"scripts": {
3-
"emcc": "emcc jsds/ds.cc src/*.cc -Iinclude -lembind -o jsds/ds.mjs -O3 -ffast-math -flto -s ALLOW_MEMORY_GROWTH=1 -s MODULARIZE=1 -s EXPORT_ES6=1 -s SINGLE_FILE=1",
3+
"emcc": "emcc jsds/ds.cc src/*.cc -Iinclude -lembind -o jsds/ds.mjs --emit-tsd ds.d.ts -O3 -ffast-math -flto -s ALLOW_MEMORY_GROWTH=1 -s SINGLE_FILE=1",
44
"build": "npx rollup --config",
5-
"test": "cross-env NODE_OPTIONS='$NODE_OPTIONS --experimental-vm-modules' jest --testMatch '**/test_*.mjs' --transform '{}' --coverage",
5+
"test": "cross-env NODE_OPTIONS='$NODE_OPTIONS --experimental-vm-modules' jest --testMatch '**/test_*.mjs' --coverage",
66
"all": "run-s emcc build test"
77
},
88
"devDependencies": {

0 commit comments

Comments
 (0)