esbuild-plugin-copy-import
v0.1.0
Published
An esbuild plugin that copies imported module to the destination directory and sets the imported value to the relative path.
Downloads
3
Readme
esbuild-plugin-copy-import
An esbuild plugin that copies imported module to the destination directory and sets the imported value to the relative path.
Install
npm install -D esbuild-plugin-copy-import
Usage
import copyImportPlugin from 'esbuild-plugin-copy-import';
/** @type esbuild.BuildOptions */
const config = {
plugins: [
copyImportPlugin({
// Custom filter, defaults to /.+\?url/
filter: /\.wasm\?url$/,
// Optional path inside the `outDir`
outRelativePath: 'dist-wasm',
// Defaults to `?url.
// This will be stripped from the import path.
suffix: '?url',
}),
],
// ...
};
import wasmModuleUrl from 'example.wasm?url';
// In this example, this runs inside ./dist/index.js
// and the `example.wasm` file is located at ./dist/dist-wasm/example.wasm
assert.strictEqual(wasmModuleUrl, './dist-wasm/example.wasm');