Skip to content

Commit

Permalink
fix: Require Node 14 only (#10)
Browse files Browse the repository at this point in the history
In order to get electron/windows-installer#501
over the hump, I'll need `@electron/windows-sign` to install fine on
Node 14. Turns out, we don't really need Node 16, so I'm just
downgrading our requirements here.

This is a non-breaking change.
  • Loading branch information
felixrieseberg authored Feb 29, 2024
1 parent 6c290b8 commit 9fa70fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=16.0.0"
"node": ">=14.14"
}
}
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2021",
"target": "ES2020",
"lib": [
"ES2021"
"ES2020"
],
"sourceMap": false,
"strict": true,
Expand Down

0 comments on commit 9fa70fa

Please sign in to comment.