From b9fe57757e468081872b79003978dbb47eaf22ed Mon Sep 17 00:00:00 2001 From: Christopher Hoskin Date: Wed, 9 Jan 2019 15:22:17 +0000 Subject: [PATCH] Bump build script to v1.1.10 --- services/notifications/Dockerfile | 2 +- services/notifications/Makefile | 2 +- services/notifications/buildscript.txt | 2 +- services/notifications/docker-compose.ci.yml | 2 +- services/notifications/docker-compose.yml | 2 +- services/notifications/package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/services/notifications/Dockerfile b/services/notifications/Dockerfile index 9ead057334..5103947c33 100644 --- a/services/notifications/Dockerfile +++ b/services/notifications/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/notifications/Makefile b/services/notifications/Makefile index 7e771169b7..acb792890c 100644 --- a/services/notifications/Makefile +++ b/services/notifications/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/notifications/buildscript.txt b/services/notifications/buildscript.txt index 280f47d135..f9657712a9 100644 --- a/services/notifications/buildscript.txt +++ b/services/notifications/buildscript.txt @@ -1,4 +1,4 @@ ---script-version=1.1.9 +--script-version=1.1.10 notifications --node-version=6.14.1 --acceptance-creds=None diff --git a/services/notifications/docker-compose.ci.yml b/services/notifications/docker-compose.ci.yml index 17c4ddd2bf..5ab90e1825 100644 --- a/services/notifications/docker-compose.ci.yml +++ b/services/notifications/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/notifications/docker-compose.yml b/services/notifications/docker-compose.yml index dcbc14e683..aeceafb3f3 100644 --- a/services/notifications/docker-compose.yml +++ b/services/notifications/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/notifications/package.json b/services/notifications/package.json index 3903a3399b..2c05369dac 100644 --- a/services/notifications/package.json +++ b/services/notifications/package.json @@ -4,7 +4,7 @@ "description": "An API to handle user notifications", "main": "app.js", "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",