@bleedingdev/modern-js-create 3.2.0-ultramodern.54 → 3.2.0-ultramodern.55
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/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.55",
|
|
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.20260527.2",
|
|
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.55"
|
|
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.55"
|
|
58
58
|
}
|
|
59
59
|
}
|
|
@@ -1,13 +1,6 @@
|
|
|
1
1
|
minimumReleaseAge: 1440
|
|
2
2
|
minimumReleaseAgeStrict: true
|
|
3
3
|
minimumReleaseAgeIgnoreMissingTime: false
|
|
4
|
-
minimumReleaseAgeExclude:
|
|
5
|
-
- '@modern-js/*'
|
|
6
|
-
- '@bleedingdev/*'
|
|
7
|
-
- '@effect/tsgo'
|
|
8
|
-
- '@effect/tsgo-*'
|
|
9
|
-
- '@typescript/native-preview'
|
|
10
|
-
- '@typescript/native-preview-*'
|
|
11
4
|
trustPolicy: no-downgrade
|
|
12
5
|
trustPolicyIgnoreAfter: 1440
|
|
13
6
|
blockExoticSubdeps: true
|
|
@@ -321,18 +321,8 @@ if (readPnpmConfig('minimumReleaseAgeIgnoreMissingTime') !== false) {
|
|
|
321
321
|
console.error('pnpm minimumReleaseAgeIgnoreMissingTime must be false');
|
|
322
322
|
process.exit(1);
|
|
323
323
|
}
|
|
324
|
-
if (
|
|
325
|
-
|
|
326
|
-
JSON.stringify([
|
|
327
|
-
'@modern-js/*',
|
|
328
|
-
'@bleedingdev/*',
|
|
329
|
-
'@effect/tsgo',
|
|
330
|
-
'@effect/tsgo-*',
|
|
331
|
-
'@typescript/native-preview',
|
|
332
|
-
'@typescript/native-preview-*',
|
|
333
|
-
])
|
|
334
|
-
) {
|
|
335
|
-
console.error('pnpm minimumReleaseAgeExclude must retain framework exceptions');
|
|
324
|
+
if (readPnpmConfig('minimumReleaseAgeExclude') !== undefined) {
|
|
325
|
+
console.error('pnpm minimumReleaseAgeExclude must stay unset');
|
|
336
326
|
process.exit(1);
|
|
337
327
|
}
|
|
338
328
|
if (readPnpmConfig('trustPolicy') !== 'no-downgrade') {
|