notifications implementation (#34)

* wip: notifications

* wip: more notifications

* wip: add getter to proxy

* wip: add setter

* wip: add static getter and method

* wip: add event handlers

* wip: add doc

* wip: add api demo
This commit is contained in:
Lynn
2017-03-21 09:15:18 -07:00
committed by GitHub
parent 939d083653
commit 0dfa3339a3
16 changed files with 1646 additions and 10 deletions

View File

@@ -9,6 +9,9 @@
"dev:mac": "ELECTRON_DEV=true npm run start",
"dev:win": "SET ELECTRON_DEV=true && npm run start",
"start": "npm run browserify-preload && electron .",
"demo:mac": "ELECTRON_DEV=true npm run start:demo",
"demo:win": "SET ELECTRON_DEV=true && npm run start:demo",
"start:demo": "npm run browserify-preload && electron . --url=file://$(pwd)/demo/index.html",
"dist-mac": "npm run prebuild && build --mac",
"dist-win": "npm run prebuild && build --win --x64",
"dist-win-x86": "npm run prebuild && build --win --ia32",
@@ -16,7 +19,7 @@
"unpacked-win-x86": "npm run prebuild && build --win --ia32 --dir",
"prebuild": "npm run lint && npm run test && npm run browserify-preload",
"lint": "eslint js/**",
"test": "jest --coverage tests/*.test.js",
"test": "jest --coverage --testPathPattern tests",
"browserify-preload": "browserify -o js/preload/_preloadMain.js -x electron js/preload/preloadMain.js && browserify -o js/preload/_preloadChild.js -x electron js/preload/preloadChild.js"
},
"build": {