Skip to content

Commit 2585fdc

Browse files
committed
Use @typescript/native-preview!
Signed-off-by: Sora Morimoto <[email protected]>
1 parent dec6499 commit 2585fdc

File tree

9 files changed

+1234
-721
lines changed

9 files changed

+1234
-721
lines changed

dist/index.cjs

Lines changed: 548 additions & 322 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/post/index.cjs

Lines changed: 548 additions & 322 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
},
1616
"devDependencies": {
1717
"@biomejs/biome": "2.3.10",
18-
"turbo": "2.7.1"
18+
"turbo": "2.7.2"
1919
},
2020
"packageManager": "[email protected]"
2121
}

packages/analysis/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"build": "esbuild --bundle --format=cjs --outfile=../../analysis/dist/index.cjs --platform=node --target=node24 src/index.ts",
8-
"typecheck": "tsc"
8+
"typecheck": "tsgo"
99
},
1010
"dependencies": {
1111
"@actions/core": "2.0.1",
@@ -20,7 +20,7 @@
2020
"@tsconfig/node24": "24.0.3",
2121
"@tsconfig/strictest": "2.0.8",
2222
"@types/node": "24.10.4",
23-
"esbuild": "0.27.2",
24-
"typescript": "5.9.3"
23+
"@typescript/native-preview": "7.0.0-dev.20251223.1",
24+
"esbuild": "0.27.2"
2525
}
2626
}

packages/lint-doc/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"build": "esbuild --bundle --format=cjs --outfile=../../lint-doc/dist/index.cjs --platform=node --target=node24 src/index.ts",
8-
"typecheck": "tsc"
8+
"typecheck": "tsgo"
99
},
1010
"dependencies": {
1111
"@actions/core": "2.0.1",
@@ -15,7 +15,7 @@
1515
"@tsconfig/node24": "24.0.3",
1616
"@tsconfig/strictest": "2.0.8",
1717
"@types/node": "24.10.4",
18-
"esbuild": "0.27.2",
19-
"typescript": "5.9.3"
18+
"@typescript/native-preview": "7.0.0-dev.20251223.1",
19+
"esbuild": "0.27.2"
2020
}
2121
}

packages/lint-fmt/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"build": "esbuild --bundle --format=cjs --outfile=../../lint-fmt/dist/index.cjs --platform=node --target=node24 src/index.ts",
8-
"typecheck": "tsc"
8+
"typecheck": "tsgo"
99
},
1010
"dependencies": {
1111
"@actions/core": "2.0.1",
@@ -15,7 +15,7 @@
1515
"@tsconfig/node24": "24.0.3",
1616
"@tsconfig/strictest": "2.0.8",
1717
"@types/node": "24.10.4",
18-
"esbuild": "0.27.2",
19-
"typescript": "5.9.3"
18+
"@typescript/native-preview": "7.0.0-dev.20251223.1",
19+
"esbuild": "0.27.2"
2020
}
2121
}

packages/lint-opam/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"build": "esbuild --bundle --format=cjs --outfile=../../lint-opam/dist/index.cjs --platform=node --target=node24 src/index.ts",
8-
"typecheck": "tsc"
8+
"typecheck": "tsgo"
99
},
1010
"dependencies": {
1111
"@actions/core": "2.0.1",
@@ -15,7 +15,7 @@
1515
"@tsconfig/node24": "24.0.3",
1616
"@tsconfig/strictest": "2.0.8",
1717
"@types/node": "24.10.4",
18-
"esbuild": "0.27.2",
19-
"typescript": "5.9.3"
18+
"@typescript/native-preview": "7.0.0-dev.20251223.1",
19+
"esbuild": "0.27.2"
2020
}
2121
}

