Skip to content

Commit

Permalink
package.json: engines, set a minimum npm version
Browse files Browse the repository at this point in the history
Lower npm versions than 10.3.0 fail building the addon.

Error: No module named 'distutils'
  • Loading branch information
jmillan committed May 22, 2024
1 parent e469bf2 commit d95db9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"npm-scripts.mjs"
],
"engines": {
"node": ">=18"
"node": ">=18",
"npm": ">=10.3.0"
},
"keywords": [
"webrtc",
Expand Down

0 comments on commit d95db9d

Please sign in to comment.