ropilot 0.1.15 → 0.1.16
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/lib/setup.js +7 -1
- package/package.json +1 -1
package/lib/setup.js
CHANGED
|
@@ -428,7 +428,13 @@ export async function update() {
|
|
|
428
428
|
process.exit(1);
|
|
429
429
|
}
|
|
430
430
|
|
|
431
|
-
await downloadPrompts(apiKey);
|
|
431
|
+
const pkg = await downloadPrompts(apiKey);
|
|
432
432
|
console.log('');
|
|
433
|
+
|
|
434
|
+
// Update project files too
|
|
435
|
+
console.log('Updating project files...');
|
|
436
|
+
setupProjectPrompts(pkg);
|
|
437
|
+
console.log('');
|
|
438
|
+
|
|
433
439
|
console.log('Update complete!');
|
|
434
440
|
}
|