UNPKG

@earnaha/auth0-action-helper

Version:
15 lines (13 loc) 371 B
// esbuild.config.mjs import esbuild from 'esbuild'; import { nodeExternalsPlugin } from 'esbuild-node-externals'; esbuild.build({ entryPoints: ['./src/post.login.entry.js'], bundle: true, minify: false, format: 'cjs', platform: 'node', target: 'node18', outdir: 'dist', plugins: [nodeExternalsPlugin()], }).catch(() => process.exit(1));