ESBuild support for the Ink markup language.
npm install @stackpress/ink-esbuildThis package is designed for Ink,
the reactive web component template engine. See docs
for more information.
ESBuild support for the Ink markup language.
``bash`
$ npm -i @stackpress/ink-esbuild
`js
import esbuild from 'esbuild';
import { esComponentPlugin } from 'ink-esbuild';
esbuild.build({
entryPoints: [ './app.ink' ],
plugins: [ esComponentPlugin() ]
});
``