@testspectra/cli 1.1.8-rc.7 → 1.1.8-rc.9

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.
@@ -383,4 +383,42 @@ async function verifyZeroImport() {
383
383
  expect(fs.existsSync(path.join(tmpDir, '.testspectra', 'types', 'web.d.ts'))).toBe(false);
384
384
  expect(fs.existsSync(path.join(tmpDir, '.testspectra', 'types', 'common.d.ts'))).toBe(false);
385
385
  });
386
+ it('nx monorepo: does NOT treat feature library as shared library and discovers nested e2e subproject', () => {
387
+ // 1. Shared library with testspectra:shared
388
+ const sharedDir = path.join(tmpDir, 'shared', 'testing');
389
+ fs.mkdirSync(path.join(sharedDir, 'page-objects', 'SharedNav'), { recursive: true });
390
+ fs.writeFileSync(path.join(sharedDir, 'project.json'), JSON.stringify({ name: 'shared-testing', projectType: 'library', tags: ['testspectra:shared'] }));
391
+ fs.writeFileSync(path.join(sharedDir, 'page-objects', 'SharedNav', 'common.ts'), 'export default class SharedNav {}');
392
+ // 2. Nx Feature library (projectType: "library", standard Nx tags, NO testspectra tags)
393
+ const featureLibDir = path.join(tmpDir, 'packages', 'features', 'auth');
394
+ fs.mkdirSync(featureLibDir, { recursive: true });
395
+ fs.writeFileSync(path.join(featureLibDir, 'project.json'), JSON.stringify({
396
+ name: '@tagsamurai/feature-auth',
397
+ projectType: 'library',
398
+ sourceRoot: 'packages/features/auth',
399
+ targets: {},
400
+ tags: ['type:feature', 'scope:feature-auth'],
401
+ }));
402
+ // 3. Nested E2E subproject inside feature library
403
+ const featureE2eDir = path.join(featureLibDir, 'e2e');
404
+ fs.mkdirSync(path.join(featureE2eDir, 'specs', 'AuthSuite', 'TC-001'), { recursive: true });
405
+ fs.writeFileSync(path.join(featureE2eDir, 'project.json'), JSON.stringify({
406
+ name: 'feature-auth-e2e',
407
+ projectType: 'application',
408
+ tags: ['testspectra:e2e', 'testspectra:scope:feature-auth'],
409
+ }));
410
+ fs.writeFileSync(path.join(featureE2eDir, 'specs', 'AuthSuite', 'TC-001', 'web.test.ts'), 'it("auth test", async () => {});');
411
+ const scopes = TypeGenerator.getEntityScopes(tmpDir);
412
+ expect(scopes).toHaveLength(2);
413
+ const sharedScope = scopes.find((s) => s.isShared);
414
+ expect(sharedScope).toBeDefined();
415
+ expect(sharedScope?.name).toBe('shared');
416
+ expect(sharedScope?.dir).toBe(path.resolve(sharedDir));
417
+ const featureScope = scopes.find((s) => !s.isShared);
418
+ expect(featureScope).toBeDefined();
419
+ expect(featureScope?.name).toBe('feature-auth');
420
+ expect(featureScope?.dir).toBe(path.resolve(featureE2eDir));
421
+ // Verify packages/features/auth is NOT in scopes
422
+ expect(scopes.some((s) => s.dir === path.resolve(featureLibDir))).toBe(false);
423
+ });
386
424
  });
