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

Mg update deps #168

Merged
merged 18 commits into from
Dec 28, 2021
Merged
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaVersion": 12
},
"ecmaVersion": 2020
},
"rules": {
"no-mixed-spaces-and-tabs": "off"
}
Expand Down
6 changes: 6 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run build
npx --no-install lint-staged

2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v12
v14
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:12
FROM node:14
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm ci
Expand Down