Skip to content

Commit

Permalink
chore: fix TSC usage in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
crutchcorn committed Jan 9, 2024
1 parent 7afa021 commit 8d5f472
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions packages/react-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint --ext .ts,.tsx ./src",
"test:types:versions49": "../../node_modules/typescript49/bin/tsc --project tsconfig.legacy.json",
"test:types:versions50": "../../node_modules/typescript50/bin/tsc",
"test:types:versions51": "../../node_modules/typescript51/bin/tsc",
"test:types:versions49": "node ../../node_modules/typescript49/lib/tsc.js --project tsconfig.legacy.json",
"test:types:versions50": "node ../../node_modules/typescript50/lib/tsc.js",
"test:types:versions51": "node ../../node_modules/typescript51/lib/tsc.js",
"test:types:versions52": "tsc",
"test:types": "pnpm run \"/^test:types:versions.*/\"",
"test:lib": "vitest",
Expand Down
6 changes: 3 additions & 3 deletions packages/solid-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint --ext .ts,.tsx ./src",
"test:types:versions49": "../../node_modules/typescript49/bin/tsc --project tsconfig.legacy.json",
"test:types:versions50": "../../node_modules/typescript50/bin/tsc",
"test:types:versions51": "../../node_modules/typescript51/bin/tsc",
"test:types:versions49": "node ../../node_modules/typescript49/lib/tsc.js --project tsconfig.legacy.json",
"test:types:versions50": "node ../../node_modules/typescript50/lib/tsc.js",
"test:types:versions51": "node ../../node_modules/typescript51/lib/tsc.js",
"test:types:versions52": "tsc",
"test:types": "pnpm run \"/^test:types:versions.*/\"",
"test:lib": "vitest",
Expand Down
6 changes: 3 additions & 3 deletions packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint --ext .ts,.tsx ./src",
"test:types:versions49": "../../node_modules/typescript49/bin/tsc --project tsconfig.legacy.json",
"test:types:versions50": "../../node_modules/typescript50/bin/tsc",
"test:types:versions51": "../../node_modules/typescript51/bin/tsc",
"test:types:versions49": "node ../../node_modules/typescript49/lib/tsc.js --project tsconfig.legacy.json",
"test:types:versions50": "node ../../node_modules/typescript50/lib/tsc.js",
"test:types:versions51": "node ../../node_modules/typescript51/lib/tsc.js",
"test:types:versions52": "tsc",
"test:types": "pnpm run \"/^test:types:versions.*/\"",
"test:lib": "vitest",
Expand Down
6 changes: 3 additions & 3 deletions packages/vue-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@
"test:3": "vue-demi-switch 3 && vitest",
"clean": "rimraf ./dist && rimraf ./coverage",
"test:eslint": "eslint --ext .ts,.tsx ./src",
"test:types:versions49": "../../node_modules/typescript49/bin/tsc --project tsconfig.legacy.json",
"test:types:versions50": "../../node_modules/typescript50/bin/tsc",
"test:types:versions51": "../../node_modules/typescript51/bin/tsc",
"test:types:versions49": "node ../../node_modules/typescript49/lib/tsc.js --project tsconfig.legacy.json",
"test:types:versions50": "node ../../node_modules/typescript50/lib/tsc.js",
"test:types:versions51": "node ../../node_modules/typescript51/lib/tsc.js",
"test:types:versions52": "tsc",
"test:types": "pnpm run \"/^test:types:versions.*/\"",
"fixme:test:lib": "pnpm run test:2 && pnpm run test:2.7 && pnpm run test:3",
Expand Down

0 comments on commit 8d5f472

Please sign in to comment.