packages/setup-ocaml/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"scripts": {
77
"build:main": "esbuild --bundle --format=cjs --outfile=../../dist/index.cjs --platform=node --target=node24 src/index.ts",
88
"build:post": "esbuild --bundle --format=cjs --outfile=../../dist/post/index.cjs --platform=node --target=node24 src/post.ts",
9-
"typecheck": "tsc"
9+
"typecheck": "tsgo"
1010
},
1111
"dependencies": {
1212
"@actions/cache": "5.0.1",
@@ -21,15 +21,15 @@
2121
"cheerio": "1.1.2",
2222
"exponential-backoff": "3.1.3",
2323
"semver": "7.7.3",
24-
"systeminformation": "5.27.14",
24+
"systeminformation": "5.28.0",
2525
"yaml": "2.8.2"
2626
},
2727
"devDependencies": {
2828
"@tsconfig/node24": "24.0.3",
2929
"@tsconfig/strictest": "2.0.8",
3030
"@types/node": "24.10.4",
3131
"@types/semver": "7.7.1",
32-
"esbuild": "0.27.2",
33-
"typescript": "5.9.3"
32+
"@typescript/native-preview": "7.0.0-dev.20251223.1",
33+
"esbuild": "0.27.2"
3434
}
3535
}

yarn.lock

Lines changed: 121 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -608,10 +608,10 @@ __metadata:
608608
"@tsconfig/node24": "npm:24.0.3"
609609
"@tsconfig/strictest": "npm:2.0.8"
610610
"@types/node": "npm:24.10.4"
611+
"@typescript/native-preview": "npm:7.0.0-dev.20251223.1"
611612
esbuild: "npm:0.27.2"
612613
packageurl-js: "npm:2.0.1"
613614
strip-ansi: "npm:7.1.2"
614-
typescript: "npm:5.9.3"
615615
languageName: unknown
616616
linkType: soft
617617

@@ -624,8 +624,8 @@ __metadata:
624624
"@tsconfig/node24": "npm:24.0.3"
625625
"@tsconfig/strictest": "npm:2.0.8"
626626
"@types/node": "npm:24.10.4"
627+
"@typescript/native-preview": "npm:7.0.0-dev.20251223.1"
627628
esbuild: "npm:0.27.2"
628-
typescript: "npm:5.9.3"
629629
languageName: unknown
630630
linkType: soft
631631

@@ -638,8 +638,8 @@ __metadata:
638638
"@tsconfig/node24": "npm:24.0.3"
639639
"@tsconfig/strictest": "npm:2.0.8"
640640
"@types/node": "npm:24.10.4"
641+
"@typescript/native-preview": "npm:7.0.0-dev.20251223.1"
641642
esbuild: "npm:0.27.2"
642-
typescript: "npm:5.9.3"
643643
languageName: unknown
644644
linkType: soft
645645

@@ -652,8 +652,8 @@ __metadata:
652652
"@tsconfig/node24": "npm:24.0.3"
653653
"@tsconfig/strictest": "npm:2.0.8"
654654
"@types/node": "npm:24.10.4"
655+
"@typescript/native-preview": "npm:7.0.0-dev.20251223.1"
655656
esbuild: "npm:0.27.2"
656-
typescript: "npm:5.9.3"
657657
languageName: unknown
658658
linkType: soft
659659

@@ -674,12 +674,12 @@ __metadata:
674674
"@tsconfig/strictest": "npm:2.0.8"
675675
"@types/node": "npm:24.10.4"
676676
"@types/semver": "npm:7.7.1"
677+
"@typescript/native-preview": "npm:7.0.0-dev.20251223.1"
677678
cheerio: "npm:1.1.2"
678679
esbuild: "npm:0.27.2"
679680
exponential-backoff: "npm:3.1.3"
680681
semver: "npm:7.7.3"
681-
systeminformation: "npm:5.27.14"
682-
typescript: "npm:5.9.3"
682+
systeminformation: "npm:5.28.0"
683683
yaml: "npm:2.8.2"
684684
languageName: unknown
685685
linkType: soft
@@ -920,6 +920,87 @@ __metadata:
920920
languageName: node
921921
linkType: hard
922922