@@ -9,8 +9,11 @@ export interface EntityScope {
9
9
  * Discovers all feature directories and shared library directories.
10
10
  * Standard discovery hierarchy:
11
11
  * 1. Nx / Monorepo Project Descriptors (`project.json`):
12
- * - projectType: "library" OR tags: ["type:shared", "type:library", "scope:shared"] => Shared Library Scope (isShared: true)
13
- * - projectType: "application" OR tags: ["type:e2e", "type:app"] => Feature Scope (isShared: false)
12
+ * - tags: ["testspectra:shared"] => Shared Library Scope (isShared: true)
13
+ * - tags: ["testspectra:e2e"] or ["testspectra:scope:<name>"] => Feature Scope (isShared: false)
14
+ * - Generic Nx libraries/apps without testspectra tags are not TestSpectra scopes and recursion
15
+ * continues into their subdirectories so nested e2e projects (e.g. `packages/features/auth/e2e`)
16
+ * are discovered.
14
17
  * 2. Explicit User Configuration (`tsconfig.spectra.shared.json`):
15
18
  * - Custom include path for shared testing utilities
16
19
  * 3. Dynamic Workspace Filesystem Discovery (Fallback for non-Nx / custom layouts):
@@ -13,8 +13,11 @@ export const PLATFORM_HIERARCHY = {
13
13
  * Discovers all feature directories and shared library directories.
14
14
  * Standard discovery hierarchy:
15
15
  * 1. Nx / Monorepo Project Descriptors (`project.json`):
16
- * - projectType: "library" OR tags: ["type:shared", "type:library", "scope:shared"] => Shared Library Scope (isShared: true)
17
- * - projectType: "application" OR tags: ["type:e2e", "type:app"] => Feature Scope (isShared: false)
16
+ * - tags: ["testspectra:shared"] => Shared Library Scope (isShared: true)
17
+ * - tags: ["testspectra:e2e"] or ["testspectra:scope:<name>"] => Feature Scope (isShared: false)
18
+ * - Generic Nx libraries/apps without testspectra tags are not TestSpectra scopes and recursion
19
+ * continues into their subdirectories so nested e2e projects (e.g. `packages/features/auth/e2e`)
20
+ * are discovered.
18
21
  * 2. Explicit User Configuration (`tsconfig.spectra.shared.json`):
19
22
  * - Custom include path for shared testing utilities
20
23
  * 3. Dynamic Workspace Filesystem Discovery (Fallback for non-Nx / custom layouts):
@@ -48,16 +51,9 @@ export function discoverEntityScopes(cwd) {
48
51
  if (fs.existsSync(projectJsonPath)) {
49
52
  try {
50
53
  const pObj = JSON.parse(fs.readFileSync(projectJsonPath, 'utf-8'));
51
- const projectType = pObj.projectType;
52
54
  const tags = Array.isArray(pObj.tags) ? pObj.tags : [];
53
- const isSharedLib = projectType === 'library' ||
54
- tags.includes('type:shared') ||
55
- tags.includes('type:library') ||
56
- tags.includes('scope:shared');
57
- const isE2eApp = projectType === 'application' ||
58
- tags.includes('type:e2e') ||
59
- tags.includes('type:app') ||
60
- tags.some((t) => t.startsWith('scope:') && t !== 'scope:shared');
55
+ const isSharedLib = tags.includes('testspectra:shared');
56
+ const isE2eApp = tags.includes('testspectra:e2e') || tags.some((t) => t.startsWith('testspectra:scope:'));
61
57
  if (isSharedLib) {
62
58
  if (!scopes.some((s) => s.dir === dir)) {
63
59
  scopes.push({ name: 'shared', dir, isShared: true });
@@ -65,9 +61,9 @@ export function discoverEntityScopes(cwd) {
65
61
  return; // Do not recurse into subdirectories of an identified project
66
62
  }
67
63
  else if (isE2eApp) {
68
- // Extract scope name from tags (e.g. "scope:matchers" => "matchers") or project name
69
- const scopeTag = tags.find((t) => t.startsWith('scope:') && t !== 'scope:shared');
70
- let featureName = scopeTag ? scopeTag.replace('scope:', '') : '';
64
+ // Extract scope name from tags (e.g. "testspectra:scope:matchers" => "matchers") or project name
65
+ const scopeTag = tags.find((t) => t.startsWith('testspectra:scope:'));
66
+ let featureName = scopeTag ? scopeTag.replace('testspectra:scope:', '') : '';
71
67
  if (!featureName && pObj.name) {
72
68
  featureName = pObj.name.replace(/-e2e$/, '').replace(/^e2e-/, '');
73
69
  }
@@ -329,6 +325,9 @@ export class TypeGenerator {
329
325
  const hierarchy = PLATFORM_HIERARCHY[platform];
330
326
  let content = `// Auto-generated ambient declarations for TestSpectra [${platform.toUpperCase()}]\n`;
331
327
  content += `// Managed automatically by TestSpectra Language Service Plugin.\n\n`;
328
+ content += `/// <reference types="@testspectra/matchers" />\n`;
329
+ content += `/// <reference path="./fixtures.d.ts" />\n`;
330
+ content += `/// <reference path="${envRefPath}" />\n\n`;
332
331
  // TestSpectra's Rust-native orchestrator worker (core/orchestrator/src/worker/bdd_runner.ts)
333
332
  // registers its own `it`/`test`/lifecycle-hook globals directly — there is no WDIO or Mocha
334
333
  // runtime involved at all (not just for component testing; this is true across every
@@ -346,9 +345,7 @@ export class TypeGenerator {
346
345
  // — the Rust orchestrator's BDD runtime has no `expect` global at all.
347
346
  content += `declare const expect: import('@testspectra/react').ExpectStatic;\n`;
348
347
  }
349
- content += `/// <reference types="@testspectra/matchers" />\n`;
350
- content += `/// <reference path="./fixtures.d.ts" />\n`;
351
- content += `/// <reference path="${envRefPath}" />\n\n`;
348
+ content += `\n`;
352
349
  // 1. Page Objects Global Declarations
353
350
  const declaredPOMs = new Set();
354
351
  for (const poDir of poDirs) {
@@ -17,16 +17,16 @@ describe('Shared Library Boundary (testspectra/no-specs-in-shared-lib)', () => {
17
17
  }
18
18
  });
19
19
  describe('findSharedLibraryRoots()', () => {
20
- it('discovers parent folders of project.json files containing both scope:shared and type:shared', () => {
20
+ it('discovers parent folders of project.json files containing testspectra:shared', () => {
21
21
  const sharedDir1 = path.join(tempDir, 'shared', 'testing');
22
22
  const sharedDir2 = path.join(tempDir, 'libs', 'common-helpers');
23
23
  const nonSharedDir = path.join(tempDir, 'packages', 'playground', 'e2e');
24
24
  fs.mkdirSync(sharedDir1, { recursive: true });
25
25
  fs.mkdirSync(sharedDir2, { recursive: true });
26
26
  fs.mkdirSync(nonSharedDir, { recursive: true });
27
- fs.writeFileSync(path.join(sharedDir1, 'project.json'), JSON.stringify({ name: 'shared-testing', tags: ['scope:shared', 'type:shared'] }));
28
- fs.writeFileSync(path.join(sharedDir2, 'project.json'), JSON.stringify({ name: 'common-helpers', tags: ['scope:shared', 'type:shared'] }));
29
- fs.writeFileSync(path.join(nonSharedDir, 'project.json'), JSON.stringify({ name: 'playground-e2e', tags: ['scope:playground', 'type:e2e'] }));
27
+ fs.writeFileSync(path.join(sharedDir1, 'project.json'), JSON.stringify({ name: 'shared-testing', tags: ['testspectra:shared'] }));
28
+ fs.writeFileSync(path.join(sharedDir2, 'project.json'), JSON.stringify({ name: 'common-helpers', tags: ['testspectra:shared'] }));
29
+ fs.writeFileSync(path.join(nonSharedDir, 'project.json'), JSON.stringify({ name: 'playground-e2e', tags: ['testspectra:e2e', 'testspectra:scope:playground'] }));
30
30
  const roots = findSharedLibraryRoots(tempDir);
31
31
  expect(roots).toHaveLength(2);
32
32
  expect(roots).toContain(sharedDir1);
@@ -35,12 +35,12 @@ describe('Shared Library Boundary (testspectra/no-specs-in-shared-lib)', () => {
35
35
  });
36
36
  });
37
37
  describe('isInsideSharedLibrary()', () => {
38
- it('returns true for files inside a project tagged with scope:shared or type:shared in project.json', () => {
38
+ it('returns true for files inside a project tagged with testspectra:shared in project.json', () => {
39
39
  const sharedDir = path.join(tempDir, 'shared', 'testing');
40
40
  fs.mkdirSync(sharedDir, { recursive: true });
41
41
  fs.writeFileSync(path.join(sharedDir, 'project.json'), JSON.stringify({
42
42
  name: 'shared-testing',
43
- tags: ['scope:shared', 'type:shared'],
43
+ tags: ['testspectra:shared'],
44
44
  }));
45
45
  const stepFile = path.join(sharedDir, 'support', 'steps', 'web.step.ts');
46
46
  const specFile = path.join(sharedDir, 'specs', 'TC-001', 'spec.md');
@@ -55,7 +55,7 @@ describe('Shared Library Boundary (testspectra/no-specs-in-shared-lib)', () => {
55
55
  fs.mkdirSync(customLibDir, { recursive: true });
56
56
  fs.writeFileSync(path.join(customLibDir, 'project.json'), JSON.stringify({
57
57
  name: 'custom-common-lib',
58
- tags: ['scope:shared', 'type:shared'],
58
+ tags: ['testspectra:shared'],
59
59
  }));
60
60
  const actionFile = path.join(customLibDir, 'support', 'actions', 'click.action.ts');
61
61
  expect(isInsideSharedLibrary(actionFile)).toBe(true);
@@ -65,7 +65,7 @@ describe('Shared Library Boundary (testspectra/no-specs-in-shared-lib)', () => {
65
65
  fs.mkdirSync(sharedAppDir, { recursive: true });
66
66
  fs.writeFileSync(path.join(sharedAppDir, 'project.json'), JSON.stringify({
67
67
  name: 'shared-app',
68
- tags: ['scope:shared-app', 'type:e2e'],
68
+ tags: ['testspectra:e2e', 'testspectra:scope:shared-app'],
69
69
  }));
70
70
  const specFile = path.join(sharedAppDir, 'specs', 'TC-001', 'spec.md');
71
71
  expect(isInsideSharedLibrary(specFile)).toBe(false);
@@ -75,7 +75,7 @@ describe('Shared Library Boundary (testspectra/no-specs-in-shared-lib)', () => {
75
75
  fs.mkdirSync(featureDir, { recursive: true });
76
76
  fs.writeFileSync(path.join(featureDir, 'project.json'), JSON.stringify({
77
77
  name: 'playground-e2e',
78
- tags: ['scope:playground', 'type:e2e'],
78
+ tags: ['testspectra:e2e', 'testspectra:scope:playground'],
79
79
  }));
80
80
  const specFile = path.join(featureDir, 'specs', 'TC-001', 'spec.md');
81
81
  expect(isInsideSharedLibrary(specFile)).toBe(false);
@@ -91,7 +91,7 @@ describe('Shared Library Boundary (testspectra/no-specs-in-shared-lib)', () => {
91
91
  fs.mkdirSync(sharedLibDir, { recursive: true });
92
92
  fs.writeFileSync(path.join(sharedLibDir, 'project.json'), JSON.stringify({
93
93
  name: 'shared-testing',
94
- tags: ['scope:shared', 'type:shared'],
94
+ tags: ['testspectra:shared'],
95
95
  }));
96
96
  const sharedSpecDir = path.join(sharedLibDir, 'specs', 'TC-error');
97
97
  fs.mkdirSync(sharedSpecDir, { recursive: true });
@@ -119,7 +119,7 @@ status: draft
119
119
  fs.mkdirSync(sharedLibDir, { recursive: true });
120
120
  fs.writeFileSync(path.join(sharedLibDir, 'project.json'), JSON.stringify({
121
121
  name: 'shared-testing',
122
- tags: ['scope:shared', 'type:shared'],
122
+ tags: ['testspectra:shared'],
123
123
  }));
124
124
  const sharedSuiteDir = path.join(sharedLibDir, 'support');
125
125
  fs.mkdirSync(sharedSuiteDir, { recursive: true });
@@ -141,7 +141,7 @@ status: active
141
141
  fs.mkdirSync(customLibDir, { recursive: true });
142
142
  fs.writeFileSync(path.join(customLibDir, 'project.json'), JSON.stringify({
143
143
  name: 'my-testing-utils',
144
- tags: ['scope:shared', 'type:shared'],
144
+ tags: ['testspectra:shared'],
145
145
  }));
146
146
  const specDir = path.join(customLibDir, 'specs', 'TC-custom');
147
147
  fs.mkdirSync(specDir, { recursive: true });
@@ -169,7 +169,7 @@ status: draft
169
169
  fs.mkdirSync(featureDir, { recursive: true });
170
170
  fs.writeFileSync(path.join(featureDir, 'project.json'), JSON.stringify({
171
171
  name: 'playground-e2e',
172
- tags: ['scope:playground', 'type:e2e'],
172
+ tags: ['testspectra:e2e', 'testspectra:scope:playground'],
173
173
  }));
174
174
  const featureSpecDir = path.join(featureDir, 'specs', 'TC-001');
175
175
  fs.mkdirSync(featureSpecDir, { recursive: true });
@@ -195,7 +195,7 @@ status: draft
195
195
  fs.mkdirSync(sharedE2eDir, { recursive: true });
196
196
  fs.writeFileSync(path.join(sharedE2eDir, 'project.json'), JSON.stringify({
197
197
  name: 'shared-feature-e2e',
198
- tags: ['scope:shared-feature', 'type:e2e'],
198
+ tags: ['testspectra:e2e', 'testspectra:scope:shared-feature'],
199
199
  }));
200
200
  const specDir = path.join(sharedE2eDir, 'specs', 'TC-001');
201
201
  fs.mkdirSync(specDir, { recursive: true });
@@ -241,7 +241,7 @@ status: draft
241
241
  fs.mkdirSync(sharedLibDir, { recursive: true });
242
242
  fs.writeFileSync(path.join(sharedLibDir, 'project.json'), JSON.stringify({
243
243
  name: 'shared-testing',
244
- tags: ['scope:shared', 'type:shared'],
244
+ tags: ['testspectra:shared'],
245
245
  }));
246
246
  const sharedDir1 = path.join(sharedLibDir, 'specs', 'TC-001');
247
247
  const sharedDir2 = path.join(sharedLibDir, 'specs', 'TC-002');
@@ -4,14 +4,14 @@ export interface WorkspaceAssets {
4
4
  fixtures: Set<string>;
5
5
  }
6
6
  /**
7
- * Scans a workspace directory for all `project.json` files that have both
8
- * "scope:shared" and "type:shared" tags, and returns their parent folder paths.
7
+ * Scans a workspace directory for all `project.json` files that have the
8
+ * "testspectra:shared" tag, and returns their parent folder paths.
9
9
  */
10
10
  export declare function findSharedLibraryRoots(workspaceDir: string): string[];
11
11
  /**
12
12
  * Resolves the root directory of a shared testing library if the file path is inside one.
13
13
  * Determines shared library status based on `project.json` containing
14
- * both "scope:shared" and "type:shared" tags in ancestor directories,
14
+ * the "testspectra:shared" tag in ancestor directories,
15
15
  * taking the parent folder of that `project.json` as the shared library root.
16
16
  */
17
17
  export declare function getSharedLibraryRoot(filePath: string, workspaceDir?: string): string | null;
@@ -1,8 +1,8 @@
1
1
  import fs from 'fs';
2
2
  import path from 'path';
3
3
  /**
4
- * Scans a workspace directory for all `project.json` files that have both
5
- * "scope:shared" and "type:shared" tags, and returns their parent folder paths.
4
+ * Scans a workspace directory for all `project.json` files that have the
5
+ * "testspectra:shared" tag, and returns their parent folder paths.
6
6
  */
7
7
  export function findSharedLibraryRoots(workspaceDir) {
8
8
  const sharedRoots = [];
@@ -23,7 +23,7 @@ export function findSharedLibraryRoots(workspaceDir) {
23
23
  const raw = fs.readFileSync(path.join(dir, entry.name), 'utf-8');
24
24
  const parsed = JSON.parse(raw);
25
25
  const tags = Array.isArray(parsed.tags) ? parsed.tags : [];
26
- if (tags.includes('scope:shared') && tags.includes('type:shared')) {
26
+ if (tags.includes('testspectra:shared')) {
27
27
  sharedRoots.push(dir);
28
28
  }
29
29
  }
@@ -39,7 +39,7 @@ export function findSharedLibraryRoots(workspaceDir) {
39
39
  /**
40
40
  * Resolves the root directory of a shared testing library if the file path is inside one.
41
41
  * Determines shared library status based on `project.json` containing
42
- * both "scope:shared" and "type:shared" tags in ancestor directories,
42
+ * the "testspectra:shared" tag in ancestor directories,
43
43
  * taking the parent folder of that `project.json` as the shared library root.
44
44
  */
45
45
  export function getSharedLibraryRoot(filePath, workspaceDir) {
@@ -67,7 +67,7 @@ export function getSharedLibraryRoot(filePath, workspaceDir) {
67
67
  const raw = fs.readFileSync(projectJsonPath, 'utf-8');
68
68
  const projectConfig = JSON.parse(raw);
69
69
  const tags = Array.isArray(projectConfig.tags) ? projectConfig.tags : [];
70
- if (tags.includes('scope:shared') && tags.includes('type:shared')) {
70
+ if (tags.includes('testspectra:shared')) {
71
71
  return current;
72
72
  }
73
73
  return null;
@@ -36,6 +36,15 @@ export class RustCoreBridge {
36
36
  const pkgJsonPath = require.resolve(`${pkgName}/package.json`);
37
37
  const pkgBinPath = path.join(path.dirname(pkgJsonPath), 'bin', binaryName);
38
38
  if (fs.existsSync(pkgBinPath)) {
39
+ if (process.platform !== 'win32') {
40
+ try {
41
+ const stat = fs.statSync(pkgBinPath);
42
+ if ((stat.mode & 0o111) === 0) {
43
+ fs.chmodSync(pkgBinPath, 0o755);
44
+ }
45
+ }
46
+ catch { }
47
+ }
39
48
  return pkgBinPath;
40
49
  }
41
50
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testspectra/cli",
3
- "version": "1.1.8-rc.7",
3
+ "version": "1.1.8-rc.9",
4
4
  "description": "TestSpectra Zero-Config Cross-Platform Test Runner CLI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -26,9 +26,9 @@
26
26
  ],
27
27
  "dependencies": {
28
28
  "@clack/prompts": "^1.7.0",
29
- "@testspectra/matchers": "^1.1.8-rc.7",
30
- "@testspectra/react": "^1.1.8-rc.7",
31
- "@testspectra/skills": "^1.1.8-rc.7",
29
+ "@testspectra/matchers": "^1.1.8-rc.9",
30
+ "@testspectra/react": "^1.1.8-rc.9",
31
+ "@testspectra/skills": "^1.1.8-rc.9",
32
32
  "chalk": "^5.3.0",
33
33
  "commander": "^12.1.0",
34
34
  "dotenv": "^16.4.5",
@@ -38,10 +38,10 @@
38
38
  "zod": "^3.23.8"
39
39
  },
40
40
  "optionalDependencies": {
41
- "@testspectra/cli-darwin-arm64": "1.1.8-rc.7",
42
- "@testspectra/cli-linux-x64": "1.1.8-rc.7",
43
- "@testspectra/cli-win32-arm64": "1.1.8-rc.7",
44
- "@testspectra/cli-win32-x64": "1.1.8-rc.7"
41
+ "@testspectra/cli-darwin-arm64": "1.1.8-rc.9",
42
+ "@testspectra/cli-linux-x64": "1.1.8-rc.9",
43
+ "@testspectra/cli-win32-arm64": "1.1.8-rc.9",
44
+ "@testspectra/cli-win32-x64": "1.1.8-rc.9"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/node": "^20.14.0",
@@ -17,8 +17,8 @@
17
17
  "postinstall": "spectra sync-types"
18
18
  },
19
19
  "devDependencies": {
20
- "@testspectra/cli": "^1.1.8-rc.7",
21
- "@testspectra/matchers": "^1.1.8-rc.7",
20
+ "@testspectra/cli": "^1.1.8-rc.9",
21
+ "@testspectra/matchers": "^1.1.8-rc.9",
22
22
  "@types/node": "^20.14.0",
23
23
  "@wdio/cli": "^9.2.8",
24
24
  "@wdio/local-runner": "^9.2.8",
@@ -5522,3 +5522,227 @@
5522
5522
  [NX Daemon Server] - 2026-09-16T09:06:44.654Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5523
5523
  [NX Daemon Server] - 2026-09-16T09:06:44.654Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5524
5524
  [NX Daemon Server] - 2026-09-16T09:06:44.654Z - Time taken for 'total execution time for createProjectGraph()' 16.565625000745058ms
5525
+ [NX Daemon Server] - 2026-09-16T09:07:16.118Z - [WATCHER]: package.json was modified
5526
+ [NX Daemon Server] - 2026-09-16T09:07:16.118Z - [WATCHER]: Processing file changes in outputs
5527
+ [NX Daemon Server] - 2026-09-16T09:07:22.520Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5528
+ [NX Daemon Server] - 2026-09-16T09:07:22.520Z - [REQUEST]: package.json
5529
+ [NX Daemon Server] - 2026-09-16T09:07:22.520Z - [REQUEST]:
5530
+ [NX Daemon Server] - 2026-09-16T09:07:22.521Z - Time taken for 'hash changed files from watcher' 0.22908300161361694ms
5531
+ [NX Daemon Server] - 2026-09-16T09:07:22.529Z - Time taken for 'build-project-configs' 7.762083001434803ms
5532
+ [NX Daemon Server] - 2026-09-16T09:07:22.541Z - [SYNC]: collect registered sync generators
5533
+ [NX Daemon Server] - 2026-09-16T09:07:22.541Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5534
+ [NX Daemon Server] - 2026-09-16T09:07:22.541Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5535
+ [NX Daemon Server] - 2026-09-16T09:07:22.541Z - Time taken for 'total execution time for createProjectGraph()' 6.686250001192093ms
5536
+ [NX Daemon Server] - 2026-09-16T09:55:42.557Z - [WATCHER]: package.json was modified
5537
+ [NX Daemon Server] - 2026-09-16T09:55:42.559Z - [WATCHER]: Processing file changes in outputs
5538
+ [NX Daemon Server] - 2026-09-16T09:55:48.970Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5539
+ [NX Daemon Server] - 2026-09-16T09:55:48.971Z - [REQUEST]: package.json
5540
+ [NX Daemon Server] - 2026-09-16T09:55:48.971Z - [REQUEST]:
5541
+ [NX Daemon Server] - 2026-09-16T09:55:48.987Z - Time taken for 'hash changed files from watcher' 5.242375001311302ms
5542
+ [NX Daemon Server] - 2026-09-16T09:55:49.027Z - Time taken for 'build-project-configs' 42.43829200044274ms
5543
+ [NX Daemon Server] - 2026-09-16T09:55:49.050Z - [SYNC]: collect registered sync generators
5544
+ [NX Daemon Server] - 2026-09-16T09:55:49.050Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5545
+ [NX Daemon Server] - 2026-09-16T09:55:49.050Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5546
+ [NX Daemon Server] - 2026-09-16T09:55:49.051Z - Time taken for 'total execution time for createProjectGraph()' 17.152458999305964ms
5547
+ [NX Daemon Server] - 2026-09-16T09:56:33.063Z - [WATCHER]: package.json was modified
5548
+ [NX Daemon Server] - 2026-09-16T09:56:33.063Z - [WATCHER]: Processing file changes in outputs
5549
+ [NX Daemon Server] - 2026-09-16T09:56:39.465Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5550
+ [NX Daemon Server] - 2026-09-16T09:56:39.465Z - [REQUEST]: package.json
5551
+ [NX Daemon Server] - 2026-09-16T09:56:39.466Z - [REQUEST]:
5552
+ [NX Daemon Server] - 2026-09-16T09:56:39.468Z - Time taken for 'hash changed files from watcher' 0.6755830012261868ms
5553
+ [NX Daemon Server] - 2026-09-16T09:56:39.487Z - Time taken for 'build-project-configs' 17.070957999676466ms
5554
+ [NX Daemon Server] - 2026-09-16T09:56:39.519Z - [SYNC]: collect registered sync generators
5555
+ [NX Daemon Server] - 2026-09-16T09:56:39.519Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5556
+ [NX Daemon Server] - 2026-09-16T09:56:39.519Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5557
+ [NX Daemon Server] - 2026-09-16T09:56:39.519Z - Time taken for 'total execution time for createProjectGraph()' 30.478624999523163ms
5558
+ [NX Daemon Server] - 2026-09-16T10:07:44.347Z - [WATCHER]: tsconfig.json was modified
5559
+ [NX Daemon Server] - 2026-09-16T10:07:44.350Z - [WATCHER]: Processing file changes in outputs
5560
+ [NX Daemon Server] - 2026-09-16T10:07:45.711Z - [WATCHER]: Processing file changes in outputs
5561
+ [NX Daemon Server] - 2026-09-16T10:07:45.714Z - [WATCHER]: tsconfig.json was modified
5562
+ [NX Daemon Server] - 2026-09-16T10:07:45.915Z - [WATCHER]: Processing file changes in outputs
5563
+ [NX Daemon Server] - 2026-09-16T10:07:46.677Z - [WATCHER]: Processing file changes in outputs
5564
+ [NX Daemon Server] - 2026-09-16T10:07:46.752Z - [WATCHER]: Processing file changes in outputs
5565
+ [NX Daemon Server] - 2026-09-16T10:07:46.804Z - [WATCHER]: Processing file changes in outputs
5566
+ [NX Daemon Server] - 2026-09-16T10:07:46.859Z - [WATCHER]: Processing file changes in outputs
5567
+ [NX Daemon Server] - 2026-09-16T10:07:46.938Z - [WATCHER]: Processing file changes in outputs
5568
+ [NX Daemon Server] - 2026-09-16T10:07:46.990Z - [WATCHER]: Processing file changes in outputs
5569
+ [NX Daemon Server] - 2026-09-16T10:07:47.054Z - [WATCHER]: Processing file changes in outputs
5570
+ [NX Daemon Server] - 2026-09-16T10:07:47.118Z - [WATCHER]: Processing file changes in outputs
5571
+ [NX Daemon Server] - 2026-09-16T10:07:50.754Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5572
+ [NX Daemon Server] - 2026-09-16T10:07:50.754Z - [REQUEST]: tsconfig.json
5573
+ [NX Daemon Server] - 2026-09-16T10:07:50.754Z - [REQUEST]:
5574
+ [NX Daemon Server] - 2026-09-16T10:07:50.764Z - Time taken for 'hash changed files from watcher' 2.54033400118351ms
5575
+ [NX Daemon Server] - 2026-09-16T10:07:50.861Z - Time taken for 'build-project-configs' 97.12883299961686ms
5576
+ [NX Daemon Server] - 2026-09-16T10:07:50.926Z - [SYNC]: collect registered sync generators
5577
+ [NX Daemon Server] - 2026-09-16T10:07:50.926Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5578
+ [NX Daemon Server] - 2026-09-16T10:07:50.926Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5579
+ [NX Daemon Server] - 2026-09-16T10:07:50.926Z - Time taken for 'total execution time for createProjectGraph()' 52.07654199749231ms
5580
+ [NX Daemon Server] - 2026-09-16T10:09:19.556Z - [WATCHER]: Processing file changes in outputs
5581
+ [NX Daemon Server] - 2026-09-16T10:09:19.559Z - [WATCHER]: tsconfig.json was modified
5582
+ [NX Daemon Server] - 2026-09-16T10:09:21.202Z - [WATCHER]: Processing file changes in outputs
5583
+ [NX Daemon Server] - 2026-09-16T10:09:21.212Z - [WATCHER]: tsconfig.json was modified
5584
+ [NX Daemon Server] - 2026-09-16T10:09:21.813Z - [WATCHER]: Processing file changes in outputs
5585
+ [NX Daemon Server] - 2026-09-16T10:09:25.967Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5586
+ [NX Daemon Server] - 2026-09-16T10:09:25.967Z - [REQUEST]: tsconfig.json
5587
+ [NX Daemon Server] - 2026-09-16T10:09:25.967Z - [REQUEST]:
5588
+ [NX Daemon Server] - 2026-09-16T10:09:25.970Z - Time taken for 'hash changed files from watcher' 0.8270410001277924ms
5589
+ [NX Daemon Server] - 2026-09-16T10:09:25.982Z - Time taken for 'build-project-configs' 11.506666999310255ms
5590
+ [NX Daemon Server] - 2026-09-16T10:09:26.005Z - [SYNC]: collect registered sync generators
5591
+ [NX Daemon Server] - 2026-09-16T10:09:26.005Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5592
+ [NX Daemon Server] - 2026-09-16T10:09:26.005Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5593
+ [NX Daemon Server] - 2026-09-16T10:09:26.005Z - Time taken for 'total execution time for createProjectGraph()' 18.350584000349045ms
5594
+ [NX Daemon Server] - 2026-09-16T10:10:09.190Z - [WATCHER]: Processing file changes in outputs
5595
+ [NX Daemon Server] - 2026-09-16T10:10:09.199Z - [WATCHER]: tsconfig.json was modified
5596
+ [NX Daemon Server] - 2026-09-16T10:10:10.562Z - [WATCHER]: Processing file changes in outputs
5597
+ [NX Daemon Server] - 2026-09-16T10:10:10.566Z - [WATCHER]: tsconfig.json was modified
5598
+ [NX Daemon Server] - 2026-09-16T10:10:10.771Z - [WATCHER]: Processing file changes in outputs
5599
+ [NX Daemon Server] - 2026-09-16T10:10:15.601Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5600
+ [NX Daemon Server] - 2026-09-16T10:10:15.601Z - [REQUEST]: tsconfig.json
5601
+ [NX Daemon Server] - 2026-09-16T10:10:15.601Z - [REQUEST]:
5602
+ [NX Daemon Server] - 2026-09-16T10:10:15.604Z - Time taken for 'hash changed files from watcher' 0.14674999937415123ms
5603
+ [NX Daemon Server] - 2026-09-16T10:10:15.610Z - Time taken for 'build-project-configs' 7.416999999433756ms
5604
+ [NX Daemon Server] - 2026-09-16T10:10:15.619Z - [SYNC]: collect registered sync generators
5605
+ [NX Daemon Server] - 2026-09-16T10:10:15.619Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5606
+ [NX Daemon Server] - 2026-09-16T10:10:15.619Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5607
+ [NX Daemon Server] - 2026-09-16T10:10:15.619Z - Time taken for 'total execution time for createProjectGraph()' 8.195165999233723ms
5608
+ [NX Daemon Server] - 2026-09-16T10:17:33.256Z - [WATCHER]: shared/testing/project.json was modified
5609
+ [NX Daemon Server] - 2026-09-16T10:17:33.262Z - [WATCHER]: Processing file changes in outputs
5610
+ [NX Daemon Server] - 2026-09-16T10:17:38.609Z - [WATCHER]: packages/matchers/e2e/project.json was modified
5611
+ [NX Daemon Server] - 2026-09-16T10:17:38.609Z - [WATCHER]: Processing file changes in outputs
5612
+ [NX Daemon Server] - 2026-09-16T10:17:39.669Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5613
+ [NX Daemon Server] - 2026-09-16T10:17:39.669Z - [REQUEST]: shared/testing/project.json,packages/matchers/e2e/project.json
5614
+ [NX Daemon Server] - 2026-09-16T10:17:39.669Z - [REQUEST]:
5615
+ [NX Daemon Server] - 2026-09-16T10:17:39.670Z - Time taken for 'hash changed files from watcher' 0.3737499974668026ms
5616
+ [NX Daemon Server] - 2026-09-16T10:17:39.687Z - Time taken for 'build-project-configs' 13.777458000928164ms
5617
+ [NX Daemon Server] - 2026-09-16T10:17:39.714Z - [SYNC]: collect registered sync generators
5618
+ [NX Daemon Server] - 2026-09-16T10:17:39.714Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5619
+ [NX Daemon Server] - 2026-09-16T10:17:39.714Z - Time taken for 'total execution time for createProjectGraph()' 21.413417000323534ms
5620
+ [NX Daemon Server] - 2026-09-16T10:17:43.875Z - [WATCHER]: packages/playground/e2e/project.json was modified
5621
+ [NX Daemon Server] - 2026-09-16T10:17:43.875Z - [WATCHER]: Processing file changes in outputs
5622
+ [NX Daemon Server] - 2026-09-16T10:17:50.281Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5623
+ [NX Daemon Server] - 2026-09-16T10:17:50.281Z - [REQUEST]: packages/playground/e2e/project.json
5624
+ [NX Daemon Server] - 2026-09-16T10:17:50.281Z - [REQUEST]:
5625
+ [NX Daemon Server] - 2026-09-16T10:17:50.286Z - Time taken for 'hash changed files from watcher' 0.3257500007748604ms
5626
+ [NX Daemon Server] - 2026-09-16T10:17:50.299Z - Time taken for 'build-project-configs' 12.452999997884035ms
5627
+ [NX Daemon Server] - 2026-09-16T10:17:50.311Z - [SYNC]: collect registered sync generators
5628
+ [NX Daemon Server] - 2026-09-16T10:17:50.311Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5629
+ [NX Daemon Server] - 2026-09-16T10:17:50.311Z - Time taken for 'total execution time for createProjectGraph()' 12.048207998275757ms
5630
+ [NX Daemon Server] - 2026-09-16T10:28:08.270Z - [WATCHER]: package.json was modified
5631
+ [NX Daemon Server] - 2026-09-16T10:28:08.277Z - [WATCHER]: Processing file changes in outputs
5632
+ [NX Daemon Server] - 2026-09-16T10:28:14.682Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5633
+ [NX Daemon Server] - 2026-09-16T10:28:14.682Z - [REQUEST]: package.json
5634
+ [NX Daemon Server] - 2026-09-16T10:28:14.682Z - [REQUEST]:
5635
+ [NX Daemon Server] - 2026-09-16T10:28:14.691Z - Time taken for 'hash changed files from watcher' 1.6733749993145466ms
5636
+ [NX Daemon Server] - 2026-09-16T10:28:14.710Z - Time taken for 'build-project-configs' 14.943167001008987ms
5637
+ [NX Daemon Server] - 2026-09-16T10:28:14.723Z - [SYNC]: collect registered sync generators
5638
+ [NX Daemon Server] - 2026-09-16T10:28:14.724Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5639
+ [NX Daemon Server] - 2026-09-16T10:28:14.724Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5640
+ [NX Daemon Server] - 2026-09-16T10:28:14.724Z - Time taken for 'total execution time for createProjectGraph()' 7.412624999880791ms
5641
+ [NX Daemon Server] - 2026-09-16T10:29:56.799Z - [WATCHER]: tsconfig.json was modified
5642
+ [NX Daemon Server] - 2026-09-16T10:29:56.800Z - [WATCHER]: Processing file changes in outputs
5643
+ [NX Daemon Server] - 2026-09-16T10:29:58.236Z - [WATCHER]: Processing file changes in outputs
5644
+ [NX Daemon Server] - 2026-09-16T10:29:58.240Z - [WATCHER]: tsconfig.json was modified
5645
+ [NX Daemon Server] - 2026-09-16T10:29:58.726Z - [WATCHER]: Processing file changes in outputs
5646
+ [NX Daemon Server] - 2026-09-16T10:29:59.694Z - [WATCHER]: Processing file changes in outputs
5647
+ [NX Daemon Server] - 2026-09-16T10:29:59.750Z - [WATCHER]: Processing file changes in outputs
5648
+ [NX Daemon Server] - 2026-09-16T10:29:59.832Z - [WATCHER]: Processing file changes in outputs
5649
+ [NX Daemon Server] - 2026-09-16T10:29:59.917Z - [WATCHER]: Processing file changes in outputs
5650
+ [NX Daemon Server] - 2026-09-16T10:29:59.974Z - [WATCHER]: Processing file changes in outputs
5651
+ [NX Daemon Server] - 2026-09-16T10:30:00.059Z - [WATCHER]: Processing file changes in outputs
5652
+ [NX Daemon Server] - 2026-09-16T10:30:00.150Z - [WATCHER]: Processing file changes in outputs
5653
+ [NX Daemon Server] - 2026-09-16T10:30:00.250Z - [WATCHER]: Processing file changes in outputs
5654
+ [NX Daemon Server] - 2026-09-16T10:30:00.328Z - [WATCHER]: Processing file changes in outputs
5655
+ [NX Daemon Server] - 2026-09-16T10:30:03.204Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5656
+ [NX Daemon Server] - 2026-09-16T10:30:03.204Z - [REQUEST]: tsconfig.json
5657
+ [NX Daemon Server] - 2026-09-16T10:30:03.204Z - [REQUEST]:
5658
+ [NX Daemon Server] - 2026-09-16T10:30:03.209Z - Time taken for 'hash changed files from watcher' 0.33445899933576584ms
5659
+ [NX Daemon Server] - 2026-09-16T10:30:03.224Z - Time taken for 'build-project-configs' 12.786125000566244ms
5660
+ [NX Daemon Server] - 2026-09-16T10:30:03.252Z - [SYNC]: collect registered sync generators
5661
+ [NX Daemon Server] - 2026-09-16T10:30:03.252Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5662
+ [NX Daemon Server] - 2026-09-16T10:30:03.252Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5663
+ [NX Daemon Server] - 2026-09-16T10:30:03.252Z - Time taken for 'total execution time for createProjectGraph()' 31.03508299961686ms
5664
+ [NX Daemon Server] - 2026-09-16T10:30:26.754Z - [WATCHER]: Processing file changes in outputs
5665
+ [NX Daemon Server] - 2026-09-16T10:30:26.759Z - [WATCHER]: tsconfig.json was modified
5666
+ [NX Daemon Server] - 2026-09-16T10:30:28.045Z - [WATCHER]: Processing file changes in outputs
5667
+ [NX Daemon Server] - 2026-09-16T10:30:28.048Z - [WATCHER]: tsconfig.json was modified
5668
+ [NX Daemon Server] - 2026-09-16T10:30:28.220Z - [WATCHER]: Processing file changes in outputs
5669
+ [NX Daemon Server] - 2026-09-16T10:30:33.161Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5670
+ [NX Daemon Server] - 2026-09-16T10:30:33.161Z - [REQUEST]: tsconfig.json
5671
+ [NX Daemon Server] - 2026-09-16T10:30:33.161Z - [REQUEST]:
5672
+ [NX Daemon Server] - 2026-09-16T10:30:33.164Z - Time taken for 'hash changed files from watcher' 0.22508300095796585ms
5673
+ [NX Daemon Server] - 2026-09-16T10:30:33.177Z - Time taken for 'build-project-configs' 8.48216699808836ms
5674
+ [NX Daemon Server] - 2026-09-16T10:30:33.185Z - [SYNC]: collect registered sync generators
5675
+ [NX Daemon Server] - 2026-09-16T10:30:33.185Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5676
+ [NX Daemon Server] - 2026-09-16T10:30:33.185Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5677
+ [NX Daemon Server] - 2026-09-16T10:30:33.185Z - Time taken for 'total execution time for createProjectGraph()' 8.57804200053215ms
5678
+ [NX Daemon Server] - 2026-09-16T10:30:58.809Z - [WATCHER]: Processing file changes in outputs
5679
+ [NX Daemon Server] - 2026-09-16T10:30:58.821Z - [WATCHER]: tsconfig.json was modified
5680
+ [NX Daemon Server] - 2026-09-16T10:31:00.301Z - [WATCHER]: Processing file changes in outputs
5681
+ [NX Daemon Server] - 2026-09-16T10:31:00.309Z - [WATCHER]: tsconfig.json was modified
5682
+ [NX Daemon Server] - 2026-09-16T10:31:00.488Z - [WATCHER]: Processing file changes in outputs
5683
+ [NX Daemon Server] - 2026-09-16T10:31:05.224Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5684
+ [NX Daemon Server] - 2026-09-16T10:31:05.224Z - [REQUEST]: tsconfig.json
5685
+ [NX Daemon Server] - 2026-09-16T10:31:05.224Z - [REQUEST]:
5686
+ [NX Daemon Server] - 2026-09-16T10:31:05.225Z - Time taken for 'hash changed files from watcher' 0.21883399784564972ms
5687
+ [NX Daemon Server] - 2026-09-16T10:31:05.236Z - Time taken for 'build-project-configs' 8.323166999965906ms
5688
+ [NX Daemon Server] - 2026-09-16T10:31:05.243Z - [SYNC]: collect registered sync generators
5689
+ [NX Daemon Server] - 2026-09-16T10:31:05.243Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5690
+ [NX Daemon Server] - 2026-09-16T10:31:05.243Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5691
+ [NX Daemon Server] - 2026-09-16T10:31:05.243Z - Time taken for 'total execution time for createProjectGraph()' 7.991584002971649ms
5692
+ [NX Daemon Server] - 2026-09-16T10:36:51.115Z - Established a connection. Number of open connections: 1
5693
+ [NX Daemon Server] - 2026-09-16T10:36:51.116Z - Established a connection. Number of open connections: 2
5694
+ [NX Daemon Server] - 2026-09-16T10:36:51.117Z - Closed a connection. Number of open connections: 1
5695
+ [NX Daemon Server] - 2026-09-16T10:36:51.120Z - [REQUEST]: Client Request for Project Graph Received
5696
+ [NX Daemon Server] - 2026-09-16T10:36:51.120Z - [REQUEST]: Responding to the client. project-graph
5697
+ [NX Daemon Server] - 2026-09-16T10:36:51.121Z - Time taken for 'total for creating and serializing project graph' 0.22070899978280067ms
5698
+ [NX Daemon Server] - 2026-09-16T10:36:51.121Z - Done responding to the client project-graph
5699
+ [NX Daemon Server] - 2026-09-16T10:36:51.121Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
5700
+ [NX Daemon Server] - 2026-09-16T10:36:51.304Z - [REQUEST]: Responding to the client. handleHashTasks
5701
+ [NX Daemon Server] - 2026-09-16T10:36:51.304Z - Done responding to the client handleHashTasks
5702
+ [NX Daemon Server] - 2026-09-16T10:36:51.304Z - Handled HASH_TASKS. Handling time: 19. Response time: 1.
5703
+ [NX Daemon Server] - 2026-09-16T10:36:51.577Z - Closed a connection. Number of open connections: 0
5704
+ [NX Daemon Server] - 2026-09-16T10:44:07.731Z - [WATCHER]: tsconfig.json was modified
5705
+ [NX Daemon Server] - 2026-09-16T10:44:07.733Z - [WATCHER]: Processing file changes in outputs
5706
+ [NX Daemon Server] - 2026-09-16T10:44:07.840Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5707
+ [NX Daemon Server] - 2026-09-16T10:44:07.840Z - [REQUEST]: tsconfig.json
5708
+ [NX Daemon Server] - 2026-09-16T10:44:07.840Z - [REQUEST]:
5709
+ [NX Daemon Server] - 2026-09-16T10:44:07.851Z - Time taken for 'hash changed files from watcher' 3.805332999676466ms
5710
+ [NX Daemon Server] - 2026-09-16T10:44:07.908Z - Time taken for 'build-project-configs' 55.31791700050235ms
5711
+ [NX Daemon Server] - 2026-09-16T10:44:07.944Z - [SYNC]: collect registered sync generators
5712
+ [NX Daemon Server] - 2026-09-16T10:44:07.944Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5713
+ [NX Daemon Server] - 2026-09-16T10:44:07.944Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5714
+ [NX Daemon Server] - 2026-09-16T10:44:07.945Z - Time taken for 'total execution time for createProjectGraph()' 30.290292002260685ms
5715
+ [NX Daemon Server] - 2026-09-16T10:44:09.369Z - [WATCHER]: Processing file changes in outputs
5716
+ [NX Daemon Server] - 2026-09-16T10:44:09.382Z - [WATCHER]: tsconfig.json was modified
5717
+ [NX Daemon Server] - 2026-09-16T10:44:09.581Z - [WATCHER]: Processing file changes in outputs
5718
+ [NX Daemon Server] - 2026-09-16T10:44:09.584Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5719
+ [NX Daemon Server] - 2026-09-16T10:44:09.584Z - [REQUEST]: tsconfig.json
5720
+ [NX Daemon Server] - 2026-09-16T10:44:09.584Z - [REQUEST]:
5721
+ [NX Daemon Server] - 2026-09-16T10:44:09.584Z - Time taken for 'hash changed files from watcher' 0.11187500134110451ms
5722
+ [NX Daemon Server] - 2026-09-16T10:44:09.597Z - Time taken for 'build-project-configs' 11.694916002452374ms
5723
+ [NX Daemon Server] - 2026-09-16T10:44:09.611Z - [SYNC]: collect registered sync generators
5724
+ [NX Daemon Server] - 2026-09-16T10:44:09.611Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5725
+ [NX Daemon Server] - 2026-09-16T10:44:09.611Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5726
+ [NX Daemon Server] - 2026-09-16T10:44:09.611Z - Time taken for 'total execution time for createProjectGraph()' 9.18979199975729ms
5727
+ [NX Daemon Server] - 2026-09-16T10:45:12.122Z - [WATCHER]: package.json was modified
5728
+ [NX Daemon Server] - 2026-09-16T10:45:12.123Z - [WATCHER]: Processing file changes in outputs
5729
+ [NX Daemon Server] - 2026-09-16T10:45:12.530Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5730
+ [NX Daemon Server] - 2026-09-16T10:45:12.530Z - [REQUEST]: package.json
5731
+ [NX Daemon Server] - 2026-09-16T10:45:12.530Z - [REQUEST]:
5732
+ [NX Daemon Server] - 2026-09-16T10:45:12.534Z - Time taken for 'hash changed files from watcher' 1.1732910014688969ms
5733
+ [NX Daemon Server] - 2026-09-16T10:45:12.557Z - Time taken for 'build-project-configs' 21.112665999680758ms
5734
+ [NX Daemon Server] - 2026-09-16T10:45:12.572Z - [SYNC]: collect registered sync generators
5735
+ [NX Daemon Server] - 2026-09-16T10:45:12.572Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5736
+ [NX Daemon Server] - 2026-09-16T10:45:12.572Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5737
+ [NX Daemon Server] - 2026-09-16T10:45:12.572Z - Time taken for 'total execution time for createProjectGraph()' 10.49525000154972ms
5738
+ [NX Daemon Server] - 2026-09-16T10:45:37.405Z - [WATCHER]: _tmp_67987_30dbdf8475be8f8049c41558b77189e8 was deleted
5739
+ [NX Daemon Server] - 2026-09-16T10:45:37.405Z - [WATCHER]: Processing file changes in outputs
5740
+ [NX Daemon Server] - 2026-09-16T10:45:38.207Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5741
+ [NX Daemon Server] - 2026-09-16T10:45:38.208Z - [REQUEST]:
5742
+ [NX Daemon Server] - 2026-09-16T10:45:38.208Z - [REQUEST]: _tmp_67987_30dbdf8475be8f8049c41558b77189e8
5743
+ [NX Daemon Server] - 2026-09-16T10:45:38.210Z - Time taken for 'hash changed files from watcher' 0.3403329998254776ms
5744
+ [NX Daemon Server] - 2026-09-16T10:45:38.229Z - Time taken for 'build-project-configs' 16.210707999765873ms
5745
+ [NX Daemon Server] - 2026-09-16T10:45:38.242Z - [SYNC]: collect registered sync generators
5746
+ [NX Daemon Server] - 2026-09-16T10:45:38.243Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5747
+ [NX Daemon Server] - 2026-09-16T10:45:38.243Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5748
+ [NX Daemon Server] - 2026-09-16T10:45:38.243Z - Time taken for 'total execution time for createProjectGraph()' 13.837250001728535ms