You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
import { createRequire } from 'module';
|
|
|
|
import alias from 'esbuild-plugin-alias';
|
|
import { NodeGlobalsPolyfillPlugin } from '@esbuild-plugins/node-globals-polyfill';
|
|
|
|
import { replaceOnCopyPlugin } from './tools/esbuild-helper.js'
|
|
|
|
// see docs at https://esbuild.github.io/api/
|
|
export const options = {
|
|
entryPoints: [
|
|
'src/main.js',
|
|
'src/main.css',
|
|
'src/index.html',
|
|
'src/about.html',
|
|
'src/assets/comment.svg',
|
|
'src/assets/heart-fill.svg',
|
|
'src/assets/star.svg',
|
|
'src/assets/star-fill.svg',
|
|
'src/favicon.ico',
|
|
],
|
|
outdir: 'dist',
|
|
//entryNames: '[name]-[hash]', TODO: replace urls in index.html with hashed paths
|
|
loader: {'.html': 'copy', '.svg': 'copy', '.ico': 'copy'},
|
|
bundle: true,
|
|
platform: 'browser',
|
|
minify: false, // TODO: true for release and enable sourcemap
|
|
define: {
|
|
window: 'self',
|
|
global: 'self'
|
|
},
|
|
// https://github.com/esbuild/community-plugins
|
|
plugins: [
|
|
alias({
|
|
// cipher-base require's "stream"
|
|
stream: createRequire(import.meta.url).resolve('readable-stream')
|
|
}),
|
|
NodeGlobalsPolyfillPlugin({buffer: true}),
|
|
replaceOnCopyPlugin(/about\.html$/),
|
|
]
|
|
};
|
|
|
|
export default {options: options}
|