@auto-engineer/server-generator-apollo-emmett 1.110.6 → 1.110.7

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": "^13.0.0",
33
33
  "web-streams-polyfill": "^4.1.0",
34
34
  "zod": "^3.22.4",
35
- "@auto-engineer/narrative": "1.110.6",
36
- "@auto-engineer/message-bus": "1.110.6"
35
+ "@auto-engineer/message-bus": "1.110.7",
36
+ "@auto-engineer/narrative": "1.110.7"
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.110.6"
47
+ "@auto-engineer/cli": "1.110.7"
48
48
  },
49
- "version": "1.110.6",
49
+ "version": "1.110.7",
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",
@@ -815,13 +815,19 @@ main().catch((err) => {
815
815
  }
816
816
 
817
817
  async function installDependenciesAndGenerateSchema(serverDir: string, workingDir: string): Promise<void> {
818
- debugDeps('Installing dependencies...');
819
- debugDeps('Starting dependency installation in %s', serverDir);
820
- debugDeps('Hint: You can debug by manually running: cd server && pnpm install && npx tsx scripts/generate-schema.ts');
821
-
822
- debugDeps('Running pnpm install');
823
- await execa('pnpm', ['install', '--no-frozen-lockfile'], { cwd: serverDir });
824
- debugDeps('Dependencies installed successfully');
818
+ if (process.env.DEPS_PRE_WARMED === 'true') {
819
+ debugDeps('Skipping pnpm install (DEPS_PRE_WARMED)');
820
+ } else {
821
+ debugDeps('Installing dependencies...');
822
+ debugDeps('Starting dependency installation in %s', serverDir);
823
+ debugDeps(
824
+ 'Hint: You can debug by manually running: cd server && pnpm install && npx tsx scripts/generate-schema.ts',
825
+ );
826
+
827
+ debugDeps('Running pnpm install');
828
+ await execa('pnpm', ['install', '--no-frozen-lockfile'], { cwd: serverDir });
829
+ debugDeps('Dependencies installed successfully');
830
+ }
825
831
 
826
832
  debugDeps('Generating GraphQL schema...');
827
833
  debugDeps('Running: npx tsx scripts/generate-schema.ts');