update deps; fix preview modal
This commit is contained in:
parent
26cf166a54
commit
5125e73cb4
19 changed files with 1365 additions and 1302 deletions
63
esbuild.dev.config.mjs
Normal file
63
esbuild.dev.config.mjs
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
import esbuild from 'esbuild';
|
||||
import process from 'process';
|
||||
import builtins from 'builtin-modules';
|
||||
import esbuildSvelte from 'esbuild-svelte';
|
||||
import sveltePreprocess from 'svelte-preprocess';
|
||||
import manifest from './manifest.json' assert { type: 'json' };
|
||||
|
||||
const banner = `/*
|
||||
-------------------------------------------
|
||||
${manifest.name} - Dev Build
|
||||
-------------------------------------------
|
||||
By: ${manifest.author} (${manifest.authorUrl})
|
||||
Time: ${new Date().toUTCString()}
|
||||
Version: Dev Build
|
||||
-------------------------------------------
|
||||
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
||||
if you want to view the source, please visit the github repository of this plugin
|
||||
*/
|
||||
`;
|
||||
|
||||
const context = await esbuild
|
||||
.context({
|
||||
banner: {
|
||||
js: banner,
|
||||
},
|
||||
entryPoints: ['src/main.ts'],
|
||||
bundle: true,
|
||||
external: [
|
||||
'obsidian',
|
||||
'electron',
|
||||
'@codemirror/autocomplete',
|
||||
'@codemirror/collab',
|
||||
'@codemirror/commands',
|
||||
'@codemirror/language',
|
||||
'@codemirror/lint',
|
||||
'@codemirror/search',
|
||||
'@codemirror/state',
|
||||
'@codemirror/view',
|
||||
'@lezer/common',
|
||||
'@lezer/highlight',
|
||||
'@lezer/lr',
|
||||
...builtins,
|
||||
],
|
||||
format: 'cjs',
|
||||
target: 'es2018',
|
||||
logLevel: 'info',
|
||||
sourcemap: 'inline',
|
||||
treeShaking: true,
|
||||
outfile: 'main.js',
|
||||
plugins: [
|
||||
esbuildSvelte({
|
||||
compilerOptions: { css: 'injected' },
|
||||
preprocess: sveltePreprocess(),
|
||||
filterWarnings: warning => {
|
||||
// we don't want warnings from node modules that we can do nothing about
|
||||
return !warning.filename.includes('node_modules');
|
||||
},
|
||||
}),
|
||||
],
|
||||
})
|
||||
.catch(() => process.exit(1));
|
||||
|
||||
await context.watch();
|
||||
Loading…
Add table
Add a link
Reference in a new issue