Add Effect v4 support, Fast Refresh tooling, and revamped docs #56

Merged
Thilawyn merged 133 commits from next into master 2026-07-26 02:32:59 +02:00
4 changed files with 8 additions and 2 deletions
Showing only changes of commit 116c1b440d - Show all commits
+2
View File
@@ -16,3 +16,5 @@ jobs:
run: bun lint:tsc run: bun lint:tsc
- name: Lint Biome - name: Lint Biome
run: bun lint:biome run: bun lint:biome
- name: Test
run: bun run test
+2 -1
View File
@@ -6,9 +6,10 @@
"./packages/*" "./packages/*"
], ],
"scripts": { "scripts": {
"build": "turbo build",
"lint:tsc": "turbo lint:tsc", "lint:tsc": "turbo lint:tsc",
"lint:biome": "turbo lint:biome", "lint:biome": "turbo lint:biome",
"test": "turbo test",
"build": "turbo build",
"pack": "turbo pack", "pack": "turbo pack",
"clean:cache": "turbo clean:cache", "clean:cache": "turbo clean:cache",
"clean:dist": "turbo clean:dist", "clean:dist": "turbo clean:dist",
+1 -1
View File
@@ -29,10 +29,10 @@
] ]
}, },
"scripts": { "scripts": {
"build": "tsc",
"lint:tsc": "tsc --noEmit", "lint:tsc": "tsc --noEmit",
"lint:biome": "biome lint", "lint:biome": "biome lint",
"test": "vitest run", "test": "vitest run",
"build": "tsc",
"pack": "npm pack", "pack": "npm pack",
"clean:cache": "rm -rf .turbo tsconfig.tsbuildinfo", "clean:cache": "rm -rf .turbo tsconfig.tsbuildinfo",
"clean:dist": "rm -rf dist", "clean:dist": "rm -rf dist",
+3
View File
@@ -8,6 +8,9 @@
"lint:biome": { "lint:biome": {
"cache": false "cache": false
}, },
"test": {
"cache": false
},
"build": { "build": {
"dependsOn": ["^build"], "dependsOn": ["^build"],
"inputs": ["./src/**"], "inputs": ["./src/**"],