Skip to content

Commit 8253a80

Browse files
authoredJun 23, 2024··
ci: Add TS version tests (#7605)
* Simplify implementation * Add to remaining packages
1 parent 32bce35 commit 8253a80

File tree

43 files changed

+171
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+171
-110
lines changed
 

‎package.json

+3
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@
7878
"solid-js": "^1.8.17",
7979
"tsup": "^8.0.2",
8080
"typescript": "5.3.3",
81+
"typescript50": "npm:typescript@5.0",
82+
"typescript51": "npm:typescript@5.1",
83+
"typescript52": "npm:typescript@5.2",
8184
"vite": "^5.2.11",
8285
"vitest": "^1.6.0"
8386
},

‎packages/angular-query-devtools-experimental/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@
2222
"scripts": {
2323
"clean": "rimraf ./build && rimraf ./coverage",
2424
"test:eslint": "eslint --ext .ts,.tsx ./src",
25-
"test:types": "tsc",
25+
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
26+
"test:types:ts51": "node ../../node_modules/typescript51/lib/tsc.js",
27+
"test:types:ts52": "node ../../node_modules/typescript52/lib/tsc.js",
28+
"test:types:ts53": "tsc",
2629
"test:build": "publint --strict",
2730
"test:attw": "attw --pack",
2831
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json && rimraf ./build/package.json"

0 commit comments

Comments
 (0)
Please sign in to comment.