Skip to content

Commit 4f30fce

Browse files
committed
0.3.1
1 parent 77a8f6a commit 4f30fce

File tree

1 file changed

+24
-7
lines changed

1 file changed

+24
-7
lines changed

package.json

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "taskr",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "A simple task manager app",
55
"main": "main/index.js",
66
"repository": "https://github.com/bukinoshita/taskr.git",
@@ -17,17 +17,26 @@
1717
},
1818
"build": {
1919
"appId": "taskr",
20-
"files": ["**/*", "!renderer", "renderer/out"],
20+
"files": [
21+
"**/*",
22+
"!renderer",
23+
"renderer/out"
24+
],
2125
"win": {
22-
"target": ["squirrel"],
26+
"target": [
27+
"squirrel"
28+
],
2329
"icon": "main/static/icon.ico"
2430
},
2531
"mac": {
2632
"category": "public.app-category.developer-tools",
2733
"icon": "main/static/icon.icns"
2834
},
2935
"linux": {
30-
"target": ["AppImage", "deb"]
36+
"target": [
37+
"AppImage",
38+
"deb"
39+
]
3140
}
3241
},
3342
"dependencies": {
@@ -55,7 +64,11 @@
5564
"xo": "^0.18.2"
5665
},
5766
"xo": {
58-
"extends": ["prettier", "prettier/react", "plugin:react/recommended"],
67+
"extends": [
68+
"prettier",
69+
"prettier/react",
70+
"plugin:react/recommended"
71+
],
5972
"rules": {
6073
"react/no-unescaped-entities": 0,
6174
"react/react-in-jsx-scope": 0,
@@ -66,8 +79,12 @@
6679
"no-return-assign": 0,
6780
"import/prefer-default-export": 0
6881
},
69-
"ignores": ["node_modules"],
70-
"globals": ["localStorage"]
82+
"ignores": [
83+
"node_modules"
84+
],
85+
"globals": [
86+
"localStorage"
87+
]
7188
},
7289
"lint-staged": {
7390
"*.js": [

0 commit comments

Comments
 (0)