Skip to content

Commit 8744737

Browse files
committed
chore: update packages
1 parent 0735187 commit 8744737

File tree

18 files changed

+250
-165
lines changed

18 files changed

+250
-165
lines changed

Diff for: apps/book-server/books/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"lint": "next lint"
1111
},
1212
"dependencies": {
13-
"next": "14.2.1",
13+
"next": "14.2.5",
1414
"nextra": "2.13.4",
1515
"nextra-theme-docs": "2.13.4",
1616
"prettier": "3.2.5",

Diff for: apps/book-server/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"mime": "^4.0.1",
5050
"mqemitter-redis": "^5.0.0",
5151
"nanoid": "^5.0.7",
52-
"next": "^14.2.1",
52+
"next": "^14.2.5",
5353
"nextra": "^2.13.4",
5454
"nextra-theme-docs": "^2.13.4",
5555
"prisma": "^5.17.0",
@@ -78,7 +78,7 @@
7878
"@types/jest": "^29.5.12",
7979
"@types/node": "^20.12.5",
8080
"@typescript-eslint/eslint-plugin": "^7.13.1",
81-
"@typescript-eslint/parser": "^7.6.0",
81+
"@typescript-eslint/parser": "^7.16.0",
8282
"dotenv-cli": "^7.2.1",
8383
"eslint": "^9.5.0",
8484
"inquirer": "^9.2.23",
@@ -89,4 +89,4 @@
8989
"tsx": "^4.6.2",
9090
"typescript": "^5.4.5"
9191
}
92-
}
92+
}

Diff for: apps/book-web/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"graphql-tag": "^2.12.6",
2828
"graphql-ws": "^5.16.0",
2929
"gray-matter": "^4.0.3",
30-
"next": "14.2.3",
30+
"next": "14.2.5",
3131
"react": "^18",
3232
"react-dom": "^18",
3333
"rehype-katex": "^7.0.0",

Diff for: apps/cron/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"date-fns": "^3.6.0",
3333
"date-fns-tz": "^3.1.3",
3434
"discord.js": "^14.14.1",
35-
"dotenv": "^16.3.1",
35+
"dotenv": "^16.4.5",
3636
"fastify": "^4.26.2",
3737
"fastify-cron": "^1.3.1",
3838
"fastify-plugin": "^4.5.1",
@@ -50,11 +50,11 @@
5050
"@packages/tsconfig": "workspace:*",
5151
"@swc-node/register": "^1.9.1",
5252
"@types/geoip-country": "^4.0.2",
53-
"@types/inquirer": "^9.0.3",
53+
"@types/inquirer": "^9.0.7",
5454
"@types/jest": "^29.5.2",
5555
"@types/node": "^20.12.5",
56-
"@typescript-eslint/eslint-plugin": "^7.11.0",
57-
"@typescript-eslint/parser": "^7.6.0",
56+
"@typescript-eslint/eslint-plugin": "^7.13.1",
57+
"@typescript-eslint/parser": "^7.16.0",
5858
"eslint": "^9.5.0",
5959
"nodemon": "^2.0.22",
6060
"ts-paths-esm-loader": "^1.4.3",

Diff for: apps/server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"date-fns": "^2.30.0",
4848
"date-fns-tz": "^2.0.0",
4949
"discord.js": "^14.14.1",
50-
"dotenv": "^16.1.4",
50+
"dotenv": "^16.4.5",
5151
"fastify": "^4.26.2",
5252
"fastify-multer": "^2.0.3",
5353
"fastify-plugin": "^4.5.1",

Diff for: apps/server/src/lib/b2Manager/B2ManagerService.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import B2 from 'backblaze-b2'
33
import { ENV } from '@env'
44
import { finished } from 'stream/promises'
55
import { Readable } from 'stream'
6+
import { ReadableStream } from 'stream/web'
67

