Skip to content

Commit 1366176

Browse files
committed
chore(deps): update dependencies
1 parent d742354 commit 1366176

File tree

7 files changed

+2709
-2148
lines changed

7 files changed

+2709
-2148
lines changed

.husky/commit-msg

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4+
# The reason we're exporting this variable is because of this issue:
5+
# https://github.com/typicode/husky/issues/968
6+
export FORCE_COLOR=1
7+
48
npx commitlint --edit $1 ||
59
(
610
echo '✍📤 It seems that the format of the commit does not follow the conventional commit convention. You can also try committing with the "npm run commit" command.';

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4+
# The reason we're exporting this variable is because of this issue:
5+
# https://github.com/typicode/husky/issues/968
6+
export FORCE_COLOR=1
7+
48
echo '🔍🎨 Formating and checking staged files before committing!'
59

610
npx lint-staged ||

.prettierignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
.docker
32
coverage
43
dist

.vscode/settings.json

+19-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,23 @@
1111
"editor.defaultFormatter": "esbenp.prettier-vscode",
1212
"editor.formatOnPaste": true,
1313
"editor.formatOnSave": true,
14-
"eslint.alwaysShowStatus": true
14+
"eslint.alwaysShowStatus": true,
15+
"eslint.options": {
16+
"extensions": [".ts", ".html"]
17+
},
18+
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact", "html"],
19+
"[html]": {
20+
"editor.defaultFormatter": "esbenp.prettier-vscode",
21+
"editor.codeActionsOnSave": {
22+
"source.fixAll.eslint": true
23+
},
24+
"editor.formatOnSave": false
25+
},
26+
"[typescript]": {
27+
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
28+
"editor.codeActionsOnSave": {
29+
"source.fixAll.eslint": true
30+
},
31+
"editor.formatOnSave": false
32+
}
1533
}

docker/Dockerfile

+6
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,18 @@ RUN npm run build
2525

2626
# Dev stage
2727
FROM builder as dev
28+
29+
LABEL maintainer "Borja Paz Rodríguez (@borjapazr)"
30+
2831
ENV NODE_ENV=development
2932
ENV FORCE_COLOR=1
3033
CMD /wait && npm run dev
3134

3235
# Prod stage
3336
FROM node as prod
37+
38+
LABEL maintainer "Borja Paz Rodríguez (@borjapazr)"
39+
3440
ENV NODE_ENV=production
3541
ENV FORCE_COLOR=1
3642
WORKDIR /home/node/app

0 commit comments

Comments
 (0)