@bleedingdev/modern-js-create 3.4.0-ultramodern.0 → 3.4.0-ultramodern.1
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/README.md
CHANGED
|
@@ -75,13 +75,13 @@ the repo `tsgo:dts` flow. Run `pnpm --filter @modern-js/create test` when
|
|
|
75
75
|
changing generator behavior; it includes a boundary test that scans generator
|
|
76
76
|
sources, templates, and generated workspace output for compiler API imports.
|
|
77
77
|
|
|
78
|
-
Generated app packages
|
|
79
|
-
`@effect/tsgo` plus
|
|
80
|
-
`
|
|
81
|
-
|
|
82
|
-
TypeScript 6 package. If a future AST
|
|
83
|
-
dedicated compatibility module and test it
|
|
84
|
-
native-preview internals.
|
|
78
|
+
Generated app packages keep stable `typescript` for classic compiler consumers
|
|
79
|
+
such as Module Federation DTS generation, and use `@effect/tsgo` plus
|
|
80
|
+
`@typescript/native-preview` as tooling for `pnpm typecheck`. Generated
|
|
81
|
+
app/package source must not depend on compiler API internals. Existing compiler
|
|
82
|
+
API tests in this package use the stable TypeScript 6 package. If a future AST
|
|
83
|
+
utility is needed, keep it behind a dedicated compatibility module and test it
|
|
84
|
+
against stable `typescript`, not native-preview internals.
|
|
85
85
|
|
|
86
86
|
Generated CI does not call the local aggregate. It runs format, lint,
|
|
87
87
|
typecheck, skills, i18n boundary validation, contract validation, and build as
|
|
@@ -39,7 +39,7 @@ const POSTCSS_VERSION = '8.5.15';
|
|
|
39
39
|
const EFFECT_TSGO_VERSION = '0.14.6';
|
|
40
40
|
const TYPESCRIPT_STABLE_VERSION = '6.0.3';
|
|
41
41
|
const TYPESCRIPT_7_VERSION = '7.0.1-rc';
|
|
42
|
-
const TYPESCRIPT_VERSION =
|
|
42
|
+
const TYPESCRIPT_VERSION = TYPESCRIPT_STABLE_VERSION;
|
|
43
43
|
const TYPESCRIPT_NATIVE_PREVIEW_VERSION = '7.0.0-dev.20260624.1';
|
|
44
44
|
const OXLINT_VERSION = '1.71.0';
|
|
45
45
|
const OXFMT_VERSION = '0.55.0';
|
|
@@ -10,7 +10,7 @@ const POSTCSS_VERSION = '8.5.15';
|
|
|
10
10
|
const EFFECT_TSGO_VERSION = '0.14.6';
|
|
11
11
|
const TYPESCRIPT_STABLE_VERSION = '6.0.3';
|
|
12
12
|
const TYPESCRIPT_7_VERSION = '7.0.1-rc';
|
|
13
|
-
const TYPESCRIPT_VERSION =
|
|
13
|
+
const TYPESCRIPT_VERSION = TYPESCRIPT_STABLE_VERSION;
|
|
14
14
|
const TYPESCRIPT_NATIVE_PREVIEW_VERSION = '7.0.0-dev.20260624.1';
|
|
15
15
|
const OXLINT_VERSION = '1.71.0';
|
|
16
16
|
const OXFMT_VERSION = '0.55.0';
|
|
@@ -11,7 +11,7 @@ const POSTCSS_VERSION = '8.5.15';
|
|
|
11
11
|
const EFFECT_TSGO_VERSION = '0.14.6';
|
|
12
12
|
const TYPESCRIPT_STABLE_VERSION = '6.0.3';
|
|
13
13
|
const TYPESCRIPT_7_VERSION = '7.0.1-rc';
|
|
14
|
-
const TYPESCRIPT_VERSION =
|
|
14
|
+
const TYPESCRIPT_VERSION = TYPESCRIPT_STABLE_VERSION;
|
|
15
15
|
const TYPESCRIPT_NATIVE_PREVIEW_VERSION = '7.0.0-dev.20260624.1';
|
|
16
16
|
const OXLINT_VERSION = '1.71.0';
|
|
17
17
|
const OXFMT_VERSION = '0.55.0';
|
|
@@ -15,7 +15,7 @@ export declare const POSTCSS_VERSION = "8.5.15";
|
|
|
15
15
|
export declare const EFFECT_TSGO_VERSION = "0.14.6";
|
|
16
16
|
export declare const TYPESCRIPT_STABLE_VERSION = "6.0.3";
|
|
17
17
|
export declare const TYPESCRIPT_7_VERSION = "7.0.1-rc";
|
|
18
|
-
export declare const TYPESCRIPT_VERSION = "
|
|
18
|
+
export declare const TYPESCRIPT_VERSION = "6.0.3";
|
|
19
19
|
export declare const TYPESCRIPT_NATIVE_PREVIEW_VERSION = "7.0.0-dev.20260624.1";
|
|
20
20
|
export declare const OXLINT_VERSION = "1.71.0";
|
|
21
21
|
export declare const OXFMT_VERSION = "0.55.0";
|
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=20"
|
|
23
23
|
},
|
|
24
|
-
"version": "3.4.0-ultramodern.
|
|
24
|
+
"version": "3.4.0-ultramodern.1",
|
|
25
25
|
"types": "./dist/types/index.d.ts",
|
|
26
26
|
"main": "./dist/esm-node/index.js",
|
|
27
27
|
"bin": {
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
],
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"@modern-js/codesmith": "2.6.9",
|
|
78
|
-
"@modern-js/i18n-utils": "npm:@bleedingdev/modern-js-i18n-utils@3.4.0-ultramodern.
|
|
78
|
+
"@modern-js/i18n-utils": "npm:@bleedingdev/modern-js-i18n-utils@3.4.0-ultramodern.1"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@rslib/core": "0.23.0",
|
|
@@ -97,6 +97,6 @@
|
|
|
97
97
|
"test": "rm -rf dist && rslib build -c rslibconfig.mts && rstest --passWithNoTests"
|
|
98
98
|
},
|
|
99
99
|
"ultramodern": {
|
|
100
|
-
"frameworkVersion": "3.4.0-ultramodern.
|
|
100
|
+
"frameworkVersion": "3.4.0-ultramodern.1"
|
|
101
101
|
}
|
|
102
102
|
}
|