From 8a86d0e6553ee3a3d15004e1585e891ab081cfbf Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Wed, 21 Feb 2018 19:06:35 +0000 Subject: [PATCH] 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 --- .resinci.json | 5 +++++ package.json | 1 + 2 files changed, 6 insertions(+) diff --git a/.resinci.json b/.resinci.json index 1ed21f12..9f10fed7 100644 --- a/.resinci.json +++ b/.resinci.json @@ -21,6 +21,11 @@ "appId": "io.resin.etcher", "copyright": "Copyright 2016 Resinio Ltd", "productName": "Etcher", + "files": [ + "!lib/gui/app", + "lib/gui/app/index.html", + "generated" + ], "mac": { "category": "public.app-category.developer-tools" }, diff --git a/package.json b/package.json index 67ee3a1a..06a95b6b 100644 --- a/package.json +++ b/package.json @@ -24,6 +24,7 @@ "configure": "node-gyp configure", "build": "node-gyp build", "install": "node-gyp rebuild", + "concourse-build-electron": "make webpack", "concourse-test": "npm test", "concourse-test-electron": "npm test", "concourse-test-node-cli": "make lint test-cli sanity-checks"