create-tsrouter-app 0.6.0 → 0.6.1
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/dist/mcp.js +9 -1
- package/package.json +1 -1
- package/src/mcp.ts +11 -1
package/dist/mcp.js
CHANGED
|
@@ -72,6 +72,7 @@ server.tool('createTanStackReactApplication', {
|
|
|
72
72
|
'start',
|
|
73
73
|
'store',
|
|
74
74
|
'tanstack-query',
|
|
75
|
+
'tanchat',
|
|
75
76
|
]))
|
|
76
77
|
.describe('The IDs of the add-ons to install'),
|
|
77
78
|
}, async ({ projectName, addOns, cwd }) => {
|
|
@@ -142,7 +143,14 @@ server.tool('createTanStackSolidApplication', {
|
|
|
142
143
|
.describe('The package.json module name of the application (will also be the directory name)'),
|
|
143
144
|
cwd: z.string().describe('The directory to create the application in'),
|
|
144
145
|
addOns: z
|
|
145
|
-
.array(z.enum([
|
|
146
|
+
.array(z.enum([
|
|
147
|
+
'solid-ui',
|
|
148
|
+
'form',
|
|
149
|
+
'sentry',
|
|
150
|
+
'store',
|
|
151
|
+
'tanstack-query',
|
|
152
|
+
'tanchat',
|
|
153
|
+
]))
|
|
146
154
|
.describe('The IDs of the add-ons to install'),
|
|
147
155
|
}, async ({ projectName, addOns, cwd }) => {
|
|
148
156
|
try {
|
package/package.json
CHANGED
package/src/mcp.ts
CHANGED
|
@@ -83,6 +83,7 @@ server.tool(
|
|
|
83
83
|
'start',
|
|
84
84
|
'store',
|
|
85
85
|
'tanstack-query',
|
|
86
|
+
'tanchat',
|
|
86
87
|
]),
|
|
87
88
|
)
|
|
88
89
|
.describe('The IDs of the add-ons to install'),
|
|
@@ -169,7 +170,16 @@ server.tool(
|
|
|
169
170
|
),
|
|
170
171
|
cwd: z.string().describe('The directory to create the application in'),
|
|
171
172
|
addOns: z
|
|
172
|
-
.array(
|
|
173
|
+
.array(
|
|
174
|
+
z.enum([
|
|
175
|
+
'solid-ui',
|
|
176
|
+
'form',
|
|
177
|
+
'sentry',
|
|
178
|
+
'store',
|
|
179
|
+
'tanstack-query',
|
|
180
|
+
'tanchat',
|
|
181
|
+
]),
|
|
182
|
+
)
|
|
173
183
|
.describe('The IDs of the add-ons to install'),
|
|
174
184
|
},
|
|
175
185
|
async ({ projectName, addOns, cwd }) => {
|