Skip to content

Commit

Permalink
Updating dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: ytimocin <[email protected]>
  • Loading branch information
ytimocin committed Jul 13, 2024
1 parent e4320de commit b5b17e0
Show file tree
Hide file tree
Showing 8 changed files with 1,109 additions and 1,649 deletions.
72 changes: 40 additions & 32 deletions playwright/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.43.1",
"@types/node": "^20.12.8",
"@types/uuid": "^9.0.8",
"typescript": "^5.4.5"
"@playwright/test": "^1.45.1",
"@types/node": "^20.14.10",
"@types/uuid": "^10.0.0",
"typescript": "^5.5.3"
},
"dependencies": {
"uuid": "^9.0.1"
"uuid": "^10.0.0"
}
}
2 changes: 1 addition & 1 deletion samples/dapr/nodeapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:8-alpine
FROM node:20-alpine
WORKDIR /app
COPY . .
RUN npm install
Expand Down
4 changes: 2 additions & 2 deletions samples/demo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-buster as BUILD
FROM node:20-buster as BUILD
WORKDIR /usr/src/app

COPY package.json package-lock.json ./
Expand All @@ -9,7 +9,7 @@ RUN cd client && npm ci && npm cache clean --force
COPY . .
RUN npm run build

FROM node:18-alpine
FROM node:20-alpine
WORKDIR /usr/src/app

COPY --from=BUILD /usr/src/app/dist ./dist
Expand Down
Loading

0 comments on commit b5b17e0

Please sign in to comment.