@tanstack/create-start 0.58.5 → 0.59.2

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 +117 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,122 @@
1
1
  # @tanstack/create-start
2
2
 
3
+ ## 0.59.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`76a3782`](https://github.com/TanStack/cli/commit/76a3782027c7b89b188b217baa9eaf60f5562090)]:
8
+ - @tanstack/create@0.61.0
9
+ - @tanstack/cli@0.59.2
10
+
11
+ ## 0.59.1
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [[`e384620`](https://github.com/TanStack/cli/commit/e384620ff642be8d4fe78726f0cbe087b9b10556), [`ab740ed`](https://github.com/TanStack/cli/commit/ab740ed2c5510a3266065aa98c8afe3093ea0034)]:
16
+ - @tanstack/cli@0.59.1
17
+ - @tanstack/create@0.60.1
18
+
19
+ ## 0.59.0
20
+
21
+ ### Minor Changes
22
+
23
+ - feat(mcp): add getAddOnDetails tool and expand add-on metadata
24
+
25
+ Add new MCP tool to retrieve detailed add-on information including
26
+ routes, package additions, files, and documentation. Also expand
27
+ listTanStackAddOns to include type, category, link, warning, and
28
+ exclusive fields.
29
+
30
+ - feat: force TanStack Start with Tailwind CSS always enabled
31
+
32
+ - Remove code-router mode and --router-only flag (TanStack Start only)
33
+ - Remove start add-on (baked into base templates)
34
+ - Remove module-federation add-on
35
+ - Force Tailwind CSS to always be enabled
36
+ - Remove --tailwind/--no-tailwind CLI flags
37
+ - Remove selectTailwind and selectTypescript prompts
38
+ - Remove forcedMode parameter (mode always file-router)
39
+ - Simplify template conditionals and hardcode typescript/tailwind values
40
+ - Update README.md.ejs with instructions for removing Tailwind
41
+ - Clean up dead code and unused functions
42
+ - Update all CLI wrappers to show deprecation warnings
43
+
44
+ ### Patch Changes
45
+
46
+ - ci: Version Packages (#346)
47
+
48
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
49
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
50
+
51
+ - ci: Version Packages (#348)
52
+
53
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
54
+
55
+ - ci: Version Packages (#339)
56
+
57
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
58
+
59
+ - ci: Version Packages (#311)
60
+
61
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
62
+
63
+ - ci: Version Packages (#313)
64
+
65
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
66
+ Co-authored-by: Tanner Linsley <tannerlinsley@gmail.com>
67
+
68
+ - ci: Version Packages (#327)
69
+
70
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
71
+
72
+ - ci: Version Packages (#312)
73
+
74
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
75
+
76
+ - ci: Version Packages (#349)
77
+
78
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
79
+
80
+ - ci: Version Packages (#341)
81
+
82
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
83
+
84
+ - ci: Version Packages (#338)
85
+
86
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
87
+
88
+ - ci: Version Packages (#325)
89
+
90
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
91
+
92
+ - ci: Version Packages (#335)
93
+
94
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
95
+
96
+ - ci: Version Packages (#347)
97
+
98
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
99
+
100
+ - ci: Version Packages (#334)
101
+
102
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
103
+
104
+ - ci: Version Packages (#336)
105
+
106
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
107
+
108
+ - ci: Version Packages (#326)
109
+
110
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
111
+
112
+ - ci: Version Packages (#337)
113
+
114
+ Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
115
+
116
+ - Updated dependencies []:
117
+ - @tanstack/create@0.60.0
118
+ - @tanstack/cli@0.59.0
119
+
3
120
  ## 0.58.5
4
121
 
5
122
  ### 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.2",
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.2",
28
+ "@tanstack/create": "0.61.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^22.13.4",