923+
"@typescript/native-preview-darwin-arm64@npm:7.0.0-dev.20251223.1":
924+
version: 7.0.0-dev.20251223.1
925+
resolution: "@typescript/native-preview-darwin-arm64@npm:7.0.0-dev.20251223.1"
926+
conditions: os=darwin & cpu=arm64
927+
languageName: node
928+
linkType: hard
929+
930+
"@typescript/native-preview-darwin-x64@npm:7.0.0-dev.20251223.1":
931+
version: 7.0.0-dev.20251223.1
932+
resolution: "@typescript/native-preview-darwin-x64@npm:7.0.0-dev.20251223.1"
933+
conditions: os=darwin & cpu=x64
934+
languageName: node
935+
linkType: hard
936+
937+
"@typescript/native-preview-linux-arm64@npm:7.0.0-dev.20251223.1":
938+
version: 7.0.0-dev.20251223.1
939+
resolution: "@typescript/native-preview-linux-arm64@npm:7.0.0-dev.20251223.1"
940+
conditions: os=linux & cpu=arm64
941+
languageName: node
942+
linkType: hard
943+
944+
"@typescript/native-preview-linux-arm@npm:7.0.0-dev.20251223.1":
945+
version: 7.0.0-dev.20251223.1
946+
resolution: "@typescript/native-preview-linux-arm@npm:7.0.0-dev.20251223.1"
947+
conditions: os=linux & cpu=arm
948+
languageName: node
949+
linkType: hard
950+
951+
"@typescript/native-preview-linux-x64@npm:7.0.0-dev.20251223.1":
952+
version: 7.0.0-dev.20251223.1
953+
resolution: "@typescript/native-preview-linux-x64@npm:7.0.0-dev.20251223.1"
954+
conditions: os=linux & cpu=x64
955+
languageName: node
956+
linkType: hard
957+
958+
"@typescript/native-preview-win32-arm64@npm:7.0.0-dev.20251223.1":
959+
version: 7.0.0-dev.20251223.1
960+
resolution: "@typescript/native-preview-win32-arm64@npm:7.0.0-dev.20251223.1"
961+
conditions: os=win32 & cpu=arm64
962+
languageName: node
963+
linkType: hard
964+
965+
"@typescript/native-preview-win32-x64@npm:7.0.0-dev.20251223.1":
966+
version: 7.0.0-dev.20251223.1
967+
resolution: "@typescript/native-preview-win32-x64@npm:7.0.0-dev.20251223.1"
968+
conditions: os=win32 & cpu=x64
969+
languageName: node
970+
linkType: hard
971+
972+
"@typescript/native-preview@npm:7.0.0-dev.20251223.1":
973+
version: 7.0.0-dev.20251223.1
974+
resolution: "@typescript/native-preview@npm:7.0.0-dev.20251223.1"
975+
dependencies:
976+
"@typescript/native-preview-darwin-arm64": "npm:7.0.0-dev.20251223.1"
977+
"@typescript/native-preview-darwin-x64": "npm:7.0.0-dev.20251223.1"
978+
"@typescript/native-preview-linux-arm": "npm:7.0.0-dev.20251223.1"
979+
"@typescript/native-preview-linux-arm64": "npm:7.0.0-dev.20251223.1"
980+
"@typescript/native-preview-linux-x64": "npm:7.0.0-dev.20251223.1"
981+
"@typescript/native-preview-win32-arm64": "npm:7.0.0-dev.20251223.1"
982+
"@typescript/native-preview-win32-x64": "npm:7.0.0-dev.20251223.1"
983+
dependenciesMeta:
984+
"@typescript/native-preview-darwin-arm64":
985+
optional: true
986+
"@typescript/native-preview-darwin-x64":
987+
optional: true
988+
"@typescript/native-preview-linux-arm":
989+
optional: true
990+
"@typescript/native-preview-linux-arm64":
991+
optional: true
992+
"@typescript/native-preview-linux-x64":
993+
optional: true
994+
"@typescript/native-preview-win32-arm64":
995+
optional: true
996+
"@typescript/native-preview-win32-x64":
997+
optional: true
998+
bin:
999+
tsgo: bin/tsgo.js
1000+
checksum: 10c0/e7ce674c99fb045d72318e5a9d6d16a0f60e11e7315105197a5115f433ac86ee6a583899f0e54c8022fd799f58dc546fa1d0cd730dd6fe3de1f22751fe281bb1
1001+
languageName: node
1002+
linkType: hard
1003+
9231004
"@typespec/ts-http-runtime@npm:^0.3.0":
9241005
version: 0.3.2
9251006
resolution: "@typespec/ts-http-runtime@npm:0.3.2"
@@ -1385,7 +1466,7 @@ __metadata:
13851466
resolution: "setup-ocaml@workspace:."
13861467
dependencies:
13871468
"@biomejs/biome": "npm:2.3.10"
1388-
turbo: "npm:2.7.1"
1469+
turbo: "npm:2.7.2"
13891470
languageName: unknown
13901471
linkType: soft
13911472

