@chialab/esbuild-plugin-emit
Advanced tools
Comparing version 0.11.25 to 0.11.28
@@ -23,4 +23,6 @@ import path from 'path'; | ||
* @typedef {Object} EmitTransformOptions | ||
* @property {boolean} [bundle] | ||
* @property {import('esbuild').Format} [format] | ||
* @property {boolean} [bundle] | ||
* @property {import('esbuild').Plugin[]} [plugins] | ||
* @property {string[]} [inject] | ||
*/ | ||
@@ -27,0 +29,0 @@ |
{ | ||
"name": "@chialab/esbuild-plugin-emit", | ||
"type": "module", | ||
"version": "0.11.25", | ||
"version": "0.11.28", | ||
"description": "Helpers functions to emit chunks and files from a esbuild run.", | ||
@@ -37,3 +37,3 @@ "main": "lib/index.js", | ||
}, | ||
"gitHead": "ea8a160295d67e7618d9e5810865587a282d14ce" | ||
"gitHead": "be4bf7d85e0b1bbc32664152b232915e2275977d" | ||
} |
/** | ||
* @typedef {Object} EmitTransformOptions | ||
* @property {boolean} [bundle] | ||
* @property {import('esbuild').Format} [format] | ||
* @property {boolean} [bundle] | ||
* @property {import('esbuild').Plugin[]} [plugins] | ||
* @property {string[]} [inject] | ||
*/ | ||
@@ -56,4 +58,6 @@ /** | ||
export type EmitTransformOptions = { | ||
bundle?: boolean | undefined; | ||
format?: import("esbuild").Format | undefined; | ||
bundle?: boolean | undefined; | ||
plugins?: import("esbuild").Plugin[] | undefined; | ||
inject?: string[] | undefined; | ||
}; |
10588
229