From 2df4bca0e4034d4734c2d7d375c64f9832abccde Mon Sep 17 00:00:00 2001 From: DecafDev <40307803+decaf-dev@users.noreply.github.com> Date: Fri, 2 May 2025 21:01:53 -0600 Subject: [PATCH 1/2] chore: use node 22 --- .github/workflows/release.yml | 2 +- esbuild.config.mjs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3801325..dfd5839 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Use Node.js uses: actions/setup-node@v1 with: - node-version: "18" + node-version: "22" - uses: oven-sh/setup-bun@v1 with: diff --git a/esbuild.config.mjs b/esbuild.config.mjs index 2f98cc5..d0d90ec 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -1,10 +1,10 @@ -import esbuild from "esbuild"; -import process from "process"; import builtins from "builtin-modules"; +import esbuild from "esbuild"; +import esbuildSvelte from "esbuild-svelte"; import fs from "fs"; import path from "path"; -import esbuildSvelte from "esbuild-svelte"; -import sveltePreprocess from "svelte-preprocess"; +import process from "process"; +import { sveltePreprocess } from "svelte-preprocess"; const banner = `/* THIS IS A GENERATED/BUNDLED FILE BY ESBUILD From 2360454f4a1d88190499dbfa5d79efbaa1ff7170 Mon Sep 17 00:00:00 2001 From: DecafDev <40307803+decaf-dev@users.noreply.github.com> Date: Fri, 2 May 2025 21:02:11 -0600 Subject: [PATCH 2/2] chore: bump version --- 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 2c3b884..1146667 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "vault-explorer", "name": "Vault Explorer", - "version": "1.47.3", + "version": "1.47.4", "minAppVersion": "1.4.13", "description": "Explore your vault in visual format", "author": "DecafDev", diff --git a/package.json b/package.json index bac241c..f920f77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-vault-explorer", - "version": "1.47.3", + "version": "1.47.4", "description": "Explore your vault in visual format", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index 4b7b41d..b3c87da 100644 --- a/versions.json +++ b/versions.json @@ -153,5 +153,6 @@ "1.47.0": "1.4.13", "1.47.1": "1.4.13", "1.47.2": "1.4.13", - "1.47.3": "1.4.13" + "1.47.3": "1.4.13", + "1.47.4": "1.4.13" }