@gjsify/tsc 0.4.34 → 0.4.35
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.
- package/dist/tsc.gjs.mjs +67 -67
- package/package.json +7 -3
- package/src/index.ts +8 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gjsify/tsc",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.35",
|
|
4
4
|
"description": "TypeScript compiler for GJS — bundles upstream `typescript` to a single GJS module + ships a Node-free `tsc` bin.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -46,9 +46,13 @@
|
|
|
46
46
|
},
|
|
47
47
|
"homepage": "https://github.com/gjsify/gjsify/tree/main/packages/infra/tsc#readme",
|
|
48
48
|
"license": "MIT",
|
|
49
|
-
"dependencies": {
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@gjsify/console": "^0.4.35",
|
|
51
|
+
"@gjsify/node-globals": "^0.4.35",
|
|
52
|
+
"@gjsify/web-globals": "^0.4.35"
|
|
53
|
+
},
|
|
50
54
|
"devDependencies": {
|
|
51
|
-
"@gjsify/cli": "
|
|
55
|
+
"@gjsify/cli": "^0.4.35",
|
|
52
56
|
"typescript": "^6.0.3"
|
|
53
57
|
}
|
|
54
58
|
}
|
package/src/index.ts
CHANGED
|
@@ -25,5 +25,12 @@ export const TSC_BUNDLE_PATH: string = resolve(
|
|
|
25
25
|
'tsc.gjs.mjs',
|
|
26
26
|
);
|
|
27
27
|
|
|
28
|
-
/** Pinned upstream TypeScript version the shipped bundle was built from.
|
|
28
|
+
/** Pinned upstream TypeScript version the shipped bundle was built from.
|
|
29
|
+
*
|
|
30
|
+
* NOTE: this is the version actually bundled into `dist/tsc.gjs.mjs`, which
|
|
31
|
+
* may lag the declared `typescript` devDep range when `gjsify install`
|
|
32
|
+
* resolves to an older satisfying version (the typescript@5.9.x and 6.0.x
|
|
33
|
+
* ranges currently coexist in the workspace; the install resolves to the
|
|
34
|
+
* highest version that satisfies every declared range — 5.9.3 today).
|
|
35
|
+
*/
|
|
29
36
|
export const TYPESCRIPT_VERSION = '5.9.3' as const;
|