@bleedingdev/modern-js-create 3.2.0-ultramodern.24 → 3.2.0-ultramodern.26
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/index.js
CHANGED
|
@@ -1388,6 +1388,12 @@ ${bffConfig} output: {
|
|
|
1388
1388
|
polyfill: 'off',
|
|
1389
1389
|
splitRouteChunks: false,
|
|
1390
1390
|
},
|
|
1391
|
+
performance: {
|
|
1392
|
+
rsdoctor: {
|
|
1393
|
+
enabled: process.env['ULTRAMODERN_RSDOCTOR'] === 'true',
|
|
1394
|
+
disableClientServer: true,
|
|
1395
|
+
},
|
|
1396
|
+
},
|
|
1391
1397
|
html: {
|
|
1392
1398
|
outputStructure: 'flat',
|
|
1393
1399
|
},
|
|
@@ -1419,6 +1425,16 @@ ${bffConfig} output: {
|
|
|
1419
1425
|
${bffPluginEntry} moduleFederationPlugin(),
|
|
1420
1426
|
zephyrRspackPlugin(),
|
|
1421
1427
|
],
|
|
1428
|
+
tools: {
|
|
1429
|
+
bundlerChain: chain => {
|
|
1430
|
+
chain.ignoreWarnings([
|
|
1431
|
+
{
|
|
1432
|
+
message: /the request of a dependency is an expression/u,
|
|
1433
|
+
module: /modern-js-plugin-i18n/u,
|
|
1434
|
+
},
|
|
1435
|
+
]);
|
|
1436
|
+
},
|
|
1437
|
+
},
|
|
1422
1438
|
deploy: {
|
|
1423
1439
|
target: 'cloudflare',
|
|
1424
1440
|
worker: {
|
|
@@ -2501,6 +2517,12 @@ function createAppConfigContract(app) {
|
|
|
2501
2517
|
polyfill: 'off',
|
|
2502
2518
|
splitRouteChunks: false
|
|
2503
2519
|
},
|
|
2520
|
+
performance: {
|
|
2521
|
+
rsdoctor: {
|
|
2522
|
+
enabledByEnv: 'ULTRAMODERN_RSDOCTOR=true',
|
|
2523
|
+
disableClientServer: true
|
|
2524
|
+
}
|
|
2525
|
+
},
|
|
2504
2526
|
html: {
|
|
2505
2527
|
outputStructure: 'flat'
|
|
2506
2528
|
},
|
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=20"
|
|
23
23
|
},
|
|
24
|
-
"version": "3.2.0-ultramodern.
|
|
24
|
+
"version": "3.2.0-ultramodern.26",
|
|
25
25
|
"types": "./dist/types/index.d.ts",
|
|
26
26
|
"main": "./dist/index.js",
|
|
27
27
|
"bin": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@types/node": "^25.9.1",
|
|
42
42
|
"@typescript/native-preview": "7.0.0-dev.20260526.1",
|
|
43
43
|
"tsx": "^4.22.3",
|
|
44
|
-
"@modern-js/i18n-utils": "npm:@bleedingdev/modern-js-i18n-utils@3.2.0-ultramodern.
|
|
44
|
+
"@modern-js/i18n-utils": "npm:@bleedingdev/modern-js-i18n-utils@3.2.0-ultramodern.26"
|
|
45
45
|
},
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -54,6 +54,6 @@
|
|
|
54
54
|
"start": "node ./dist/index.js"
|
|
55
55
|
},
|
|
56
56
|
"ultramodern": {
|
|
57
|
-
"frameworkVersion": "3.2.0-ultramodern.
|
|
57
|
+
"frameworkVersion": "3.2.0-ultramodern.26"
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -11,6 +11,9 @@ defaults:
|
|
|
11
11
|
run:
|
|
12
12
|
shell: bash
|
|
13
13
|
|
|
14
|
+
env:
|
|
15
|
+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
16
|
+
|
|
14
17
|
concurrency:
|
|
15
18
|
group: ultramodern-gates-${{ github.workflow }}-${{ github.ref }}
|
|
16
19
|
cancel-in-progress: true
|
|
@@ -26,18 +29,18 @@ jobs:
|
|
|
26
29
|
egress-policy: audit
|
|
27
30
|
|
|
28
31
|
- name: Checkout
|
|
29
|
-
uses: actions/checkout@
|
|
32
|
+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
|
|
30
33
|
with:
|
|
31
34
|
fetch-depth: 1
|
|
32
35
|
persist-credentials: false
|
|
33
36
|
|
|
34
37
|
- name: Setup pnpm
|
|
35
|
-
uses: pnpm/action-setup@
|
|
38
|
+
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
|
|
36
39
|
|
|
37
40
|
- name: Setup Node.js
|
|
38
|
-
uses: actions/setup-node@
|
|
41
|
+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
|
|
39
42
|
with:
|
|
40
|
-
node-version:
|
|
43
|
+
node-version: 24
|
|
41
44
|
cache: pnpm
|
|
42
45
|
|
|
43
46
|
- name: Install Dependencies
|
|
@@ -11,6 +11,9 @@ defaults:
|
|
|
11
11
|
run:
|
|
12
12
|
shell: bash
|
|
13
13
|
|
|
14
|
+
env:
|
|
15
|
+
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
16
|
+
|
|
14
17
|
concurrency:
|
|
15
18
|
group: ultramodern-workspace-gates-${{ github.workflow }}-${{ github.ref }}
|
|
16
19
|
cancel-in-progress: true
|
|
@@ -26,18 +29,18 @@ jobs:
|
|
|
26
29
|
egress-policy: audit
|
|
27
30
|
|
|
28
31
|
- name: Checkout
|
|
29
|
-
uses: actions/checkout@
|
|
32
|
+
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
|
|
30
33
|
with:
|
|
31
34
|
fetch-depth: 1
|
|
32
35
|
persist-credentials: false
|
|
33
36
|
|
|
34
37
|
- name: Setup pnpm
|
|
35
|
-
uses: pnpm/action-setup@
|
|
38
|
+
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
|
|
36
39
|
|
|
37
40
|
- name: Setup Node.js
|
|
38
|
-
uses: actions/setup-node@
|
|
41
|
+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
|
|
39
42
|
with:
|
|
40
|
-
node-version:
|
|
43
|
+
node-version: 24
|
|
41
44
|
cache: pnpm
|
|
42
45
|
|
|
43
46
|
- name: Install Dependencies
|