@bleedingdev/modern-js-create 3.5.0-ultramodern.21 → 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 -- --require-public-urls
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`
@@ -552,6 +552,9 @@ function updateGeneratedPnpmWorkspacePolicy(workspaceRoot) {
552
552
  source = result.source;
553
553
  changed = result.changed || changed;
554
554
  }
555
+ const parcelWatcherBuildPolicy = ensureYamlScalarMapEntry(source, 'allowBuilds', "'@parcel/watcher'", 'true');
556
+ source = parcelWatcherBuildPolicy.source;
557
+ changed = parcelWatcherBuildPolicy.changed || changed;
555
558
  for (const item of strictEffectPackageVersionPolicyExclusions){
556
559
  const packageName = item.slice(0, item.lastIndexOf('@'));
557
560
  const escapedPackageName = packageName.replace(/[.*+?^${}()|[\]\\]/gu, '\\$&');
@@ -505,6 +505,9 @@ function updateGeneratedPnpmWorkspacePolicy(workspaceRoot) {
505
505
  source = result.source;
506
506
  changed = result.changed || changed;
507
507
  }
508
+ const parcelWatcherBuildPolicy = ensureYamlScalarMapEntry(source, 'allowBuilds', "'@parcel/watcher'", 'true');
509
+ source = parcelWatcherBuildPolicy.source;
510
+ changed = parcelWatcherBuildPolicy.changed || changed;
508
511
  for (const item of strictEffectPackageVersionPolicyExclusions){
509
512
  const packageName = item.slice(0, item.lastIndexOf('@'));
510
513
  const escapedPackageName = packageName.replace(/[.*+?^${}()|[\]\\]/gu, '\\$&');
@@ -506,6 +506,9 @@ function updateGeneratedPnpmWorkspacePolicy(workspaceRoot) {
506
506
  source = result.source;
507
507
  changed = result.changed || changed;
508
508
  }
509
+ const parcelWatcherBuildPolicy = ensureYamlScalarMapEntry(source, 'allowBuilds', "'@parcel/watcher'", 'true');
510
+ source = parcelWatcherBuildPolicy.source;
511
+ changed = parcelWatcherBuildPolicy.changed || changed;
509
512
  for (const item of strictEffectPackageVersionPolicyExclusions){
510
513
  const packageName = item.slice(0, item.lastIndexOf('@'));
511
514
  const escapedPackageName = packageName.replace(/[.*+?^${}()|[\]\\]/gu, '\\$&');
package/package.json CHANGED
@@ -21,7 +21,7 @@
21
21
  "engines": {
22
22
  "node": ">=20"
23
23
  },
24
- "version": "3.5.0-ultramodern.21",
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.21"
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.21"
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 -- --require-public-urls
149
+ pnpm cloudflare:proof --require-public-urls
150
150
  ```
151
151
 
152
152
  ## Strict Effect API
@@ -54,6 +54,7 @@ overrides:
54
54
  node-fetch: '{{nodeFetchVersion}}'
55
55
 
56
56
  allowBuilds:
57
+ '@parcel/watcher': true
57
58
  '@swc/core': true
58
59
  core-js: true
59
60
  esbuild: true
@@ -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 === '--app') {
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') {