Skip to content

Commit 2225699

Browse files
authored
⬆️ bump devDependencies (#20)
1 parent df716f9 commit 2225699

File tree

5 files changed

+798
-1694
lines changed

5 files changed

+798
-1694
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,3 @@ jobs:
3131

3232
- name: Lint & Format
3333
run: yarn run check
34-
35-
- name: Test
36-
run: yarn test

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,19 @@
44
"private": true,
55
"workspaces": ["packages/*"],
66
"scripts": {
7-
"build": "turbo run build",
87
"dev": "turbo run dev",
9-
"test": "turbo run test",
8+
"build": "turbo run build",
109
"check": "biome check .",
1110
"fix": "biome check . --fix",
1211
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
1312
},
1413
"devDependencies": {
15-
"@biomejs/biome": "^1.9.4",
16-
"@changesets/cli": "^2.26.0",
17-
"turbo": "1.7.3"
14+
"@biomejs/biome": "1.9.4",
15+
"@changesets/cli": "2.28.1",
16+
"turbo": "2.4.4"
1817
},
1918
"engines": {
2019
"node": ">=20.0.0"
2120
},
22-
"dependencies": {},
23-
"packageManager": "[email protected]"
21+
"packageManager": "[email protected]"
2422
}

packages/truffle-browser/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"error-stack-parser": "^2.1.4"
1515
},
1616
"devDependencies": {
17-
"tsup": "6.5.0",
18-
"typescript": "4.9.5"
17+
"tsup": "8.4.0",
18+
"typescript": "5.8.2"
1919
},
2020
"publishConfig": {
2121
"access": "public"

turbo.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
{
22
"$schema": "https://turbo.build/schema.json",
33
"globalDependencies": ["**/.env.*local"],
4-
"pipeline": {
5-
"build": { "dependsOn": ["^build"], "outputs": ["dist/**"] },
6-
"lint": { "outputs": [] },
7-
"test": { "dependsOn": ["^build"], "outputs": [] },
8-
"dev": { "cache": false }
4+
"tasks": {
5+
"build": {
6+
"dependsOn": ["^build"],
7+
"outputs": ["dist/**"]
8+
},
9+
"dev": {
10+
"cache": false
11+
}
912
}
1013
}

0 commit comments

Comments
 (0)