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.
- Host: GitHub
- URL: https://github.com/vobyjs/voby-esbuild
- Owner: vobyjs
- License: mit
- Created: 2022-05-07T08:34:29.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-09-24T16:28:51.000Z (over 2 years ago)
- Last Synced: 2025-10-03T05:35:26.839Z (9 months ago)
- Topics: bundler, esbuild, plugin, voby
- Language: TypeScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
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