Skip to content

Commit

Permalink
update electron-builder
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Feb 13, 2018
1 parent d721915 commit 62e551e
Show file tree
Hide file tree
Showing 2 changed files with 146 additions and 203 deletions.
32 changes: 25 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,26 @@
},
"build": {
"appId": "taskr",
"files": ["**/*", "!renderer", "renderer/out"],
"files": [
"**/*",
"!renderer",
"renderer/out"
],
"win": {
"target": ["squirrel"],
"target": [
"squirrel"
],
"icon": "main/static/icon.ico"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "main/static/icon.icns"
},
"linux": {
"target": ["AppImage", "deb"]
"target": [
"AppImage",
"deb"
]
}
},
"dependencies": {
Expand All @@ -48,7 +57,7 @@
},
"devDependencies": {
"electron": "^1.7.10",
"electron-builder": "^19.49.2",
"electron-builder": "19.55.1",
"electron-builder-squirrel-windows": "^19.52.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-react": "^7.5.1",
Expand All @@ -61,7 +70,11 @@
"xo": "^0.18.2"
},
"xo": {
"extends": ["prettier", "prettier/react", "plugin:react/recommended"],
"extends": [
"prettier",
"prettier/react",
"plugin:react/recommended"
],
"rules": {
"react/no-unescaped-entities": 0,
"react/react-in-jsx-scope": 0,
Expand All @@ -72,8 +85,13 @@
"no-return-assign": 0,
"import/prefer-default-export": 0
},
"ignores": ["node_modules"],
"globals": ["localStorage", "document"]
"ignores": [
"node_modules"
],
"globals": [
"localStorage",
"document"
]
},
"lint-staged": {
"*.js": [
Expand Down

0 comments on commit 62e551e

Please sign in to comment.