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
- name: Lint Biome
run: bun lint:biome
- name: Test
run: bun run test
+2 -1
View File
@@ -6,9 +6,10 @@
"./packages/*"
],
"scripts": {
"build": "turbo build",
"lint:tsc": "turbo lint:tsc",
"lint:biome": "turbo lint:biome",
"test": "turbo test",
"build": "turbo build",
"pack": "turbo pack",
"clean:cache": "turbo clean:cache",
"clean:dist": "turbo clean:dist",
+1 -1
View File
@@ -29,10 +29,10 @@
]
},
"scripts": {
"build": "tsc",
"lint:tsc": "tsc --noEmit",
"lint:biome": "biome lint",
"test": "vitest run",
"build": "tsc",
"pack": "npm pack",
"clean:cache": "rm -rf .turbo tsconfig.tsbuildinfo",
"clean:dist": "rm -rf dist",
+3
View File
@@ -8,6 +8,9 @@
"lint:biome": {
"cache": false
},
"test": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"inputs": ["./src/**"],