@@ -1405,12 +1486,12 @@ __metadata:
14051486
languageName: node
14061487
linkType: hard
14071488

1408-
"systeminformation@npm:5.27.14":
1409-
version: 5.27.14
1410-
resolution: "systeminformation@npm:5.27.14"
1489+
"systeminformation@npm:5.28.0":
1490+
version: 5.28.0
1491+
resolution: "systeminformation@npm:5.28.0"
14111492
bin:
14121493
systeminformation: lib/cli.js
1413-
checksum: 10c0/dd2887c19d46ae378cd916a25a6e8e323a86e5c20f456c724b6b954e8f0b78c0bd536e6a988482b1b70ce712c07c4146a471a712a650eefae13312c6ca06aebf
1494+
checksum: 10c0/6d1ae32cbcd8dc20d71eaaba370bec67f86a047cc9529c7bd5341d52a90f321fc333c059e0eebc693705990a89d447596165568befc452dab3c26b23114a3498
14141495
conditions: (os=darwin | os=linux | os=win32 | os=freebsd | os=openbsd | os=netbsd | os=sunos | os=android)
14151496
languageName: node
14161497
linkType: hard
@@ -1429,58 +1510,58 @@ __metadata:
14291510
languageName: node
14301511
linkType: hard
14311512

1432-
"turbo-darwin-64@npm:2.7.1":
1433-
version: 2.7.1
1434-
resolution: "turbo-darwin-64@npm:2.7.1"
1513+
"turbo-darwin-64@npm:2.7.2":
1514+
version: 2.7.2
1515+
resolution: "turbo-darwin-64@npm:2.7.2"
14351516
conditions: os=darwin & cpu=x64
14361517
languageName: node
14371518
linkType: hard
14381519

1439-
"turbo-darwin-arm64@npm:2.7.1":
1440-
version: 2.7.1
1441-
resolution: "turbo-darwin-arm64@npm:2.7.1"
1520+
"turbo-darwin-arm64@npm:2.7.2":
1521+
version: 2.7.2
1522+
resolution: "turbo-darwin-arm64@npm:2.7.2"
14421523
conditions: os=darwin & cpu=arm64
14431524
languageName: node
14441525
linkType: hard
14451526

1446-
"turbo-linux-64@npm:2.7.1":
1447-
version: 2.7.1
1448-
resolution: "turbo-linux-64@npm:2.7.1"
1527+
"turbo-linux-64@npm:2.7.2":
1528+
version: 2.7.2
1529+
resolution: "turbo-linux-64@npm:2.7.2"
14491530
conditions: os=linux & cpu=x64
14501531
languageName: node
14511532
linkType: hard
14521533

1453-
"turbo-linux-arm64@npm:2.7.1":
1454-
version: 2.7.1
1455-
resolution: "turbo-linux-arm64@npm:2.7.1"
1534+
"turbo-linux-arm64@npm:2.7.2":
1535+
version: 2.7.2
1536+
resolution: "turbo-linux-arm64@npm:2.7.2"
14561537
conditions: os=linux & cpu=arm64
14571538
languageName: node
14581539
linkType: hard
14591540

