From ef0fd6a0242f66dd9274b5b1ccdb95f6a128b6b8 Mon Sep 17 00:00:00 2001 From: Sam Collins <81678+smcllns@users.noreply.github.com> Date: Wed, 17 Jun 2026 12:58:52 -0700 Subject: [PATCH 1/2] fix: Use bun instead of npm in test build step --- test/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.sh b/test/test.sh index 3cbfb1a..bf279d5 100755 --- a/test/test.sh +++ b/test/test.sh @@ -43,7 +43,7 @@ ENABLED="$(oeval "app.plugins.enabledPlugins.has('$PLUGIN_ID') ? 'yes' : 'no'" | [[ "$ENABLED" == "yes" ]] || die "plugin '$PLUGIN_ID' is not enabled in vault '$VAULT_PATH'" echo "building and loading current plugin" -(cd "$ROOT" && npm run build >/dev/null) +(cd "$ROOT" && bun run build >/dev/null) PLUGIN_DEST="$VAULT_PATH/.obsidian/plugins/$PLUGIN_ID" [[ -d "$PLUGIN_DEST" ]] || die "plugin '$PLUGIN_ID' is not installed in vault '$VAULT_PATH'" cp "$DIST_DIR/main.js" "$DIST_DIR/manifest.json" "$DIST_DIR/styles.css" "$PLUGIN_DEST/" From b3be0cf71ba36fb7335fa83ab9b311499e4c3759 Mon Sep 17 00:00:00 2001 From: Sam Collins <81678+smcllns@users.noreply.github.com> Date: Wed, 17 Jun 2026 12:58:52 -0700 Subject: [PATCH 2/2] release: Bump HTML Docs to 1.1.3 (ships .htm support) --- manifest.json | 2 +- package.json | 2 +- versions.json | 3 ++- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 4f30937..bc539d8 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "html-docs", "name": "HTML Docs", - "version": "1.1.2", + "version": "1.1.3", "minAppVersion": "1.4.0", "description": "View local .html files in sandboxed tabs, embeds, and Canvas cards.", "author": "smcllns", diff --git a/package.json b/package.json index ffa4afb..e76348d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "html-docs", - "version": "1.1.2", + "version": "1.1.3", "description": "View local .html files in sandboxed tabs, embeds, and Canvas cards.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index c285604..9f40bf1 100644 --- a/versions.json +++ b/versions.json @@ -3,5 +3,6 @@ "1.0.4": "1.4.0", "1.1.0": "1.4.0", "1.1.1": "1.4.0", - "1.1.2": "1.4.0" + "1.1.2": "1.4.0", + "1.1.3": "1.4.0" }