-
Notifications
You must be signed in to change notification settings - Fork 20
/
esbuild.js
37 lines (35 loc) · 836 Bytes
/
esbuild.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const esbuild = require('esbuild');
const sveltePlugin = require('esbuild-svelte');
const pkg = require('./package.json');
(async ()=>{
await esbuild.build({
entryPoints: ['cmp/index.js'],
bundle: true,
outfile: pkg.module,
format: 'esm',
minify: true,
external: [
'svelte',
'svelte/*'
],
plugins: [sveltePlugin({compileOptions:{
dev: false,
css: true
}})]
});
await esbuild.build({
entryPoints: ['cmp/index.js'],
bundle: true,
outfile: pkg.main,
format: 'cjs',
minify: true,
external: [
'svelte',
'svelte/*'
],
plugins: [sveltePlugin({compileOptions:{
dev: false,
css: true
}})]
});
})()