Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@matrixai/workers

Package Overview
Dependencies
Maintainers
4
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@matrixai/workers - npm Package Compare versions

Comparing version 1.3.4 to 1.3.5

35

package.json
{
"name": "@matrixai/workers",
"version": "1.3.4",
"version": "1.3.5",
"author": "Roger Qiu",

@@ -15,22 +15,25 @@ "description": "Multithreaded Workers",

"prepare": "tsc -p ./tsconfig.build.json",
"build": "rm -r ./dist || true; tsc -p ./tsconfig.build.json",
"ts-node": "ts-node -r tsconfig-paths/register",
"build": "rimraf ./dist && tsc -p ./tsconfig.build.json",
"postversion": "npm install --package-lock-only --ignore-scripts --silent",
"ts-node": "ts-node",
"test": "jest",
"lint": "eslint '{src,tests,benches}/**/*.{js,ts}'",
"lintfix": "eslint '{src,tests,benches}/**/*.{js,ts}' --fix",
"docs": "rm -r ./docs || true; typedoc --gitRevision master --tsconfig ./tsconfig.build.json --out ./docs src",
"bench": "ts-node -r tsconfig-paths/register ./benches"
"lint": "eslint '{src,tests,scripts,benches}/**/*.{js,ts}'",
"lintfix": "eslint '{src,tests,scripts,benches}/**/*.{js,ts}' --fix",
"lint-shell": "find ./src ./tests ./scripts -type f -regextype posix-extended -regex '.*\\.(sh)' -exec shellcheck {} +",
"docs": "rimraf ./docs && typedoc --gitRevision master --tsconfig ./tsconfig.build.json --out ./docs src",
"bench": "rimraf ./benches/results && ts-node ./benches"
},
"dependencies": {
"@matrixai/async-init": "^1.7.3",
"@matrixai/async-init": "^1.8.1",
"@matrixai/logger": "^3.0.0",
"@matrixai/errors": "^1.1.1",
"@matrixai/errors": "^1.1.2",
"threads": "^1.6.5"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/jest": "^28.1.3",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"benny": "^3.6.15",
"benny": "^3.7.1",
"common-tags": "^1.8.2",
"eslint": "^8.15.0",

@@ -40,7 +43,9 @@ "eslint-config-prettier": "^8.5.0",

"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.5",
"jest": "^28.1.1",
"jest-junit": "^14.0.0",
"prettier": "^2.6.2",
"systeminformation": "^5.8.9",
"ts-jest": "^27.0.5",
"ts-node": "^10.4.0",
"rimraf": "^3.0.2",
"systeminformation": "^5.12.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.9.0",

@@ -47,0 +52,0 @@ "typedoc": "^0.22.15",

# js-workers
[![pipeline status](https://gitlab.com/MatrixAI/open-source/js-workers/badges/master/pipeline.svg)](https://gitlab.com/MatrixAI/open-source/js-workers/commits/master)
staging:[![pipeline status](https://gitlab.com/MatrixAI/open-source/js-workers/badges/staging/pipeline.svg)](https://gitlab.com/MatrixAI/open-source/js-workers/commits/staging)
master:[![pipeline status](https://gitlab.com/MatrixAI/open-source/js-workers/badges/master/pipeline.svg)](https://gitlab.com/MatrixAI/open-source/js-workers/commits/master)

@@ -87,5 +88,25 @@ Workers is the library for multi-threading in MatrixAI's JavaScript/TypeScript applications. It is based on top of threads.js.

Publishing is handled automatically by the staging pipeline.
Prerelease:
```sh
# npm login
npm version prepatch --preid alpha # premajor/preminor/prepatch
git push --follow-tags
```
Release:
```sh
# npm login
npm version patch # major/minor/patch
git push --follow-tags
```
Manually:
```sh
# npm login
npm version patch # major/minor/patch
npm run build

@@ -92,0 +113,0 @@ npm publish --access public

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc