Skip to content

Commit

Permalink
Merge pull request #72 from saertna/avatar-picture
Browse files Browse the repository at this point in the history
Avatar picture on profile page
  • Loading branch information
saertna authored Mar 24, 2024
2 parents 49a4673 + 5b50976 commit 3e514da
Show file tree
Hide file tree
Showing 13 changed files with 716 additions and 43 deletions.
10 changes: 9 additions & 1 deletion esbuild.config.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import esbuild from "esbuild";
import process from "process";
import builtins from "builtin-modules";
import esbuildSvelte from "esbuild-svelte";
import sveltePreprocess from "svelte-preprocess";

const banner =
`/*
Expand All @@ -17,6 +19,12 @@ const context = await esbuild.context({
},
entryPoints: ["main.ts"],
bundle: true,
plugins: [
esbuildSvelte({
compilerOptions: { css: true },
preprocess: sveltePreprocess(),
}),
],
external: [
"obsidian",
"electron",
Expand Down Expand Up @@ -45,4 +53,4 @@ if (prod) {
process.exit(0);
} else {
await context.watch();
}
}
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "gamified-pkm",
"name": "Gamificate your PKM",
"version": "0.0.89",
"version": "0.0.90",
"minAppVersion": "0.15.0",
"description": "Enhance your Personal Knowledge Management with gamification elements. Boost motivation and achieve growth as you engage with your PKM.",
"author": "Andreas Trebing",
Expand Down
222 changes: 220 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3e514da

Please sign in to comment.