@tanstack/create-start 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 +101 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,106 @@
1
1
  # @tanstack/create-start
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: force TanStack Start with Tailwind CSS always enabled
15
+
16
+ - Remove code-router mode and --router-only flag (TanStack Start only)
17
+ - Remove start add-on (baked into base templates)
18
+ - Remove module-federation add-on
19
+ - Force Tailwind CSS to always be enabled
20
+ - Remove --tailwind/--no-tailwind CLI flags
21
+ - Remove selectTailwind and selectTypescript prompts
22
+ - Remove forcedMode parameter (mode always file-router)
23
+ - Simplify template conditionals and hardcode typescript/tailwind values
24
+ - Update README.md.ejs with instructions for removing Tailwind
25
+ - Clean up dead code and unused functions
26
+ - Update all CLI wrappers to show deprecation warnings
27
+
28
+ ### Patch Changes
29
+
30
+ - ci: Version Packages (#346)
31
+
32
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
33
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
34
+
35
+ - ci: Version Packages (#348)
36
+
37
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
38
+
39
+ - ci: Version Packages (#339)
40
+
41
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
42
+
43
+ - ci: Version Packages (#311)
44
+
45
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
46
+
47
+ - ci: Version Packages (#313)
48
+
49
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
50
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
51
+
52
+ - ci: Version Packages (#327)
53
+
54
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
55
+
56
+ - ci: Version Packages (#312)
57
+
58
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
59
+
60
+ - ci: Version Packages (#349)
61
+
62
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
63
+
64
+ - ci: Version Packages (#341)
65
+
66
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
67
+
68
+ - ci: Version Packages (#338)
69
+
70
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
71
+
72
+ - ci: Version Packages (#325)
73
+
74
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
75
+
76
+ - ci: Version Packages (#335)
77
+
78
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
79
+
80
+ - ci: Version Packages (#347)
81
+
82
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
83
+
84
+ - ci: Version Packages (#334)
85
+
86
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
87
+
88
+ - ci: Version Packages (#336)
89
+
90
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
91
+
92
+ - ci: Version Packages (#326)
93
+
94
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
95
+
96
+ - ci: Version Packages (#337)
97
+
98
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
99
+
100
+ - Updated dependencies []:
101
+ - @tanstack/create@0.60.0
102
+ - @tanstack/cli@0.59.0
103
+
3
104
  ## 0.58.5
4
105
 
5
106
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/create-start",
3
- "version": "0.58.5",
3
+ "version": "0.59.0",
4
4
  "description": "Tanstack Start Builder",
5
5
  "bin": "./dist/index.js",
6
6
  "type": "module",
@@ -24,8 +24,8 @@
24
24
  "author": "Jack Herrington <jherr@pobox.com>",
25
25
  "license": "MIT",
26
26
  "dependencies": {
27
- "@tanstack/cli": "0.58.5",
28
- "@tanstack/create": "0.59.4"
27
+ "@tanstack/cli": "0.59.0",
28
+ "@tanstack/create": "0.60.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.13.4",