Skip to content

Commit 8e8a1d8

Browse files
committed
update dependencies
1 parent 04bf44b commit 8e8a1d8

File tree

9 files changed

+98
-182
lines changed

9 files changed

+98
-182
lines changed

apps/2048/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"type": "module",
44
"private": true,
55
"scripts": {
6-
"build": "bunx astro build",
7-
"deploy": "bunx wrangler deploy",
8-
"dev": "bunx astro dev"
6+
"build": "astro build",
7+
"deploy": "wrangler deploy",
8+
"dev": "astro dev"
99
},
1010
"dependencies": {
11-
"@astrojs/solid-js": "catalog:",
1211
"astro": "catalog:",
1312
"solid-js": "catalog:"
1413
},
1514
"devDependencies": {
15+
"@astrojs/solid-js": "catalog:",
1616
"wrangler": "catalog:"
1717
}
1818
}

apps/app/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"type": "module",
44
"private": true,
55
"scripts": {
6-
"build": "bunx astro build",
7-
"deploy": "bunx wrangler deploy",
8-
"dev": "bunx astro dev"
6+
"build": "astro build",
7+
"deploy": "wrangler deploy",
8+
"dev": "astro dev"
99
},
1010
"dependencies": {
11-
"@astrojs/solid-js": "catalog:",
1211
"astro": "catalog:",
1312
"solid-js": "catalog:"
1413
},
1514
"devDependencies": {
15+
"@astrojs/solid-js": "catalog:",
1616
"wrangler": "catalog:"
1717
}
1818
}

apps/bulls-and-cows/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"type": "module",
44
"private": true,
55
"scripts": {
6-
"build": "bunx astro build",
7-
"deploy": "bunx wrangler deploy",
8-
"dev": "bunx astro dev"
6+
"build": "astro build",
7+
"deploy": "wrangler deploy",
8+
"dev": "astro dev"
99
},
1010
"dependencies": {
11-
"@astrojs/solid-js": "catalog:",
1211
"astro": "catalog:",
1312
"solid-js": "catalog:"
1413
},
1514
"devDependencies": {
15+
"@astrojs/solid-js": "catalog:",
1616
"wrangler": "catalog:"
1717
}
1818
}

apps/connect-four/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"type": "module",
44
"private": true,
55
"scripts": {
6-
"build": "bunx astro build",
7-
"deploy": "bunx wrangler deploy",
8-
"dev": "bunx astro dev"
6+
"build": "astro build",
7+
"deploy": "wrangler deploy",
8+
"dev": "astro dev"
99
},
1010
"dependencies": {
11-
"@astrojs/solid-js": "catalog:",
1211
"astro": "catalog:",
1312
"solid-js": "catalog:"
1413
},
1514
"devDependencies": {
15+
"@astrojs/solid-js": "catalog:",
1616
"wrangler": "catalog:"
1717
}
1818
}

apps/tetris/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
"type": "module",
44
"private": true,
55
"scripts": {
6-
"build": "bunx astro build",
7-
"deploy": "bunx wrangler deploy",
8-
"dev": "bunx astro dev"
6+
"build": "astro build",
7+
"deploy": "wrangler deploy",
8+
"dev": "astro dev"
99
},
1010
"dependencies": {
11-
"@astrojs/solid-js": "catalog:",
1211
"astro": "catalog:",
1312
"solid-js": "catalog:"
1413
},
1514
"devDependencies": {
15+
"@astrojs/solid-js": "catalog:",
1616
"wrangler": "catalog:"
1717
}
1818
}

apps/wordle/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"test": "bun test"
1010
},
1111
"dependencies": {
12-
"@astrojs/solid-js": "catalog:",
13-
"@tailwindcss/vite": "catalog:",
1412
"astro": "catalog:",
1513
"solid-js": "catalog:",
1614
"tailwindcss": "catalog:"
1715
},
1816
"devDependencies": {
17+
"@astrojs/solid-js": "catalog:",
18+
"@tailwindcss/vite": "catalog:",
1919
"wrangler": "catalog:"
2020
}
2121
}

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

bun.lock

Lines changed: 71 additions & 155 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"apps/*"
66
],
77
"catalog": {
8-
"@astrojs/solid-js": "6.0.0-alpha.0",
8+
"@astrojs/solid-js": "^6.0.0-beta.1",
99
"@tailwindcss/vite": "^4.1.18",
10-
"astro": "6.0.0-alpha.4",
10+
"astro": "^6.0.0-beta.1",
1111
"solid-js": "^1.9.10",
1212
"tailwindcss": "^4.1.18",
13-
"wrangler": "^4.54.0"
13+
"wrangler": "^4.59.2"
1414
}
1515
},
1616
"scripts": {
@@ -19,7 +19,7 @@
1919
"format": "biome format --write"
2020
},
2121
"devDependencies": {
22-
"@biomejs/biome": "2.3.10",
22+
"@biomejs/biome": "2.3.11",
2323
"typescript": "^5.9.3"
2424
}
2525
}

0 commit comments

Comments
 (0)