disable ignis specific plugins if synced to regular obsidian instance

This commit is contained in:
Nystik
2026-05-16 22:55:48 +02:00
parent 91ab6c77c9
commit 3fed6241bd
4 changed files with 37 additions and 2 deletions

View File

@@ -2,6 +2,8 @@ const esbuild = require("esbuild");
const sveltePlugin = require("esbuild-svelte");
const path = require("path");
const { version: ignisVersion } = require("./package.json");
Promise.all([
// Build shim-loader.js
esbuild.build({
@@ -14,6 +16,9 @@ Promise.all([
alias: {
path: "path-browserify",
},
define: {
__IGNIS_VERSION__: JSON.stringify(ignisVersion),
},
logLevel: "info",
}),