Skip to content

chore(deps): update all dependencies #135

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

Merged
merged 2 commits into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 && \
@@ -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

30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": "pnpm@8.15.3",
"packageManager": "pnpm@8.15.8",
"engines": {
"node": "21.6.2"
"node": "21.7.3"
}
}
409 changes: 212 additions & 197 deletions pnpm-lock.yaml

Large diffs are not rendered by default.