uniweb 0.12.48 → 0.12.49
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.
|
|
3
|
+
"version": "0.12.49",
|
|
4
4
|
"description": "Create structured Vite + React sites with content/code separation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@uniweb/runtime": "0.8.26"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@uniweb/build": "0.14.
|
|
49
|
+
"@uniweb/build": "0.14.31",
|
|
50
50
|
"@uniweb/content-reader": "1.1.12",
|
|
51
51
|
"@uniweb/semantic-parser": "1.1.17"
|
|
52
52
|
},
|
package/src/framework-index.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"generatedAt": "2026-07-
|
|
3
|
+
"generatedAt": "2026-07-21T21:33:51.867Z",
|
|
4
4
|
"packages": {
|
|
5
5
|
"@uniweb/build": {
|
|
6
|
-
"version": "0.14.
|
|
6
|
+
"version": "0.14.31",
|
|
7
7
|
"path": "framework/build",
|
|
8
8
|
"deps": [
|
|
9
9
|
"@uniweb/content-reader",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"deps": []
|
|
100
100
|
},
|
|
101
101
|
"@uniweb/unipress": {
|
|
102
|
-
"version": "0.4.
|
|
102
|
+
"version": "0.4.38",
|
|
103
103
|
"path": "framework/unipress",
|
|
104
104
|
"deps": [
|
|
105
105
|
"@uniweb/build",
|
|
@@ -3,8 +3,24 @@ packages:
|
|
|
3
3
|
- "{{this}}"
|
|
4
4
|
{{/each}}
|
|
5
5
|
|
|
6
|
-
# Permit install scripts for these native deps
|
|
7
|
-
#
|
|
6
|
+
# Permit install scripts for these native deps (esbuild compiles, sharp
|
|
7
|
+
# resolves its platform binary). Both spellings are listed on purpose:
|
|
8
|
+
#
|
|
9
|
+
# onlyBuiltDependencies — pnpm 10's name for this setting (a list)
|
|
10
|
+
# allowBuilds — pnpm 11 renamed it (a map)
|
|
11
|
+
#
|
|
12
|
+
# pnpm 11 ignores the old name entirely, so with only the list a fresh
|
|
13
|
+
# install fails with ERR_PNPM_IGNORED_BUILDS and exits 1 — before anything
|
|
14
|
+
# is built. pnpm 10 understands both, so keeping the pair means the project
|
|
15
|
+
# installs on either major. Drop `onlyBuiltDependencies` once pnpm 10 is no
|
|
16
|
+
# longer in use.
|
|
17
|
+
#
|
|
18
|
+
# Neither applies to npm or yarn, which run install scripts by default;
|
|
19
|
+
# they read `workspaces` in package.json and ignore this file.
|
|
8
20
|
onlyBuiltDependencies:
|
|
9
21
|
- esbuild
|
|
10
22
|
- sharp
|
|
23
|
+
|
|
24
|
+
allowBuilds:
|
|
25
|
+
esbuild: true
|
|
26
|
+
sharp: true
|