@kenjura/ursa 0.90.0 → 0.90.1
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/CHANGELOG.md +8 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# 0.90.1
|
|
2
|
+
2026-08-29
|
|
3
|
+
|
|
4
|
+
Upgraded `sharp` to the current 0.34 line and updated install-script allowlisting for pnpm.
|
|
5
|
+
|
|
6
|
+
- `sharp` is now `^0.34.5`.
|
|
7
|
+
- Added `sharp` to `pnpm.onlyBuiltDependencies` so its native install step runs consistently in pnpm-managed environments.
|
|
8
|
+
|
|
1
9
|
# 0.90.0
|
|
2
10
|
2026-08-26
|
|
3
11
|
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@kenjura/ursa",
|
|
3
3
|
"author": "Andrew London <andrew@kenjura.com>",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "0.90.
|
|
5
|
+
"version": "0.90.1",
|
|
6
6
|
"description": "static site generator from MD/wikitext/YML",
|
|
7
7
|
"main": "lib/index.js",
|
|
8
8
|
"bin": {
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"remark-directive": "^4.0.0",
|
|
45
45
|
"remark-gfm": "^4.0.1",
|
|
46
46
|
"remark-supersub": "^1.0.0",
|
|
47
|
-
"sharp": "^0.
|
|
47
|
+
"sharp": "^0.34.5",
|
|
48
48
|
"unist-util-visit": "^5.1.0",
|
|
49
49
|
"ws": "^8.19.0",
|
|
50
50
|
"yaml": "^2.1.3",
|
|
@@ -79,7 +79,8 @@
|
|
|
79
79
|
],
|
|
80
80
|
"pnpm": {
|
|
81
81
|
"onlyBuiltDependencies": [
|
|
82
|
-
"esbuild"
|
|
82
|
+
"esbuild",
|
|
83
|
+
"sharp"
|
|
83
84
|
]
|
|
84
85
|
},
|
|
85
86
|
"publishConfig": {
|