-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace "event.sender.send" call with "event.reply"
side changes: - only electron 5+ is supported since earlier releases didn't have the "event.reply" method - drop node 11 support
- Loading branch information
Showing
4 changed files
with
235 additions
and
131 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,9 @@ branches: | |
- "master" | ||
language: node_js | ||
node_js: | ||
- "lts/*" | ||
- "12" | ||
- "10" | ||
- "8" | ||
os: | ||
- linux | ||
- osx | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "electron-rpc-api", | ||
"version": "5.1.0", | ||
"version": "6.0.0-beta2", | ||
"description": "Wrapper around the Electron's IPC for building type-safe API based RPC-like and reactive interactions", | ||
"author": "Vladimir Yakovlev <[email protected]> (https://github.com/vladimiry)", | ||
"license": "MIT", | ||
|
@@ -13,7 +13,7 @@ | |
], | ||
"main": "./lib/index.js", | ||
"engines": { | ||
"node": ">=8.9.4 <9 || >=10.0.0 < 11 || >=11" | ||
"node": ">=8.9.4 <9 || >=10.0.0 <11 || >=12.0.0" | ||
}, | ||
"scripts": { | ||
"lib": "npm-run-all lib:clean lint lib:compile test", | ||
|
@@ -50,7 +50,7 @@ | |
"@types/sinon": "^7.0.13", | ||
"ava": "^1.2.1", | ||
"cross-env": "^5.2.0", | ||
"electron": "^5.0.6", | ||
"electron": "^6.0.0", | ||
"husky": "^3.0.0", | ||
"import-sort-cli": "^6.0.0", | ||
"import-sort-parser-typescript": "^6.0.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.