@tanstack/cli 0.58.5 → 0.59.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 (2) hide show
  1. package/CHANGELOG.md +109 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,114 @@
1
1
  # @tanstack/cli
2
2
 
3
+ ## 0.59.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
+ - ci: Version Packages (#346)
33
+
34
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
35
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
36
+
37
+ - ci: Version Packages (#348)
38
+
39
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
40
+
41
+ - ci: Version Packages (#339)
42
+
43
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
44
+
45
+ - ci: Version Packages (#311)
46
+
47
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
48
+
49
+ - ci: Version Packages (#313)
50
+
51
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
52
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
53
+
54
+ - fix(cli): handle deprecated create-tsrouter flags
55
+
56
+ Add explicit compatibility handling for legacy --router-only and --template flags in tanstack create, with deprecation warnings and clear errors for unsupported JavaScript templates.
57
+
58
+ Fixes #331
59
+
60
+ - ci: Version Packages (#327)
61
+
62
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
63
+
64
+ - ci: Version Packages (#312)
65
+
66
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
67
+
68
+ - ci: Version Packages (#349)
69
+
70
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
71
+
72
+ - ci: Version Packages (#341)
73
+
74
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
75
+
76
+ - ci: Version Packages (#338)
77
+
78
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
79
+
80
+ - ci: Version Packages (#325)
81
+
82
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
83
+
84
+ - ci: Version Packages (#335)
85
+
86
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
87
+
88
+ - ci: Version Packages (#347)
89
+
90
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
91
+
92
+ - ci: Version Packages (#334)
93
+
94
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
95
+
96
+ - ci: Version Packages (#336)
97
+
98
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
99
+
100
+ - ci: Version Packages (#326)
101
+
102
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
103
+
104
+ - ci: Version Packages (#337)
105
+
106
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
107
+
108
+ - Updated dependencies []:
109
+ - @tanstack/create@0.60.0
110
+ - @tanstack/create-ui@0.59.0
111
+
3
112
  ## 0.58.5
4
113
 
5
114
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/cli",
3
- "version": "0.58.5",
3
+ "version": "0.59.0",
4
4
  "description": "TanStack CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -38,8 +38,8 @@
38
38
  "tempy": "^3.1.0",
39
39
  "validate-npm-package-name": "^7.0.0",
40
40
  "zod": "^3.24.2",
41
- "@tanstack/create": "0.59.4",
42
- "@tanstack/create-ui": "0.58.4"
41
+ "@tanstack/create": "0.60.0",
42
+ "@tanstack/create-ui": "0.59.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@tanstack/config": "^0.16.2",