Skip to content

Commit 02ca5df

Browse files
authored
upgrade turborepo (#824)
* upgrade turborepo * update * update * update * update * update * try * try 2
1 parent 8c02df6 commit 02ca5df

File tree

5 files changed

+52
-51
lines changed

5 files changed

+52
-51
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"prettier": "3.4.2",
4040
"publint": "0.3.2",
4141
"ts-jest": "29.2.5",
42-
"turbo": "1.12.4",
42+
"turbo": "2.3.3",
4343
"typescript": "5.7.3"
4444
},
4545
"packageManager": "[email protected]",

packages/blob/src/bytes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
type ByteUnit = 'b' | 'kb' | 'mb' | 'gb' | 'tb' | 'pb';
1111

1212
type ByteUnitMap = {
13-
readonly [K in ByteUnit]: number;
13+
readonly [_K in ByteUnit]: number;
1414
};
1515

1616
// eslint-disable-next-line prefer-named-capture-group -- fine

pnpm-lock.yaml

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

tooling/eslint-config-custom/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dependencies": {
88
"@vercel/style-guide": "5.2.0",
99
"eslint": "8.56.0",
10-
"eslint-config-turbo": "1.11.2",
10+
"eslint-config-turbo": "^2.3.3",
1111
"typescript": "5.7.3"
1212
},
1313
"publishConfig": {

turbo.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
3-
"pipeline": {
3+
"envMode": "loose",
4+
"tasks": {
45
"build": {
56
"dependsOn": ["^build"],
67
"outputs": [".next/**", "!.next/cache/**", "dist/**"]

0 commit comments

Comments
 (0)