Skip to content
This repository was archived by the owner on Mar 8, 2024. It is now read-only.

Commit f98fd10

Browse files
committed
bump version to 1.0.1
fix issue with out resolutions are done for auditing don't run as a preinstall script because that messes up npm install
1 parent d1f0987 commit f98fd10

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lefthook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pre-push:
66
commands:
77
packages-audit:
88
tags: security
9-
run: npm audit
9+
run: npm run resolve-audit
1010
eslint:
1111
tags: style
1212
run: npm run lintNoFix

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@payid-org/payid-cli",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "CLI for PayID",
55
"homepage": "https://github.com/payid-org/payid-cli#readme",
66
"bugs": {
@@ -21,10 +21,10 @@
2121
"dist/*"
2222
],
2323
"scripts": {
24-
"preinstall": "npx npm-force-resolutions",
2524
"build": "rm -rf dist && tsc --project .",
2625
"lint": "eslint . --ext .ts --fix --max-warnings 0 && prettier --write '**/*.{md,json}'",
2726
"lintNoFix": "eslint . --ext .ts --max-warnings 0 && prettier --check '**/*.{md,json}'",
27+
"resolve-audit": "npx npm-force-resolutions && npm audit",
2828
"test": "nyc mocha 'test/**/*.test.ts'"
2929
},
3030
"dependencies": {
@@ -71,6 +71,6 @@
7171
"yarn": "please use npm"
7272
},
7373
"resolutions": {
74-
"lodash": "^4.17.19"
74+
"lodash": "^4.17.20"
7575
}
7676
}

0 commit comments

Comments
 (0)