Skip to content

Commit

Permalink
Update supported engines (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
rbuckton committed May 8, 2023
1 parent 2c3410c commit 02a6a95
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions native/equatable-native-alpine-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
},
"engines": {
"node": "^16 || ^18",
"electron": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
"node": "^16 || ^18 || ^20",
"electron": "^23 || ^22 || ^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
},
"os": [
"alpine"
Expand Down
4 changes: 2 additions & 2 deletions native/equatable-native-darwin-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
},
"engines": {
"node": "^16 || ^18",
"electron": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
"node": "^16 || ^18 || ^20",
"electron": "^23 || ^22 || ^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
},
"os": [
"darwin"
Expand Down
4 changes: 2 additions & 2 deletions native/equatable-native-darwin-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
},
"engines": {
"node": "^16 || ^18",
"electron": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
"node": "^16 || ^18 || ^20",
"electron": "^23 || ^22 || ^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
},
"os": [
"darwin"
Expand Down
4 changes: 2 additions & 2 deletions native/equatable-native-linux-arm64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
},
"engines": {
"node": "^16 || ^18",
"electron": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
"node": "^16 || ^18 || ^20",
"electron": "^23 || ^22 || ^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
},
"os": [
"linux"
Expand Down
4 changes: 2 additions & 2 deletions native/equatable-native-linux-armhf/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
},
"engines": {
"node": "^16 || ^18",
"electron": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
"node": "^16 || ^18 || ^20",
"electron": "^23 || ^22 || ^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
},
"os": [
"linux"
Expand Down
4 changes: 2 additions & 2 deletions native/equatable-native-linux-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
},
"engines": {
"node": "^16 || ^18",
"electron": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
"node": "^16 || ^18 || ^20",
"electron": "^23 || ^22 || ^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
},
"os": [
"linux"
Expand Down
4 changes: 2 additions & 2 deletions native/equatable-native-win32-ia32/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
},
"engines": {
"node": "^16 || ^18",
"electron": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
"node": "^16 || ^18 || ^20",
"electron": "^23 || ^22 || ^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
},
"os": [
"win32"
Expand Down
4 changes: 2 additions & 2 deletions native/equatable-native-win32-x64/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
}
},
"engines": {
"node": "^16 || ^18",
"electron": "^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
"node": "^16 || ^18 || ^20",
"electron": "^23 || ^22 || ^21 || ^20 || ^19 || ^18 || ^17 || ^16 || ^15"
},
"os": [
"win32"
Expand Down
10 changes: 5 additions & 5 deletions packages/equatable-native/configurations.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,36 @@
"target_platform": ["win32"],
"target_arch": ["ia32", "x64"],
"target": null,
"supported_versions": ["^16", "^18"]
"supported_versions": ["^16", "^18", "^20"]
},
{
"runtime": "node",
"target_platform": ["linux"],
"target_arch": ["x64", "arm64"],
"target": null,
"supported_versions": ["^16", "^18"]
"supported_versions": ["^16", "^18", "^20"]
},
{
"runtime": "node",
"target_platform": ["linux"],
"target_arch": ["armhf"],
"target": null,
"supported_versions": ["^16", "^18"],
"supported_versions": ["^16", "^18", "^20"],
"env": { "npm_config_arch": "arm" }
},
{
"runtime": "node",
"target_platform": ["alpine"],
"target_arch": ["x64"],
"target": null,
"supported_versions": ["^16", "^18"]
"supported_versions": ["^16", "^18", "^20"]
},
{
"runtime": "node",
"target_platform": ["darwin"],
"target_arch": ["x64", "arm64"],
"target": null,
"supported_versions": ["^16", "^18"]
"supported_versions": ["^16", "^18", "^20"]
},

{
Expand Down

0 comments on commit 02a6a95

Please sign in to comment.