refactor: move into a website directory
This commit is contained in:
parent
86529d7148
commit
3c5c0e808a
747 changed files with 133 additions and 2 deletions
|
|
@ -1,28 +0,0 @@
|
|||
const esbuild = require('esbuild')
|
||||
|
||||
let minify = false
|
||||
let sourcemap = true
|
||||
let watch_fs = true
|
||||
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
minify = true
|
||||
sourcemap = false
|
||||
watch_fs = false
|
||||
}
|
||||
|
||||
const watch = watch_fs && {
|
||||
onRebuild(error) {
|
||||
if (error) console.error('[watch] build failed', error)
|
||||
else console.log('[watch] build finished')
|
||||
},
|
||||
}
|
||||
|
||||
esbuild.build({
|
||||
entryPoints: ['./assets/js/app.js'],
|
||||
outfile: './build/app.js',
|
||||
bundle: true,
|
||||
minify: minify,
|
||||
sourcemap: sourcemap,
|
||||
watch: watch,
|
||||
plugins: [],
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue