Skip to content

Commit

Permalink
fix: repair force resolutions, close #28
Browse files Browse the repository at this point in the history
The underlying issue is rogeriochaves/npm-force-resolutions#36. The accepted answer is to change npm-force-resolutions to force-resolutions, as this will not run when a package-lock.json is not present, covering the scenario when you install a package (like we do)
  • Loading branch information
klassm committed Oct 28, 2021
1 parent 5bdbb74 commit b07f7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"test:unit": "jest --selectProjects UNIT",
"test:e2e": "jest --selectProjects E2E --coverage=false",
"generate-readme-table": "ts-node build/generate-readme-table.ts",
"preinstall": "npx npm-force-resolutions",
"preinstall": "npx force-resolutions",
"prepare": "is-ci || husky install",
"watch": "npm run test:unit -- --watch --"
},
Expand Down

0 comments on commit b07f7f9

Please sign in to comment.