0.3.0 • Published 3 months ago

@pixi/webworker-plugins v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 months ago

@pixi/webworker-plugins

npm version

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(),
    ],
    // ...
};