@pixi/webworker-plugins
v0.3.0
Published
Plugins for Web Workers
Downloads
369
Readme
@pixi/webworker-plugins
Plugins for Web Workers.
import FooWorker from 'worker:./foo.worker.ts';
Install
npm install @pixi/webworker-plugins --save-dev
@pixi/webworker-plugins/jest-transform
Jest transform for Web Workers.
Usage
Add the following code to your jest.config.js:
module.exports = {
transform: {
'\\.worker.ts$': '@pixi/webworker-plugins/lib/jest-transform',
},
moduleNameMapper: {
'^worker:(.*)$': '$1',
},
// ...
};
@pixi/webworker-plugins/rollup-plugin
Rollup plugin for Web Workers.
Usage
Add the following code to your rollup.config.mjs:
import webworker from '@pixi/webworker-plugins/rollup-plugin';
export default {
plugins: [
webworker(),
],
// ...
};