@tanstack/create 0.49.3 → 0.60.0

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 (225) hide show
  1. package/CHANGELOG.md +732 -0
  2. package/dist/add-ons.js +42 -2
  3. package/dist/add-to-app.js +36 -7
  4. package/dist/custom-add-ons/add-on.js +2 -26
  5. package/dist/custom-add-ons/starter.js +1 -2
  6. package/dist/file-helpers.js +11 -10
  7. package/dist/frameworks/react/add-ons/ai/info.json +1 -1
  8. package/dist/frameworks/react/add-ons/apollo-client/info.json +1 -1
  9. package/dist/frameworks/react/add-ons/better-auth/info.json +0 -2
  10. package/dist/frameworks/react/add-ons/clerk/info.json +0 -1
  11. package/dist/frameworks/react/add-ons/db/info.json +1 -1
  12. package/dist/frameworks/react/add-ons/drizzle/info.json +1 -1
  13. package/dist/frameworks/react/add-ons/drizzle/package.json.ejs +4 -0
  14. package/dist/frameworks/react/add-ons/mcp/info.json +1 -2
  15. package/dist/frameworks/react/add-ons/neon/assets/neon-vite-plugin.ts +1 -1
  16. package/dist/frameworks/react/add-ons/neon/info.json +1 -2
  17. package/dist/frameworks/react/add-ons/oRPC/info.json +1 -1
  18. package/dist/frameworks/react/add-ons/paraglide/info.json +1 -1
  19. package/dist/frameworks/react/add-ons/prisma/info.json +1 -1
  20. package/dist/frameworks/react/add-ons/prisma/package.json.ejs +4 -0
  21. package/dist/frameworks/react/add-ons/sentry/info.json +1 -2
  22. package/dist/frameworks/react/add-ons/tRPC/info.json +1 -1
  23. package/dist/frameworks/react/add-ons/tanstack-query/assets/src/integrations/tanstack-query/root-provider.tsx.ejs +1 -29
  24. package/dist/frameworks/react/add-ons/workos/info.json +0 -1
  25. package/dist/frameworks/react/hosts/cloudflare/info.json +0 -1
  26. package/dist/frameworks/react/hosts/netlify/info.json +0 -1
  27. package/dist/frameworks/react/hosts/nitro/info.json +0 -1
  28. package/dist/frameworks/react/hosts/railway/info.json +0 -1
  29. package/dist/frameworks/react/index.js +1 -6
  30. package/dist/frameworks/react/project/base/README.md.ejs +86 -436
  31. package/dist/frameworks/react/project/base/_dot_gitignore +4 -0
  32. package/dist/frameworks/react/project/base/package.json +8 -5
  33. package/dist/frameworks/react/project/base/src/components/Header.tsx.ejs +2 -32
  34. package/dist/frameworks/react/project/base/src/routes/__root.tsx.ejs +4 -44
  35. package/dist/frameworks/react/project/base/src/routes/index.tsx.ejs +99 -61
  36. package/dist/frameworks/react/project/base/src/styles.css.ejs +3 -3
  37. package/dist/frameworks/react/project/base/tsconfig.json.ejs +1 -1
  38. package/dist/frameworks/react/project/base/vite.config.ts.ejs +33 -27
  39. package/dist/frameworks/react/project/packages.json +2 -2
  40. package/dist/frameworks/solid/add-ons/better-auth/info.json +1 -1
  41. package/dist/frameworks/solid/hosts/cloudflare/info.json +0 -1
  42. package/dist/frameworks/solid/hosts/netlify/info.json +0 -1
  43. package/dist/frameworks/solid/hosts/nitro/info.json +0 -1
  44. package/dist/frameworks/solid/hosts/railway/info.json +0 -1
  45. package/dist/frameworks/solid/index.js +1 -6
  46. package/dist/frameworks/solid/project/base/README.md.ejs +43 -117
  47. package/dist/frameworks/solid/project/base/_dot_gitignore +4 -0
  48. package/dist/frameworks/solid/project/base/package.json +8 -3
  49. package/dist/frameworks/solid/project/base/src/components/Header.tsx.ejs +2 -25
  50. package/dist/frameworks/solid/project/base/src/routes/__root.tsx.ejs +3 -30
  51. package/dist/frameworks/solid/project/base/src/routes/index.tsx.ejs +97 -35
  52. package/dist/frameworks/solid/project/base/tsconfig.json.ejs +1 -1
  53. package/dist/frameworks/solid/project/base/vite.config.ts.ejs +15 -20
  54. package/dist/frameworks/solid/project/packages.json +2 -2
  55. package/dist/frameworks.js +0 -1
  56. package/dist/package-json.js +6 -10
  57. package/dist/template-file.js +21 -7
  58. package/dist/types/custom-add-ons/add-on.d.ts +1 -1
  59. package/dist/types/file-helpers.d.ts +0 -1
  60. package/dist/types/types.d.ts +12 -12
  61. package/dist/types.js +1 -2
  62. package/package.json +1 -1
  63. package/src/add-ons.ts +54 -2
  64. package/src/add-to-app.ts +42 -7
  65. package/src/custom-add-ons/add-on.ts +2 -33
  66. package/src/custom-add-ons/starter.ts +1 -2
  67. package/src/file-helpers.ts +11 -10
  68. package/src/frameworks/react/add-ons/ai/info.json +1 -1
  69. package/src/frameworks/react/add-ons/apollo-client/info.json +1 -1
  70. package/src/frameworks/react/add-ons/better-auth/info.json +0 -2
  71. package/src/frameworks/react/add-ons/clerk/info.json +0 -1
  72. package/src/frameworks/react/add-ons/db/info.json +1 -1
  73. package/src/frameworks/react/add-ons/drizzle/info.json +1 -1
  74. package/src/frameworks/react/add-ons/drizzle/package.json.ejs +4 -0
  75. package/src/frameworks/react/add-ons/mcp/info.json +1 -2
  76. package/src/frameworks/react/add-ons/neon/assets/neon-vite-plugin.ts +1 -1
  77. package/src/frameworks/react/add-ons/neon/info.json +1 -2
  78. package/src/frameworks/react/add-ons/oRPC/info.json +1 -1
  79. package/src/frameworks/react/add-ons/paraglide/info.json +1 -1
  80. package/src/frameworks/react/add-ons/prisma/info.json +1 -1
  81. package/src/frameworks/react/add-ons/prisma/package.json.ejs +4 -0
  82. package/src/frameworks/react/add-ons/sentry/info.json +1 -2
  83. package/src/frameworks/react/add-ons/tRPC/info.json +1 -1
  84. package/src/frameworks/react/add-ons/tanstack-query/assets/src/integrations/tanstack-query/root-provider.tsx.ejs +1 -29
  85. package/src/frameworks/react/add-ons/workos/info.json +0 -1
  86. package/src/frameworks/react/hosts/cloudflare/info.json +0 -1
  87. package/src/frameworks/react/hosts/netlify/info.json +0 -1
  88. package/src/frameworks/react/hosts/nitro/info.json +0 -1
  89. package/src/frameworks/react/hosts/railway/info.json +0 -1
  90. package/src/frameworks/react/index.ts +1 -6
  91. package/src/frameworks/react/project/base/README.md.ejs +86 -436
  92. package/src/frameworks/react/project/base/_dot_gitignore +4 -0
  93. package/src/frameworks/react/project/base/package.json +8 -5
  94. package/src/frameworks/react/project/base/src/components/Header.tsx.ejs +2 -32
  95. package/src/frameworks/react/project/base/src/routes/__root.tsx.ejs +4 -44
  96. package/src/frameworks/react/project/base/src/routes/index.tsx.ejs +99 -61
  97. package/src/frameworks/react/project/base/src/styles.css.ejs +3 -3
  98. package/src/frameworks/react/project/base/tsconfig.json.ejs +1 -1
  99. package/src/frameworks/react/project/base/vite.config.ts.ejs +33 -27
  100. package/src/frameworks/react/project/packages.json +2 -2
  101. package/src/frameworks/solid/add-ons/better-auth/info.json +1 -1
  102. package/src/frameworks/solid/hosts/cloudflare/info.json +0 -1
  103. package/src/frameworks/solid/hosts/netlify/info.json +0 -1
  104. package/src/frameworks/solid/hosts/nitro/info.json +0 -1
  105. package/src/frameworks/solid/hosts/railway/info.json +0 -1
  106. package/src/frameworks/solid/index.ts +1 -6
  107. package/src/frameworks/solid/project/base/README.md.ejs +43 -117
  108. package/src/frameworks/solid/project/base/_dot_gitignore +4 -0
  109. package/src/frameworks/solid/project/base/package.json +8 -3
  110. package/src/frameworks/solid/project/base/src/components/Header.tsx.ejs +2 -25
  111. package/src/frameworks/solid/project/base/src/routes/__root.tsx.ejs +3 -30
  112. package/src/frameworks/solid/project/base/src/routes/index.tsx.ejs +97 -35
  113. package/src/frameworks/solid/project/base/tsconfig.json.ejs +1 -1
  114. package/src/frameworks/solid/project/base/vite.config.ts.ejs +15 -20
  115. package/src/frameworks/solid/project/packages.json +2 -2
  116. package/src/frameworks.ts +0 -1
  117. package/src/package-json.ts +6 -10
  118. package/src/template-file.ts +27 -8
  119. package/src/types.ts +1 -2
  120. package/tests/add-to-app.test.ts +37 -0
  121. package/tests/file-helper.test.ts +23 -2
  122. package/tests/package-json.test.ts +32 -0
  123. package/tests/template-file.test.ts +28 -0
  124. package/dist/frameworks/react/add-ons/module-federation/assets/module-federation.config.js.ejs +0 -31
  125. package/dist/frameworks/react/add-ons/module-federation/assets/src/demo-mf-component.tsx +0 -3
  126. package/dist/frameworks/react/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +0 -11
  127. package/dist/frameworks/react/add-ons/module-federation/info.json +0 -11
  128. package/dist/frameworks/react/add-ons/module-federation/package.json +0 -5
  129. package/dist/frameworks/react/add-ons/module-federation/small-logo.svg +0 -87
  130. package/dist/frameworks/react/add-ons/start/assets/_dot_gitignore.append +0 -3
  131. package/dist/frameworks/react/add-ons/start/assets/src/data/demo.punk-songs.ts +0 -13
  132. package/dist/frameworks/react/add-ons/start/assets/src/router.tsx.ejs +0 -77
  133. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/api.names.ts +0 -10
  134. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/api.tq-todos.ts.ejs +0 -35
  135. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.api-request.tsx.ejs +0 -68
  136. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.css.ejs +0 -43
  137. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.server-funcs.tsx.ejs +0 -183
  138. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.data-only.tsx.ejs +0 -55
  139. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.full-ssr.tsx.ejs +0 -55
  140. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.index.tsx.ejs +0 -62
  141. package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.spa-mode.tsx.ejs +0 -62
  142. package/dist/frameworks/react/add-ons/start/assets/src/routes/index.tsx.ejs +0 -142
  143. package/dist/frameworks/react/add-ons/start/assets/src/server.ts.ejs +0 -9
  144. package/dist/frameworks/react/add-ons/start/assets/vite.config.ts.ejs +0 -40
  145. package/dist/frameworks/react/add-ons/start/info.json +0 -61
  146. package/dist/frameworks/react/add-ons/start/package.json +0 -12
  147. package/dist/frameworks/react/add-ons/start/small-logo.svg +0 -1
  148. package/dist/frameworks/react/project/base/index.html.ejs +0 -20
  149. package/dist/frameworks/react/project/base/src/App.css.ejs +0 -38
  150. package/dist/frameworks/react/project/base/src/App.tsx.ejs +0 -63
  151. package/dist/frameworks/react/project/base/src/components/Header.css.ejs +0 -18
  152. package/dist/frameworks/react/project/base/src/logo.svg +0 -12
  153. package/dist/frameworks/react/project/base/src/main.tsx.ejs +0 -166
  154. package/dist/frameworks/react/project/base/src/reportWebVitals.ts.ejs +0 -28
  155. package/dist/frameworks/solid/add-ons/module-federation/assets/module-federation.config.js.ejs +0 -27
  156. package/dist/frameworks/solid/add-ons/module-federation/assets/src/demo-mf-component.tsx +0 -3
  157. package/dist/frameworks/solid/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +0 -9
  158. package/dist/frameworks/solid/add-ons/module-federation/info.json +0 -10
  159. package/dist/frameworks/solid/add-ons/module-federation/package.json +0 -5
  160. package/dist/frameworks/solid/add-ons/module-federation/small-logo.svg +0 -87
  161. package/dist/frameworks/solid/add-ons/start/assets/public/tanstack-circle-logo.png +0 -0
  162. package/dist/frameworks/solid/add-ons/start/assets/public/tanstack-word-logo-white.svg +0 -1
  163. package/dist/frameworks/solid/add-ons/start/assets/src/router.tsx.ejs +0 -30
  164. package/dist/frameworks/solid/add-ons/start/assets/src/routes/demo.start.server-funcs.tsx +0 -49
  165. package/dist/frameworks/solid/add-ons/start/assets/src/routes/index.tsx.ejs +0 -138
  166. package/dist/frameworks/solid/add-ons/start/assets/vite.config.ts.ejs +0 -22
  167. package/dist/frameworks/solid/add-ons/start/info.json +0 -18
  168. package/dist/frameworks/solid/add-ons/start/package.json +0 -15
  169. package/dist/frameworks/solid/add-ons/start/small-logo.svg +0 -1
  170. package/dist/frameworks/solid/project/base/index.html.ejs +0 -20
  171. package/dist/frameworks/solid/project/base/src/App.css.ejs +0 -38
  172. package/dist/frameworks/solid/project/base/src/App.tsx.ejs +0 -34
  173. package/dist/frameworks/solid/project/base/src/logo.svg +0 -120
  174. package/dist/frameworks/solid/project/base/src/main.tsx.ejs +0 -126
  175. package/src/frameworks/react/add-ons/module-federation/assets/module-federation.config.js.ejs +0 -31
  176. package/src/frameworks/react/add-ons/module-federation/assets/src/demo-mf-component.tsx +0 -3
  177. package/src/frameworks/react/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +0 -11
  178. package/src/frameworks/react/add-ons/module-federation/info.json +0 -11
  179. package/src/frameworks/react/add-ons/module-federation/package.json +0 -5
  180. package/src/frameworks/react/add-ons/module-federation/small-logo.svg +0 -87
  181. package/src/frameworks/react/add-ons/start/assets/_dot_gitignore.append +0 -3
  182. package/src/frameworks/react/add-ons/start/assets/src/data/demo.punk-songs.ts +0 -13
  183. package/src/frameworks/react/add-ons/start/assets/src/router.tsx.ejs +0 -77
  184. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/api.names.ts +0 -10
  185. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/api.tq-todos.ts.ejs +0 -35
  186. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.api-request.tsx.ejs +0 -68
  187. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.css.ejs +0 -43
  188. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.server-funcs.tsx.ejs +0 -183
  189. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.data-only.tsx.ejs +0 -55
  190. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.full-ssr.tsx.ejs +0 -55
  191. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.index.tsx.ejs +0 -62
  192. package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.spa-mode.tsx.ejs +0 -62
  193. package/src/frameworks/react/add-ons/start/assets/src/routes/index.tsx.ejs +0 -142
  194. package/src/frameworks/react/add-ons/start/assets/src/server.ts.ejs +0 -9
  195. package/src/frameworks/react/add-ons/start/assets/vite.config.ts.ejs +0 -40
  196. package/src/frameworks/react/add-ons/start/info.json +0 -61
  197. package/src/frameworks/react/add-ons/start/package.json +0 -12
  198. package/src/frameworks/react/add-ons/start/small-logo.svg +0 -1
  199. package/src/frameworks/react/project/base/index.html.ejs +0 -20
  200. package/src/frameworks/react/project/base/src/App.css.ejs +0 -38
  201. package/src/frameworks/react/project/base/src/App.tsx.ejs +0 -63
  202. package/src/frameworks/react/project/base/src/components/Header.css.ejs +0 -18
  203. package/src/frameworks/react/project/base/src/logo.svg +0 -12
  204. package/src/frameworks/react/project/base/src/main.tsx.ejs +0 -166
  205. package/src/frameworks/react/project/base/src/reportWebVitals.ts.ejs +0 -28
  206. package/src/frameworks/solid/add-ons/module-federation/assets/module-federation.config.js.ejs +0 -27
  207. package/src/frameworks/solid/add-ons/module-federation/assets/src/demo-mf-component.tsx +0 -3
  208. package/src/frameworks/solid/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +0 -9
  209. package/src/frameworks/solid/add-ons/module-federation/info.json +0 -10
  210. package/src/frameworks/solid/add-ons/module-federation/package.json +0 -5
  211. package/src/frameworks/solid/add-ons/module-federation/small-logo.svg +0 -87
  212. package/src/frameworks/solid/add-ons/start/assets/public/tanstack-circle-logo.png +0 -0
  213. package/src/frameworks/solid/add-ons/start/assets/public/tanstack-word-logo-white.svg +0 -1
  214. package/src/frameworks/solid/add-ons/start/assets/src/router.tsx.ejs +0 -30
  215. package/src/frameworks/solid/add-ons/start/assets/src/routes/demo.start.server-funcs.tsx +0 -49
  216. package/src/frameworks/solid/add-ons/start/assets/src/routes/index.tsx.ejs +0 -138
  217. package/src/frameworks/solid/add-ons/start/assets/vite.config.ts.ejs +0 -22
  218. package/src/frameworks/solid/add-ons/start/info.json +0 -18
  219. package/src/frameworks/solid/add-ons/start/package.json +0 -15
  220. package/src/frameworks/solid/add-ons/start/small-logo.svg +0 -1
  221. package/src/frameworks/solid/project/base/index.html.ejs +0 -20
  222. package/src/frameworks/solid/project/base/src/App.css.ejs +0 -38
  223. package/src/frameworks/solid/project/base/src/App.tsx.ejs +0 -34
  224. package/src/frameworks/solid/project/base/src/logo.svg +0 -120
  225. package/src/frameworks/solid/project/base/src/main.tsx.ejs +0 -126
package/CHANGELOG.md CHANGED
@@ -1,5 +1,737 @@
1
1
  # @tanstack/create
2
2
 
3
+ ## 0.60.0
4
+
5
+ ### Minor Changes
6
+
7
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
8
+
9
+ Add new MCP tool to retrieve detailed add-on information including
10
+ routes, package additions, files, and documentation. Also expand
11
+ listTanStackAddOns to include type, category, link, warning, and
12
+ exclusive fields.
13
+
14
+ - feat: case-insensitive add-on lookup with typo suggestions
15
+
16
+ - feat: force TanStack Start with Tailwind CSS always enabled
17
+
18
+ - Remove code-router mode and --router-only flag (TanStack Start only)
19
+ - Remove start add-on (baked into base templates)
20
+ - Remove module-federation add-on
21
+ - Force Tailwind CSS to always be enabled
22
+ - Remove --tailwind/--no-tailwind CLI flags
23
+ - Remove selectTailwind and selectTypescript prompts
24
+ - Remove forcedMode parameter (mode always file-router)
25
+ - Simplify template conditionals and hardcode typescript/tailwind values
26
+ - Update README.md.ejs with instructions for removing Tailwind
27
+ - Clean up dead code and unused functions
28
+ - Update all CLI wrappers to show deprecation warnings
29
+
30
+ ### Patch Changes
31
+
32
+ - fix(create): ignore transient vitest unconfig files in templates
33
+
34
+ Fixes #345
35
+
36
+ - fix(create): bump Tailwind deps for Vite 7 compatibility
37
+
38
+ Fixes #332
39
+
40
+ - ci: Version Packages (#346)
41
+
42
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
43
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
44
+
45
+ - ci: Version Packages (#339)
46
+
47
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
48
+
49
+ - ci: Version Packages (#311)
50
+
51
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
52
+
53
+ - ci: Version Packages (#313)
54
+
55
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
56
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
57
+
58
+ - ci: Version Packages (#327)
59
+
60
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
61
+
62
+ - ci: Version Packages (#312)
63
+
64
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
65
+
66
+ - ci: Version Packages (#349)
67
+
68
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
69
+
70
+ - fix: Update Paraglide JS url (#307)
71
+
72
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
73
+
74
+ - ci: Version Packages (#341)
75
+
76
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
77
+
78
+ - fix: normalize path separators in toCleanPath to fix missing tsconfig.json on Windows (#319)
79
+
80
+ - ci: Version Packages (#338)
81
+
82
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
83
+
84
+ - ci: Version Packages (#325)
85
+
86
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
87
+
88
+ - fix(create): allow better-sqlite3 builds in pnpm templates
89
+
90
+ Set pnpm.onlyBuiltDependencies for React Drizzle and Prisma SQLite templates so better-sqlite3 native bindings build correctly in generated apps.
91
+
92
+ Fixes #321
93
+
94
+ - fix(create): normalize add-to-app output paths on Windows
95
+
96
+ Normalize generated and deleted output file paths to project-relative keys before compare/write/delete, preventing duplicated path segments when Windows drive letters are missing.
97
+
98
+ Fixes #329
99
+
100
+ - chore: remove unused Provider function from tanstack-query template (#272)
101
+
102
+ - fix: resolve Windows path handling in relativePath causing incorrect Clerk imports (#324)
103
+
104
+ - ci: Version Packages (#335)
105
+
106
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
107
+
108
+ - ci: Version Packages (#347)
109
+
110
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
111
+
112
+ - ci: Version Packages (#334)
113
+
114
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
115
+
116
+ - ci: Version Packages (#336)
117
+
118
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
119
+
120
+ - fix(create): normalize generated src js/jsx extensions for TypeScript
121
+
122
+ - ci: Version Packages (#326)
123
+
124
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
125
+
126
+ - fix(neon): use named import for postgresPlugin (#320)
127
+
128
+ The @neondatabase/vite-plugin-postgres package exports postgresPlugin as a
129
+ named export, not a default export. This fixes the SyntaxError when running
130
+ pnpm dev on projects created with the Neon add-on.
131
+
132
+ Fixes #318
133
+
134
+ - ci: Version Packages (#337)
135
+
136
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
137
+
138
+ ## 0.59.4
139
+
140
+ ### Patch Changes
141
+
142
+ - Allow `better-sqlite3` build scripts in generated pnpm projects when using the React Drizzle or Prisma SQLite add-ons, preventing runtime native binding errors. ([`dbd3086`](https://github.com/TanStack/cli/commit/dbd308621464d14bbc03158b2972fd061ea6ccb1))
143
+
144
+ - Fix `tanstack add` on Windows when generated output paths lose the drive letter, preventing duplicated project paths from being written. ([`4f7c925`](https://github.com/TanStack/cli/commit/4f7c9255f365b1993ec91ac447dfcbfe6dd4903d))
145
+
146
+ ## 0.59.3
147
+
148
+ ### Patch Changes
149
+
150
+ - Update generated React and Solid app template dependencies to use `@tailwindcss/vite` and `tailwindcss` `^4.1.18`, fixing incompatibility with Vite 7. ([`a93d7e5`](https://github.com/TanStack/cli/commit/a93d7e5d43bc1db37f2251bf88de7681c9a7387d))
151
+
152
+ ## 0.59.2
153
+
154
+ ### Patch Changes
155
+
156
+ - Ignore transient `__unconfig*` files in generated React and Solid app `.gitignore` templates to prevent VS Code Vitest Explorer startup errors caused by temporary config files. ([`2f3c4d7`](https://github.com/TanStack/cli/commit/2f3c4d79b1ecdf8b8404d23e7b25bfbbbf77f48f))
157
+
158
+ ## 0.59.1
159
+
160
+ ### Patch Changes
161
+
162
+ - Normalize add-on source filenames under `src/` to TypeScript extensions when TypeScript is enabled, converting `.js` to `.ts` and `.jsx` to `.tsx`. ([`0f2744e`](https://github.com/TanStack/cli/commit/0f2744ea4675dbc61ff14ebbe57f77438606b26b))
163
+
164
+ ## 0.59.0
165
+
166
+ ### Minor Changes
167
+
168
+ - feat: case-insensitive add-on lookup with typo suggestions
169
+
170
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
171
+
172
+ Add new MCP tool to retrieve detailed add-on information including
173
+ routes, package additions, files, and documentation. Also expand
174
+ listTanStackAddOns to include type, category, link, warning, and
175
+ exclusive fields.
176
+
177
+ - feat: force TanStack Start with Tailwind CSS always enabled
178
+
179
+ - Remove code-router mode and --router-only flag (TanStack Start only)
180
+ - Remove start add-on (baked into base templates)
181
+ - Remove module-federation add-on
182
+ - Force Tailwind CSS to always be enabled
183
+ - Remove --tailwind/--no-tailwind CLI flags
184
+ - Remove selectTailwind and selectTypescript prompts
185
+ - Remove forcedMode parameter (mode always file-router)
186
+ - Simplify template conditionals and hardcode typescript/tailwind values
187
+ - Update README.md.ejs with instructions for removing Tailwind
188
+ - Clean up dead code and unused functions
189
+ - Update all CLI wrappers to show deprecation warnings
190
+
191
+ ### Patch Changes
192
+
193
+ - ci: Version Packages (#338)
194
+
195
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
196
+
197
+ - ci: Version Packages (#311)
198
+
199
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
200
+
201
+ - ci: Version Packages (#337)
202
+
203
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
204
+
205
+ - ci: Version Packages (#335)
206
+
207
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
208
+
209
+ - ci: Version Packages (#327)
210
+
211
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
212
+
213
+ - ci: Version Packages (#312)
214
+
215
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
216
+
217
+ - ci: Version Packages (#325)
218
+
219
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
220
+
221
+ - ci: Version Packages (#326)
222
+
223
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
224
+
225
+ - ci: Version Packages (#313)
226
+
227
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
228
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
229
+
230
+ - fix: resolve Windows path handling in relativePath causing incorrect Clerk imports (#324)
231
+
232
+ - ci: Version Packages (#336)
233
+
234
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
235
+
236
+ - chore: remove unused Provider function from tanstack-query template (#272)
237
+
238
+ - fix(neon): use named import for postgresPlugin (#320)
239
+
240
+ The @neondatabase/vite-plugin-postgres package exports postgresPlugin as a
241
+ named export, not a default export. This fixes the SyntaxError when running
242
+ pnpm dev on projects created with the Neon add-on.
243
+
244
+ Fixes #318
245
+
246
+ - fix: Update Paraglide JS url (#307)
247
+
248
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
249
+
250
+ - fix: normalize path separators in toCleanPath to fix missing tsconfig.json on Windows (#319)
251
+
252
+ - ci: Version Packages (#334)
253
+
254
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
255
+
256
+ ## 0.58.0
257
+
258
+ ### Minor Changes
259
+
260
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
261
+
262
+ Add new MCP tool to retrieve detailed add-on information including
263
+ routes, package additions, files, and documentation. Also expand
264
+ listTanStackAddOns to include type, category, link, warning, and
265
+ exclusive fields.
266
+
267
+ - feat: case-insensitive add-on lookup with typo suggestions
268
+
269
+ - feat: force TanStack Start with Tailwind CSS always enabled
270
+
271
+ - Remove code-router mode and --router-only flag (TanStack Start only)
272
+ - Remove start add-on (baked into base templates)
273
+ - Remove module-federation add-on
274
+ - Force Tailwind CSS to always be enabled
275
+ - Remove --tailwind/--no-tailwind CLI flags
276
+ - Remove selectTailwind and selectTypescript prompts
277
+ - Remove forcedMode parameter (mode always file-router)
278
+ - Simplify template conditionals and hardcode typescript/tailwind values
279
+ - Update README.md.ejs with instructions for removing Tailwind
280
+ - Clean up dead code and unused functions
281
+ - Update all CLI wrappers to show deprecation warnings
282
+
283
+ ### Patch Changes
284
+
285
+ - ci: Version Packages (#325)
286
+
287
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
288
+
289
+ - ci: Version Packages (#336)
290
+
291
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
292
+
293
+ - fix: Update Paraglide JS url (#307)
294
+
295
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
296
+
297
+ - fix(neon): use named import for postgresPlugin (#320)
298
+
299
+ The @neondatabase/vite-plugin-postgres package exports postgresPlugin as a
300
+ named export, not a default export. This fixes the SyntaxError when running
301
+ pnpm dev on projects created with the Neon add-on.
302
+
303
+ Fixes #318
304
+
305
+ - ci: Version Packages (#313)
306
+
307
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
308
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
309
+
310
+ - ci: Version Packages (#334)
311
+
312
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
313
+
314
+ - ci: Version Packages (#335)
315
+
316
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
317
+
318
+ - ci: Version Packages (#326)
319
+
320
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
321
+
322
+ - ci: Version Packages (#312)
323
+
324
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
325
+
326
+ - ci: Version Packages (#311)
327
+
328
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
329
+
330
+ - ci: Version Packages (#337)
331
+
332
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
333
+
334
+ - ci: Version Packages (#327)
335
+
336
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
337
+
338
+ - chore: remove unused Provider function from tanstack-query template (#272)
339
+
340
+ - fix: resolve Windows path handling in relativePath causing incorrect Clerk imports (#324)
341
+
342
+ - fix: normalize path separators in toCleanPath to fix missing tsconfig.json on Windows (#319)
343
+
344
+ ## 0.57.0
345
+
346
+ ### Minor Changes
347
+
348
+ - feat: force TanStack Start with Tailwind CSS always enabled
349
+
350
+ - Remove code-router mode and --router-only flag (TanStack Start only)
351
+ - Remove start add-on (baked into base templates)
352
+ - Remove module-federation add-on
353
+ - Force Tailwind CSS to always be enabled
354
+ - Remove --tailwind/--no-tailwind CLI flags
355
+ - Remove selectTailwind and selectTypescript prompts
356
+ - Remove forcedMode parameter (mode always file-router)
357
+ - Simplify template conditionals and hardcode typescript/tailwind values
358
+ - Update README.md.ejs with instructions for removing Tailwind
359
+ - Clean up dead code and unused functions
360
+ - Update all CLI wrappers to show deprecation warnings
361
+
362
+ - feat: case-insensitive add-on lookup with typo suggestions
363
+
364
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
365
+
366
+ Add new MCP tool to retrieve detailed add-on information including
367
+ routes, package additions, files, and documentation. Also expand
368
+ listTanStackAddOns to include type, category, link, warning, and
369
+ exclusive fields.
370
+
371
+ ### Patch Changes
372
+
373
+ - ci: Version Packages (#313)
374
+
375
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
376
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
377
+
378
+ - chore: remove unused Provider function from tanstack-query template (#272)
379
+
380
+ - ci: Version Packages (#311)
381
+
382
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
383
+
384
+ - ci: Version Packages (#336)
385
+
386
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
387
+
388
+ - fix: normalize path separators in toCleanPath to fix missing tsconfig.json on Windows (#319)
389
+
390
+ - ci: Version Packages (#327)
391
+
392
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
393
+
394
+ - fix: Update Paraglide JS url (#307)
395
+
396
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
397
+
398
+ - ci: Version Packages (#325)
399
+
400
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
401
+
402
+ - fix(neon): use named import for postgresPlugin (#320)
403
+
404
+ The @neondatabase/vite-plugin-postgres package exports postgresPlugin as a
405
+ named export, not a default export. This fixes the SyntaxError when running
406
+ pnpm dev on projects created with the Neon add-on.
407
+
408
+ Fixes #318
409
+
410
+ - ci: Version Packages (#334)
411
+
412
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
413
+
414
+ - ci: Version Packages (#326)
415
+
416
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
417
+
418
+ - ci: Version Packages (#335)
419
+
420
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
421
+
422
+ - fix: resolve Windows path handling in relativePath causing incorrect Clerk imports (#324)
423
+
424
+ - ci: Version Packages (#312)
425
+
426
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
427
+
428
+ ## 0.56.0
429
+
430
+ ### Minor Changes
431
+
432
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
433
+
434
+ Add new MCP tool to retrieve detailed add-on information including
435
+ routes, package additions, files, and documentation. Also expand
436
+ listTanStackAddOns to include type, category, link, warning, and
437
+ exclusive fields.
438
+
439
+ - feat: case-insensitive add-on lookup with typo suggestions
440
+
441
+ - feat: force TanStack Start with Tailwind CSS always enabled
442
+
443
+ - Remove code-router mode and --router-only flag (TanStack Start only)
444
+ - Remove start add-on (baked into base templates)
445
+ - Remove module-federation add-on
446
+ - Force Tailwind CSS to always be enabled
447
+ - Remove --tailwind/--no-tailwind CLI flags
448
+ - Remove selectTailwind and selectTypescript prompts
449
+ - Remove forcedMode parameter (mode always file-router)
450
+ - Simplify template conditionals and hardcode typescript/tailwind values
451
+ - Update README.md.ejs with instructions for removing Tailwind
452
+ - Clean up dead code and unused functions
453
+ - Update all CLI wrappers to show deprecation warnings
454
+
455
+ ### Patch Changes
456
+
457
+ - ci: Version Packages (#325)
458
+
459
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
460
+
461
+ - ci: Version Packages (#335)
462
+
463
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
464
+
465
+ - fix(neon): use named import for postgresPlugin (#320)
466
+
467
+ The @neondatabase/vite-plugin-postgres package exports postgresPlugin as a
468
+ named export, not a default export. This fixes the SyntaxError when running
469
+ pnpm dev on projects created with the Neon add-on.
470
+
471
+ Fixes #318
472
+
473
+ - fix: Update Paraglide JS url (#307)
474
+
475
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
476
+
477
+ - ci: Version Packages (#312)
478
+
479
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
480
+
481
+ - fix: resolve Windows path handling in relativePath causing incorrect Clerk imports (#324)
482
+
483
+ - ci: Version Packages (#326)
484
+
485
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
486
+
487
+ - fix: normalize path separators in toCleanPath to fix missing tsconfig.json on Windows (#319)
488
+
489
+ - ci: Version Packages (#311)
490
+
491
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
492
+
493
+ - ci: Version Packages (#313)
494
+
495
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
496
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
497
+
498
+ - ci: Version Packages (#334)
499
+
500
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
501
+
502
+ - chore: remove unused Provider function from tanstack-query template (#272)
503
+
504
+ - ci: Version Packages (#327)
505
+
506
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
507
+
508
+ ## 0.55.0
509
+
510
+ ### Minor Changes
511
+
512
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
513
+
514
+ Add new MCP tool to retrieve detailed add-on information including
515
+ routes, package additions, files, and documentation. Also expand
516
+ listTanStackAddOns to include type, category, link, warning, and
517
+ exclusive fields.
518
+
519
+ - feat: case-insensitive add-on lookup with typo suggestions
520
+
521
+ - feat: force TanStack Start with Tailwind CSS always enabled
522
+
523
+ - Remove code-router mode and --router-only flag (TanStack Start only)
524
+ - Remove start add-on (baked into base templates)
525
+ - Remove module-federation add-on
526
+ - Force Tailwind CSS to always be enabled
527
+ - Remove --tailwind/--no-tailwind CLI flags
528
+ - Remove selectTailwind and selectTypescript prompts
529
+ - Remove forcedMode parameter (mode always file-router)
530
+ - Simplify template conditionals and hardcode typescript/tailwind values
531
+ - Update README.md.ejs with instructions for removing Tailwind
532
+ - Clean up dead code and unused functions
533
+ - Update all CLI wrappers to show deprecation warnings
534
+
535
+ ### Patch Changes
536
+
537
+ - ci: Version Packages (#327)
538
+
539
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
540
+
541
+ - ci: Version Packages (#313)
542
+
543
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
544
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
545
+
546
+ - chore: remove unused Provider function from tanstack-query template (#272)
547
+
548
+ - ci: Version Packages (#326)
549
+
550
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
551
+
552
+ - ci: Version Packages (#311)
553
+
554
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
555
+
556
+ - fix: resolve Windows path handling in relativePath causing incorrect Clerk imports (#324)
557
+
558
+ - ci: Version Packages (#312)
559
+
560
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
561
+
562
+ - ci: Version Packages (#334)
563
+
564
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
565
+
566
+ - fix(neon): use named import for postgresPlugin (#320)
567
+
568
+ The @neondatabase/vite-plugin-postgres package exports postgresPlugin as a
569
+ named export, not a default export. This fixes the SyntaxError when running
570
+ pnpm dev on projects created with the Neon add-on.
571
+
572
+ Fixes #318
573
+
574
+ - fix: Update Paraglide JS url (#307)
575
+
576
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
577
+
578
+ - fix: normalize path separators in toCleanPath to fix missing tsconfig.json on Windows (#319)
579
+
580
+ - ci: Version Packages (#325)
581
+
582
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
583
+
584
+ ## 0.54.0
585
+
586
+ ### Minor Changes
587
+
588
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
589
+
590
+ Add new MCP tool to retrieve detailed add-on information including
591
+ routes, package additions, files, and documentation. Also expand
592
+ listTanStackAddOns to include type, category, link, warning, and
593
+ exclusive fields.
594
+
595
+ - feat: case-insensitive add-on lookup with typo suggestions
596
+
597
+ - feat: force TanStack Start with Tailwind CSS always enabled
598
+
599
+ - Remove code-router mode and --router-only flag (TanStack Start only)
600
+ - Remove start add-on (baked into base templates)
601
+ - Remove module-federation add-on
602
+ - Force Tailwind CSS to always be enabled
603
+ - Remove --tailwind/--no-tailwind CLI flags
604
+ - Remove selectTailwind and selectTypescript prompts
605
+ - Remove forcedMode parameter (mode always file-router)
606
+ - Simplify template conditionals and hardcode typescript/tailwind values
607
+ - Update README.md.ejs with instructions for removing Tailwind
608
+ - Clean up dead code and unused functions
609
+ - Update all CLI wrappers to show deprecation warnings
610
+
611
+ ### Patch Changes
612
+
613
+ - ci: Version Packages (#313)
614
+
615
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
616
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
617
+
618
+ - fix(neon): use named import for postgresPlugin (#320)
619
+
620
+ The @neondatabase/vite-plugin-postgres package exports postgresPlugin as a
621
+ named export, not a default export. This fixes the SyntaxError when running
622
+ pnpm dev on projects created with the Neon add-on.
623
+
624
+ Fixes #318
625
+
626
+ - fix: resolve Windows path handling in relativePath causing incorrect Clerk imports (#324)
627
+
628
+ - ci: Version Packages (#325)
629
+
630
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
631
+
632
+ - ci: Version Packages (#326)
633
+
634
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
635
+
636
+ - ci: Version Packages (#327)
637
+
638
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
639
+
640
+ - ci: Version Packages (#311)
641
+
642
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
643
+
644
+ - ci: Version Packages (#312)
645
+
646
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
647
+
648
+ - fix: Update Paraglide JS url (#307)
649
+
650
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
651
+
652
+ - chore: remove unused Provider function from tanstack-query template (#272)
653
+
654
+ - fix: normalize path separators in toCleanPath to fix missing tsconfig.json on Windows (#319)
655
+
656
+ ## 0.53.2
657
+
658
+ ### Patch Changes
659
+
660
+ - Add case-insensitive add-on ID matching and "did you mean?" suggestions for typos ([`61011ec`](https://github.com/TanStack/cli/commit/61011ec171283cd6de020e2cb6ac9f943a3aa47b))
661
+
662
+ - fix: normalize path separators in toCleanPath to fix missing tsconfig.json on Windows ([`2cf6703`](https://github.com/TanStack/cli/commit/2cf6703a082d0441f96f599eab21559b05742f92))
663
+
664
+ - chore: remove unused Provider function from tanstack-query root-provider template ([`46a4903`](https://github.com/TanStack/cli/commit/46a49033547f7e6c9905f4e94cca07ce0988f63a))
665
+
666
+ ## 0.53.1
667
+
668
+ ### Patch Changes
669
+
670
+ - fix: resolve Windows path handling in relativePath causing incorrect Clerk imports ([`72049cb`](https://github.com/TanStack/cli/commit/72049cb134f9ecd169da161154899cc84a5c39b8))
671
+
672
+ ## 0.53.0
673
+
674
+ ### Minor Changes
675
+
676
+ - force tailwind, force typescript ([`337eeba`](https://github.com/TanStack/cli/commit/337eebaafa190de96194910b6c8c9e550ca142fc))
677
+
678
+ ## 0.52.0
679
+
680
+ ### Minor Changes
681
+
682
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
683
+
684
+ Add new MCP tool to retrieve detailed add-on information including
685
+ routes, package additions, files, and documentation. Also expand
686
+ listTanStackAddOns to include type, category, link, warning, and
687
+ exclusive fields.
688
+
689
+ ### Patch Changes
690
+
691
+ - fix: Update Paraglide JS url (#307)
692
+
693
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
694
+
695
+ - ci: Version Packages (#311)
696
+
697
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
698
+
699
+ - ci: Version Packages (#312)
700
+
701
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
702
+
703
+ ## 0.51.0
704
+
705
+ ### Minor Changes
706
+
707
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
708
+
709
+ Add new MCP tool to retrieve detailed add-on information including
710
+ routes, package additions, files, and documentation. Also expand
711
+ listTanStackAddOns to include type, category, link, warning, and
712
+ exclusive fields.
713
+
714
+ ### Patch Changes
715
+
716
+ - fix: Update Paraglide JS url (#307)
717
+
718
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
719
+
720
+ - ci: Version Packages (#311)
721
+
722
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
723
+
724
+ ## 0.50.0
725
+
726
+ ### Minor Changes
727
+
728
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
729
+
730
+ Add new MCP tool to retrieve detailed add-on information including
731
+ routes, package additions, files, and documentation. Also expand
732
+ listTanStackAddOns to include type, category, link, warning, and
733
+ exclusive fields.
734
+
3
735
  ## 0.49.3
4
736
 
5
737
  ### Patch Changes