Bump dependencies
Add --ignore-optional to yarn to silence errors by swagger-ui-react
This commit is contained in:
parent
8d91847746
commit
83184cc5f3
4 changed files with 883 additions and 113 deletions
|
@ -7,7 +7,7 @@ FROM node:18-alpine as build-web
|
||||||
WORKDIR /web
|
WORKDIR /web
|
||||||
COPY web .
|
COPY web .
|
||||||
COPY --from=build-docs /app/web/public/swagger.json /web/public
|
COPY --from=build-docs /app/web/public/swagger.json /web/public
|
||||||
RUN yarn install
|
RUN yarn install --ignore-optional
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
|
||||||
FROM golang:alpine as build-app
|
FROM golang:alpine as build-app
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -13,7 +13,7 @@ web: init_web
|
||||||
cd web && yarn build
|
cd web && yarn build
|
||||||
|
|
||||||
init_web:
|
init_web:
|
||||||
cd web && yarn install
|
cd web && yarn install --ignore-optional
|
||||||
|
|
||||||
container:
|
container:
|
||||||
docker build -t gempir/justlog .
|
docker build -t gempir/justlog .
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"@emotion/react": "^11.10.6",
|
"@emotion/react": "^11.10.6",
|
||||||
"@emotion/styled": "^11.10.6",
|
"@emotion/styled": "^11.10.6",
|
||||||
"@mui/icons-material": "^5.11.11",
|
"@mui/icons-material": "^5.11.11",
|
||||||
"@mui/material": "^5.11.11",
|
"@mui/material": "^5.11.12",
|
||||||
"dayjs": "^1.11.7",
|
"dayjs": "^1.11.7",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
|
@ -14,7 +14,7 @@
|
||||||
"react-query": "^3.39.3",
|
"react-query": "^3.39.3",
|
||||||
"react-window": "^1.8.8",
|
"react-window": "^1.8.8",
|
||||||
"runes": "^0.4.3",
|
"runes": "^0.4.3",
|
||||||
"swagger-ui-react": "^4.16.1",
|
"swagger-ui-react": "^4.17.1",
|
||||||
"typescript": "^4.9.5"
|
"typescript": "^4.9.5"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
"@types/styled-components": "^5.1.26",
|
"@types/styled-components": "^5.1.26",
|
||||||
"@types/swagger-ui-react": "^4.11.0",
|
"@types/swagger-ui-react": "^4.11.0",
|
||||||
"@vitejs/plugin-react": "^3.1.0",
|
"@vitejs/plugin-react": "^3.1.0",
|
||||||
"styled-components": "^5.3.6",
|
"styled-components": "^5.3.8",
|
||||||
"vite": "^4.1.4"
|
"vite": "^4.1.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
986
web/yarn.lock
986
web/yarn.lock
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue