Skip to content

Commit

Permalink
146: package.json: cross-env for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kaelzhang committed Jan 13, 2025
1 parent e2ff749 commit cca1fef
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"build": "babel -o legacy.js index.js",
"test:lint": "eslint .",
"test:ts": "ts-node ./test/ts/simple.ts",
"test:ts:16": "TS_NODE_COMPILER_OPTIONS='{\"moduleResolution\": \"Node16\", \"module\": \"Node16\"}' ts-node ./test/ts/simple.ts",
"test:cjs:16": "TS_NODE_COMPILER_OPTIONS='{\"moduleResolution\": \"Node16\", \"module\": \"Node16\"}' ts-node ./test/ts/simple.cjs",
"test:mjs:16": "TS_NODE_COMPILER_OPTIONS='{\"moduleResolution\": \"Node16\", \"module\": \"Node16\"}' ts-node ./test/ts/simple.mjs",
"test:ts:16": "cross-env TS_NODE_COMPILER_OPTIONS='{\"moduleResolution\": \"Node16\", \"module\": \"Node16\"}' ts-node ./test/ts/simple.ts",
"test:cjs:16": "cross-env TS_NODE_COMPILER_OPTIONS='{\"moduleResolution\": \"Node16\", \"module\": \"Node16\"}' ts-node ./test/ts/simple.cjs",
"test:mjs:16": "cross-env TS_NODE_COMPILER_OPTIONS='{\"moduleResolution\": \"Node16\", \"module\": \"Node16\"}' ts-node ./test/ts/simple.mjs",
"tap": "tap --reporter classic",
"test:git": "npm run tap test/git-check-ignore.test.js",
"test:ignore": "npm run tap test/ignore.test.js",
Expand Down Expand Up @@ -59,6 +59,7 @@
"@babel/preset-env": "^7.22.9",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"eslint": "^8.46.0",
"eslint-config-ostai": "^3.0.0",
Expand Down

0 comments on commit cca1fef

Please sign in to comment.