Skip to content

Commit

Permalink
Update build settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Nordquist committed Jan 13, 2019
1 parent 37bb0b6 commit 683a6a7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 13 deletions.
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MQ(TT)-Explorer",
"version": "0.0.1",
"name": "MQTT-Explorer",
"version": "0.0.2",
"description": "Explore your message queues",
"main": "electron.js",
"scripts": {
Expand All @@ -20,7 +20,7 @@
"appId": "mqtt-explorer",
"nodeGypRebuild": false,
"mac": {
"category": "de.t7n.apps.mq-explorer",
"category": "de.t7n.apps.mqtt-explorer",
"publish": [
"github"
]
Expand Down Expand Up @@ -59,13 +59,9 @@
"tslint-strict-null-checks": "^1.0.1"
},
"dependencies": {
"@types/electron": "^1.6.10",
"@types/socket.io": "^2.1.2",
"electron-log": "^2.2.17",
"electron-updater": "^4.0.6",
"mqtt": "^2.18.8",
"react-ace": "^6.3.2",
"sha1": "^1.1.1",
"socket.io": "^2.2.0"
"sha1": "^1.1.1"
}
}
10 changes: 5 additions & 5 deletions package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ const linux: builder.CliOptions = {
ia32: true,
armv7l: true,
arm64: true,
linux: ['snap', 'AppImage', 'deb', 'pacman'],
linux: ['AppImage', 'deb', 'snap'],
projectDir: './build/clean',
publish: 'always',
publish: 'onTag',
}

const win: builder.CliOptions = {
x64: true,
ia32: true,
armv7l: false,
arm64: false,
win: ['portable'],
win: ['portable', 'nsis'],
projectDir: './build/clean',
publish: 'always',
publish: 'onTag',
}

const mac: builder.CliOptions = {
Expand All @@ -27,7 +27,7 @@ const mac: builder.CliOptions = {
arm64: false,
mac: ['dmg'],
projectDir: './build/clean',
publish: 'always',
publish: 'onTag',
}

async function buildAll() {
Expand Down

0 comments on commit 683a6a7

Please sign in to comment.