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

Commit

Permalink
bump version to 1.0.1
Browse files Browse the repository at this point in the history
fix issue with out resolutions are done for auditing
don't run as a preinstall script because that messes up npm install
  • Loading branch information
nhartner committed Aug 19, 2020
1 parent d1f0987 commit f98fd10
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lefthook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pre-push:
commands:
packages-audit:
tags: security
run: npm audit
run: npm run resolve-audit
eslint:
tags: style
run: npm run lintNoFix
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@payid-org/payid-cli",
"version": "1.0.0",
"version": "1.0.1",
"description": "CLI for PayID",
"homepage": "https://github.com/payid-org/payid-cli#readme",
"bugs": {
Expand All @@ -21,10 +21,10 @@
"dist/*"
],
"scripts": {
"preinstall": "npx npm-force-resolutions",
"build": "rm -rf dist && tsc --project .",
"lint": "eslint . --ext .ts --fix --max-warnings 0 && prettier --write '**/*.{md,json}'",
"lintNoFix": "eslint . --ext .ts --max-warnings 0 && prettier --check '**/*.{md,json}'",
"resolve-audit": "npx npm-force-resolutions && npm audit",
"test": "nyc mocha 'test/**/*.test.ts'"
},
"dependencies": {
Expand Down Expand Up @@ -71,6 +71,6 @@
"yarn": "please use npm"
},
"resolutions": {
"lodash": "^4.17.19"
"lodash": "^4.17.20"
}
}

0 comments on commit f98fd10

Please sign in to comment.