Skip to content

Commit

Permalink
fix: require at least Atom 1.52 - electron 6
Browse files Browse the repository at this point in the history
Previously we loosely allowed older Atom versions, although the code is not built for that.
  • Loading branch information
aminya committed Jul 25, 2021
1 parent c17c299 commit 8fc0612
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"atomTestRunner": "./spec/custom-runner",
"license": "MIT",
"engines": {
"atom": ">=1.50.0 <2.0.0"
"atom": ">=1.52 <2.0.0",
"electron": ">=6.x"
},
"providedServices": {
"platformioIDETerminal": {
Expand Down Expand Up @@ -104,9 +105,6 @@
"targets": {
"main": {
"context": "electron-renderer",
"engines": {
"electron": ">=6.x"
},
"includeNodeModules": {
"atom": false,
"electron": false,
Expand Down

0 comments on commit 8fc0612

Please sign in to comment.