@typescript/native-preview 7.0.0-dev.20260626.1 → 7.0.0-dev.20260627.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,28 +1,28 @@
1
- #!/usr/bin/env node
2
-
3
- import getExePath from "#getExePath";
4
- import { execFileSync } from "node:child_process";
5
-
6
- const exe = getExePath();
7
-
8
- if (process.platform !== "win32" && typeof process.execve === "function") {
9
- // > v22.15.0
10
- try {
11
- process.execve(exe, [exe, ...process.argv.slice(2)]);
12
- }
13
- catch {
14
- // may not be available, ignore the error and fallback
15
- }
16
- }
17
-
18
- try {
19
- execFileSync(exe, process.argv.slice(2), { stdio: "inherit" });
20
- }
21
- catch (e) {
22
- if (e.status) {
23
- process.exitCode = e.status;
24
- }
25
- else {
26
- throw e;
27
- }
28
- }
1
+ #!/usr/bin/env node
2
+
3
+ import getExePath from "#getExePath";
4
+ import { execFileSync } from "node:child_process";
5
+
6
+ const exe = getExePath();
7
+
8
+ if (process.platform !== "win32" && typeof process.execve === "function") {
9
+ // > v22.15.0
10
+ try {
11
+ process.execve(exe, [exe, ...process.argv.slice(2)]);
12
+ }
13
+ catch {
14
+ // may not be available, ignore the error and fallback
15
+ }
16
+ }
17
+
18
+ try {
19
+ execFileSync(exe, process.argv.slice(2), { stdio: "inherit" });
20
+ }
21
+ catch (e) {
22
+ if (e.status) {
23
+ process.exitCode = e.status;
24
+ }
25
+ else {
26
+ throw e;
27
+ }
28
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typescript/native-preview",
3
- "version": "7.0.0-dev.20260626.1",
3
+ "version": "7.0.0-dev.20260627.2",
4
4
  "license": "Apache-2.0",
5
5
  "author": "Microsoft Corp.",
6
6
  "homepage": "https://www.typescriptlang.org/",
@@ -33,7 +33,7 @@
33
33
  "NOTICE.txt"
34
34
  ],
35
35
  "bin": {
36
- "tsgo": "./bin/tsgo.js"
36
+ "tsgo": "./bin/tsgo"
37
37
  },
38
38
  "exports": {
39
39
  "./package.json": "./package.json",
@@ -74,22 +74,22 @@
74
74
  "test": "npm run test:only"
75
75
  },
76
76
  "devDependencies": {
77
- "@types/node": "^25.9.1",
77
+ "@types/node": "^25.9.4",
78
78
  "tinybench": "^6.0.2",
79
79
  "vscode-jsonrpc": "^9.0.0"
80
80
  },
81
- "gitHead": "c080da62e73c5ea066b381303c74ae00b53368ac",
81
+ "gitHead": "f7c4664176a1ac8be4ba7b4981d0b17c0457a74c",
82
82
  "publishConfig": {
83
83
  "access": "public",
84
84
  "tag": "latest"
85
85
  },
86
86
  "optionalDependencies": {
87
- "@typescript/native-preview-win32-x64": "7.0.0-dev.20260626.1",
88
- "@typescript/native-preview-win32-arm64": "7.0.0-dev.20260626.1",
89
- "@typescript/native-preview-linux-x64": "7.0.0-dev.20260626.1",
90
- "@typescript/native-preview-linux-arm": "7.0.0-dev.20260626.1",
91
- "@typescript/native-preview-linux-arm64": "7.0.0-dev.20260626.1",
92
- "@typescript/native-preview-darwin-x64": "7.0.0-dev.20260626.1",
93
- "@typescript/native-preview-darwin-arm64": "7.0.0-dev.20260626.1"
87
+ "@typescript/native-preview-win32-x64": "7.0.0-dev.20260627.2",
88
+ "@typescript/native-preview-win32-arm64": "7.0.0-dev.20260627.2",
89
+ "@typescript/native-preview-linux-x64": "7.0.0-dev.20260627.2",
90
+ "@typescript/native-preview-linux-arm": "7.0.0-dev.20260627.2",
91
+ "@typescript/native-preview-linux-arm64": "7.0.0-dev.20260627.2",
92
+ "@typescript/native-preview-darwin-x64": "7.0.0-dev.20260627.2",
93
+ "@typescript/native-preview-darwin-arm64": "7.0.0-dev.20260627.2"
94
94
  }
95
95
  }