@apeleghq/esbuild-plugin-closure-compiler
v1.0.6
Published
esbuild plugin for compiling with Google Closure Compiler as the last step
Downloads
22
Readme
esbuild plugin for post-compiling with Google Closure Compiler
How to use
Installing
npm i -D @apeleghq/esbuild-plugin-closure-compiler
Configuring esbuild
In the file you have your configuration, first import this plugin
const cc = require('@apeleghq/esbuild-plugin-closure-compiler');
Or using ES module syntax:
import cc from '@apeleghq/esbuild-plugin-closure-compiler';
Then, in your esbuild configuration, add cc()
to the plugins
list. cc
optionally takes an object that is passed as options to Closure Compiler (for
reference, refer to the documentation for Google Closure Compiler). Minimal example:
const esbuild = require('esbuild');
const cc = require('@apeleghq/esbuild-plugin-closure-compiler');
await esbuild
.build({
entryPoints: ['index.js'],
outdir: 'build',
bundle: true,
format: 'cjs',
plugins: [cc({ language_out: 'ECMASCRIPT_2018' })],
});