Skip to content

vobyjs/voby-esbuild

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Voby Esbuild

The official Voby plugin for Esbuild.

Install

npm install --save voby-esbuild

Usage

import esbuild from 'esbuild';
import voby from 'voby-esbuild';

esbuild.build ({
  bundle: true,
  minify: true,
  format: 'esm',
  platform: 'node',
  target: 'es2018',
  entryPoints: ['src.js'],
  outfile: 'dist.js',
  plugins: [
    voby ()
  ]
});

License

MIT © Fabio Spampinato