4478598f15
## Summary - Add `effect-fc-next`, a React 19 integration targeting Effect v4 beta. - Introduce component lifecycles, scoped resources, queries, mutations, forms, lenses, views, and refreshable components. - Add `@effect-view/vite-plugin` for Vite Fast Refresh support. - Add an Effect v4 example application covering the new APIs. - Expand test coverage for both the existing and next-generation packages. - Replace the starter Docusaurus content with complete Effect View documentation while preserving the Effect v3 docs as a versioned snapshot. - Update the landing page, navigation, package scripts, and build output. - Extend CI with linting, tests, package builds, Docker builds, and container publishing. ## Validation - `bun lint:tsc` - `bun lint:biome` - `bun test` - `bun run build` - `bun pack` - Docker image build --------- Co-authored-by: Julien Valverdé <julien.valverde@mailo.com> Reviewed-on: Thilawyn/effect-fc#56
28 lines
693 B
JSON
28 lines
693 B
JSON
{
|
|
"name": "@effect-fc/monorepo",
|
|
"packageManager": "bun@1.3.14",
|
|
"private": true,
|
|
"workspaces": [
|
|
"./packages/*"
|
|
],
|
|
"scripts": {
|
|
"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",
|
|
"clean:modules": "turbo clean:modules && rm -rf node_modules"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.16",
|
|
"@effect/language-service": "^0.86.2",
|
|
"@types/bun": "^1.3.14",
|
|
"npm-check-updates": "^22.2.1",
|
|
"npm-sort": "^0.0.4",
|
|
"turbo": "^2.9.16",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|