Add appveyor support (#75)

* Add appveyor build badge
This commit is contained in:
Thomas Nordquist
2019-02-26 23:43:53 +01:00
committed by GitHub
parent 63530a41ac
commit 874cedb422
7 changed files with 130 additions and 30 deletions

View File

@@ -6,10 +6,10 @@
"scripts": {
"start": "electron .",
"test": "yarn run test-backend",
"install": "cd app; yarn; cd ..",
"install": "cd app && yarn && cd ..",
"build": "tsc && cd app && yarn run build && cd ..",
"test-backend": "cd backend && yarn run test && cd ..",
"prepare-release": "./scripts/prepare-release.sh",
"prepare-release": "ts-node scripts/prepare-release.ts",
"package": "ts-node package.ts",
"ui-test": "./scripts/uiTests.sh",
"upload-video-artifacts": "./scripts/uploadVideoAsset.ts ui-test.mp4 ui-test.gif",
@@ -32,6 +32,12 @@
"category": "Development",
"maintainer": "Thomas Nordquist"
},
"appx": {
"applicationId": "mqttexplorer",
"identityName": "51031thomas.nordquist.MQTT-Explorer",
"publisherDisplayName": "Thomas Nordquist",
"publisher": "CN=0A6DE643-4AA2-4FF2-9729-6935C9ED8C13"
},
"directories": {
"app": "./",
"buildResources": "res",
@@ -44,6 +50,7 @@
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.5",
"@types/lowdb": "^1.0.6",
"@types/mime": "^2.0.0",
"@types/mocha": "^5.2.5",
@@ -55,6 +62,7 @@
"chai": "^4.2.0",
"electron": "^4.0.2",
"electron-builder": "^20.38.5",
"fs-extra": "^7.0.1",
"mime": "^2.4.0",
"mocha": "^5.2.0",
"mustache": "^3.0.1",