hyperbook 0.63.0 → 0.63.2
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/dist/index.js +8 -4
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -166048,7 +166048,7 @@ var remarkDirectiveSqlIde_default = (ctx) => () => {
|
|
|
166048
166048
|
children: [
|
|
166049
166049
|
{
|
|
166050
166050
|
type: "raw",
|
|
166051
|
-
value: `{'id': '${id}', 'databaseURL': '${db}'}`
|
|
166051
|
+
value: `{'id': '${id}', 'databaseURL': '${ctx.makeUrl(db || "", "public", ctx.navigation.current || void 0)}'}`
|
|
166052
166052
|
},
|
|
166053
166053
|
...codes,
|
|
166054
166054
|
{
|
|
@@ -167229,7 +167229,7 @@ var rehypeHtmlStructure_default = (ctx) => () => {
|
|
|
167229
167229
|
properties: {
|
|
167230
167230
|
rel: "icon",
|
|
167231
167231
|
type: "image/x-icon",
|
|
167232
|
-
href: makeUrl(["favicon.ico"], "public")
|
|
167232
|
+
href: makeUrl(["/favicon.ico"], "public")
|
|
167233
167233
|
},
|
|
167234
167234
|
children: []
|
|
167235
167235
|
},
|
|
@@ -168694,7 +168694,11 @@ var remarkImage_default = (ctx) => () => {
|
|
|
168694
168694
|
tagName: "img",
|
|
168695
168695
|
properties: {
|
|
168696
168696
|
...figureProps,
|
|
168697
|
-
src:
|
|
168697
|
+
src: ctx.makeUrl(
|
|
168698
|
+
node3.url,
|
|
168699
|
+
"public",
|
|
168700
|
+
ctx.navigation.current || void 0
|
|
168701
|
+
),
|
|
168698
168702
|
alt: node3.alt,
|
|
168699
168703
|
onclick: `hyperbook.toggleLightbox(this)`
|
|
168700
168704
|
},
|
|
@@ -183441,7 +183445,7 @@ module.exports = /*#__PURE__*/JSON.parse('{"application/1d-interleaved-parityfec
|
|
|
183441
183445
|
/***/ ((module) => {
|
|
183442
183446
|
|
|
183443
183447
|
"use strict";
|
|
183444
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"hyperbook","version":"0.63.
|
|
183448
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"hyperbook","version":"0.63.2","author":"Mike Barkmin","homepage":"https://github.com/openpatch/hyperbook#readme","license":"MIT","bin":{"hyperbook":"./dist/index.js"},"files":["dist"],"publishConfig":{"access":"public"},"repository":{"type":"git","url":"git+https://github.com/openpatch/hyperbook.git","directory":"packages/hyperbook"},"bugs":{"url":"https://github.com/openpatch/hyperbook/issues"},"engines":{"node":">=12.22.0"},"scripts":{"version":"pnpm build","lint":"tsc --noEmit","dev":"ncc build ./index.ts -w -o dist/","build":"rimraf dist && ncc build ./index.ts -o ./dist/ --no-cache --no-source-map-register --external favicons --external sharp && node postbuild.mjs"},"dependencies":{"favicons":"^7.2.0"},"devDependencies":{"@hyperbook/fs":"workspace:*","@hyperbook/markdown":"workspace:*","@hyperbook/types":"workspace:*","@pnpm/exportable-manifest":"1000.0.6","@types/archiver":"6.0.3","@types/async-retry":"1.4.9","@types/cross-spawn":"6.0.6","@types/lunr":"^2.3.7","@types/prompts":"2.4.9","@types/tar":"6.1.13","@types/ws":"^8.5.14","@vercel/ncc":"0.38.3","archiver":"7.0.1","async-retry":"1.3.3","chalk":"5.4.1","chokidar":"4.0.3","commander":"12.1.0","cpy":"11.1.0","cross-spawn":"7.0.6","domutils":"^3.2.2","extract-zip":"^2.0.1","got":"12.6.0","htmlparser2":"^10.0.0","lunr":"^2.3.9","lunr-languages":"^1.14.0","mime":"^4.0.6","prompts":"2.4.2","rimraf":"6.0.1","tar":"7.4.3","update-check":"1.5.4","ws":"^8.18.0"}}');
|
|
183445
183449
|
|
|
183446
183450
|
/***/ })
|
|
183447
183451
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hyperbook",
|
|
3
|
-
"version": "0.63.
|
|
3
|
+
"version": "0.63.2",
|
|
4
4
|
"author": "Mike Barkmin",
|
|
5
5
|
"homepage": "https://github.com/openpatch/hyperbook#readme",
|
|
6
6
|
"license": "MIT",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"update-check": "1.5.4",
|
|
58
58
|
"ws": "^8.18.0",
|
|
59
59
|
"@hyperbook/fs": "0.20.0",
|
|
60
|
-
"@hyperbook/markdown": "0.37.
|
|
60
|
+
"@hyperbook/markdown": "0.37.2",
|
|
61
61
|
"@hyperbook/types": "0.18.0"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|