mirror of
https://github.com/aurelienstebe/Gladdis.git
synced 2026-07-22 08:40:27 +00:00
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
import esbuild from 'esbuild'
|
|
|
|
await esbuild.build({
|
|
entryPoints: ['src/startup.ts'],
|
|
outfile: 'vault/.obsidian/plugins/gladdis-startup/main.js',
|
|
|
|
bundle: true,
|
|
minify: true,
|
|
|
|
format: 'cjs',
|
|
target: 'es2020',
|
|
|
|
treeShaking: true,
|
|
legalComments: 'none',
|
|
|
|
external: ['obsidian'],
|
|
})
|