@tanstack/cli 0.48.6 → 0.58.5
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 +547 -0
- package/dist/bin.js +0 -1
- package/dist/cli.js +23 -60
- package/dist/command-line.js +35 -36
- package/dist/mcp.js +60 -0
- package/dist/options.js +8 -46
- package/dist/types/cli.d.ts +1 -5
- package/dist/types/command-line.d.ts +5 -1
- package/dist/types/mcp.d.ts +0 -1
- package/dist/types/options.d.ts +1 -2
- package/dist/types/types.d.ts +1 -3
- package/dist/types/ui-prompts.d.ts +0 -3
- package/dist/types/utils.d.ts +0 -2
- package/dist/ui-prompts.js +0 -43
- package/dist/utils.js +0 -6
- package/package.json +3 -3
- package/src/bin.ts +0 -1
- package/src/cli.ts +35 -79
- package/src/command-line.ts +51 -46
- package/src/mcp.ts +74 -1
- package/src/options.ts +6 -50
- package/src/types.ts +1 -4
- package/src/ui-prompts.ts +0 -50
- package/src/utils.ts +0 -8
- package/tests/command-line.test.ts +44 -40
- package/tests/options.test.ts +11 -99
- package/tests/ui-prompts.test.ts +0 -38
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,552 @@
|
|
|
1
1
|
# @tanstack/cli
|
|
2
2
|
|
|
3
|
+
## 0.58.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`dbd3086`](https://github.com/TanStack/cli/commit/dbd308621464d14bbc03158b2972fd061ea6ccb1), [`4f7c925`](https://github.com/TanStack/cli/commit/4f7c9255f365b1993ec91ac447dfcbfe6dd4903d)]:
|
|
8
|
+
- @tanstack/create@0.59.4
|
|
9
|
+
- @tanstack/create-ui@0.58.4
|
|
10
|
+
|
|
11
|
+
## 0.58.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Add compatibility handling for legacy `--router-only` and `--template` create flags, including clear deprecation warnings and explicit errors for unsupported JavaScript templates. ([`0c0ee31`](https://github.com/TanStack/cli/commit/0c0ee318f78896f228623aa05e2a58cfb50e6f81))
|
|
16
|
+
|
|
17
|
+
## 0.58.3
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [[`a93d7e5`](https://github.com/TanStack/cli/commit/a93d7e5d43bc1db37f2251bf88de7681c9a7387d)]:
|
|
22
|
+
- @tanstack/create@0.59.3
|
|
23
|
+
- @tanstack/create-ui@0.58.3
|
|
24
|
+
|
|
25
|
+
## 0.58.2
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [[`2f3c4d7`](https://github.com/TanStack/cli/commit/2f3c4d79b1ecdf8b8404d23e7b25bfbbbf77f48f)]:
|
|
30
|
+
- @tanstack/create@0.59.2
|
|
31
|
+
- @tanstack/create-ui@0.58.2
|
|
32
|
+
|
|
33
|
+
## 0.58.1
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- Updated dependencies [[`0f2744e`](https://github.com/TanStack/cli/commit/0f2744ea4675dbc61ff14ebbe57f77438606b26b)]:
|
|
38
|
+
- @tanstack/create@0.59.1
|
|
39
|
+
- @tanstack/create-ui@0.58.1
|
|
40
|
+
|
|
41
|
+
## 0.58.0
|
|
42
|
+
|
|
43
|
+
### Minor Changes
|
|
44
|
+
|
|
45
|
+
- feat: case-insensitive add-on lookup with typo suggestions
|
|
46
|
+
|
|
47
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
48
|
+
|
|
49
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
50
|
+
routes, package additions, files, and documentation. Also expand
|
|
51
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
52
|
+
exclusive fields.
|
|
53
|
+
|
|
54
|
+
- feat: force TanStack Start with Tailwind CSS always enabled
|
|
55
|
+
|
|
56
|
+
- Remove code-router mode and --router-only flag (TanStack Start only)
|
|
57
|
+
- Remove start add-on (baked into base templates)
|
|
58
|
+
- Remove module-federation add-on
|
|
59
|
+
- Force Tailwind CSS to always be enabled
|
|
60
|
+
- Remove --tailwind/--no-tailwind CLI flags
|
|
61
|
+
- Remove selectTailwind and selectTypescript prompts
|
|
62
|
+
- Remove forcedMode parameter (mode always file-router)
|
|
63
|
+
- Simplify template conditionals and hardcode typescript/tailwind values
|
|
64
|
+
- Update README.md.ejs with instructions for removing Tailwind
|
|
65
|
+
- Clean up dead code and unused functions
|
|
66
|
+
- Update all CLI wrappers to show deprecation warnings
|
|
67
|
+
|
|
68
|
+
### Patch Changes
|
|
69
|
+
|
|
70
|
+
- ci: Version Packages (#338)
|
|
71
|
+
|
|
72
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
73
|
+
|
|
74
|
+
- ci: Version Packages (#311)
|
|
75
|
+
|
|
76
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
77
|
+
|
|
78
|
+
- ci: Version Packages (#337)
|
|
79
|
+
|
|
80
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
81
|
+
|
|
82
|
+
- ci: Version Packages (#335)
|
|
83
|
+
|
|
84
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
85
|
+
|
|
86
|
+
- ci: Version Packages (#327)
|
|
87
|
+
|
|
88
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
89
|
+
|
|
90
|
+
- ci: Version Packages (#312)
|
|
91
|
+
|
|
92
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
93
|
+
|
|
94
|
+
- ci: Version Packages (#325)
|
|
95
|
+
|
|
96
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
97
|
+
|
|
98
|
+
- ci: Version Packages (#326)
|
|
99
|
+
|
|
100
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
101
|
+
|
|
102
|
+
- ci: Version Packages (#313)
|
|
103
|
+
|
|
104
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
105
|
+
Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
|
|
106
|
+
|
|
107
|
+
- ci: Version Packages (#336)
|
|
108
|
+
|
|
109
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
110
|
+
|
|
111
|
+
- ci: Version Packages (#334)
|
|
112
|
+
|
|
113
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
114
|
+
|
|
115
|
+
- Updated dependencies []:
|
|
116
|
+
- @tanstack/create@0.59.0
|
|
117
|
+
- @tanstack/create-ui@0.58.0
|
|
118
|
+
|
|
119
|
+
## 0.57.0
|
|
120
|
+
|
|
121
|
+
### Minor Changes
|
|
122
|
+
|
|
123
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
124
|
+
|
|
125
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
126
|
+
routes, package additions, files, and documentation. Also expand
|
|
127
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
128
|
+
exclusive fields.
|
|
129
|
+
|
|
130
|
+
- feat: case-insensitive add-on lookup with typo suggestions
|
|
131
|
+
|
|
132
|
+
- feat: force TanStack Start with Tailwind CSS always enabled
|
|
133
|
+
|
|
134
|
+
- Remove code-router mode and --router-only flag (TanStack Start only)
|
|
135
|
+
- Remove start add-on (baked into base templates)
|
|
136
|
+
- Remove module-federation add-on
|
|
137
|
+
- Force Tailwind CSS to always be enabled
|
|
138
|
+
- Remove --tailwind/--no-tailwind CLI flags
|
|
139
|
+
- Remove selectTailwind and selectTypescript prompts
|
|
140
|
+
- Remove forcedMode parameter (mode always file-router)
|
|
141
|
+
- Simplify template conditionals and hardcode typescript/tailwind values
|
|
142
|
+
- Update README.md.ejs with instructions for removing Tailwind
|
|
143
|
+
- Clean up dead code and unused functions
|
|
144
|
+
- Update all CLI wrappers to show deprecation warnings
|
|
145
|
+
|
|
146
|
+
### Patch Changes
|
|
147
|
+
|
|
148
|
+
- ci: Version Packages (#325)
|
|
149
|
+
|
|
150
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
151
|
+
|
|
152
|
+
- ci: Version Packages (#336)
|
|
153
|
+
|
|
154
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
155
|
+
|
|
156
|
+
- ci: Version Packages (#313)
|
|
157
|
+
|
|
158
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
159
|
+
Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
|
|
160
|
+
|
|
161
|
+
- ci: Version Packages (#334)
|
|
162
|
+
|
|
163
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
164
|
+
|
|
165
|
+
- ci: Version Packages (#335)
|
|
166
|
+
|
|
167
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
168
|
+
|
|
169
|
+
- ci: Version Packages (#326)
|
|
170
|
+
|
|
171
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
172
|
+
|
|
173
|
+
- ci: Version Packages (#312)
|
|
174
|
+
|
|
175
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
176
|
+
|
|
177
|
+
- ci: Version Packages (#311)
|
|
178
|
+
|
|
179
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
180
|
+
|
|
181
|
+
- ci: Version Packages (#337)
|
|
182
|
+
|
|
183
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
184
|
+
|
|
185
|
+
- ci: Version Packages (#327)
|
|
186
|
+
|
|
187
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
188
|
+
|
|
189
|
+
- Updated dependencies []:
|
|
190
|
+
- @tanstack/create@0.58.0
|
|
191
|
+
- @tanstack/create-ui@0.57.0
|
|
192
|
+
|
|
193
|
+
## 0.56.0
|
|
194
|
+
|
|
195
|
+
### Minor Changes
|
|
196
|
+
|
|
197
|
+
- feat: force TanStack Start with Tailwind CSS always enabled
|
|
198
|
+
|
|
199
|
+
- Remove code-router mode and --router-only flag (TanStack Start only)
|
|
200
|
+
- Remove start add-on (baked into base templates)
|
|
201
|
+
- Remove module-federation add-on
|
|
202
|
+
- Force Tailwind CSS to always be enabled
|
|
203
|
+
- Remove --tailwind/--no-tailwind CLI flags
|
|
204
|
+
- Remove selectTailwind and selectTypescript prompts
|
|
205
|
+
- Remove forcedMode parameter (mode always file-router)
|
|
206
|
+
- Simplify template conditionals and hardcode typescript/tailwind values
|
|
207
|
+
- Update README.md.ejs with instructions for removing Tailwind
|
|
208
|
+
- Clean up dead code and unused functions
|
|
209
|
+
- Update all CLI wrappers to show deprecation warnings
|
|
210
|
+
|
|
211
|
+
- feat: case-insensitive add-on lookup with typo suggestions
|
|
212
|
+
|
|
213
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
214
|
+
|
|
215
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
216
|
+
routes, package additions, files, and documentation. Also expand
|
|
217
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
218
|
+
exclusive fields.
|
|
219
|
+
|
|
220
|
+
### Patch Changes
|
|
221
|
+
|
|
222
|
+
- ci: Version Packages (#313)
|
|
223
|
+
|
|
224
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
225
|
+
Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
|
|
226
|
+
|
|
227
|
+
- ci: Version Packages (#311)
|
|
228
|
+
|
|
229
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
230
|
+
|
|
231
|
+
- ci: Version Packages (#336)
|
|
232
|
+
|
|
233
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
234
|
+
|
|
235
|
+
- ci: Version Packages (#327)
|
|
236
|
+
|
|
237
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
238
|
+
|
|
239
|
+
- ci: Version Packages (#325)
|
|
240
|
+
|
|
241
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
242
|
+
|
|
243
|
+
- ci: Version Packages (#334)
|
|
244
|
+
|
|
245
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
246
|
+
|
|
247
|
+
- ci: Version Packages (#326)
|
|
248
|
+
|
|
249
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
250
|
+
|
|
251
|
+
- ci: Version Packages (#335)
|
|
252
|
+
|
|
253
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
254
|
+
|
|
255
|
+
- ci: Version Packages (#312)
|
|
256
|
+
|
|
257
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
258
|
+
|
|
259
|
+
- Updated dependencies []:
|
|
260
|
+
- @tanstack/create@0.57.0
|
|
261
|
+
- @tanstack/create-ui@0.56.0
|
|
262
|
+
|
|
263
|
+
## 0.55.0
|
|
264
|
+
|
|
265
|
+
### Minor Changes
|
|
266
|
+
|
|
267
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
268
|
+
|
|
269
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
270
|
+
routes, package additions, files, and documentation. Also expand
|
|
271
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
272
|
+
exclusive fields.
|
|
273
|
+
|
|
274
|
+
- feat: case-insensitive add-on lookup with typo suggestions
|
|
275
|
+
|
|
276
|
+
- feat: force TanStack Start with Tailwind CSS always enabled
|
|
277
|
+
|
|
278
|
+
- Remove code-router mode and --router-only flag (TanStack Start only)
|
|
279
|
+
- Remove start add-on (baked into base templates)
|
|
280
|
+
- Remove module-federation add-on
|
|
281
|
+
- Force Tailwind CSS to always be enabled
|
|
282
|
+
- Remove --tailwind/--no-tailwind CLI flags
|
|
283
|
+
- Remove selectTailwind and selectTypescript prompts
|
|
284
|
+
- Remove forcedMode parameter (mode always file-router)
|
|
285
|
+
- Simplify template conditionals and hardcode typescript/tailwind values
|
|
286
|
+
- Update README.md.ejs with instructions for removing Tailwind
|
|
287
|
+
- Clean up dead code and unused functions
|
|
288
|
+
- Update all CLI wrappers to show deprecation warnings
|
|
289
|
+
|
|
290
|
+
### Patch Changes
|
|
291
|
+
|
|
292
|
+
- ci: Version Packages (#325)
|
|
293
|
+
|
|
294
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
295
|
+
|
|
296
|
+
- ci: Version Packages (#335)
|
|
297
|
+
|
|
298
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
299
|
+
|
|
300
|
+
- ci: Version Packages (#312)
|
|
301
|
+
|
|
302
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
303
|
+
|
|
304
|
+
- ci: Version Packages (#326)
|
|
305
|
+
|
|
306
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
307
|
+
|
|
308
|
+
- ci: Version Packages (#311)
|
|
309
|
+
|
|
310
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
311
|
+
|
|
312
|
+
- ci: Version Packages (#313)
|
|
313
|
+
|
|
314
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
315
|
+
Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
|
|
316
|
+
|
|
317
|
+
- ci: Version Packages (#334)
|
|
318
|
+
|
|
319
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
320
|
+
|
|
321
|
+
- ci: Version Packages (#327)
|
|
322
|
+
|
|
323
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
324
|
+
|
|
325
|
+
- Updated dependencies []:
|
|
326
|
+
- @tanstack/create@0.56.0
|
|
327
|
+
- @tanstack/create-ui@0.55.0
|
|
328
|
+
|
|
329
|
+
## 0.54.0
|
|
330
|
+
|
|
331
|
+
### Minor Changes
|
|
332
|
+
|
|
333
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
334
|
+
|
|
335
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
336
|
+
routes, package additions, files, and documentation. Also expand
|
|
337
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
338
|
+
exclusive fields.
|
|
339
|
+
|
|
340
|
+
- feat: case-insensitive add-on lookup with typo suggestions
|
|
341
|
+
|
|
342
|
+
- feat: force TanStack Start with Tailwind CSS always enabled
|
|
343
|
+
|
|
344
|
+
- Remove code-router mode and --router-only flag (TanStack Start only)
|
|
345
|
+
- Remove start add-on (baked into base templates)
|
|
346
|
+
- Remove module-federation add-on
|
|
347
|
+
- Force Tailwind CSS to always be enabled
|
|
348
|
+
- Remove --tailwind/--no-tailwind CLI flags
|
|
349
|
+
- Remove selectTailwind and selectTypescript prompts
|
|
350
|
+
- Remove forcedMode parameter (mode always file-router)
|
|
351
|
+
- Simplify template conditionals and hardcode typescript/tailwind values
|
|
352
|
+
- Update README.md.ejs with instructions for removing Tailwind
|
|
353
|
+
- Clean up dead code and unused functions
|
|
354
|
+
- Update all CLI wrappers to show deprecation warnings
|
|
355
|
+
|
|
356
|
+
### Patch Changes
|
|
357
|
+
|
|
358
|
+
- ci: Version Packages (#327)
|
|
359
|
+
|
|
360
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
361
|
+
|
|
362
|
+
- ci: Version Packages (#313)
|
|
363
|
+
|
|
364
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
365
|
+
Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
|
|
366
|
+
|
|
367
|
+
- ci: Version Packages (#326)
|
|
368
|
+
|
|
369
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
370
|
+
|
|
371
|
+
- ci: Version Packages (#311)
|
|
372
|
+
|
|
373
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
374
|
+
|
|
375
|
+
- ci: Version Packages (#312)
|
|
376
|
+
|
|
377
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
378
|
+
|
|
379
|
+
- ci: Version Packages (#334)
|
|
380
|
+
|
|
381
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
382
|
+
|
|
383
|
+
- ci: Version Packages (#325)
|
|
384
|
+
|
|
385
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
386
|
+
|
|
387
|
+
- Updated dependencies []:
|
|
388
|
+
- @tanstack/create@0.55.0
|
|
389
|
+
- @tanstack/create-ui@0.54.0
|
|
390
|
+
|
|
391
|
+
## 0.53.0
|
|
392
|
+
|
|
393
|
+
### Minor Changes
|
|
394
|
+
|
|
395
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
396
|
+
|
|
397
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
398
|
+
routes, package additions, files, and documentation. Also expand
|
|
399
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
400
|
+
exclusive fields.
|
|
401
|
+
|
|
402
|
+
- feat: case-insensitive add-on lookup with typo suggestions
|
|
403
|
+
|
|
404
|
+
- feat: force TanStack Start with Tailwind CSS always enabled
|
|
405
|
+
|
|
406
|
+
- Remove code-router mode and --router-only flag (TanStack Start only)
|
|
407
|
+
- Remove start add-on (baked into base templates)
|
|
408
|
+
- Remove module-federation add-on
|
|
409
|
+
- Force Tailwind CSS to always be enabled
|
|
410
|
+
- Remove --tailwind/--no-tailwind CLI flags
|
|
411
|
+
- Remove selectTailwind and selectTypescript prompts
|
|
412
|
+
- Remove forcedMode parameter (mode always file-router)
|
|
413
|
+
- Simplify template conditionals and hardcode typescript/tailwind values
|
|
414
|
+
- Update README.md.ejs with instructions for removing Tailwind
|
|
415
|
+
- Clean up dead code and unused functions
|
|
416
|
+
- Update all CLI wrappers to show deprecation warnings
|
|
417
|
+
|
|
418
|
+
### Patch Changes
|
|
419
|
+
|
|
420
|
+
- ci: Version Packages (#313)
|
|
421
|
+
|
|
422
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
423
|
+
Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
|
|
424
|
+
|
|
425
|
+
- ci: Version Packages (#325)
|
|
426
|
+
|
|
427
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
428
|
+
|
|
429
|
+
- ci: Version Packages (#326)
|
|
430
|
+
|
|
431
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
432
|
+
|
|
433
|
+
- ci: Version Packages (#327)
|
|
434
|
+
|
|
435
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
436
|
+
|
|
437
|
+
- ci: Version Packages (#311)
|
|
438
|
+
|
|
439
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
440
|
+
|
|
441
|
+
- ci: Version Packages (#312)
|
|
442
|
+
|
|
443
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
444
|
+
|
|
445
|
+
- Updated dependencies []:
|
|
446
|
+
- @tanstack/create@0.54.0
|
|
447
|
+
- @tanstack/create-ui@0.53.0
|
|
448
|
+
|
|
449
|
+
## 0.52.2
|
|
450
|
+
|
|
451
|
+
### Patch Changes
|
|
452
|
+
|
|
453
|
+
- Add case-insensitive add-on ID matching and "did you mean?" suggestions for typos ([`61011ec`](https://github.com/TanStack/cli/commit/61011ec171283cd6de020e2cb6ac9f943a3aa47b))
|
|
454
|
+
|
|
455
|
+
- Updated dependencies [[`61011ec`](https://github.com/TanStack/cli/commit/61011ec171283cd6de020e2cb6ac9f943a3aa47b), [`2cf6703`](https://github.com/TanStack/cli/commit/2cf6703a082d0441f96f599eab21559b05742f92), [`46a4903`](https://github.com/TanStack/cli/commit/46a49033547f7e6c9905f4e94cca07ce0988f63a)]:
|
|
456
|
+
- @tanstack/create@0.53.2
|
|
457
|
+
- @tanstack/create-ui@0.52.2
|
|
458
|
+
|
|
459
|
+
## 0.52.1
|
|
460
|
+
|
|
461
|
+
### Patch Changes
|
|
462
|
+
|
|
463
|
+
- Updated dependencies [[`72049cb`](https://github.com/TanStack/cli/commit/72049cb134f9ecd169da161154899cc84a5c39b8)]:
|
|
464
|
+
- @tanstack/create@0.53.1
|
|
465
|
+
- @tanstack/create-ui@0.52.1
|
|
466
|
+
|
|
467
|
+
## 0.52.0
|
|
468
|
+
|
|
469
|
+
### Minor Changes
|
|
470
|
+
|
|
471
|
+
- force tailwind, force typescript ([`337eeba`](https://github.com/TanStack/cli/commit/337eebaafa190de96194910b6c8c9e550ca142fc))
|
|
472
|
+
|
|
473
|
+
### Patch Changes
|
|
474
|
+
|
|
475
|
+
- Updated dependencies [[`337eeba`](https://github.com/TanStack/cli/commit/337eebaafa190de96194910b6c8c9e550ca142fc)]:
|
|
476
|
+
- @tanstack/create-ui@0.52.0
|
|
477
|
+
- @tanstack/create@0.53.0
|
|
478
|
+
|
|
479
|
+
## 0.51.0
|
|
480
|
+
|
|
481
|
+
### Minor Changes
|
|
482
|
+
|
|
483
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
484
|
+
|
|
485
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
486
|
+
routes, package additions, files, and documentation. Also expand
|
|
487
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
488
|
+
exclusive fields.
|
|
489
|
+
|
|
490
|
+
### Patch Changes
|
|
491
|
+
|
|
492
|
+
- ci: Version Packages (#311)
|
|
493
|
+
|
|
494
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
495
|
+
|
|
496
|
+
- ci: Version Packages (#312)
|
|
497
|
+
|
|
498
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
499
|
+
|
|
500
|
+
- Updated dependencies []:
|
|
501
|
+
- @tanstack/create@0.52.0
|
|
502
|
+
- @tanstack/create-ui@0.51.0
|
|
503
|
+
|
|
504
|
+
## 0.50.0
|
|
505
|
+
|
|
506
|
+
### Minor Changes
|
|
507
|
+
|
|
508
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
509
|
+
|
|
510
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
511
|
+
routes, package additions, files, and documentation. Also expand
|
|
512
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
513
|
+
exclusive fields.
|
|
514
|
+
|
|
515
|
+
### Patch Changes
|
|
516
|
+
|
|
517
|
+
- ci: Version Packages (#311)
|
|
518
|
+
|
|
519
|
+
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
|
|
520
|
+
|
|
521
|
+
- Updated dependencies []:
|
|
522
|
+
- @tanstack/create@0.51.0
|
|
523
|
+
- @tanstack/create-ui@0.50.0
|
|
524
|
+
|
|
525
|
+
## 0.49.0
|
|
526
|
+
|
|
527
|
+
### Minor Changes
|
|
528
|
+
|
|
529
|
+
- feat(mcp): add getAddOnDetails tool and expand add-on metadata
|
|
530
|
+
|
|
531
|
+
Add new MCP tool to retrieve detailed add-on information including
|
|
532
|
+
routes, package additions, files, and documentation. Also expand
|
|
533
|
+
listTanStackAddOns to include type, category, link, warning, and
|
|
534
|
+
exclusive fields.
|
|
535
|
+
|
|
536
|
+
### Patch Changes
|
|
537
|
+
|
|
538
|
+
- Updated dependencies []:
|
|
539
|
+
- @tanstack/create@0.50.0
|
|
540
|
+
- @tanstack/create-ui@0.49.0
|
|
541
|
+
|
|
542
|
+
## 0.48.7
|
|
543
|
+
|
|
544
|
+
### Patch Changes
|
|
545
|
+
|
|
546
|
+
- Updated dependencies [[`30edd20`](https://github.com/TanStack/cli/commit/30edd208fd81b5c501fa42cd476232273ff108d1)]:
|
|
547
|
+
- @tanstack/create@0.49.3
|
|
548
|
+
- @tanstack/create-ui@0.48.5
|
|
549
|
+
|
|
3
550
|
## 0.48.6
|
|
4
551
|
|
|
5
552
|
### Patch Changes
|