@inkeep/create-agents 0.0.0-dev-20250915202938 → 0.0.0-dev-20250916015245

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/dist/utils.js +6 -8
  2. package/package.json +1 -1
package/dist/utils.js CHANGED
@@ -267,7 +267,7 @@ async function setupPackageConfigurations(dirName) {
267
267
  'db:push': 'drizzle-kit push',
268
268
  setup: 'node scripts/setup.js',
269
269
  'dev:setup': 'node scripts/dev-setup.js',
270
- start: 'pnpm dev:setup'
270
+ start: 'pnpm dev:setup',
271
271
  },
272
272
  dependencies: {},
273
273
  devDependencies: {
@@ -276,7 +276,7 @@ async function setupPackageConfigurations(dirName) {
276
276
  'drizzle-kit': '^0.31.4',
277
277
  tsx: '^4.19.0',
278
278
  turbo: '^2.5.5',
279
- "concurrently": '^8.2.0',
279
+ concurrently: '^8.2.0',
280
280
  'wait-on': '^8.0.0',
281
281
  },
282
282
  engines: {
@@ -284,9 +284,7 @@ async function setupPackageConfigurations(dirName) {
284
284
  },
285
285
  packageManager: 'pnpm@10.10.0',
286
286
  pnpm: {
287
- onlyBuiltDependencies: [
288
- 'keytar'
289
- ]
287
+ onlyBuiltDependencies: ['keytar'],
290
288
  },
291
289
  };
292
290
  await fs.writeJson('package.json', rootPackageJson, { spaces: 2 });
@@ -1007,10 +1005,10 @@ async function setupProjectInDatabase() {
1007
1005
  const devProcess = spawn('pnpm', ['dev'], {
1008
1006
  stdio: ['pipe', 'pipe', 'pipe'],
1009
1007
  detached: true, // Detach so we can kill the process group
1010
- cwd: process.cwd()
1008
+ cwd: process.cwd(),
1011
1009
  });
1012
1010
  // Give servers time to start
1013
- await new Promise(resolve => setTimeout(resolve, 5000));
1011
+ await new Promise((resolve) => setTimeout(resolve, 5000));
1014
1012
  s.message('📦 Servers ready! Creating project in database...');
1015
1013
  // Run the database setup
1016
1014
  await execAsync('node scripts/setup.js');
@@ -1020,7 +1018,7 @@ async function setupProjectInDatabase() {
1020
1018
  // Kill the entire process group
1021
1019
  process.kill(-devProcess.pid, 'SIGTERM');
1022
1020
  // Wait a moment for graceful shutdown
1023
- await new Promise(resolve => setTimeout(resolve, 1000));
1021
+ await new Promise((resolve) => setTimeout(resolve, 1000));
1024
1022
  // Force kill if still running
1025
1023
  try {
1026
1024
  process.kill(-devProcess.pid, 'SIGKILL');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/create-agents",
3
- "version": "0.0.0-dev-20250915202938",
3
+ "version": "0.0.0-dev-20250916015245",
4
4
  "description": "Create an Inkeep Agent Framework project",
5
5
  "type": "module",
6
6
  "bin": {