Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
"extends": ["@vlandoss/config/biome"],
"$schema": "https://biomejs.dev/schemas/2.4.15/schema.json",
"extends": ["@rrlab/biome-config"],
"files": {
"includes": ["**", "!**/routeTree.gen.ts", "!examples"]
}
Expand Down
2 changes: 1 addition & 1 deletion docsite/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@vlandoss/config/ts/react",
"extends": "@rrlab/ts-config/react",
"compilerOptions": {
"types": ["vite/client"]
},
Expand Down
4 changes: 2 additions & 2 deletions examples/backend-bun/biome.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
"extends": ["@vlandoss/config/biome"]
"$schema": "https://biomejs.dev/schemas/2.4.15/schema.json",
"extends": ["@rrlab/biome-config"]
}
262 changes: 50 additions & 212 deletions examples/backend-bun/bun.lock

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions examples/backend-bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@biomejs/biome": "^2.0.0",
"@playwright/test": "1.59.1",
"@rrlab/biome-config": "^0.0.2",
"@rrlab/biome-plugin": "^0.1.1",
"@rrlab/cli": "0.0.3",
"@rrlab/ts-config": "^0.0.2",
"@rrlab/ts-plugin": "^0.1.1",
"@types/bun": "1.3.14",
"@vlandoss/config": "0.2.0",
"@vlandoss/run-run": "0.5.3",
"playwright": "1.59.1",
"typescript": "6.0.3"
"typescript": "^6.0.0"
}
}
7 changes: 7 additions & 0 deletions examples/backend-bun/run-run.config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import biome from "@rrlab/biome-plugin";
import { defineConfig } from "@rrlab/cli/config";
import ts from "@rrlab/ts-plugin";

export default defineConfig({
plugins: [biome(), ts()],
});
2 changes: 1 addition & 1 deletion examples/backend-bun/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@vlandoss/config/ts/no-dom/app",
"extends": "@rrlab/ts-config/no-dom/app",
"compilerOptions": {
"types": ["bun"]
},
Expand Down
4 changes: 2 additions & 2 deletions examples/backend-deno/biome.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
"extends": ["@vlandoss/config/biome"]
"$schema": "https://biomejs.dev/schemas/2.4.15/schema.json",
"extends": ["@rrlab/biome-config"]
}
241 changes: 38 additions & 203 deletions examples/backend-deno/bun.lock

Large diffs are not rendered by default.

11 changes: 7 additions & 4 deletions examples/backend-deno/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@biomejs/biome": "^2.0.0",
"@playwright/test": "1.59.1",
"@rrlab/biome-config": "^0.0.2",
"@rrlab/biome-plugin": "^0.1.1",
"@rrlab/cli": "0.0.3",
"@rrlab/ts-config": "^0.0.2",
"@rrlab/ts-plugin": "^0.1.1",
"@types/deno": "2.5.0",
"@types/node": "24.12.4",
"@vlandoss/config": "0.2.0",
"@vlandoss/run-run": "0.5.3",
"playwright": "1.59.1",
"typescript": "6.0.3"
"typescript": "^6.0.0"
}
}
7 changes: 7 additions & 0 deletions examples/backend-deno/run-run.config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import biome from "@rrlab/biome-plugin";
import { defineConfig } from "@rrlab/cli/config";
import ts from "@rrlab/ts-plugin";

export default defineConfig({
plugins: [biome(), ts()],
});
2 changes: 1 addition & 1 deletion examples/backend-deno/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@vlandoss/config/ts/no-dom/app",
"extends": "@rrlab/ts-config/no-dom/app",
"compilerOptions": {
"types": ["node", "@types/deno"]
},
Expand Down
4 changes: 2 additions & 2 deletions examples/backend-node/biome.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "https://biomejs.dev/schemas/2.4.4/schema.json",
"extends": ["@vlandoss/config/biome"]
"$schema": "https://biomejs.dev/schemas/2.4.15/schema.json",
"extends": ["@rrlab/biome-config"]
}
11 changes: 7 additions & 4 deletions examples/backend-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@
"zod": "4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@biomejs/biome": "^2.0.0",
"@playwright/test": "1.59.1",
"@rrlab/biome-config": "^0.0.2",
"@rrlab/biome-plugin": "^0.1.1",
"@rrlab/cli": "0.0.3",
"@rrlab/ts-config": "^0.0.2",
"@rrlab/ts-plugin": "^0.1.1",
"@types/node": "24.12.4",
"@vlandoss/config": "0.2.0",
"@vlandoss/run-run": "0.5.3",
"playwright": "1.59.1",
"typescript": "6.0.3"
"typescript": "^6.0.0"
}
}
Loading
Loading