@inkeep/create-agents 0.41.1 → 0.41.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.
|
@@ -70,7 +70,7 @@ describe('create-agents quickstart e2e', () => {
|
|
|
70
70
|
await verifyFile(path.join(projectDir, 'src/inkeep.config.ts'));
|
|
71
71
|
console.log('inkeep.config.ts verified');
|
|
72
72
|
console.log('Setting up project in database');
|
|
73
|
-
await runCommand('pnpm', ['setup-dev:cloud'], projectDir);
|
|
73
|
+
await runCommand('pnpm', ['setup-dev:cloud'], projectDir, 600000); // 10 minutes for CI (includes pnpm install, migrations, server startup, push)
|
|
74
74
|
console.log('Project setup in database');
|
|
75
75
|
console.log('Starting dev servers');
|
|
76
76
|
// Start dev servers in background with output monitoring
|
|
@@ -177,5 +177,5 @@ describe('create-agents quickstart e2e', () => {
|
|
|
177
177
|
]);
|
|
178
178
|
console.log('Dev process cleanup complete');
|
|
179
179
|
}
|
|
180
|
-
},
|
|
180
|
+
}, 900000); // 15 minute timeout for full flow with network calls (CI can be slow)
|
|
181
181
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/create-agents",
|
|
3
|
-
"version": "0.41.
|
|
3
|
+
"version": "0.41.2",
|
|
4
4
|
"description": "Create an Inkeep Agent Framework project",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"degit": "^2.8.4",
|
|
34
34
|
"fs-extra": "^11.0.0",
|
|
35
35
|
"picocolors": "^1.0.0",
|
|
36
|
-
"@inkeep/agents-core": "0.41.
|
|
36
|
+
"@inkeep/agents-core": "0.41.2"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/degit": "^2.8.6",
|