Skip to content

Commit a041fa1

Browse files
committed
fix path in Windows
Otherwise it takes the single quote as part of the variable, resulting in Cannot read file 'D:\a\BitArray\BitArray\'.\tsconfig.esm.json' '
1 parent 9ad714d commit a041fa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"style:fix": "prettier {example,src,test}/**/*.ts --write",
3333
"style:check": "prettier {example,src,test}/**/*.ts --check",
3434
"test": "ts-node --esm --project ./tsconfig.esm.json ./test/index.ts",
35-
"test:ci": "set TS_NODE_PROJECT='./tsconfig.esm.json' && node --no-warnings=ExperimentalWarning --loader ts-node/esm ./test/index.ts"
35+
"test:ci": "set TS_NODE_PROJECT=./tsconfig.esm.json && node --no-warnings=ExperimentalWarning --loader ts-node/esm ./test/index.ts"
3636
},
3737
"author": "swiing",
3838
"license": "MIT",

0 commit comments

Comments
 (0)