@bleedingdev/modern-js-create 3.5.0-ultramodern.22 → 3.5.0-ultramodern.23
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
|
@@ -420,7 +420,7 @@ hyphens converted to underscores and uppercased:
|
|
|
420
420
|
pnpm cloudflare:deploy
|
|
421
421
|
ULTRAMODERN_PUBLIC_URL_SHELL_SUPER_APP=https://shell-super-app.example.workers.dev \
|
|
422
422
|
ULTRAMODERN_PUBLIC_URL_TRANSPORTATION=https://transportation.example.workers.dev \
|
|
423
|
-
pnpm cloudflare:proof --
|
|
423
|
+
pnpm cloudflare:proof --require-public-urls
|
|
424
424
|
```
|
|
425
425
|
|
|
426
426
|
Without public URLs and credentials, use local primitive gates and `pnpm build`
|
package/package.json
CHANGED
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"engines": {
|
|
22
22
|
"node": ">=20"
|
|
23
23
|
},
|
|
24
|
-
"version": "3.5.0-ultramodern.
|
|
24
|
+
"version": "3.5.0-ultramodern.23",
|
|
25
25
|
"types": "./dist/types/index.d.ts",
|
|
26
26
|
"main": "./dist/esm-node/index.js",
|
|
27
27
|
"bin": {
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"@modern-js/codesmith": "2.6.9",
|
|
78
78
|
"oxfmt": "0.56.0",
|
|
79
79
|
"ultracite": "7.8.3",
|
|
80
|
-
"@modern-js/i18n-utils": "npm:@bleedingdev/modern-js-i18n-utils@3.5.0-ultramodern.
|
|
80
|
+
"@modern-js/i18n-utils": "npm:@bleedingdev/modern-js-i18n-utils@3.5.0-ultramodern.23"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
83
|
"@rslib/core": "0.23.1",
|
|
@@ -99,6 +99,6 @@
|
|
|
99
99
|
"test": "rm -rf dist && rslib build -c rslibconfig.mts && rstest --passWithNoTests"
|
|
100
100
|
},
|
|
101
101
|
"ultramodern": {
|
|
102
|
-
"frameworkVersion": "3.5.0-ultramodern.
|
|
102
|
+
"frameworkVersion": "3.5.0-ultramodern.23"
|
|
103
103
|
}
|
|
104
104
|
}
|
|
@@ -146,7 +146,7 @@ pattern with hyphens converted to underscores and uppercased.
|
|
|
146
146
|
```bash
|
|
147
147
|
pnpm cloudflare:deploy
|
|
148
148
|
ULTRAMODERN_PUBLIC_URL_SHELL_SUPER_APP=https://shell-super-app.example.workers.dev \
|
|
149
|
-
pnpm cloudflare:proof --
|
|
149
|
+
pnpm cloudflare:proof --require-public-urls
|
|
150
150
|
```
|
|
151
151
|
|
|
152
152
|
## Strict Effect API
|
|
@@ -298,7 +298,9 @@ function parseArgs(argv) {
|
|
|
298
298
|
|
|
299
299
|
for (let index = 0; index < argv.length; index += 1) {
|
|
300
300
|
const arg = argv[index];
|
|
301
|
-
if (arg === '--
|
|
301
|
+
if (arg === '--') {
|
|
302
|
+
continue;
|
|
303
|
+
} else if (arg === '--app') {
|
|
302
304
|
parsed.appId = argv[index + 1];
|
|
303
305
|
index += 1;
|
|
304
306
|
} else if (arg === '--out') {
|