robodev 0.2.1 → 0.2.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/package.json +1 -1
  2. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robodev",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "CLI for Robodev Starbase — create, auth, link, and deploy file-based APIs",
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
@@ -185,7 +185,7 @@ async function runLink(projectId?: string): Promise<void> {
185
185
  console.log(`Frontend API ${project.apiUrl}`);
186
186
  }
187
187
 
188
- /** Collects `database.ts` plus every `api/**/*.ts` file for a deploy upload. */
188
+ /** Collects `database.ts` plus every TypeScript file under `api/` for a deploy upload. */
189
189
  async function collectFiles(root: string): Promise<{ path: string; content: string }[]> {
190
190
  const files: { path: string; content: string }[] = [];
191
191
  const database = join(root, "database.ts");