@inkeep/create-agents 0.0.0-dev-20250913032042 → 0.0.0-dev-20250913033440
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/utils.js +2 -2
- package/package.json +1 -1
package/dist/utils.js
CHANGED
|
@@ -219,7 +219,7 @@ export const createAgents = async (args = {}) => {
|
|
|
219
219
|
await setupDatabase();
|
|
220
220
|
// Setup project in database
|
|
221
221
|
s.message('Setting up project in database...');
|
|
222
|
-
await setupProjectInDatabase(
|
|
222
|
+
await setupProjectInDatabase();
|
|
223
223
|
s.stop();
|
|
224
224
|
// Success message with next steps
|
|
225
225
|
p.note(`${color.green('✓')} Project created at: ${color.cyan(directoryPath)}\n\n` +
|
|
@@ -993,7 +993,7 @@ Once services are running, view the OpenAPI documentation:
|
|
|
993
993
|
async function installDependencies() {
|
|
994
994
|
await execAsync('pnpm install');
|
|
995
995
|
}
|
|
996
|
-
async function setupProjectInDatabase(
|
|
996
|
+
async function setupProjectInDatabase() {
|
|
997
997
|
const s = p.spinner();
|
|
998
998
|
s.start('🚀 Starting development servers and setting up database...');
|
|
999
999
|
try {
|