78
interface Service {
89
authorize(): Promise<boolean>
@@ -53,9 +54,9 @@ export class B2ManagerService implements Service {
5354
return { authorizationToken, uploadUrl }
5455
}
5556

56-
public async streamUpload(stream: Readable, fileName: string, contentLength?: number) {
57+
public async streamUpload(stream: any, fileName: string, contentLength?: number) {
5758
const chunks: any[] = []
58-
stream.on('data', (chunk) => chunks.push(chunk))
59+
stream.on('data', (chunk: string) => chunks.push(chunk))
5960
await finished(stream)
6061

6162
const buffer = Buffer.concat(chunks)

Diff for: apps/web/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ COPY --from=pruner /app/out/pnpm-lock.yaml ./pnpm-lock.yaml
4040
COPY --from=pruner /app/out/pnpm-workspace.yaml ./pnpm-workspace.yaml
4141
COPY --from=pruner /app/out/full/ ./
4242

43-
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
43+
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prefer-frozen-lockfile
4444

4545
RUN pnpm --filter ${APP_NAME} ssm pull -e ${DOCKER_ENV}
4646
RUN pnpm --filter ${APP_NAME} env:copy -e ${DOCKER_ENV}

Diff for: apps/web/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@
3333
"codemirror": "5.51",
3434
"date-fns": "^2.30.0",
3535
"date-fns-tz": "^2.0.0",
36-
"dotenv": "^16.3.1",
36+
"dotenv": "^16.4.5",
3737
"framer-motion": "^10.12.17",
3838
"graphql": "^16.7.1",
3939
"graphql-request": "^6.1.0",
4040
"graphql-tag": "^2.12.6",
4141
"html-react-parser": "^5.0.6",
4242
"inquirer": "^9.2.23",
4343
"nanoid": "^5.0.7",
44-
"next": "^14.2.1",
44+
"next": "^14.2.5",
4545
"next-seo": "^6.0.0",
4646
"prismjs": "^1.29.0",
4747
"react": "^18.2.0",
@@ -82,16 +82,16 @@
8282
"@testing-library/react": "^14.0.0",
8383
"@types/codemirror": "^0.0.84",
8484
"@types/gtag.js": "^0.0.12",
85-
"@types/inquirer": "^9.0.3",
85+
"@types/inquirer": "^9.0.7",
8686
"@types/jest": "^29.5.2",
8787
"@types/node": "^20.12.5",
8888
"@types/prismjs": "^1.26.2",
8989
"@types/react": "^18.2.48",
9090
"@types/react-dom": "18.2.6",
9191
"@types/sanitize-html": "^2.9.0",
9292
"@types/throttle-debounce": "^5.0.1",
93-
"@typescript-eslint/eslint-plugin": "^7.5.0",
94-
"@typescript-eslint/parser": "^7.6.0",
93+
"@typescript-eslint/eslint-plugin": "^7.13.1",
94+
"@typescript-eslint/parser": "^7.16.0",
9595
"encoding": "^0.1.13",
9696
"eslint": "^9.5.0",
9797
"typescript": "^5.4.5",

Diff for: infrastructure/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@pulumi/awsx": "^2.6.0",
1313
"@pulumi/docker": "^4.5.2",
1414
"@pulumi/pulumi": "^3.111.1",
15-
"dotenv": "^16.3.1",
15+
"dotenv": "^16.4.5",
1616
"tsx": "^4.7.1",
1717
"zod": "^3.21.4"
1818
},

Diff for: package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"build": "turbo build",
1111
"lint": "pnpm -r lint",
1212
"clean": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' +",
13-
"prisma:init": "pnpm -r prisma:generate"
13+
"prisma:init": "pnpm --filter=@packages/database prisma:generate"
1414
},
15-
"packageManager": "pnpm@9.4.0",
15+
"packageManager": "pnpm@9.6.0",
1616
"engines": {
1717
"node": ">=20.11.1",
1818
"pnpm": ">=9.1.3",
@@ -36,14 +36,14 @@
3636
"@eslint/eslintrc": "^3.0.2",
3737
"@packages/eslint-config": "workspace:*",
3838
"@packages/tsconfig": "workspace:*",
39-
"husky": "^8.0.0",
40-
"lint-staged": "^13.2.3"
39+
"husky": "^9.1.4",
40+
"lint-staged": "^15.2.8"
4141
},
4242
"resolutions": {
4343
"graphql": "16.8.1",
44-
"next": "14.2.3"
44+
"next": "14.2.5"
4545
},
4646
"dependencies": {
47-
"turbo": "^2.0.6"
47+
"turbo": "^2.0.11"
4848
}
4949
}

Diff for: packages/commonjs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"devDependencies": {
2727
"@types/node": "^20.14.0",
2828
"@typescript-eslint/eslint-plugin": "^7.13.1",
29-
"@typescript-eslint/parser": "^7.6.0",
29+
"@typescript-eslint/parser": "^7.16.0",
3030
"eslint": "^9.5.0",
3131
"typescript": "^5.4.5"
3232
}

Diff for: packages/database/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
"devDependencies": {
5252
"@packages/eslint-config": "workspace:*",
5353
"@packages/tsconfig": "workspace:*",
54-
"@types/inquirer": "^9.0.3",
54+
"@types/inquirer": "^9.0.7",
5555
"@types/jest": "^29.5.3",
5656
"@types/node": "^20.12.5",
5757
"@typescript-eslint/eslint-plugin": "^7.13.1",
58-
"@typescript-eslint/parser": "^7.6.0",
58+
"@typescript-eslint/parser": "^7.16.0",
5959
"eslint": "^9.5.0",
6060
"typescript": "^5.4.5"
6161
}

Diff for: packages/eslint-config/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
"@eslint/js": "^9.5.0",
2020
"@packages/tsconfig": "workspace:*",
2121
"@types/node": "^20.14.5",
22-
"@typescript-eslint/eslint-plugin": "^7.5.0",
23-
"@typescript-eslint/parser": "^7.6.0",
22+
"@typescript-eslint/eslint-plugin": "^7.13.1",
23+
"@typescript-eslint/parser": "^7.16.0",
2424
"eslint": "^9.5.0",
2525
"eslint-config-prettier": "^9.0.0",
2626
"prettier": "^3.2.5",
2727
"typescript": "^5.4.5"
2828
}
29-
}
29+
}

Diff for: packages/library/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"@types/jsonwebtoken": "^9.0.2",
6161
"@types/nanoid-dictionary": "^4.2.3",
6262
"@typescript-eslint/eslint-plugin": "^7.13.1",
63-
"@typescript-eslint/parser": "^7.6.0",
63+
"@typescript-eslint/parser": "^7.16.0",
6464
"eslint": "^9.5.0",
6565
"tsx": "^4.7.2",
6666
"typescript": "^5.4.5"

Diff for: packages/markdown-editor/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"intersection-observer": "^0.12.2",
7474
"lucide-react": "^0.379.0",
7575
"match-sorter": "^6.3.1",
76-
"next": "^14.2.3",
76+
"next": "14.2.5",
7777
"next-mdx-remote": "5.0.0",
7878
"next-seo": "^6.0.0",
7979
"next-themes": "^0.2.1",
@@ -112,8 +112,8 @@
112112
"@types/react-dom": "^18.2.7",
113113
"@types/throttle-debounce": "^5.0.1",
114114
"@types/title": "^3.4.3",
115-
"@typescript-eslint/eslint-plugin": "^7.11.0",
116-
"@typescript-eslint/parser": "^7.11.0",
115+
"@typescript-eslint/eslint-plugin": "^7.13.1",
116+
"@typescript-eslint/parser": "^7.16.0",
117117
"@vitejs/plugin-react": "^4.1.0",
118118
"concurrently": "^8.0.0",
119119
"eslint": "^9.5.0",

Diff for: packages/markdown-editor/style.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: packages/not-shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@prisma/client": "^5.17.0",
3131
"date-fns": "^2.30.0",
3232
"discord.js": "^14.14.1",
33-
"dotenv": "^16.3.1",
33+
"dotenv": "^16.4.5",
3434
"inquirer": "^9.2.23",
3535
"ioredis": "^5.3.2",
3636
"prisma": "^5.17.0",

0 commit comments

Comments
 (0)