Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tinrab/esbuild-plugin-copy-import


https://github.com/tinrab/esbuild-plugin-copy-import

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

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

```bash
npm install -D esbuild-plugin-copy-import
```

## Usage

```js
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',
}),
],
// ...
};
```

```ts
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');
```