Skip to content

Commit

Permalink
package.json: support npm test
Browse files Browse the repository at this point in the history
When using a recent version of npm, `npm test` fails if there is no
test script defined. This is problematic because xyz runs `npm test`
as part of the automated release process.
  • Loading branch information
davidchambers committed Sep 18, 2023
1 parent 8bec771 commit 57eab6f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
"uglify-js": "3.5.x",
"xyz": "4.0.x"
},
"scripts": {
"test": "make lint test"
},
"files": [
"/LICENSE",
"/README.md",
Expand Down

0 comments on commit 57eab6f

Please sign in to comment.