From c01c5930eff777384379c54be2ac21ed0fabc8af Mon Sep 17 00:00:00 2001 From: Christopher Hoskin Date: Thu, 10 Jan 2019 09:18:01 +0000 Subject: [PATCH] Bump buildscript to 1.1.10 --- services/contacts/Dockerfile | 2 +- services/contacts/Makefile | 2 +- services/contacts/buildscript.txt | 2 +- services/contacts/docker-compose.ci.yml | 2 +- services/contacts/docker-compose.yml | 2 +- services/contacts/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/services/contacts/Dockerfile b/services/contacts/Dockerfile index 9ead057334..5103947c33 100644 --- a/services/contacts/Dockerfile +++ b/services/contacts/Dockerfile @@ -19,4 +19,4 @@ COPY --from=app /app /app WORKDIR /app USER node -CMD ["node","app.js"] +CMD ["node", "--expose-gc", "app.js"] diff --git a/services/contacts/Makefile b/services/contacts/Makefile index 23bda1960f..ea25ef0efe 100644 --- a/services/contacts/Makefile +++ b/services/contacts/Makefile @@ -1,7 +1,7 @@ # This file was auto-generated, do not edit it directly. # Instead run bin/update_build_scripts from # https://github.com/sharelatex/sharelatex-dev-environment -# Version: 1.1.9 +# Version: 1.1.10 BUILD_NUMBER ?= local BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD) diff --git a/services/contacts/buildscript.txt b/services/contacts/buildscript.txt index 86ab84167e..d1eb85caf7 100644 --- a/services/contacts/buildscript.txt +++ b/services/contacts/buildscript.txt @@ -1,4 +1,4 @@ ---script-version=1.1.9 +--script-version=1.1.10 contacts --node-version=6.14.1 --acceptance-creds=None diff --git a/services/contacts/docker-compose.ci.yml b/services/contacts/docker-compose.ci.yml index 17c4ddd2bf..5ab90e1825 100644 --- a/services/contacts/docker-compose.ci.yml +++ b/services/contacts/docker-compose.ci.yml @@ -1,7 +1,7 @@ # This file was auto-generated, do not edit it directly. # Instead run bin/update_build_scripts from # https://github.com/sharelatex/sharelatex-dev-environment -# Version: 1.1.9 +# Version: 1.1.10 version: "2" diff --git a/services/contacts/docker-compose.yml b/services/contacts/docker-compose.yml index dcbc14e683..aeceafb3f3 100644 --- a/services/contacts/docker-compose.yml +++ b/services/contacts/docker-compose.yml @@ -1,7 +1,7 @@ # This file was auto-generated, do not edit it directly. # Instead run bin/update_build_scripts from # https://github.com/sharelatex/sharelatex-dev-environment -# Version: 1.1.9 +# Version: 1.1.10 version: "2" diff --git a/services/contacts/package.json b/services/contacts/package.json index 5084cab51f..75dee41d36 100644 --- a/services/contacts/package.json +++ b/services/contacts/package.json @@ -8,7 +8,7 @@ "url": "https://github.com/sharelatex/contacts-sharelatex.git" }, "scripts": { - "compile:app": "([ -e app/coffee ] && coffee $COFFEE_OPTIONS -o app/js -c app/coffee || echo 'No CoffeeScript folder to compile') && ( [ -e app.coffee ] && coffee $COFFEE_OPTIONS -c app.coffee || echo 'No CoffeeScript app to compile')", + "compile:app": "([ -e app/coffee ] && coffee -m $COFFEE_OPTIONS -o app/js -c app/coffee || echo 'No CoffeeScript folder to compile') && ( [ -e app.coffee ] && coffee -m $COFFEE_OPTIONS -c app.coffee || echo 'No CoffeeScript app to compile')", "start": "npm run compile:app && node $NODE_APP_OPTIONS app.js", "test:acceptance:_run": "mocha --recursive --reporter spec --timeout 30000 --exit $@ test/acceptance/js", "test:acceptance": "npm run compile:app && npm run compile:acceptance_tests && npm run test:acceptance:_run -- --grep=$MOCHA_GREP",