Skip to content

Commit

Permalink
remove hotkeys package
Browse files Browse the repository at this point in the history
  • Loading branch information
amiechen committed Apr 2, 2018
1 parent 41193de commit 40c8b6b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 16 deletions.
7 changes: 1 addition & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,17 @@
"start": "electron .",
"package": "build",
"publish": "build -p always",
"build:mac":
"electron-packager . Pretzel --platform=darwin --arch=x64 --asar --icon='./build/icon.icns' --osx-sign",
"build:win":
"electron-packager . Pretzel --platform=win32 --arch=x64 --asar --icon=icon.ico",
"build:linux":
"electron-packager . Pretzel --platform=linux --arch=x64 --asar --icon=icon.ico"
"build:mac": "electron-packager . Pretzel --platform=darwin --arch=x64 --asar --icon='./build/icon.icns' --osx-sign",
"build:win": "electron-packager . Pretzel --platform=win32 --arch=x64 --asar --icon=icon.ico",
"build:linux": "electron-packager . Pretzel --platform=linux --arch=x64 --asar --icon=icon.ico"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amiechen/pretzel.git"
},
"keywords": ["shortcuts"],
"keywords": [
"shortcuts"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/amiechen/pretzel/issues"
Expand All @@ -29,7 +28,6 @@
"dependencies": {
"electron-settings": "^3.1.4",
"electron-updater": "^2.21.3",
"hotkeys-js": "^3.1.1",
"js-yaml": "^3.11.0",
"menubar": "^5.2.3",
"objc": "^0.12.0",
Expand All @@ -41,7 +39,11 @@
},
"build": {
"appId": "com.Hyperyolo.Pretzel",
"files": ["**/*", "!screenshot/${/*}", "!docs${/*}"],
"files": [
"**/*",
"!screenshot/${/*}",
"!docs${/*}"
],
"copyright": "Copyright © Amie Chen"
}
}
1 change: 0 additions & 1 deletion renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ const fs = require("fs");
// third party
const { ipcRenderer, remote, shell } = require("electron");
const yaml = require("js-yaml");
const hotkeys = require("hotkeys-js");
const setting = require("./setting");
// variables
const appName = get(".app-name");
Expand Down

0 comments on commit 40c8b6b

Please sign in to comment.