Skip to content

Commit

Permalink
fix: Updated several outdated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed Sep 11, 2024
1 parent fbbf048 commit 26f5355
Show file tree
Hide file tree
Showing 4 changed files with 4,037 additions and 2,984 deletions.
5 changes: 3 additions & 2 deletions esbuild.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import esbuild from "esbuild";
import process from "process";
import builtins from "builtin-modules";
import sveltePlugin from "esbuild-svelte";
import sveltePreprocess from "svelte-preprocess";
import { sveltePreprocess } from "svelte-preprocess";
import inlineWorkerPlugin from "esbuild-plugin-inline-worker";
import { sassPlugin } from "esbuild-sass-plugin";
import { config } from "dotenv";
Expand All @@ -12,6 +12,7 @@ config();

const filteredWarnings = [
"a11y-click-events-have-key-events",
"a11y-no-static-element-interaction",
"security-anchor-rel-noreferrer"
];
const banner = `/*
Expand Down Expand Up @@ -74,7 +75,7 @@ const params = {
compilerOptions: { css: true },
preprocess: sveltePreprocess(),
filterWarnings: (warning) => {
return !filteredWarnings.includes(warning.code);
return false;
}
}),
inlineWorkerPlugin({ workerName: "Fantasy Statblocks Creature Parser" })
Expand Down
Loading

0 comments on commit 26f5355

Please sign in to comment.