1460-
"turbo-windows-64@npm:2.7.1":
1461-
version: 2.7.1
1462-
resolution: "turbo-windows-64@npm:2.7.1"
1541+
"turbo-windows-64@npm:2.7.2":
1542+
version: 2.7.2
1543+
resolution: "turbo-windows-64@npm:2.7.2"
14631544
conditions: os=win32 & cpu=x64
14641545
languageName: node
14651546
linkType: hard
14661547

1467-
"turbo-windows-arm64@npm:2.7.1":
1468-
version: 2.7.1
1469-
resolution: "turbo-windows-arm64@npm:2.7.1"
1548+
"turbo-windows-arm64@npm:2.7.2":
1549+
version: 2.7.2
1550+
resolution: "turbo-windows-arm64@npm:2.7.2"
14701551
conditions: os=win32 & cpu=arm64
14711552
languageName: node
14721553
linkType: hard
14731554

1474-
"turbo@npm:2.7.1":
1475-
version: 2.7.1
1476-
resolution: "turbo@npm:2.7.1"
1477-
dependencies:
1478-
turbo-darwin-64: "npm:2.7.1"
1479-
turbo-darwin-arm64: "npm:2.7.1"
1480-
turbo-linux-64: "npm:2.7.1"
1481-
turbo-linux-arm64: "npm:2.7.1"
1482-
turbo-windows-64: "npm:2.7.1"
1483-
turbo-windows-arm64: "npm:2.7.1"
1555+
"turbo@npm:2.7.2":
1556+
version: 2.7.2
1557+
resolution: "turbo@npm:2.7.2"
1558+
dependencies:
1559+
turbo-darwin-64: "npm:2.7.2"
1560+
turbo-darwin-arm64: "npm:2.7.2"
1561+
turbo-linux-64: "npm:2.7.2"
1562+
turbo-linux-arm64: "npm:2.7.2"
1563+
turbo-windows-64: "npm:2.7.2"
1564+
turbo-windows-arm64: "npm:2.7.2"
14841565
dependenciesMeta:
14851566
turbo-darwin-64:
14861567
optional: true
@@ -1496,27 +1577,7 @@ __metadata:
14961577
optional: true
14971578
bin:
14981579
turbo: bin/turbo
1499-
checksum: 10c0/a658bceebf60bb00350808958b9b454a6547683ed3c43f0fed205c0f8730affb0b63b25d99b894575141ac98cf9c385acb2aa2954c4c6c3e8bda2c8071c4049a
1500-
languageName: node
1501-
linkType: hard
1502-
1503-
"typescript@npm:5.9.3":
1504-
version: 5.9.3
1505-
resolution: "typescript@npm:5.9.3"
1506-
bin:
1507-
tsc: bin/tsc
1508-
tsserver: bin/tsserver
1509-
checksum: 10c0/6bd7552ce39f97e711db5aa048f6f9995b53f1c52f7d8667c1abdc1700c68a76a308f579cd309ce6b53646deb4e9a1be7c813a93baaf0a28ccd536a30270e1c5
1510-
languageName: node
1511-
linkType: hard
1512-
1513-
"typescript@patch:typescript@npm%3A5.9.3#optional!builtin<compat/typescript>":
1514-
version: 5.9.3
1515-
resolution: "typescript@patch:typescript@npm%3A5.9.3#optional!builtin<compat/typescript>::version=5.9.3&hash=5786d5"
1516-
bin:
1517-
tsc: bin/tsc
1518-
tsserver: bin/tsserver
1519-
checksum: 10c0/ad09fdf7a756814dce65bc60c1657b40d44451346858eea230e10f2e95a289d9183b6e32e5c11e95acc0ccc214b4f36289dcad4bf1886b0adb84d711d336a430
1580+
checksum: 10c0/390937a32070ac52120af56705006e831de2edf8e22a2b0146006d07740cd413b3a36335339e7617b57cf74b008f4b15931cf56e1c7c0c03808f028ed937c4de
15201581
languageName: node
15211582
linkType: hard
15221583

0 commit comments

Comments
 (0)