From 092e16d80c9c26f84c5fd133a8e9b0bd49bda9d9 Mon Sep 17 00:00:00 2001 From: Mat Brown Date: Sun, 1 Sep 2019 13:47:55 -0400 Subject: [PATCH 1/3] Add post-update yarn dedupe to Renovate --- .renovaterc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.renovaterc.json b/.renovaterc.json index e047c3e443..d49b448f1c 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -167,6 +167,7 @@ ] } ], + "postUpdateOptions": ["yarnDedupeFewer"], "prConcurrentLimit": 3, "reviewers": ["outoftime"] } From 9fd373094e11fc9b1833cb1275950e190a63c38a Mon Sep 17 00:00:00 2001 From: Mat Brown Date: Wed, 4 Sep 2019 07:18:17 -0400 Subject: [PATCH 2/3] Enable automerge for patchlevel dependency upgrades --- .renovaterc.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.renovaterc.json b/.renovaterc.json index 5b449709f3..dd46ee2502 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -84,6 +84,11 @@ "stylelint-selector-bem-pattern" ] }, + { + "groupName": "Node.js", + "packageNames": ["node"], + "automerge": false + }, { "groupName": "Project libraries", "packageNames": ["jquery", "p5"] @@ -167,8 +172,12 @@ ] } ], + "patch": { + "automerge": true + }, "postUpdateOptions": ["yarnDedupeFewer"], "prConcurrentLimit": 3, "rebaseStalePrs": true, - "reviewers": ["outoftime"] + "reviewers": ["outoftime"], + "separateMinorPatch": true } From 1492f2f9e0d2aa4a01fcc20761dba70fea0b5cf0 Mon Sep 17 00:00:00 2001 From: Mat Brown Date: Fri, 27 Sep 2019 07:11:23 -0400 Subject: [PATCH 3/3] Pass new Firebase configuration variables into build container --- build/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/build.sh b/build/build.sh index 931b5c9766..5de840e75c 100755 --- a/build/build.sh +++ b/build/build.sh @@ -6,8 +6,10 @@ docker run \ --rm \ --env NODE_ENV=production \ --env FIREBASE_APP \ + --env FIREBASE_APP_ID \ --env FIREBASE_API_KEY \ --env FIREBASE_CLIENT_ID \ + --env FIREBASE_PROJECT_ID \ --env GIT_REVISION="$TRAVIS_COMMIT" \ --env GOOGLE_ANALYTICS_TRACKING_ID \ --volume="$TRAVIS_BUILD_DIR/dist:/app/dist" \