@matrixai/async-locks
Advanced tools
Comparing version 3.1.1 to 3.1.2
{ | ||
"name": "@matrixai/async-locks", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"author": "Roger Qiu", | ||
@@ -17,15 +17,17 @@ "description": "Asynchronous locking utilities", | ||
"postversion": "npm install --package-lock-only --ignore-scripts --silent", | ||
"ts-node": "ts-node -r tsconfig-paths/register", | ||
"ts-node": "ts-node", | ||
"test": "jest", | ||
"lint": "eslint '{src,tests}/**/*.{js,ts}'", | ||
"lintfix": "eslint '{src,tests}/**/*.{js,ts}' --fix", | ||
"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" | ||
}, | ||
"dependencies": { | ||
"@matrixai/errors": "^1.1.2", | ||
"@matrixai/resources": "^1.1.3", | ||
"@matrixai/errors": "^1.1.3", | ||
"@matrixai/resources": "^1.1.4", | ||
"async-mutex": "^0.3.2" | ||
}, | ||
"devDependencies": { | ||
"@types/jest": "^27.0.2", | ||
"@swc/core": "^1.2.215", | ||
"@types/jest": "^28.1.3", | ||
"@types/node": "^16.11.7", | ||
@@ -38,8 +40,8 @@ "@typescript-eslint/eslint-plugin": "^5.23.0", | ||
"eslint-plugin-prettier": "^4.0.0", | ||
"jest": "^27.2.5", | ||
"jest-junit": "^13.2.0", | ||
"jest": "^28.1.1", | ||
"jest-junit": "^14.0.0", | ||
"prettier": "^2.6.2", | ||
"rimraf": "^3.0.2", | ||
"ts-jest": "^27.0.5", | ||
"ts-node": "^10.4.0", | ||
"ts-jest": "^28.0.5", | ||
"ts-node": "^10.9.1", | ||
"tsconfig-paths": "^3.9.0", | ||
@@ -46,0 +48,0 @@ "typedoc": "^0.22.15", |
@@ -43,5 +43,25 @@ # js-async-locks | ||
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 | ||
@@ -48,0 +68,0 @@ npm publish --access public |
76172
71
18
Updated@matrixai/errors@^1.1.3
Updated@matrixai/resources@^1.1.4