chore: add "make webpack" as a Concourse build step (#2070)

We also have to add the generated directory to the final package.

Change-Type: patch
Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
This commit is contained in:
Juan Cruz Viotti 2018-02-21 19:06:35 +00:00 committed by GitHub
parent 27c4c0c749
commit 8a86d0e655
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -21,6 +21,11 @@
"appId": "io.resin.etcher", "appId": "io.resin.etcher",
"copyright": "Copyright 2016 Resinio Ltd", "copyright": "Copyright 2016 Resinio Ltd",
"productName": "Etcher", "productName": "Etcher",
"files": [
"!lib/gui/app",
"lib/gui/app/index.html",
"generated"
],
"mac": { "mac": {
"category": "public.app-category.developer-tools" "category": "public.app-category.developer-tools"
}, },

View File

@ -24,6 +24,7 @@
"configure": "node-gyp configure", "configure": "node-gyp configure",
"build": "node-gyp build", "build": "node-gyp build",
"install": "node-gyp rebuild", "install": "node-gyp rebuild",
"concourse-build-electron": "make webpack",
"concourse-test": "npm test", "concourse-test": "npm test",
"concourse-test-electron": "npm test", "concourse-test-electron": "npm test",
"concourse-test-node-cli": "make lint test-cli sanity-checks" "concourse-test-node-cli": "make lint test-cli sanity-checks"