Skip to content

Commit

Permalink
fix: engines field (required node version)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhaenisch committed Mar 28, 2020
1 parent dadfbd2 commit 9e88564
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ charset = utf-8
insert_final_newline = true
trim_trailing_whitespace = true

[package.json]
indent_style = space

[*.{md,yml,yaml}]
indent_style = space

Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"headless-chrome"
],
"engines": {
"node": ">= 10.1.0"
"node": ">=10.17 <11.0 || >=11.14"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -89,12 +89,11 @@
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-var-requires": "off",
"camelcase": "off",
"capitalized-comments": "off",
"node/no-unsupported-features/node-builtins": "off",
"unicorn/string-content": "off"
}
}
Expand Down

0 comments on commit 9e88564

Please sign in to comment.