Skip to content

Commit fb5c7af

Browse files
authored
Merge pull request #36 from dieunity/mac-distribution
Mac distribution in package.json & error fix in Tsconfig
2 parents 96281ad + d1ced64 commit fb5c7af

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

package.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "spearmint",
33
"version": "0.6.0",
44
"description": "An open-source developer tool that simplifies testing and hopes to help increase awareness about web accessibility.",
5-
"author": "spearmintjs",
5+
"author": "Team Spearmint",
66
"build": {
77
"appId": "com.spearmint",
88
"files": [
@@ -12,9 +12,18 @@
1212
],
1313
"directories": {
1414
"buildResources": "build"
15+
},
16+
"linux": {
17+
"target": [
18+
"deb"
19+
],
20+
"maintainer": "Team Spearmint"
1521
}
1622
},
1723
"main": "public/electron.js",
24+
"bugs": {
25+
"url": "https://github.com/oslabs-beta/spearmint_LA42/issues",
26+
},
1827
"homepage": "./",
1928
"private": true,
2029
"dependencies": {
@@ -28,7 +37,6 @@
2837
"concurrently": "^4.1.2",
2938
"cross-env": "^5.2.1",
3039
"dotenv": "^8.2.0",
31-
"electron": "^12.0.5",
3240
"electron-is-dev": "^1.1.0",
3341
"fibers": "^5.0.0",
3442
"js-beautify": "^1.10.0",
@@ -60,6 +68,7 @@
6068
"react-build": "NODE_ENV=production react-scripts build",
6169
"electron-build": "NODE_ENV=production electron-builder -mwl",
6270
"electron-rebuild": "electron-rebuild -f -w node-pty",
71+
"postinstall": "electron-builder install-app-deps",
6372
"release": "npm run react-build && electron-builder --publish=always",
6473
"start-windows": "cross-env NODE_ENV=development concurrently \"cross-env BROWSER=none react-app-rewired start\" \"wait-on http://localhost:3000 && electron .\"",
6574
"start": "NODE_ENV=development concurrently \"cross-env BROWSER=none react-app-rewired start\" \"wait-on http://localhost:3000 && electron .\""
@@ -86,6 +95,7 @@
8695
"@typescript-eslint/parser": "^2.33.0",
8796
"chai": "^4.3.4",
8897
"chai-as-promised": "^7.1.1",
98+
"electron": "^12.0.5",
8999
"electron-builder": "^22.6.1",
90100
"electron-devtools-installer": "^3.0.0",
91101
"electron-rebuild": "^2.3.5",

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
},
2323
"include": [
2424
"src/**/*",
25-
"public/electron.js",
2625
"src/context/__tests__",
2726
"__tests__/hello.test.js",
2827
"tests/spec.integra.js"

0 commit comments

Comments
 (0)