An open API service indexing awesome lists of open source software.

https://github.com/vobyjs/voby-esbuild

The official Voby plugin for Esbuild.
https://github.com/vobyjs/voby-esbuild

bundler esbuild plugin voby

Last synced: 4 months ago
JSON representation

The official Voby plugin for Esbuild.

Awesome Lists containing this project

README

          

# Voby Esbuild

The official Voby plugin for [Esbuild](https://esbuild.github.io).

## Install

```sh
npm install --save voby-esbuild
```

## Usage

```ts
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