Skip to content

Commit

Permalink
chore(deps): update all dependencies (#135)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Peïo Thibault <[email protected]>
  • Loading branch information
renovate[bot] and potb authored Apr 30, 2024
1 parent cf4a36b commit 470ba89
Show file tree
Hide file tree
Showing 4 changed files with 234 additions and 221 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
21.6.2
21.7.3
14 changes: 6 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
FROM node:21.6.2-alpine as base
FROM node:21.7.3-alpine as base

WORKDIR /app

RUN corepack enable
RUN apk add --no-cache python3 make g++

COPY pnpm-lock.yaml ./
COPY package.json pnpm-lock.yaml ./
RUN corepack enable

RUN pnpm fetch

FROM base as build

WORKDIR /app

COPY tsup.config.ts package.json ./
COPY tsup.config.ts ./
COPY src ./src

RUN pnpm install --frozen-lockfile --offline && \
Expand All @@ -23,19 +23,17 @@ FROM base as production-dependencies

WORKDIR /app

COPY package.json ./
RUN pnpm prune --prod && \
pnpm install --production --frozen-lockfile --offline && \
pnpm store prune

FROM node:21.6.2-alpine as application
FROM node:21.7.3-alpine as application

WORKDIR /app

COPY --from=production-dependencies --chown=node /app/node_modules ./node_modules
COPY --from=build --chown=node /app/dist ./

RUN echo '{"type":"module"}' > package.json
COPY --from=base --chown=node /app/package.json ./

USER node

Expand Down
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,34 +18,34 @@
"@keyv/redis": "2.8.4",
"cheerio": "1.0.0-rc.12",
"constant-case": "3.0.4",
"cron": "3.1.6",
"cron": "3.1.7",
"discord.js": "14.14.1",
"keyv": "4.5.4",
"open-graph-scraper": "6.4.0",
"open-graph-scraper": "6.5.1",
"param-case": "3.0.4",
"zod": "3.22.4"
"zod": "3.23.5"
},
"devDependencies": {
"@types/node": "20.11.19",
"@typescript-eslint/eslint-plugin": "7.0.1",
"@typescript-eslint/parser": "7.0.1",
"dotenv": "16.4.4",
"eslint": "8.56.0",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-only-error": "1.0.2",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-sonarjs": "0.24.0",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-sonarjs": "0.25.1",
"eslint-plugin-unused-imports": "3.1.0",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"tsup": "8.0.2",
"type-fest": "4.10.2",
"typescript": "5.3.3",
"vitest": "1.3.0"
"type-fest": "4.18.0",
"typescript": "5.4.5",
"vitest": "1.5.3"
},
"packageManager": "[email protected].3",
"packageManager": "[email protected].8",
"engines": {
"node": "21.6.2"
"node": "21.7.3"
}
}
Loading

0 comments on commit 470ba89

Please sign in to comment.