Skip to content

Commit

Permalink
build: fix npm scripts on windows (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens authored Aug 4, 2024
1 parent 78ec0b6 commit 52fb2b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@
"format": "cross-env prettier --write \"./**/*.{json,yml,md,ts}\"",
"lint": "cross-env eslint .",
"test": "cross-env npm run test:js && cross-env npm run test:types",
"test:js": "cross-env TSX_TSCONFIG_PATH=tsconfig.test.json NODE_OPTIONS='--import tsx' c8 mocha 'test/**/*.spec.ts'",
"test:types": "cross-env npm run build && cross-env tsd -f 'test/**/*.test-d.ts'",
"test:js": "cross-env TSX_TSCONFIG_PATH=tsconfig.test.json NODE_OPTIONS=\"--import tsx\" c8 mocha \"test/**/*.spec.ts\"",
"test:types": "cross-env npm run build && cross-env tsd -f \"test/**/*.test-d.ts\"",
"typecheck": "tsc -p tsconfig.build.json --noEmit"
},
"devDependencies": {
Expand Down

0 comments on commit 52fb2b4

Please sign in to comment.