Understand the Remix Forms monorepo structure
mainThe repository is a monorepo managed with pnpm workspaces and Turborepo. The primary workspaces are:
apps/web: Contains the website and an example application.packages/remix-forms: Contains the core Remix Forms library.
Workspace scripts are executed from the repository root using pnpm run <script>. Common scripts include:
build: Build the project.dev: Start the development server.lint: Check code style using Biome.lint-fix: Automatically fix Biome linting issues.tsc: Run the TypeScript compiler.test: Run the test suite.