Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update (almost) all deps #372

Merged
merged 12 commits into from
Jan 10, 2025
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no-install commitlint --edit $1
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx --no-install lint-staged
4 changes: 4 additions & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint
3 changes: 0 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,7 @@

"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.renderIndentGuides": true,
"tslint.enable": false,
"editor.rulers": [100],
"editor.wordWrapColumn": 100,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.exclude": {
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3.3'

services:
mgdb-migrator-dev:
image: node:12-alpine
image: node:14-alpine
command: sh -c 'cd /usr/src/mgdb-migrator && exec npm test'
depends_on:
- mgdb-migrator-db
Expand All @@ -24,7 +24,7 @@ services:
command: mongod --bind_ip 0.0.0.0

mgdb-migrator-test:
image: node:12-alpine
image: node:14-alpine
command: sh -c 'cd /usr/src/mgdb-migrator && exec npm test'
depends_on:
- mgdb-migrator-db
Expand Down
Loading