@auto-engineer/server-generator-apollo-emmett 1.95.0 → 1.97.0

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 CHANGED
@@ -32,8 +32,8 @@
32
32
  "uuid": "^11.0.0",
33
33
  "web-streams-polyfill": "^4.1.0",
34
34
  "zod": "^3.22.4",
35
- "@auto-engineer/message-bus": "1.95.0",
36
- "@auto-engineer/narrative": "1.95.0"
35
+ "@auto-engineer/narrative": "1.97.0",
36
+ "@auto-engineer/message-bus": "1.97.0"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
@@ -44,9 +44,9 @@
44
44
  "typescript": "^5.8.3",
45
45
  "vitest": "^3.2.4",
46
46
  "tsx": "^4.19.2",
47
- "@auto-engineer/cli": "1.95.0"
47
+ "@auto-engineer/cli": "1.97.0"
48
48
  },
49
- "version": "1.95.0",
49
+ "version": "1.97.0",
50
50
  "scripts": {
51
51
  "generate:server": "tsx src/cli/index.ts",
52
52
  "build": "tsc && tsx ../../scripts/fix-esm-imports.ts && rm -rf dist/src/codegen/templates && mkdir -p dist/src/codegen && cp -r src/codegen/templates dist/src/codegen/templates && cp src/server.ts dist/src && cp -r src/utils dist/src && cp -r src/domain dist/src",
@@ -777,7 +777,7 @@ async function installDependenciesAndGenerateSchema(serverDir: string, workingDi
777
777
  debugDeps('Hint: You can debug by manually running: cd server && pnpm install && npx tsx scripts/generate-schema.ts');
778
778
 
779
779
  debugDeps('Running pnpm install');
780
- await execa('pnpm', ['install', '--ignore-workspace', '--no-frozen-lockfile'], { cwd: serverDir });
780
+ await execa('pnpm', ['install', '--no-frozen-lockfile'], { cwd: serverDir });
781
781
  debugDeps('Dependencies installed successfully');
782
782
 
783
783
  debugDeps('Generating GraphQL schema...');