create-croissant 0.1.26 → 0.1.27

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/package.json +1 -1
  2. package/template/README.md +1 -1
  3. package/template/apps/{web → platform}/package.json +1 -1
  4. /package/template/apps/{web → platform}/.env.example +0 -0
  5. /package/template/apps/{web → platform}/components.json +0 -0
  6. /package/template/apps/{web → platform}/drizzle.config.ts +0 -0
  7. /package/template/apps/{web → platform}/eslint.config.js +0 -0
  8. /package/template/apps/{web → platform}/public/favicon.ico +0 -0
  9. /package/template/apps/{web → platform}/public/manifest.json +0 -0
  10. /package/template/apps/{web → platform}/public/robots.txt +0 -0
  11. /package/template/apps/{web → platform}/src/components/app-sidebar.tsx +0 -0
  12. /package/template/apps/{web → platform}/src/components/login-form.tsx +0 -0
  13. /package/template/apps/{web → platform}/src/components/search-form.tsx +0 -0
  14. /package/template/apps/{web → platform}/src/components/signup-form.tsx +0 -0
  15. /package/template/apps/{web → platform}/src/components/version-switcher.tsx +0 -0
  16. /package/template/apps/{web → platform}/src/lib/auth-client.ts +0 -0
  17. /package/template/apps/{web → platform}/src/lib/auth-utils.ts +0 -0
  18. /package/template/apps/{web → platform}/src/lib/orpc.ts +0 -0
  19. /package/template/apps/{web → platform}/src/routeTree.gen.ts +0 -0
  20. /package/template/apps/{web → platform}/src/router.tsx +0 -0
  21. /package/template/apps/{web → platform}/src/routes/__root.tsx +0 -0
  22. /package/template/apps/{web → platform}/src/routes/_auth/account.tsx +0 -0
  23. /package/template/apps/{web → platform}/src/routes/_auth/dashboard.tsx +0 -0
  24. /package/template/apps/{web → platform}/src/routes/_auth/examples/client-orpc-auth.tsx +0 -0
  25. /package/template/apps/{web → platform}/src/routes/_auth/examples/ssr-orpc-auth.tsx +0 -0
  26. /package/template/apps/{web → platform}/src/routes/_auth.tsx +0 -0
  27. /package/template/apps/{web → platform}/src/routes/_public/examples/client-orpc.tsx +0 -0
  28. /package/template/apps/{web → platform}/src/routes/_public/examples/isr.tsx +0 -0
  29. /package/template/apps/{web → platform}/src/routes/_public/examples/ssr-orpc.tsx +0 -0
  30. /package/template/apps/{web → platform}/src/routes/_public/index.tsx +0 -0
  31. /package/template/apps/{web → platform}/src/routes/_public/login.tsx +0 -0
  32. /package/template/apps/{web → platform}/src/routes/_public/signup.tsx +0 -0
  33. /package/template/apps/{web → platform}/src/routes/_public.tsx +0 -0
  34. /package/template/apps/{web → platform}/src/routes/api/auth/$.ts +0 -0
  35. /package/template/apps/{web → platform}/src/routes/api/rpc.$.ts +0 -0
  36. /package/template/apps/{web → platform}/tsconfig.json +0 -0
  37. /package/template/apps/{web → platform}/vite.config.ts +0 -0
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.26",
6
+ "version": "0.1.27",
7
7
  "description": "Scaffold a new project using the Croissant Stack",
8
8
  "repository": {
9
9
  "type": "git",
@@ -34,7 +34,7 @@ You can see the configuration in `turbo.json`.
34
34
 
35
35
  ## 📁 Project Structure
36
36
 
37
- - `apps/web`: The main TanStack Start application. Uses `@/` path alias for clean imports.
37
+ - `apps/platform`: The main TanStack Start application. Uses `@/` path alias for clean imports.
38
38
  - `packages/auth`: Authentication logic and Better Auth configuration.
39
39
  - `packages/db`: Database schema, migrations, and Drizzle client.
40
40
  - `packages/orpc`: Type-safe API router. Organized into modular files (e.g., `lib/planets.ts`).
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "web",
2
+ "name": "platform",
3
3
  "version": "0.0.1",
4
4
  "type": "module",
5
5
  "private": true,
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes