0.0.5 • Published 1 year ago

@es-exec/esbuild-plugin-serve v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

ES Serve

An esbuild plugin for running a module after it is build with esbuild. This project will find the output module to run after being built from the esbuild outputs, or it can run a specified main file.

Installation

npm

npm install --save-dev @es-exec/esbuild-plugin-serve

yarn

yarn add --dev @es-exec/esbuild-plugin-serve

Usage

import serve from '@es-exec/esbuild-plugin-serve';

/** @type import('@es-exec/esbuild-plugin-serve').ESServeOptions */
const options = {
    main: 'build/index.mjs' // The module to run after the project is built. If not specified, will run the build outputs.
};

export default {
    ..., // Other esbuild config options.
    plugins: [serve(options)],
};