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.
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/package.json
CHANGED
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
|
|
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");
|