esbuild-plugin-define
v0.5.0
Published
esbuild plugin to define global identifiers
Downloads
10,083
Readme
esbuild-plugin-define
Install
npm install esbuild-plugin-define -D
Usage
Add the plugin to your esbuild plugins
.
Example esbuild.config.cjs
file:
const { definePlugin } = require('esbuild-plugin-define');
module.exports = () => {
const config = {
bundle: true,
sourcemap: true,
platform: 'node',
target: 'es2022',
format: 'esm',
outputFileExtension: '.mjs',
define: {},
concurrency: 4,
watch: {
pattern: ['./src/**'],
ignore: ['dist', 'node_modules'],
},
plugins: [
definePlugin({
process: {
env: {
BUILD_TIMESTAMP: new Date().toISOString(),
},
},
}),
],
};
return config;
};