Skip to content

Commit e26a053

Browse files
committed
Merge branch 'develop' into feature/bulk-milestone-updates
2 parents 37dd4b1 + 270cdf4 commit e26a053

32 files changed

+3142
-2129
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ deploy_steps: &deploy_steps
3232
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-deployvar
3333
source buildenvvar
3434
./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME}
35-
35+
3636
echo "======= Running Masterscript - deploy projects-api-consumers ==========="
3737
if [ -e ${LOGICAL_ENV}-${APPNAME}-appvar.json ]; then sudo rm -vf ${LOGICAL_ENV}-${APPNAME}-appvar.json; fi
3838
./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-consumers-deployvar
@@ -42,7 +42,7 @@ deploy_steps: &deploy_steps
4242
jobs:
4343
test:
4444
docker:
45-
- image: circleci/node:8.9.4
45+
- image: circleci/node:12.16.1
4646
- image: circleci/postgres:9.6.2-alpine
4747
environment:
4848
- POSTGRES_USER: circle_test

.eslintrc

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,15 @@
1010
"rules": {
1111
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["**/*.test.js", "**/*.spec.js", "src/tests/*.js"]}],
1212
"max-len": ["error", { "ignoreComments": true, "code": 120 }],
13-
"valid-jsdoc": ["error", {
14-
"requireReturn": true,
15-
"requireReturnType": true,
16-
"requireParamDescription": true,
17-
"requireReturnDescription": true
18-
}],
1913
"require-jsdoc": ["error", {
20-
"require": {
21-
"FunctionDeclaration": true,
22-
"MethodDefinition": true,
23-
"ClassDeclaration": true
24-
}
25-
}]
14+
"require": {
15+
"FunctionDeclaration": true,
16+
"MethodDefinition": true,
17+
"ClassDeclaration": true
18+
}
19+
}],
20+
"indent": 0,
21+
"no-multi-spaces": 0,
22+
"valid-jsdoc": 0
2623
}
2724
}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v8.9.4
1+
12.16.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Local setup should work good on **Linux** and **macOS**. But **Windows** is not
2626
### Requirements
2727

2828
* [docker-compose](https://docs.docker.com/compose/install/) - We use docker-compose for running dependencies locally.
29-
* Nodejs 8.9.4 - consider using [nvm](https://github.com/creationix/nvm) or equivalent to manage your node version
29+
* Nodejs 12.16.1 - consider using [nvm](https://github.com/creationix/nvm) or equivalent to manage your node version
3030
* Install [libpg](https://www.npmjs.com/package/pg-native)
3131

3232
### Steps to run locally

0 commit comments

Comments
 (0)