Skip to content

Commit ca6c2ae

Browse files
committed
Merge origin/main into feat/normalize-execute-commands
2 parents a81d40f + 76a3782 commit ca6c2ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+1665
-36
lines changed

.changeset/fair-trees-grab.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@tanstack/cli": patch
3+
---
4+
5+
Prevent add-on multiselect options from rendering with pagination markers by showing the full list, which avoids a Clack navigation glitch that could duplicate the second-to-last entry while moving between the bottom options.

.changeset/odd-apples-visit.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@tanstack/create": patch
3+
---
4+
5+
Pin the React Sentry add-on to `@sentry/tanstackstart-react@10.34.0` to avoid a Nitro production build failure introduced in newer Sentry versions.

.changeset/wicked-paws-live.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@tanstack/create': minor
3+
---
4+
5+
Add PostHog add-on

.github/workflows/release.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,6 @@ jobs:
3232
run: pnpm build
3333
- name: Test
3434
run: pnpm test
35-
- name: Generate changesets from commits (if none exist)
36-
run: |
37-
# Check if any changeset files exist (excluding README.md)
38-
if ! find .changeset -name "*.md" ! -name "README.md" 2>/dev/null | grep -q .; then
39-
npx changeset-conventional-commits
40-
fi
4135
- name: Run Changesets (version or publish)
4236
uses: changesets/action@v1.5.3
4337
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ npx @tanstack/cli create --list-add-ons
5454

5555
## Documentation
5656

57-
- [CLI Reference](https://tanstack.com/start/latest/docs/framework/react/quick-start)
57+
- [CLI Reference](https://tanstack.com/cli/latest/docs/cli-reference)
5858
- [TanStack Start](https://tanstack.com/start)
5959
- [TanStack Router](https://tanstack.com/router)
6060

cli-aliases/create-start-app/CHANGELOG.md

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,145 @@
11
# create-start-app
22

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+
104+
## 0.58.5
105+
106+
### Patch Changes
107+
108+
- Updated dependencies [[`dbd3086`](https://github.com/TanStack/cli/commit/dbd308621464d14bbc03158b2972fd061ea6ccb1), [`4f7c925`](https://github.com/TanStack/cli/commit/4f7c9255f365b1993ec91ac447dfcbfe6dd4903d)]:
109+
- @tanstack/create@0.59.4
110+
- @tanstack/cli@0.58.5
111+
112+
## 0.58.4
113+
114+
### Patch Changes
115+
116+
- Updated dependencies [[`0c0ee31`](https://github.com/TanStack/cli/commit/0c0ee318f78896f228623aa05e2a58cfb50e6f81)]:
117+
- @tanstack/cli@0.58.4
118+
119+
## 0.58.3
120+
121+
### Patch Changes
122+
123+
- Updated dependencies [[`a93d7e5`](https://github.com/TanStack/cli/commit/a93d7e5d43bc1db37f2251bf88de7681c9a7387d)]:
124+
- @tanstack/create@0.59.3
125+
- @tanstack/cli@0.58.3
126+
127+
## 0.58.2
128+
129+
### Patch Changes
130+
131+
- Updated dependencies [[`2f3c4d7`](https://github.com/TanStack/cli/commit/2f3c4d79b1ecdf8b8404d23e7b25bfbbbf77f48f)]:
132+
- @tanstack/create@0.59.2
133+
- @tanstack/cli@0.58.2
134+
135+
## 0.58.1
136+
137+
### Patch Changes
138+
139+
- Updated dependencies [[`0f2744e`](https://github.com/TanStack/cli/commit/0f2744ea4675dbc61ff14ebbe57f77438606b26b)]:
140+
- @tanstack/create@0.59.1
141+
- @tanstack/cli@0.58.1
142+
3143
## 0.58.0
4144

5145
### Minor Changes

cli-aliases/create-start-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-start-app",
3-
"version": "0.58.0",
3+
"version": "0.59.0",
44
"description": "Tanstack Start Builder",
55
"bin": "./dist/index.js",
66
"type": "module",

cli-aliases/create-tanstack-app/CHANGELOG.md

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,145 @@
11
# create-tanstack-app
22

3+
## 0.54.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+
104+
## 0.53.5
105+
106+
### Patch Changes
107+
108+
- Updated dependencies [[`dbd3086`](https://github.com/TanStack/cli/commit/dbd308621464d14bbc03158b2972fd061ea6ccb1), [`4f7c925`](https://github.com/TanStack/cli/commit/4f7c9255f365b1993ec91ac447dfcbfe6dd4903d)]:
109+
- @tanstack/create@0.59.4
110+
- @tanstack/cli@0.58.5
111+
112+
## 0.53.4
113+
114+
### Patch Changes
115+
116+
- Updated dependencies [[`0c0ee31`](https://github.com/TanStack/cli/commit/0c0ee318f78896f228623aa05e2a58cfb50e6f81)]:
117+
- @tanstack/cli@0.58.4
118+
119+
## 0.53.3
120+
121+
### Patch Changes
122+
123+
- Updated dependencies [[`a93d7e5`](https://github.com/TanStack/cli/commit/a93d7e5d43bc1db37f2251bf88de7681c9a7387d)]:
124+
- @tanstack/create@0.59.3
125+
- @tanstack/cli@0.58.3
126+
127+
## 0.53.2
128+
129+
### Patch Changes
130+
131+
- Updated dependencies [[`2f3c4d7`](https://github.com/TanStack/cli/commit/2f3c4d79b1ecdf8b8404d23e7b25bfbbbf77f48f)]:
132+
- @tanstack/create@0.59.2
133+
- @tanstack/cli@0.58.2
134+
135+
## 0.53.1
136+
137+
### Patch Changes
138+
139+
- Updated dependencies [[`0f2744e`](https://github.com/TanStack/cli/commit/0f2744ea4675dbc61ff14ebbe57f77438606b26b)]:
140+
- @tanstack/create@0.59.1
141+
- @tanstack/cli@0.58.1
142+
3143
## 0.53.0
4144

5145
### Minor Changes

cli-aliases/create-tanstack-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-tanstack-app",
3-
"version": "0.53.0",
3+
"version": "0.54.0",
44
"description": "Tanstack Application Builder",
55
"bin": "./dist/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)