Socket
Socket
Sign inDemoInstall

worktank

Package Overview
Dependencies
2
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.3.0 to 2.3.1

2

dist/types.d.ts

@@ -1,2 +0,2 @@

declare type FN = (...args: unknown[]) => unknown;
declare type FN = (...args: any[]) => any;
declare type MessageExec = {

@@ -3,0 +3,0 @@ type: 'exec';

@@ -5,3 +5,3 @@ {

"description": "A simple isomorphic library for executing functions inside WebWorkers or Node Threads pools.",
"version": "2.3.0",
"version": "2.3.1",
"type": "module",

@@ -8,0 +8,0 @@ "main": "dist/index.js",

@@ -74,5 +74,5 @@ # WorkTank

- **Esbuild**: //TODO
- **Vite**: //TODO
- **WebPack**: [worktank-loader](https://github.com/fabiospampinato/worktank-loader), it only works with v1.x.x.
- **Esbuild**: [worktank-esbuild-plugin](https://github.com/fabiospampinato/worktank-esbuild-plugin), the official plugin for Esbuild.
- **Vite**: [worktank-vite-plugin](https://github.com/fabiospampinato/worktank-vite-plugin), the official plugin for Vite.
- **WebPack**: [worktank-loader](https://github.com/fabiospampinato/worktank-loader), the official plugin for WebPack, it only works with v1.x.x.

@@ -79,0 +79,0 @@ Read their documentation to learn how to use them, but TL;DR: it's mostly just a matter of adding a couple of lines of configuration for your bundlers.

/* HELPERS */
type FN = ( ...args: unknown[] ) => unknown;
type FN = ( ...args: any[] ) => any;

@@ -6,0 +6,0 @@ /* MESSAGES */

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc