@tanstack/create 0.59.4 → 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.
- package/CHANGELOG.md +135 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,140 @@
|
|
|
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
|
+
|
|
3
138
|
## 0.59.4
|
|
4
139
|
|
|
5
140
|
### Patch Changes
|