uniweb 0.12.6 → 0.12.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uniweb",
3
- "version": "0.12.6",
3
+ "version": "0.12.7",
4
4
  "description": "Create structured Vite + React sites with content/code separation",
5
5
  "type": "module",
6
6
  "bin": {
@@ -41,14 +41,14 @@
41
41
  "js-yaml": "^4.1.0",
42
42
  "prompts": "^2.4.2",
43
43
  "tar": "^7.0.0",
44
- "@uniweb/kit": "0.9.9",
45
- "@uniweb/runtime": "0.8.10",
46
- "@uniweb/core": "0.7.9"
44
+ "@uniweb/core": "0.7.10",
45
+ "@uniweb/kit": "0.9.10",
46
+ "@uniweb/runtime": "0.8.11"
47
47
  },
48
48
  "peerDependencies": {
49
- "@uniweb/build": "0.13.3",
50
- "@uniweb/semantic-parser": "1.1.16",
51
- "@uniweb/content-reader": "1.1.9"
49
+ "@uniweb/build": "0.13.4",
50
+ "@uniweb/semantic-parser": "1.1.17",
51
+ "@uniweb/content-reader": "1.1.10"
52
52
  },
53
53
  "peerDependenciesMeta": {
54
54
  "@uniweb/build": {
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "generatedAt": "2026-04-30T02:16:23.561Z",
3
+ "generatedAt": "2026-04-30T18:07:13.397Z",
4
4
  "packages": {
5
5
  "@uniweb/build": {
6
- "version": "0.13.3",
6
+ "version": "0.13.4",
7
7
  "path": "framework/build",
8
8
  "deps": [
9
9
  "@uniweb/content-reader",
@@ -14,7 +14,7 @@
14
14
  ]
15
15
  },
16
16
  "@uniweb/content-reader": {
17
- "version": "1.1.9",
17
+ "version": "1.1.10",
18
18
  "path": "framework/content-reader",
19
19
  "deps": []
20
20
  },
@@ -24,7 +24,7 @@
24
24
  "deps": []
25
25
  },
26
26
  "@uniweb/core": {
27
- "version": "0.7.9",
27
+ "version": "0.7.10",
28
28
  "path": "framework/core",
29
29
  "deps": [
30
30
  "@uniweb/semantic-parser",
@@ -42,7 +42,7 @@
42
42
  "deps": []
43
43
  },
44
44
  "@uniweb/kit": {
45
- "version": "0.9.9",
45
+ "version": "0.9.10",
46
46
  "path": "framework/kit",
47
47
  "deps": [
48
48
  "@uniweb/core"
@@ -59,7 +59,7 @@
59
59
  "deps": []
60
60
  },
61
61
  "@uniweb/runtime": {
62
- "version": "0.8.10",
62
+ "version": "0.8.11",
63
63
  "path": "framework/runtime",
64
64
  "deps": [
65
65
  "@uniweb/core",
@@ -77,7 +77,7 @@
77
77
  "deps": []
78
78
  },
79
79
  "@uniweb/semantic-parser": {
80
- "version": "1.1.16",
80
+ "version": "1.1.17",
81
81
  "path": "framework/semantic-parser",
82
82
  "deps": []
83
83
  },
package/src/index.js CHANGED
@@ -440,20 +440,9 @@ async function main() {
440
440
  return
441
441
  }
442
442
 
443
- // Global install launcher: delegate project-bound commands to local CLI.
444
- //
445
- // Escape hatch: `UNIWEB_DISABLE_LOCAL_DELEGATION=1` forces the in-process
446
- // CLI to handle the command itself, even when a project-local copy of
447
- // `uniweb` is installed. This exists for the workspace-ergonomics eval
448
- // harness — when it points the eval at `node $WORKSPACE_ROOT/.../index.js`
449
- // it expects to exercise the workspace source, not whatever `uniweb`
450
- // version is symlinked under the test fixture's `node_modules`. Without
451
- // the escape, evals silently test the published npm version and any
452
- // unpublished workspace fixes are invisible. See
453
- // `kb/framework/build/workspace-ergonomics-runbook.md` (`--cli=workspace`).
443
+ // Global install launcher: delegate project-bound commands to local CLI
454
444
  const global = isGlobalInstall()
455
- const skipDelegation = process.env.UNIWEB_DISABLE_LOCAL_DELEGATION === '1'
456
- if (global && !skipDelegation && command && !STANDALONE_COMMANDS.has(command)) {
445
+ if (global && command && !STANDALONE_COMMANDS.has(command)) {
457
446
  const localCli = findLocalCli()
458
447
  if (localCli) {
459
448
  await delegateToLocal(localCli)