@testspectra/cli 1.1.0-rc.0 → 1.1.0-rc.1

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 (105) hide show
  1. package/bin/.testspectra-runner.hash +1 -0
  2. package/bin/testspectra-runner +0 -0
  3. package/demo-app/assets/index-DOtRypCa.js +154 -0
  4. package/demo-app/index.html +1 -1
  5. package/dist/.tsbuildinfo +1 -1
  6. package/dist/commands/__tests__/run.test.js +9 -13
  7. package/dist/commands/init.d.ts +1 -1
  8. package/dist/commands/init.js +6 -1
  9. package/dist/commands/run.js +1 -0
  10. package/dist/commands/sync-types.js +1 -0
  11. package/dist/commands/test.d.ts +17 -0
  12. package/dist/commands/test.js +76 -0
  13. package/dist/commands/watch.js +9 -2
  14. package/dist/config/loader.js +1 -1
  15. package/dist/config/schema.d.ts +5 -109
  16. package/dist/config/schema.js +1 -16
  17. package/dist/generator/__tests__/tsconfig-isolation.test.js +6 -2
  18. package/dist/generator/tsconfig-generator.js +42 -7
  19. package/dist/generator/type-generator.d.ts +24 -1
  20. package/dist/generator/type-generator.js +104 -8
  21. package/dist/index.js +15 -1
  22. package/dist/linter/__tests__/component-test-imports.test.d.ts +1 -0
  23. package/dist/linter/__tests__/component-test-imports.test.js +115 -0
  24. package/dist/linter/extractor.d.ts +1 -0
  25. package/dist/linter/extractor.js +11 -1
  26. package/dist/linter/schemas/spec.schema.d.ts +12 -12
  27. package/dist/linter/schemas/suite.schema.d.ts +8 -8
  28. package/dist/linter/spec-linter.js +38 -3
  29. package/dist/reporter/semantic-formatter.js +17 -2
  30. package/dist/reporter/types.d.ts +1 -1
  31. package/dist/runner/reporter.js +7 -3
  32. package/dist/utils/api-server.js +46 -1
  33. package/package.json +4 -3
  34. package/templates/default/package.json +2 -2
  35. package/templates/default/page-objects/AuthPage/mobile.ts +5 -0
  36. package/templates/default/page-objects/AuthPage/web.ts +10 -0
  37. package/templates/default/page-objects/MatchersPage/mobile.ts +13 -0
  38. package/templates/default/page-objects/MatchersPage/web.ts +5 -0
  39. package/templates/default/page-objects/PlaygroundPage/mobile.ts +6 -0
  40. package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +6 -9
  41. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -0
  42. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -0
  43. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -0
  44. package/templates/default/specs/Authentication/suite.md +9 -0
  45. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/mobile.test.ts +17 -0
  46. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -0
  47. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -0
  48. package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/common.test.ts +14 -0
  49. package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -0
  50. package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -0
  51. package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -0
  52. package/templates/default/specs/EnvironmentConfig/suite.md +9 -0
  53. package/templates/default/spectra.config.ts +1 -16
  54. package/templates/default/support/actions/seedSession/mobile.action.ts +9 -0
  55. package/templates/default/support/actions/seedSession/web.action.ts +13 -0
  56. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-shm +0 -0
  57. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-wal +0 -0
  58. package/templates/nx/.nx/workspace-data/d/daemon.log +1060 -0
  59. package/templates/nx/.nx/workspace-data/d/server-process.json +1 -1
  60. package/templates/nx/.nx/workspace-data/file-map.json +116 -104
  61. package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
  62. package/templates/nx/package.json +2 -2
  63. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -0
  64. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -0
  65. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -0
  66. package/templates/nx/spectra.config.ts +1 -16
  67. package/templates/react-component/.cursorrules +17 -0
  68. package/templates/react-component/.vscode/extensions.json +5 -0
  69. package/templates/react-component/CLAUDE.md +14 -0
  70. package/templates/react-component/README.md +69 -0
  71. package/templates/react-component/fixtures/component-mock.json +12 -0
  72. package/templates/react-component/global-hooks/after/web.hook.ts +3 -0
  73. package/templates/react-component/global-hooks/before/web.hook.ts +3 -0
  74. package/templates/react-component/package.json +27 -0
  75. package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -0
  76. package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -0
  77. package/templates/react-component/page-objects/InputComponent/web.ts +13 -0
  78. package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -0
  79. package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -0
  80. package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -0
  81. package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -0
  82. package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -0
  83. package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -0
  84. package/templates/react-component/specs/BadgeComponent/suite.md +12 -0
  85. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -0
  86. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +28 -0
  87. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -0
  88. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +22 -0
  89. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -0
  90. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -0
  91. package/templates/react-component/specs/ButtonComponent/suite.md +12 -0
  92. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -0
  93. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +28 -0
  94. package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -0
  95. package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -0
  96. package/templates/react-component/specs/InputComponent/suite.md +12 -0
  97. package/templates/react-component/spectra.config.ts +27 -0
  98. package/templates/react-component/src/components/Badge/Badge.tsx +60 -0
  99. package/templates/react-component/src/components/Button/Button.tsx +57 -0
  100. package/templates/react-component/src/components/Input/Input.tsx +41 -0
  101. package/templates/react-component/src/test-utils.tsx +23 -0
  102. package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -0
  103. package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -0
  104. package/templates/react-component/tsconfig.json +8 -0
  105. package/demo-app/assets/index-BGllUp7o.js +0 -140
@@ -4304,3 +4304,1063 @@
4304
4304
  [NX Daemon Server] - 2026-09-15T09:45:42.782Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4305
4305
  [NX Daemon Server] - 2026-09-15T09:45:42.782Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4306
4306
  [NX Daemon Server] - 2026-09-15T09:45:42.782Z - Time taken for 'total execution time for createProjectGraph()' 4.126417000312358ms
4307
+ [NX Daemon Server] - 2026-09-15T09:46:00.393Z - [WATCHER]: package.json was modified
4308
+ [NX Daemon Server] - 2026-09-15T09:46:00.393Z - [WATCHER]: Processing file changes in outputs
4309
+ [NX Daemon Server] - 2026-09-15T09:46:06.794Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4310
+ [NX Daemon Server] - 2026-09-15T09:46:06.794Z - [REQUEST]: package.json
4311
+ [NX Daemon Server] - 2026-09-15T09:46:06.794Z - [REQUEST]:
4312
+ [NX Daemon Server] - 2026-09-15T09:46:06.795Z - Time taken for 'hash changed files from watcher' 0.09049999993294477ms
4313
+ [NX Daemon Server] - 2026-09-15T09:46:06.799Z - Time taken for 'build-project-configs' 3.201707999687642ms
4314
+ [NX Daemon Server] - 2026-09-15T09:46:06.804Z - [SYNC]: collect registered sync generators
4315
+ [NX Daemon Server] - 2026-09-15T09:46:06.804Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4316
+ [NX Daemon Server] - 2026-09-15T09:46:06.804Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4317
+ [NX Daemon Server] - 2026-09-15T09:46:06.804Z - Time taken for 'total execution time for createProjectGraph()' 3.677625000011176ms
4318
+ [NX Daemon Server] - 2026-09-15T09:46:14.822Z - [WATCHER]: Processing file changes in outputs
4319
+ [NX Daemon Server] - 2026-09-15T09:46:14.823Z - [WATCHER]: 17 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
4320
+ [NX Daemon Server] - 2026-09-15T09:46:14.924Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4321
+ [NX Daemon Server] - 2026-09-15T09:46:14.924Z - [REQUEST]: shared/testing/page-objects/MatchersPage/mobile.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,shared/testing/page-objects/PlaygroundPage/web.ts,shared/testing/page-objects/NavigationPage/web.ts,shared/testing/page-objects/MatchersPage/web.ts,spectra.config.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,shared/testing/support/actions/fillCredentials/web.action.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,shared/testing/page-objects/NavigationPage/mobile.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts
4322
+ [NX Daemon Server] - 2026-09-15T09:46:14.925Z - [REQUEST]:
4323
+ [NX Daemon Server] - 2026-09-15T09:46:14.925Z - Time taken for 'hash changed files from watcher' 0.4579159999266267ms
4324
+ [NX Daemon Server] - 2026-09-15T09:46:14.929Z - Time taken for 'build-project-configs' 3.4518329999409616ms
4325
+ [NX Daemon Server] - 2026-09-15T09:46:14.937Z - [SYNC]: collect registered sync generators
4326
+ [NX Daemon Server] - 2026-09-15T09:46:14.937Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4327
+ [NX Daemon Server] - 2026-09-15T09:46:14.937Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4328
+ [NX Daemon Server] - 2026-09-15T09:46:14.937Z - Time taken for 'total execution time for createProjectGraph()' 6.055374999996275ms
4329
+ [NX Daemon Server] - 2026-09-15T09:49:34.837Z - [WATCHER]: 17 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
4330
+ [NX Daemon Server] - 2026-09-15T09:49:34.842Z - [WATCHER]: Processing file changes in outputs
4331
+ [NX Daemon Server] - 2026-09-15T09:49:34.948Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4332
+ [NX Daemon Server] - 2026-09-15T09:49:34.948Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,shared/testing/page-objects/NavigationPage/web.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/page-objects/MatchersPage/mobile.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,shared/testing/page-objects/PlaygroundPage/web.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/page-objects/NavigationPage/mobile.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,spectra.config.ts,shared/testing/support/actions/fillCredentials/web.action.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts
4333
+ [NX Daemon Server] - 2026-09-15T09:49:34.948Z - [REQUEST]:
4334
+ [NX Daemon Server] - 2026-09-15T09:49:34.951Z - Time taken for 'hash changed files from watcher' 2.166583000216633ms
4335
+ [NX Daemon Server] - 2026-09-15T09:49:34.963Z - Time taken for 'build-project-configs' 10.49583400040865ms
4336
+ [NX Daemon Server] - 2026-09-15T09:49:34.975Z - [SYNC]: collect registered sync generators
4337
+ [NX Daemon Server] - 2026-09-15T09:49:34.975Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4338
+ [NX Daemon Server] - 2026-09-15T09:49:34.975Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4339
+ [NX Daemon Server] - 2026-09-15T09:49:34.975Z - Time taken for 'total execution time for createProjectGraph()' 8.480957999825478ms
4340
+ [NX Daemon Server] - 2026-09-15T09:58:38.296Z - [WATCHER]: 17 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
4341
+ [NX Daemon Server] - 2026-09-15T09:58:38.300Z - [WATCHER]: Processing file changes in outputs
4342
+ [NX Daemon Server] - 2026-09-15T09:58:38.403Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4343
+ [NX Daemon Server] - 2026-09-15T09:58:38.403Z - [REQUEST]: shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,shared/testing/page-objects/MatchersPage/web.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/page-objects/NavigationPage/web.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,shared/testing/page-objects/MatchersPage/mobile.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/support/actions/fillCredentials/web.action.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,shared/testing/page-objects/PlaygroundPage/web.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,shared/testing/page-objects/NavigationPage/mobile.ts,spectra.config.ts
4344
+ [NX Daemon Server] - 2026-09-15T09:58:38.403Z - [REQUEST]:
4345
+ [NX Daemon Server] - 2026-09-15T09:58:38.407Z - Time taken for 'hash changed files from watcher' 1.2083330005407333ms
4346
+ [NX Daemon Server] - 2026-09-15T09:58:38.419Z - Time taken for 'build-project-configs' 9.774291000328958ms
4347
+ [NX Daemon Server] - 2026-09-15T09:58:38.431Z - [SYNC]: collect registered sync generators
4348
+ [NX Daemon Server] - 2026-09-15T09:58:38.431Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4349
+ [NX Daemon Server] - 2026-09-15T09:58:38.431Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4350
+ [NX Daemon Server] - 2026-09-15T09:58:38.431Z - Time taken for 'total execution time for createProjectGraph()' 11.5869169998914ms
4351
+ [NX Daemon Server] - 2026-09-15T10:04:38.251Z - [WATCHER]: 17 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
4352
+ [NX Daemon Server] - 2026-09-15T10:04:38.257Z - [WATCHER]: Processing file changes in outputs
4353
+ [NX Daemon Server] - 2026-09-15T10:04:38.362Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4354
+ [NX Daemon Server] - 2026-09-15T10:04:38.362Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/page-objects/MatchersPage/web.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/page-objects/MatchersPage/mobile.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,shared/testing/page-objects/PlaygroundPage/web.ts,spectra.config.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,shared/testing/page-objects/NavigationPage/web.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/page-objects/NavigationPage/mobile.ts
4355
+ [NX Daemon Server] - 2026-09-15T10:04:38.362Z - [REQUEST]:
4356
+ [NX Daemon Server] - 2026-09-15T10:04:38.365Z - Time taken for 'hash changed files from watcher' 2.0169589994475245ms
4357
+ [NX Daemon Server] - 2026-09-15T10:04:38.376Z - Time taken for 'build-project-configs' 9.778916999697685ms
4358
+ [NX Daemon Server] - 2026-09-15T10:04:38.386Z - [SYNC]: collect registered sync generators
4359
+ [NX Daemon Server] - 2026-09-15T10:04:38.386Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4360
+ [NX Daemon Server] - 2026-09-15T10:04:38.386Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4361
+ [NX Daemon Server] - 2026-09-15T10:04:38.386Z - Time taken for 'total execution time for createProjectGraph()' 9.442666000686586ms
4362
+ [NX Daemon Server] - 2026-09-15T10:05:20.696Z - [WATCHER]: 17 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
4363
+ [NX Daemon Server] - 2026-09-15T10:05:20.699Z - [WATCHER]: Processing file changes in outputs
4364
+ [NX Daemon Server] - 2026-09-15T10:05:20.810Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4365
+ [NX Daemon Server] - 2026-09-15T10:05:20.810Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/support/actions/fillCredentials/web.action.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,shared/testing/page-objects/PlaygroundPage/web.ts,shared/testing/page-objects/MatchersPage/web.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,spectra.config.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,shared/testing/page-objects/MatchersPage/mobile.ts,shared/testing/page-objects/NavigationPage/web.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,shared/testing/page-objects/NavigationPage/mobile.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts
4366
+ [NX Daemon Server] - 2026-09-15T10:05:20.810Z - [REQUEST]:
4367
+ [NX Daemon Server] - 2026-09-15T10:05:20.811Z - Time taken for 'hash changed files from watcher' 0.31212500017136335ms
4368
+ [NX Daemon Server] - 2026-09-15T10:05:20.877Z - Time taken for 'build-project-configs' 65.11458399984986ms
4369
+ [NX Daemon Server] - 2026-09-15T10:05:20.884Z - [SYNC]: collect registered sync generators
4370
+ [NX Daemon Server] - 2026-09-15T10:05:20.884Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4371
+ [NX Daemon Server] - 2026-09-15T10:05:20.884Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4372
+ [NX Daemon Server] - 2026-09-15T10:05:20.884Z - Time taken for 'total execution time for createProjectGraph()' 6.503750000149012ms
4373
+ [NX Daemon Server] - 2026-09-15T10:12:37.048Z - [WATCHER]: 17 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
4374
+ [NX Daemon Server] - 2026-09-15T10:12:37.050Z - [WATCHER]: Processing file changes in outputs
4375
+ [NX Daemon Server] - 2026-09-15T10:12:37.152Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4376
+ [NX Daemon Server] - 2026-09-15T10:12:37.153Z - [REQUEST]: shared/testing/support/steps/verifyPlaygroundState/web.step.ts,shared/testing/page-objects/PlaygroundPage/web.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,shared/testing/support/actions/fillCredentials/web.action.ts,shared/testing/page-objects/MatchersPage/web.ts,spectra.config.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,shared/testing/page-objects/NavigationPage/web.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/page-objects/NavigationPage/mobile.ts,shared/testing/page-objects/MatchersPage/mobile.ts
4377
+ [NX Daemon Server] - 2026-09-15T10:12:37.153Z - [REQUEST]:
4378
+ [NX Daemon Server] - 2026-09-15T10:12:37.155Z - Time taken for 'hash changed files from watcher' 1.308666999451816ms
4379
+ [NX Daemon Server] - 2026-09-15T10:12:37.163Z - Time taken for 'build-project-configs' 6.492749999277294ms
4380
+ [NX Daemon Server] - 2026-09-15T10:12:37.174Z - [SYNC]: collect registered sync generators
4381
+ [NX Daemon Server] - 2026-09-15T10:12:37.174Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4382
+ [NX Daemon Server] - 2026-09-15T10:12:37.174Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4383
+ [NX Daemon Server] - 2026-09-15T10:12:37.174Z - Time taken for 'total execution time for createProjectGraph()' 7.080000000074506ms
4384
+ [NX Daemon Server] - 2026-09-15T10:25:40.728Z - [WATCHER]: tsconfig.json was modified
4385
+ [NX Daemon Server] - 2026-09-15T10:25:40.730Z - [WATCHER]: Processing file changes in outputs
4386
+ [NX Daemon Server] - 2026-09-15T10:25:40.931Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4387
+ [NX Daemon Server] - 2026-09-15T10:25:40.932Z - [REQUEST]: tsconfig.json
4388
+ [NX Daemon Server] - 2026-09-15T10:25:40.932Z - [REQUEST]:
4389
+ [NX Daemon Server] - 2026-09-15T10:25:40.935Z - Time taken for 'hash changed files from watcher' 0.7869999995455146ms
4390
+ [NX Daemon Server] - 2026-09-15T10:25:40.947Z - Time taken for 'build-project-configs' 10.979833000339568ms
4391
+ [NX Daemon Server] - 2026-09-15T10:25:40.957Z - [SYNC]: collect registered sync generators
4392
+ [NX Daemon Server] - 2026-09-15T10:25:40.957Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4393
+ [NX Daemon Server] - 2026-09-15T10:25:40.957Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4394
+ [NX Daemon Server] - 2026-09-15T10:25:40.957Z - Time taken for 'total execution time for createProjectGraph()' 10.115833999589086ms
4395
+ [NX Daemon Server] - 2026-09-15T10:25:43.417Z - [WATCHER]: Processing file changes in outputs
4396
+ [NX Daemon Server] - 2026-09-15T10:25:43.423Z - [WATCHER]: tsconfig.json was modified
4397
+ [NX Daemon Server] - 2026-09-15T10:25:43.824Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4398
+ [NX Daemon Server] - 2026-09-15T10:25:43.825Z - [REQUEST]: tsconfig.json
4399
+ [NX Daemon Server] - 2026-09-15T10:25:43.825Z - [REQUEST]:
4400
+ [NX Daemon Server] - 2026-09-15T10:25:43.829Z - Time taken for 'hash changed files from watcher' 0.23875000048428774ms
4401
+ [NX Daemon Server] - 2026-09-15T10:25:43.839Z - Time taken for 'build-project-configs' 11.503209000453353ms
4402
+ [NX Daemon Server] - 2026-09-15T10:25:43.865Z - [SYNC]: collect registered sync generators
4403
+ [NX Daemon Server] - 2026-09-15T10:25:43.865Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4404
+ [NX Daemon Server] - 2026-09-15T10:25:43.865Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4405
+ [NX Daemon Server] - 2026-09-15T10:25:43.866Z - Time taken for 'total execution time for createProjectGraph()' 24.50025000050664ms
4406
+ [NX Daemon Server] - 2026-09-15T10:25:44.709Z - [WATCHER]: Processing file changes in outputs
4407
+ [NX Daemon Server] - 2026-09-15T10:25:44.779Z - [WATCHER]: Processing file changes in outputs
4408
+ [NX Daemon Server] - 2026-09-15T10:25:44.841Z - [WATCHER]: Processing file changes in outputs
4409
+ [NX Daemon Server] - 2026-09-15T10:25:44.899Z - [WATCHER]: Processing file changes in outputs
4410
+ [NX Daemon Server] - 2026-09-15T10:25:45.017Z - [WATCHER]: Processing file changes in outputs
4411
+ [NX Daemon Server] - 2026-09-15T10:25:45.083Z - [WATCHER]: Processing file changes in outputs
4412
+ [NX Daemon Server] - 2026-09-15T10:25:45.141Z - [WATCHER]: Processing file changes in outputs
4413
+ [NX Daemon Server] - 2026-09-15T10:25:45.201Z - [WATCHER]: Processing file changes in outputs
4414
+ [NX Daemon Server] - 2026-09-15T10:25:45.295Z - [WATCHER]: Processing file changes in outputs
4415
+ [NX Daemon Server] - 2026-09-15T10:25:45.348Z - [WATCHER]: Processing file changes in outputs
4416
+ [NX Daemon Server] - 2026-09-15T10:25:45.404Z - [WATCHER]: Processing file changes in outputs
4417
+ [NX Daemon Server] - 2026-09-15T10:25:45.455Z - [WATCHER]: Processing file changes in outputs
4418
+ [NX Daemon Server] - 2026-09-15T11:00:53.755Z - [WATCHER]: tsconfig.json was modified
4419
+ [NX Daemon Server] - 2026-09-15T11:00:53.759Z - [WATCHER]: Processing file changes in outputs
4420
+ [NX Daemon Server] - 2026-09-15T11:00:54.568Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4421
+ [NX Daemon Server] - 2026-09-15T11:00:54.568Z - [REQUEST]: tsconfig.json
4422
+ [NX Daemon Server] - 2026-09-15T11:00:54.568Z - [REQUEST]:
4423
+ [NX Daemon Server] - 2026-09-15T11:00:54.578Z - Time taken for 'hash changed files from watcher' 3.054833998903632ms
4424
+ [NX Daemon Server] - 2026-09-15T11:00:54.613Z - Time taken for 'build-project-configs' 34.74074999988079ms
4425
+ [NX Daemon Server] - 2026-09-15T11:00:54.643Z - [SYNC]: collect registered sync generators
4426
+ [NX Daemon Server] - 2026-09-15T11:00:54.643Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4427
+ [NX Daemon Server] - 2026-09-15T11:00:54.644Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4428
+ [NX Daemon Server] - 2026-09-15T11:00:54.644Z - Time taken for 'total execution time for createProjectGraph()' 29.092374999076128ms
4429
+ [NX Daemon Server] - 2026-09-15T11:00:55.681Z - [WATCHER]: Processing file changes in outputs
4430
+ [NX Daemon Server] - 2026-09-15T11:00:55.684Z - [WATCHER]: tsconfig.json was modified
4431
+ [NX Daemon Server] - 2026-09-15T11:00:56.541Z - [WATCHER]: Processing file changes in outputs
4432
+ [NX Daemon Server] - 2026-09-15T11:00:56.612Z - [WATCHER]: Processing file changes in outputs
4433
+ [NX Daemon Server] - 2026-09-15T11:00:56.674Z - [WATCHER]: Processing file changes in outputs
4434
+ [NX Daemon Server] - 2026-09-15T11:00:56.727Z - [WATCHER]: Processing file changes in outputs
4435
+ [NX Daemon Server] - 2026-09-15T11:00:56.842Z - [WATCHER]: Processing file changes in outputs
4436
+ [NX Daemon Server] - 2026-09-15T11:00:56.903Z - [WATCHER]: Processing file changes in outputs
4437
+ [NX Daemon Server] - 2026-09-15T11:00:56.963Z - [WATCHER]: Processing file changes in outputs
4438
+ [NX Daemon Server] - 2026-09-15T11:00:57.016Z - [WATCHER]: Processing file changes in outputs
4439
+ [NX Daemon Server] - 2026-09-15T11:00:57.108Z - [WATCHER]: Processing file changes in outputs
4440
+ [NX Daemon Server] - 2026-09-15T11:00:57.162Z - [WATCHER]: Processing file changes in outputs
4441
+ [NX Daemon Server] - 2026-09-15T11:00:57.262Z - [WATCHER]: Processing file changes in outputs
4442
+ [NX Daemon Server] - 2026-09-15T11:00:57.286Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4443
+ [NX Daemon Server] - 2026-09-15T11:00:57.286Z - [REQUEST]: tsconfig.json
4444
+ [NX Daemon Server] - 2026-09-15T11:00:57.286Z - [REQUEST]:
4445
+ [NX Daemon Server] - 2026-09-15T11:00:57.288Z - Time taken for 'hash changed files from watcher' 0.10037500038743019ms
4446
+ [NX Daemon Server] - 2026-09-15T11:00:57.291Z - Time taken for 'build-project-configs' 3.458499999716878ms
4447
+ [NX Daemon Server] - 2026-09-15T11:00:57.300Z - [SYNC]: collect registered sync generators
4448
+ [NX Daemon Server] - 2026-09-15T11:00:57.300Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4449
+ [NX Daemon Server] - 2026-09-15T11:00:57.300Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4450
+ [NX Daemon Server] - 2026-09-15T11:00:57.300Z - Time taken for 'total execution time for createProjectGraph()' 7.925874998793006ms
4451
+ [NX Daemon Server] - 2026-09-15T11:01:09.366Z - [WATCHER]: Processing file changes in outputs
4452
+ [NX Daemon Server] - 2026-09-15T11:01:09.374Z - [WATCHER]: tsconfig.json was modified
4453
+ [NX Daemon Server] - 2026-09-15T11:01:11.935Z - [WATCHER]: Processing file changes in outputs
4454
+ [NX Daemon Server] - 2026-09-15T11:01:11.941Z - [WATCHER]: tsconfig.json was modified
4455
+ [NX Daemon Server] - 2026-09-15T11:01:12.576Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4456
+ [NX Daemon Server] - 2026-09-15T11:01:12.576Z - [REQUEST]: tsconfig.json
4457
+ [NX Daemon Server] - 2026-09-15T11:01:12.576Z - [REQUEST]:
4458
+ [NX Daemon Server] - 2026-09-15T11:01:12.577Z - Time taken for 'hash changed files from watcher' 0.1479589994996786ms
4459
+ [NX Daemon Server] - 2026-09-15T11:01:12.586Z - Time taken for 'build-project-configs' 7.456792000681162ms
4460
+ [NX Daemon Server] - 2026-09-15T11:01:12.625Z - [SYNC]: collect registered sync generators
4461
+ [NX Daemon Server] - 2026-09-15T11:01:12.626Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4462
+ [NX Daemon Server] - 2026-09-15T11:01:12.626Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4463
+ [NX Daemon Server] - 2026-09-15T11:01:12.626Z - Time taken for 'total execution time for createProjectGraph()' 38.46591700054705ms
4464
+ [NX Daemon Server] - 2026-09-15T11:02:42.295Z - [WATCHER]: Processing file changes in outputs
4465
+ [NX Daemon Server] - 2026-09-15T11:02:42.297Z - [WATCHER]: tsconfig.json was modified
4466
+ [NX Daemon Server] - 2026-09-15T11:02:44.904Z - [WATCHER]: Processing file changes in outputs
4467
+ [NX Daemon Server] - 2026-09-15T11:02:44.905Z - [WATCHER]: tsconfig.json was modified
4468
+ [NX Daemon Server] - 2026-09-15T11:02:45.976Z - [WATCHER]: Processing file changes in outputs
4469
+ [NX Daemon Server] - 2026-09-15T11:02:46.095Z - [WATCHER]: Processing file changes in outputs
4470
+ [NX Daemon Server] - 2026-09-15T11:02:46.231Z - [WATCHER]: Processing file changes in outputs
4471
+ [NX Daemon Server] - 2026-09-15T11:02:46.324Z - [WATCHER]: Processing file changes in outputs
4472
+ [NX Daemon Server] - 2026-09-15T11:02:46.447Z - [WATCHER]: Processing file changes in outputs
4473
+ [NX Daemon Server] - 2026-09-15T11:02:46.517Z - [WATCHER]: Processing file changes in outputs
4474
+ [NX Daemon Server] - 2026-09-15T11:02:46.577Z - [WATCHER]: Processing file changes in outputs
4475
+ [NX Daemon Server] - 2026-09-15T11:02:46.635Z - [WATCHER]: Processing file changes in outputs
4476
+ [NX Daemon Server] - 2026-09-15T11:02:46.738Z - [WATCHER]: Processing file changes in outputs
4477
+ [NX Daemon Server] - 2026-09-15T11:02:46.792Z - [WATCHER]: Processing file changes in outputs
4478
+ [NX Daemon Server] - 2026-09-15T11:02:46.846Z - [WATCHER]: Processing file changes in outputs
4479
+ [NX Daemon Server] - 2026-09-15T11:02:46.904Z - [WATCHER]: Processing file changes in outputs
4480
+ [NX Daemon Server] - 2026-09-15T11:02:48.699Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4481
+ [NX Daemon Server] - 2026-09-15T11:02:48.699Z - [REQUEST]: tsconfig.json
4482
+ [NX Daemon Server] - 2026-09-15T11:02:48.699Z - [REQUEST]:
4483
+ [NX Daemon Server] - 2026-09-15T11:02:48.700Z - Time taken for 'hash changed files from watcher' 0.11595799960196018ms
4484
+ [NX Daemon Server] - 2026-09-15T11:02:48.710Z - Time taken for 'build-project-configs' 8.519584000110626ms
4485
+ [NX Daemon Server] - 2026-09-15T11:02:48.716Z - [SYNC]: collect registered sync generators
4486
+ [NX Daemon Server] - 2026-09-15T11:02:48.716Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4487
+ [NX Daemon Server] - 2026-09-15T11:02:48.716Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4488
+ [NX Daemon Server] - 2026-09-15T11:02:48.716Z - Time taken for 'total execution time for createProjectGraph()' 5.422459000721574ms
4489
+ [NX Daemon Server] - 2026-09-15T12:27:00.138Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4490
+ [NX Daemon Server] - 2026-09-15T12:27:00.139Z - [WATCHER]: Processing file changes in outputs
4491
+ [NX Daemon Server] - 2026-09-15T12:27:00.243Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4492
+ [NX Daemon Server] - 2026-09-15T12:27:00.243Z - [REQUEST]: spectra.config.ts
4493
+ [NX Daemon Server] - 2026-09-15T12:27:00.243Z - [REQUEST]: spectra.config.ts.tmp.2078.dc45f0af52f8
4494
+ [NX Daemon Server] - 2026-09-15T12:27:00.244Z - Time taken for 'hash changed files from watcher' 0.2987500000745058ms
4495
+ [NX Daemon Server] - 2026-09-15T12:27:00.257Z - Time taken for 'build-project-configs' 11.82179200090468ms
4496
+ [NX Daemon Server] - 2026-09-15T12:27:00.272Z - [SYNC]: collect registered sync generators
4497
+ [NX Daemon Server] - 2026-09-15T12:27:00.272Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4498
+ [NX Daemon Server] - 2026-09-15T12:27:00.272Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4499
+ [NX Daemon Server] - 2026-09-15T12:27:00.272Z - Time taken for 'total execution time for createProjectGraph()' 9.040208999067545ms
4500
+ [NX Daemon Server] - 2026-09-15T12:27:34.705Z - [WATCHER]: Processing file changes in outputs
4501
+ [NX Daemon Server] - 2026-09-15T12:27:34.720Z - [WATCHER]: tsconfig.json was modified
4502
+ [NX Daemon Server] - 2026-09-15T12:27:34.921Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4503
+ [NX Daemon Server] - 2026-09-15T12:27:34.921Z - [REQUEST]: tsconfig.json
4504
+ [NX Daemon Server] - 2026-09-15T12:27:34.921Z - [REQUEST]:
4505
+ [NX Daemon Server] - 2026-09-15T12:27:34.924Z - Time taken for 'hash changed files from watcher' 0.14929200150072575ms
4506
+ [NX Daemon Server] - 2026-09-15T12:27:34.932Z - Time taken for 'build-project-configs' 8.79691700078547ms
4507
+ [NX Daemon Server] - 2026-09-15T12:27:34.942Z - [SYNC]: collect registered sync generators
4508
+ [NX Daemon Server] - 2026-09-15T12:27:34.942Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4509
+ [NX Daemon Server] - 2026-09-15T12:27:34.942Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4510
+ [NX Daemon Server] - 2026-09-15T12:27:34.942Z - Time taken for 'total execution time for createProjectGraph()' 8.234083000570536ms
4511
+ [NX Daemon Server] - 2026-09-15T12:27:37.366Z - [WATCHER]: Processing file changes in outputs
4512
+ [NX Daemon Server] - 2026-09-15T12:27:37.372Z - [WATCHER]: tsconfig.json was modified
4513
+ [NX Daemon Server] - 2026-09-15T12:27:37.773Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4514
+ [NX Daemon Server] - 2026-09-15T12:27:37.773Z - [REQUEST]: tsconfig.json
4515
+ [NX Daemon Server] - 2026-09-15T12:27:37.773Z - [REQUEST]:
4516
+ [NX Daemon Server] - 2026-09-15T12:27:37.774Z - Time taken for 'hash changed files from watcher' 0.1308329999446869ms
4517
+ [NX Daemon Server] - 2026-09-15T12:27:37.781Z - Time taken for 'build-project-configs' 5.0542500000447035ms
4518
+ [NX Daemon Server] - 2026-09-15T12:27:37.798Z - [SYNC]: collect registered sync generators
4519
+ [NX Daemon Server] - 2026-09-15T12:27:37.798Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4520
+ [NX Daemon Server] - 2026-09-15T12:27:37.798Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4521
+ [NX Daemon Server] - 2026-09-15T12:27:37.798Z - Time taken for 'total execution time for createProjectGraph()' 13.045332999899983ms
4522
+ [NX Daemon Server] - 2026-09-15T12:27:38.340Z - [WATCHER]: Processing file changes in outputs
4523
+ [NX Daemon Server] - 2026-09-15T12:27:38.393Z - [WATCHER]: Processing file changes in outputs
4524
+ [NX Daemon Server] - 2026-09-15T12:27:38.472Z - [WATCHER]: Processing file changes in outputs
4525
+ [NX Daemon Server] - 2026-09-15T12:27:38.558Z - [WATCHER]: Processing file changes in outputs
4526
+ [NX Daemon Server] - 2026-09-15T12:27:38.638Z - [WATCHER]: Processing file changes in outputs
4527
+ [NX Daemon Server] - 2026-09-15T12:27:38.705Z - [WATCHER]: Processing file changes in outputs
4528
+ [NX Daemon Server] - 2026-09-15T12:27:38.772Z - [WATCHER]: Processing file changes in outputs
4529
+ [NX Daemon Server] - 2026-09-15T12:27:38.840Z - [WATCHER]: Processing file changes in outputs
4530
+ [NX Daemon Server] - 2026-09-15T12:27:38.899Z - [WATCHER]: Processing file changes in outputs
4531
+ [NX Daemon Server] - 2026-09-15T12:27:49.910Z - [WATCHER]: Processing file changes in outputs
4532
+ [NX Daemon Server] - 2026-09-15T12:27:49.921Z - [WATCHER]: tsconfig.json was modified
4533
+ [NX Daemon Server] - 2026-09-15T12:27:50.722Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4534
+ [NX Daemon Server] - 2026-09-15T12:27:50.722Z - [REQUEST]: tsconfig.json
4535
+ [NX Daemon Server] - 2026-09-15T12:27:50.722Z - [REQUEST]:
4536
+ [NX Daemon Server] - 2026-09-15T12:27:50.724Z - Time taken for 'hash changed files from watcher' 0.18308399990200996ms
4537
+ [NX Daemon Server] - 2026-09-15T12:27:50.730Z - Time taken for 'build-project-configs' 6.220292000100017ms
4538
+ [NX Daemon Server] - 2026-09-15T12:27:50.739Z - [SYNC]: collect registered sync generators
4539
+ [NX Daemon Server] - 2026-09-15T12:27:50.739Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4540
+ [NX Daemon Server] - 2026-09-15T12:27:50.739Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4541
+ [NX Daemon Server] - 2026-09-15T12:27:50.739Z - Time taken for 'total execution time for createProjectGraph()' 5.907624999061227ms
4542
+ [NX Daemon Server] - 2026-09-15T12:27:52.419Z - [WATCHER]: Processing file changes in outputs
4543
+ [NX Daemon Server] - 2026-09-15T12:27:52.423Z - [WATCHER]: tsconfig.json was modified
4544
+ [NX Daemon Server] - 2026-09-15T12:27:54.025Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4545
+ [NX Daemon Server] - 2026-09-15T12:27:54.025Z - [REQUEST]: tsconfig.json
4546
+ [NX Daemon Server] - 2026-09-15T12:27:54.025Z - [REQUEST]:
4547
+ [NX Daemon Server] - 2026-09-15T12:27:54.027Z - Time taken for 'hash changed files from watcher' 0.27416699938476086ms
4548
+ [NX Daemon Server] - 2026-09-15T12:27:54.036Z - Time taken for 'build-project-configs' 7.833374999463558ms
4549
+ [NX Daemon Server] - 2026-09-15T12:27:54.048Z - [SYNC]: collect registered sync generators
4550
+ [NX Daemon Server] - 2026-09-15T12:27:54.048Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4551
+ [NX Daemon Server] - 2026-09-15T12:27:54.048Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4552
+ [NX Daemon Server] - 2026-09-15T12:27:54.048Z - Time taken for 'total execution time for createProjectGraph()' 8.982999999076128ms
4553
+ [NX Daemon Server] - 2026-09-15T12:28:03.935Z - [WATCHER]: Processing file changes in outputs
4554
+ [NX Daemon Server] - 2026-09-15T12:28:03.937Z - [WATCHER]: tsconfig.json was modified
4555
+ [NX Daemon Server] - 2026-09-15T12:28:06.487Z - [WATCHER]: Processing file changes in outputs
4556
+ [NX Daemon Server] - 2026-09-15T12:28:06.493Z - [WATCHER]: tsconfig.json was modified
4557
+ [NX Daemon Server] - 2026-09-15T12:28:07.138Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4558
+ [NX Daemon Server] - 2026-09-15T12:28:07.138Z - [REQUEST]: tsconfig.json
4559
+ [NX Daemon Server] - 2026-09-15T12:28:07.138Z - [REQUEST]:
4560
+ [NX Daemon Server] - 2026-09-15T12:28:07.139Z - Time taken for 'hash changed files from watcher' 0.10283299908041954ms
4561
+ [NX Daemon Server] - 2026-09-15T12:28:07.144Z - Time taken for 'build-project-configs' 4.233582999557257ms
4562
+ [NX Daemon Server] - 2026-09-15T12:28:07.154Z - [SYNC]: collect registered sync generators
4563
+ [NX Daemon Server] - 2026-09-15T12:28:07.154Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4564
+ [NX Daemon Server] - 2026-09-15T12:28:07.154Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4565
+ [NX Daemon Server] - 2026-09-15T12:28:07.154Z - Time taken for 'total execution time for createProjectGraph()' 4.96670800074935ms
4566
+ [NX Daemon Server] - 2026-09-15T12:28:48.377Z - [WATCHER]: Processing file changes in outputs
4567
+ [NX Daemon Server] - 2026-09-15T12:28:48.382Z - [WATCHER]: tsconfig.json was modified
4568
+ [NX Daemon Server] - 2026-09-15T12:28:50.853Z - [WATCHER]: Processing file changes in outputs
4569
+ [NX Daemon Server] - 2026-09-15T12:28:50.859Z - [WATCHER]: tsconfig.json was modified
4570
+ [NX Daemon Server] - 2026-09-15T12:28:51.874Z - [WATCHER]: Processing file changes in outputs
4571
+ [NX Daemon Server] - 2026-09-15T12:28:51.934Z - [WATCHER]: Processing file changes in outputs
4572
+ [NX Daemon Server] - 2026-09-15T12:28:52.011Z - [WATCHER]: Processing file changes in outputs
4573
+ [NX Daemon Server] - 2026-09-15T12:28:52.096Z - [WATCHER]: Processing file changes in outputs
4574
+ [NX Daemon Server] - 2026-09-15T12:28:52.177Z - [WATCHER]: Processing file changes in outputs
4575
+ [NX Daemon Server] - 2026-09-15T12:28:52.255Z - [WATCHER]: Processing file changes in outputs
4576
+ [NX Daemon Server] - 2026-09-15T12:28:52.335Z - [WATCHER]: Processing file changes in outputs
4577
+ [NX Daemon Server] - 2026-09-15T12:28:52.413Z - [WATCHER]: Processing file changes in outputs
4578
+ [NX Daemon Server] - 2026-09-15T12:28:54.785Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4579
+ [NX Daemon Server] - 2026-09-15T12:28:54.785Z - [REQUEST]: tsconfig.json
4580
+ [NX Daemon Server] - 2026-09-15T12:28:54.785Z - [REQUEST]:
4581
+ [NX Daemon Server] - 2026-09-15T12:28:54.786Z - Time taken for 'hash changed files from watcher' 0.1440840009599924ms
4582
+ [NX Daemon Server] - 2026-09-15T12:28:54.791Z - Time taken for 'build-project-configs' 4.933957999572158ms
4583
+ [NX Daemon Server] - 2026-09-15T12:28:54.801Z - [SYNC]: collect registered sync generators
4584
+ [NX Daemon Server] - 2026-09-15T12:28:54.801Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4585
+ [NX Daemon Server] - 2026-09-15T12:28:54.801Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4586
+ [NX Daemon Server] - 2026-09-15T12:28:54.801Z - Time taken for 'total execution time for createProjectGraph()' 6.985708000138402ms
4587
+ [NX Daemon Server] - 2026-09-15T12:30:11.425Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4588
+ [NX Daemon Server] - 2026-09-15T12:30:11.426Z - [WATCHER]: Processing file changes in outputs
4589
+ [NX Daemon Server] - 2026-09-15T12:30:11.529Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4590
+ [NX Daemon Server] - 2026-09-15T12:30:11.529Z - [REQUEST]: spectra.config.ts
4591
+ [NX Daemon Server] - 2026-09-15T12:30:11.529Z - [REQUEST]: spectra.config.ts.tmp.2078.a751a38ba11b
4592
+ [NX Daemon Server] - 2026-09-15T12:30:11.530Z - Time taken for 'hash changed files from watcher' 0.3080420009791851ms
4593
+ [NX Daemon Server] - 2026-09-15T12:30:11.542Z - Time taken for 'build-project-configs' 10.988207999616861ms
4594
+ [NX Daemon Server] - 2026-09-15T12:30:11.550Z - [SYNC]: collect registered sync generators
4595
+ [NX Daemon Server] - 2026-09-15T12:30:11.550Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4596
+ [NX Daemon Server] - 2026-09-15T12:30:11.550Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4597
+ [NX Daemon Server] - 2026-09-15T12:30:11.550Z - Time taken for 'total execution time for createProjectGraph()' 7.326665999367833ms
4598
+ [NX Daemon Server] - 2026-09-15T12:30:46.516Z - [WATCHER]: Processing file changes in outputs
4599
+ [NX Daemon Server] - 2026-09-15T12:30:46.518Z - [WATCHER]: tsconfig.json was modified
4600
+ [NX Daemon Server] - 2026-09-15T12:30:46.719Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4601
+ [NX Daemon Server] - 2026-09-15T12:30:46.719Z - [REQUEST]: tsconfig.json
4602
+ [NX Daemon Server] - 2026-09-15T12:30:46.719Z - [REQUEST]:
4603
+ [NX Daemon Server] - 2026-09-15T12:30:46.721Z - Time taken for 'hash changed files from watcher' 0.10887499898672104ms
4604
+ [NX Daemon Server] - 2026-09-15T12:30:46.726Z - Time taken for 'build-project-configs' 5.233083998784423ms
4605
+ [NX Daemon Server] - 2026-09-15T12:30:46.733Z - [SYNC]: collect registered sync generators
4606
+ [NX Daemon Server] - 2026-09-15T12:30:46.733Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4607
+ [NX Daemon Server] - 2026-09-15T12:30:46.733Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4608
+ [NX Daemon Server] - 2026-09-15T12:30:46.733Z - Time taken for 'total execution time for createProjectGraph()' 5.668749999254942ms
4609
+ [NX Daemon Server] - 2026-09-15T12:30:49.049Z - [WATCHER]: Processing file changes in outputs
4610
+ [NX Daemon Server] - 2026-09-15T12:30:49.055Z - [WATCHER]: tsconfig.json was modified
4611
+ [NX Daemon Server] - 2026-09-15T12:30:49.456Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4612
+ [NX Daemon Server] - 2026-09-15T12:30:49.456Z - [REQUEST]: tsconfig.json
4613
+ [NX Daemon Server] - 2026-09-15T12:30:49.456Z - [REQUEST]:
4614
+ [NX Daemon Server] - 2026-09-15T12:30:49.457Z - Time taken for 'hash changed files from watcher' 0.1561250016093254ms
4615
+ [NX Daemon Server] - 2026-09-15T12:30:49.476Z - Time taken for 'build-project-configs' 16.117624999955297ms
4616
+ [NX Daemon Server] - 2026-09-15T12:30:49.508Z - [SYNC]: collect registered sync generators
4617
+ [NX Daemon Server] - 2026-09-15T12:30:49.508Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4618
+ [NX Daemon Server] - 2026-09-15T12:30:49.508Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4619
+ [NX Daemon Server] - 2026-09-15T12:30:49.508Z - Time taken for 'total execution time for createProjectGraph()' 28.463375000283122ms
4620
+ [NX Daemon Server] - 2026-09-15T12:30:49.990Z - [WATCHER]: Processing file changes in outputs
4621
+ [NX Daemon Server] - 2026-09-15T12:30:50.073Z - [WATCHER]: Processing file changes in outputs
4622
+ [NX Daemon Server] - 2026-09-15T12:30:50.130Z - [WATCHER]: Processing file changes in outputs
4623
+ [NX Daemon Server] - 2026-09-15T12:30:50.185Z - [WATCHER]: Processing file changes in outputs
4624
+ [NX Daemon Server] - 2026-09-15T12:30:50.246Z - [WATCHER]: Processing file changes in outputs
4625
+ [NX Daemon Server] - 2026-09-15T12:30:50.362Z - [WATCHER]: Processing file changes in outputs
4626
+ [NX Daemon Server] - 2026-09-15T12:30:50.437Z - [WATCHER]: Processing file changes in outputs
4627
+ [NX Daemon Server] - 2026-09-15T12:30:50.489Z - [WATCHER]: Processing file changes in outputs
4628
+ [NX Daemon Server] - 2026-09-15T12:30:50.568Z - [WATCHER]: Processing file changes in outputs
4629
+ [NX Daemon Server] - 2026-09-15T12:30:50.644Z - [WATCHER]: Processing file changes in outputs
4630
+ [NX Daemon Server] - 2026-09-15T12:30:50.712Z - [WATCHER]: Processing file changes in outputs
4631
+ [NX Daemon Server] - 2026-09-15T12:32:00.975Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4632
+ [NX Daemon Server] - 2026-09-15T12:32:00.975Z - [WATCHER]: Processing file changes in outputs
4633
+ [NX Daemon Server] - 2026-09-15T12:32:01.077Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4634
+ [NX Daemon Server] - 2026-09-15T12:32:01.077Z - [REQUEST]: spectra.config.ts
4635
+ [NX Daemon Server] - 2026-09-15T12:32:01.077Z - [REQUEST]: spectra.config.ts.tmp.2078.8f3c1f337027
4636
+ [NX Daemon Server] - 2026-09-15T12:32:01.078Z - Time taken for 'hash changed files from watcher' 0.15662500075995922ms
4637
+ [NX Daemon Server] - 2026-09-15T12:32:01.084Z - Time taken for 'build-project-configs' 5.51545799896121ms
4638
+ [NX Daemon Server] - 2026-09-15T12:32:01.091Z - [SYNC]: collect registered sync generators
4639
+ [NX Daemon Server] - 2026-09-15T12:32:01.091Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4640
+ [NX Daemon Server] - 2026-09-15T12:32:01.091Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4641
+ [NX Daemon Server] - 2026-09-15T12:32:01.091Z - Time taken for 'total execution time for createProjectGraph()' 5.65416599996388ms
4642
+ [NX Daemon Server] - 2026-09-15T12:32:19.074Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4643
+ [NX Daemon Server] - 2026-09-15T12:32:19.074Z - [WATCHER]: Processing file changes in outputs
4644
+ [NX Daemon Server] - 2026-09-15T12:32:19.175Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4645
+ [NX Daemon Server] - 2026-09-15T12:32:19.175Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/suite.md
4646
+ [NX Daemon Server] - 2026-09-15T12:32:19.175Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/suite.md.tmp.2078.dad84a4efdad
4647
+ [NX Daemon Server] - 2026-09-15T12:32:19.176Z - Time taken for 'hash changed files from watcher' 0.1583750005811453ms
4648
+ [NX Daemon Server] - 2026-09-15T12:32:19.182Z - Time taken for 'build-project-configs' 4.157917000353336ms
4649
+ [NX Daemon Server] - 2026-09-15T12:32:19.188Z - [SYNC]: collect registered sync generators
4650
+ [NX Daemon Server] - 2026-09-15T12:32:19.189Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4651
+ [NX Daemon Server] - 2026-09-15T12:32:19.189Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4652
+ [NX Daemon Server] - 2026-09-15T12:32:19.189Z - Time taken for 'total execution time for createProjectGraph()' 5.523667000234127ms
4653
+ [NX Daemon Server] - 2026-09-15T12:32:23.030Z - [WATCHER]: Processing file changes in outputs
4654
+ [NX Daemon Server] - 2026-09-15T12:32:23.030Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4655
+ [NX Daemon Server] - 2026-09-15T12:32:23.132Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4656
+ [NX Daemon Server] - 2026-09-15T12:32:23.132Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md
4657
+ [NX Daemon Server] - 2026-09-15T12:32:23.132Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md.tmp.2078.58ef9e372c28
4658
+ [NX Daemon Server] - 2026-09-15T12:32:23.133Z - Time taken for 'hash changed files from watcher' 0.18758299946784973ms
4659
+ [NX Daemon Server] - 2026-09-15T12:32:23.138Z - Time taken for 'build-project-configs' 4.603957999497652ms
4660
+ [NX Daemon Server] - 2026-09-15T12:32:23.150Z - [SYNC]: collect registered sync generators
4661
+ [NX Daemon Server] - 2026-09-15T12:32:23.150Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4662
+ [NX Daemon Server] - 2026-09-15T12:32:23.150Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4663
+ [NX Daemon Server] - 2026-09-15T12:32:23.150Z - Time taken for 'total execution time for createProjectGraph()' 5.643875000998378ms
4664
+ [NX Daemon Server] - 2026-09-15T12:32:26.614Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4665
+ [NX Daemon Server] - 2026-09-15T12:32:26.615Z - [WATCHER]: Processing file changes in outputs
4666
+ [NX Daemon Server] - 2026-09-15T12:32:26.716Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4667
+ [NX Daemon Server] - 2026-09-15T12:32:26.716Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts
4668
+ [NX Daemon Server] - 2026-09-15T12:32:26.716Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts.tmp.2078.f61c70b76f80
4669
+ [NX Daemon Server] - 2026-09-15T12:32:26.717Z - Time taken for 'hash changed files from watcher' 0.1234579998999834ms
4670
+ [NX Daemon Server] - 2026-09-15T12:32:26.724Z - Time taken for 'build-project-configs' 6.43533300049603ms
4671
+ [NX Daemon Server] - 2026-09-15T12:32:26.730Z - [SYNC]: collect registered sync generators
4672
+ [NX Daemon Server] - 2026-09-15T12:32:26.730Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4673
+ [NX Daemon Server] - 2026-09-15T12:32:26.730Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4674
+ [NX Daemon Server] - 2026-09-15T12:32:26.731Z - Time taken for 'total execution time for createProjectGraph()' 5.065208001062274ms
4675
+ [NX Daemon Server] - 2026-09-15T12:33:27.647Z - [WATCHER]: Processing file changes in outputs
4676
+ [NX Daemon Server] - 2026-09-15T12:33:27.704Z - [WATCHER]: Processing file changes in outputs
4677
+ [NX Daemon Server] - 2026-09-15T12:33:29.716Z - [WATCHER]: Processing file changes in outputs
4678
+ [NX Daemon Server] - 2026-09-15T12:34:05.567Z - [WATCHER]: Processing file changes in outputs
4679
+ [NX Daemon Server] - 2026-09-15T12:34:05.580Z - [WATCHER]: tsconfig.json was modified
4680
+ [NX Daemon Server] - 2026-09-15T12:34:05.783Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4681
+ [NX Daemon Server] - 2026-09-15T12:34:05.783Z - [REQUEST]: tsconfig.json
4682
+ [NX Daemon Server] - 2026-09-15T12:34:05.783Z - [REQUEST]:
4683
+ [NX Daemon Server] - 2026-09-15T12:34:05.788Z - Time taken for 'hash changed files from watcher' 1.9494589995592833ms
4684
+ [NX Daemon Server] - 2026-09-15T12:34:05.805Z - Time taken for 'build-project-configs' 15.282750001177192ms
4685
+ [NX Daemon Server] - 2026-09-15T12:34:05.817Z - [SYNC]: collect registered sync generators
4686
+ [NX Daemon Server] - 2026-09-15T12:34:05.818Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4687
+ [NX Daemon Server] - 2026-09-15T12:34:05.818Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4688
+ [NX Daemon Server] - 2026-09-15T12:34:05.818Z - Time taken for 'total execution time for createProjectGraph()' 9.477415999397635ms
4689
+ [NX Daemon Server] - 2026-09-15T12:34:08.209Z - [WATCHER]: Processing file changes in outputs
4690
+ [NX Daemon Server] - 2026-09-15T12:34:08.217Z - [WATCHER]: tsconfig.json was modified
4691
+ [NX Daemon Server] - 2026-09-15T12:34:08.618Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4692
+ [NX Daemon Server] - 2026-09-15T12:34:08.618Z - [REQUEST]: tsconfig.json
4693
+ [NX Daemon Server] - 2026-09-15T12:34:08.619Z - [REQUEST]:
4694
+ [NX Daemon Server] - 2026-09-15T12:34:08.620Z - Time taken for 'hash changed files from watcher' 0.14033300057053566ms
4695
+ [NX Daemon Server] - 2026-09-15T12:34:08.630Z - Time taken for 'build-project-configs' 8.245500000193715ms
4696
+ [NX Daemon Server] - 2026-09-15T12:34:08.647Z - [SYNC]: collect registered sync generators
4697
+ [NX Daemon Server] - 2026-09-15T12:34:08.647Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4698
+ [NX Daemon Server] - 2026-09-15T12:34:08.647Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4699
+ [NX Daemon Server] - 2026-09-15T12:34:08.647Z - Time taken for 'total execution time for createProjectGraph()' 17.086500000208616ms
4700
+ [NX Daemon Server] - 2026-09-15T12:34:09.390Z - [WATCHER]: Processing file changes in outputs
4701
+ [NX Daemon Server] - 2026-09-15T12:34:09.449Z - [WATCHER]: Processing file changes in outputs
4702
+ [NX Daemon Server] - 2026-09-15T12:34:09.536Z - [WATCHER]: Processing file changes in outputs
4703
+ [NX Daemon Server] - 2026-09-15T12:34:09.629Z - [WATCHER]: Processing file changes in outputs
4704
+ [NX Daemon Server] - 2026-09-15T12:34:09.706Z - [WATCHER]: Processing file changes in outputs
4705
+ [NX Daemon Server] - 2026-09-15T12:34:09.782Z - [WATCHER]: Processing file changes in outputs
4706
+ [NX Daemon Server] - 2026-09-15T12:34:09.863Z - [WATCHER]: Processing file changes in outputs
4707
+ [NX Daemon Server] - 2026-09-15T12:34:09.944Z - [WATCHER]: Processing file changes in outputs
4708
+ [NX Daemon Server] - 2026-09-15T12:34:10.020Z - [WATCHER]: Processing file changes in outputs
4709
+ [NX Daemon Server] - 2026-09-15T12:34:27.670Z - [WATCHER]: Processing file changes in outputs
4710
+ [NX Daemon Server] - 2026-09-15T12:34:27.694Z - [WATCHER]: tsconfig.json was modified
4711
+ [NX Daemon Server] - 2026-09-15T12:34:27.721Z - [WATCHER]: Processing file changes in outputs
4712
+ [NX Daemon Server] - 2026-09-15T12:34:28.496Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4713
+ [NX Daemon Server] - 2026-09-15T12:34:28.496Z - [REQUEST]: tsconfig.json
4714
+ [NX Daemon Server] - 2026-09-15T12:34:28.496Z - [REQUEST]:
4715
+ [NX Daemon Server] - 2026-09-15T12:34:28.498Z - Time taken for 'hash changed files from watcher' 0.37537499889731407ms
4716
+ [NX Daemon Server] - 2026-09-15T12:34:28.528Z - Time taken for 'build-project-configs' 28.152916999533772ms
4717
+ [NX Daemon Server] - 2026-09-15T12:34:28.544Z - [SYNC]: collect registered sync generators
4718
+ [NX Daemon Server] - 2026-09-15T12:34:28.544Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4719
+ [NX Daemon Server] - 2026-09-15T12:34:28.544Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4720
+ [NX Daemon Server] - 2026-09-15T12:34:28.544Z - Time taken for 'total execution time for createProjectGraph()' 14.290333000943065ms
4721
+ [NX Daemon Server] - 2026-09-15T12:34:32.545Z - [WATCHER]: Processing file changes in outputs
4722
+ [NX Daemon Server] - 2026-09-15T12:34:32.557Z - [WATCHER]: tsconfig.json was modified
4723
+ [NX Daemon Server] - 2026-09-15T12:34:34.159Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4724
+ [NX Daemon Server] - 2026-09-15T12:34:34.159Z - [REQUEST]: tsconfig.json
4725
+ [NX Daemon Server] - 2026-09-15T12:34:34.159Z - [REQUEST]:
4726
+ [NX Daemon Server] - 2026-09-15T12:34:34.163Z - Time taken for 'hash changed files from watcher' 0.2703329995274544ms
4727
+ [NX Daemon Server] - 2026-09-15T12:34:34.171Z - Time taken for 'build-project-configs' 7.893790999427438ms
4728
+ [NX Daemon Server] - 2026-09-15T12:34:34.179Z - [SYNC]: collect registered sync generators
4729
+ [NX Daemon Server] - 2026-09-15T12:34:34.179Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4730
+ [NX Daemon Server] - 2026-09-15T12:34:34.179Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4731
+ [NX Daemon Server] - 2026-09-15T12:34:34.179Z - Time taken for 'total execution time for createProjectGraph()' 7.518207998946309ms
4732
+ [NX Daemon Server] - 2026-09-15T12:35:06.580Z - [WATCHER]: tsconfig.json was modified
4733
+ [NX Daemon Server] - 2026-09-15T12:35:06.580Z - [WATCHER]: Processing file changes in outputs
4734
+ [NX Daemon Server] - 2026-09-15T12:35:06.635Z - [WATCHER]: Processing file changes in outputs
4735
+ [NX Daemon Server] - 2026-09-15T12:35:09.782Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4736
+ [NX Daemon Server] - 2026-09-15T12:35:09.782Z - [REQUEST]: tsconfig.json
4737
+ [NX Daemon Server] - 2026-09-15T12:35:09.782Z - [REQUEST]:
4738
+ [NX Daemon Server] - 2026-09-15T12:35:09.785Z - Time taken for 'hash changed files from watcher' 0.19766699895262718ms
4739
+ [NX Daemon Server] - 2026-09-15T12:35:09.794Z - Time taken for 'build-project-configs' 8.239915998652577ms
4740
+ [NX Daemon Server] - 2026-09-15T12:35:09.802Z - [SYNC]: collect registered sync generators
4741
+ [NX Daemon Server] - 2026-09-15T12:35:09.802Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4742
+ [NX Daemon Server] - 2026-09-15T12:35:09.802Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4743
+ [NX Daemon Server] - 2026-09-15T12:35:09.802Z - Time taken for 'total execution time for createProjectGraph()' 5.31025000102818ms
4744
+ [NX Daemon Server] - 2026-09-15T12:35:11.778Z - [WATCHER]: Processing file changes in outputs
4745
+ [NX Daemon Server] - 2026-09-15T12:35:11.847Z - [WATCHER]: Processing file changes in outputs
4746
+ [NX Daemon Server] - 2026-09-15T12:35:11.905Z - [WATCHER]: Processing file changes in outputs
4747
+ [NX Daemon Server] - 2026-09-15T12:35:11.959Z - [WATCHER]: Processing file changes in outputs
4748
+ [NX Daemon Server] - 2026-09-15T12:35:12.072Z - [WATCHER]: Processing file changes in outputs
4749
+ [NX Daemon Server] - 2026-09-15T12:35:12.138Z - [WATCHER]: Processing file changes in outputs
4750
+ [NX Daemon Server] - 2026-09-15T12:35:12.197Z - [WATCHER]: Processing file changes in outputs
4751
+ [NX Daemon Server] - 2026-09-15T12:35:12.249Z - [WATCHER]: Processing file changes in outputs
4752
+ [NX Daemon Server] - 2026-09-15T12:35:12.341Z - [WATCHER]: Processing file changes in outputs
4753
+ [NX Daemon Server] - 2026-09-15T12:35:12.397Z - [WATCHER]: Processing file changes in outputs
4754
+ [NX Daemon Server] - 2026-09-15T12:35:12.498Z - [WATCHER]: Processing file changes in outputs
4755
+ [NX Daemon Server] - 2026-09-15T12:35:52.092Z - [WATCHER]: Processing file changes in outputs
4756
+ [NX Daemon Server] - 2026-09-15T12:35:52.098Z - [WATCHER]: tsconfig.json was modified
4757
+ [NX Daemon Server] - 2026-09-15T12:35:54.070Z - [WATCHER]: Processing file changes in outputs
4758
+ [NX Daemon Server] - 2026-09-15T12:35:54.078Z - [WATCHER]: tsconfig.json was modified
4759
+ [NX Daemon Server] - 2026-09-15T12:35:58.502Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4760
+ [NX Daemon Server] - 2026-09-15T12:35:58.502Z - [REQUEST]: tsconfig.json
4761
+ [NX Daemon Server] - 2026-09-15T12:35:58.502Z - [REQUEST]:
4762
+ [NX Daemon Server] - 2026-09-15T12:35:58.506Z - Time taken for 'hash changed files from watcher' 0.490667000412941ms
4763
+ [NX Daemon Server] - 2026-09-15T12:35:58.521Z - Time taken for 'build-project-configs' 14.478124998509884ms
4764
+ [NX Daemon Server] - 2026-09-15T12:35:58.532Z - [SYNC]: collect registered sync generators
4765
+ [NX Daemon Server] - 2026-09-15T12:35:58.533Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4766
+ [NX Daemon Server] - 2026-09-15T12:35:58.533Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4767
+ [NX Daemon Server] - 2026-09-15T12:35:58.533Z - Time taken for 'total execution time for createProjectGraph()' 10.94637499935925ms
4768
+ [NX Daemon Server] - 2026-09-15T12:36:44.143Z - [WATCHER]: Processing file changes in outputs
4769
+ [NX Daemon Server] - 2026-09-15T12:36:47.640Z - [WATCHER]: Processing file changes in outputs
4770
+ [NX Daemon Server] - 2026-09-15T12:36:47.648Z - [WATCHER]: tsconfig.json was modified
4771
+ [NX Daemon Server] - 2026-09-15T12:36:49.560Z - [WATCHER]: Processing file changes in outputs
4772
+ [NX Daemon Server] - 2026-09-15T12:36:49.563Z - [WATCHER]: tsconfig.json was modified
4773
+ [NX Daemon Server] - 2026-09-15T12:36:49.939Z - [WATCHER]: Processing file changes in outputs
4774
+ [NX Daemon Server] - 2026-09-15T12:36:50.793Z - [WATCHER]: Processing file changes in outputs
4775
+ [NX Daemon Server] - 2026-09-15T12:36:50.856Z - [WATCHER]: Processing file changes in outputs
4776
+ [NX Daemon Server] - 2026-09-15T12:36:50.910Z - [WATCHER]: Processing file changes in outputs
4777
+ [NX Daemon Server] - 2026-09-15T12:36:50.987Z - [WATCHER]: Processing file changes in outputs
4778
+ [NX Daemon Server] - 2026-09-15T12:36:51.059Z - [WATCHER]: Processing file changes in outputs
4779
+ [NX Daemon Server] - 2026-09-15T12:36:51.116Z - [WATCHER]: Processing file changes in outputs
4780
+ [NX Daemon Server] - 2026-09-15T12:36:51.215Z - [WATCHER]: Processing file changes in outputs
4781
+ [NX Daemon Server] - 2026-09-15T12:36:51.291Z - [WATCHER]: Processing file changes in outputs
4782
+ [NX Daemon Server] - 2026-09-15T12:36:51.380Z - [WATCHER]: Processing file changes in outputs
4783
+ [NX Daemon Server] - 2026-09-15T12:36:51.449Z - [WATCHER]: Processing file changes in outputs
4784
+ [NX Daemon Server] - 2026-09-15T12:36:54.054Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4785
+ [NX Daemon Server] - 2026-09-15T12:36:54.054Z - [REQUEST]: tsconfig.json
4786
+ [NX Daemon Server] - 2026-09-15T12:36:54.054Z - [REQUEST]:
4787
+ [NX Daemon Server] - 2026-09-15T12:36:54.059Z - Time taken for 'hash changed files from watcher' 0.47545900009572506ms
4788
+ [NX Daemon Server] - 2026-09-15T12:36:54.072Z - Time taken for 'build-project-configs' 13.45270799845457ms
4789
+ [NX Daemon Server] - 2026-09-15T12:36:54.086Z - [SYNC]: collect registered sync generators
4790
+ [NX Daemon Server] - 2026-09-15T12:36:54.086Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4791
+ [NX Daemon Server] - 2026-09-15T12:36:54.086Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4792
+ [NX Daemon Server] - 2026-09-15T12:36:54.086Z - Time taken for 'total execution time for createProjectGraph()' 14.190625000745058ms
4793
+ [NX Daemon Server] - 2026-09-15T12:37:01.917Z - [WATCHER]: Processing file changes in outputs
4794
+ [NX Daemon Server] - 2026-09-15T12:37:01.920Z - [WATCHER]: tsconfig.json was modified
4795
+ [NX Daemon Server] - 2026-09-15T12:37:04.530Z - [WATCHER]: Processing file changes in outputs
4796
+ [NX Daemon Server] - 2026-09-15T12:37:04.533Z - [WATCHER]: tsconfig.json was modified
4797
+ [NX Daemon Server] - 2026-09-15T12:37:04.708Z - [WATCHER]: Processing file changes in outputs
4798
+ [NX Daemon Server] - 2026-09-15T12:37:08.321Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4799
+ [NX Daemon Server] - 2026-09-15T12:37:08.321Z - [REQUEST]: tsconfig.json
4800
+ [NX Daemon Server] - 2026-09-15T12:37:08.321Z - [REQUEST]:
4801
+ [NX Daemon Server] - 2026-09-15T12:37:08.323Z - Time taken for 'hash changed files from watcher' 0.19966700114309788ms
4802
+ [NX Daemon Server] - 2026-09-15T12:37:08.332Z - Time taken for 'build-project-configs' 7.971582999452949ms
4803
+ [NX Daemon Server] - 2026-09-15T12:37:08.339Z - [SYNC]: collect registered sync generators
4804
+ [NX Daemon Server] - 2026-09-15T12:37:08.339Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4805
+ [NX Daemon Server] - 2026-09-15T12:37:08.339Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4806
+ [NX Daemon Server] - 2026-09-15T12:37:08.339Z - Time taken for 'total execution time for createProjectGraph()' 7.008375000208616ms
4807
+ [NX Daemon Server] - 2026-09-15T12:37:18.618Z - [WATCHER]: Processing file changes in outputs
4808
+ [NX Daemon Server] - 2026-09-15T12:47:17.622Z - Established a connection. Number of open connections: 1
4809
+ [NX Daemon Server] - 2026-09-15T12:47:17.623Z - Established a connection. Number of open connections: 2
4810
+ [NX Daemon Server] - 2026-09-15T12:47:17.624Z - Closed a connection. Number of open connections: 1
4811
+ [NX Daemon Server] - 2026-09-15T12:47:17.626Z - [REQUEST]: Client Request for Project Graph Received
4812
+ [NX Daemon Server] - 2026-09-15T12:47:17.627Z - [REQUEST]: Responding to the client. project-graph
4813
+ [NX Daemon Server] - 2026-09-15T12:47:17.627Z - Time taken for 'total for creating and serializing project graph' 0.2545840013772249ms
4814
+ [NX Daemon Server] - 2026-09-15T12:47:17.628Z - Done responding to the client project-graph
4815
+ [NX Daemon Server] - 2026-09-15T12:47:17.628Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
4816
+ [NX Daemon Server] - 2026-09-15T12:47:17.686Z - [REQUEST]: Responding to the client. handleHashTasks
4817
+ [NX Daemon Server] - 2026-09-15T12:47:17.686Z - Done responding to the client handleHashTasks
4818
+ [NX Daemon Server] - 2026-09-15T12:47:17.686Z - Handled HASH_TASKS. Handling time: 11. Response time: 0.
4819
+ [NX Daemon Server] - 2026-09-15T12:47:17.976Z - Closed a connection. Number of open connections: 0
4820
+ [NX Daemon Server] - 2026-09-15T12:50:40.182Z - Established a connection. Number of open connections: 1
4821
+ [NX Daemon Server] - 2026-09-15T12:50:40.183Z - Established a connection. Number of open connections: 2
4822
+ [NX Daemon Server] - 2026-09-15T12:50:40.183Z - Closed a connection. Number of open connections: 1
4823
+ [NX Daemon Server] - 2026-09-15T12:50:40.184Z - [REQUEST]: Client Request for Project Graph Received
4824
+ [NX Daemon Server] - 2026-09-15T12:50:40.185Z - [REQUEST]: Responding to the client. project-graph
4825
+ [NX Daemon Server] - 2026-09-15T12:50:40.185Z - Time taken for 'total for creating and serializing project graph' 0.3620420005172491ms
4826
+ [NX Daemon Server] - 2026-09-15T12:50:40.185Z - Done responding to the client project-graph
4827
+ [NX Daemon Server] - 2026-09-15T12:50:40.185Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
4828
+ [NX Daemon Server] - 2026-09-15T12:50:40.225Z - [REQUEST]: Responding to the client. handleHashTasks
4829
+ [NX Daemon Server] - 2026-09-15T12:50:40.225Z - Done responding to the client handleHashTasks
4830
+ [NX Daemon Server] - 2026-09-15T12:50:40.225Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
4831
+ [NX Daemon Server] - 2026-09-15T12:50:40.507Z - Closed a connection. Number of open connections: 0
4832
+ [NX Daemon Server] - 2026-09-15T12:57:27.438Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4833
+ [NX Daemon Server] - 2026-09-15T12:57:27.439Z - [WATCHER]: Processing file changes in outputs
4834
+ [NX Daemon Server] - 2026-09-15T12:57:27.542Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4835
+ [NX Daemon Server] - 2026-09-15T12:57:27.543Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts
4836
+ [NX Daemon Server] - 2026-09-15T12:57:27.543Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts.tmp.2078.61361403b2f5
4837
+ [NX Daemon Server] - 2026-09-15T12:57:27.546Z - Time taken for 'hash changed files from watcher' 1.4065829999744892ms
4838
+ [NX Daemon Server] - 2026-09-15T12:57:27.558Z - Time taken for 'build-project-configs' 9.317584000527859ms
4839
+ [NX Daemon Server] - 2026-09-15T12:57:27.574Z - [SYNC]: collect registered sync generators
4840
+ [NX Daemon Server] - 2026-09-15T12:57:27.574Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4841
+ [NX Daemon Server] - 2026-09-15T12:57:27.574Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4842
+ [NX Daemon Server] - 2026-09-15T12:57:27.574Z - Time taken for 'total execution time for createProjectGraph()' 8.360500000417233ms
4843
+ [NX Daemon Server] - 2026-09-15T12:57:41.098Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4844
+ [NX Daemon Server] - 2026-09-15T12:57:41.098Z - [WATCHER]: Processing file changes in outputs
4845
+ [NX Daemon Server] - 2026-09-15T12:57:41.200Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4846
+ [NX Daemon Server] - 2026-09-15T12:57:41.200Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md
4847
+ [NX Daemon Server] - 2026-09-15T12:57:41.200Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md.tmp.2078.9199b45fbfc1
4848
+ [NX Daemon Server] - 2026-09-15T12:57:41.201Z - Time taken for 'hash changed files from watcher' 0.19433300010859966ms
4849
+ [NX Daemon Server] - 2026-09-15T12:57:41.208Z - Time taken for 'build-project-configs' 6.073290999978781ms
4850
+ [NX Daemon Server] - 2026-09-15T12:57:41.215Z - [SYNC]: collect registered sync generators
4851
+ [NX Daemon Server] - 2026-09-15T12:57:41.215Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4852
+ [NX Daemon Server] - 2026-09-15T12:57:41.215Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4853
+ [NX Daemon Server] - 2026-09-15T12:57:41.215Z - Time taken for 'total execution time for createProjectGraph()' 5.902542000636458ms
4854
+ [NX Daemon Server] - 2026-09-15T12:57:50.458Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4855
+ [NX Daemon Server] - 2026-09-15T12:57:50.458Z - [WATCHER]: Processing file changes in outputs
4856
+ [NX Daemon Server] - 2026-09-15T12:57:50.559Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4857
+ [NX Daemon Server] - 2026-09-15T12:57:50.559Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/suite.md
4858
+ [NX Daemon Server] - 2026-09-15T12:57:50.559Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/suite.md.tmp.2078.ceabf536ba70
4859
+ [NX Daemon Server] - 2026-09-15T12:57:50.560Z - Time taken for 'hash changed files from watcher' 0.15195799991488457ms
4860
+ [NX Daemon Server] - 2026-09-15T12:57:50.566Z - Time taken for 'build-project-configs' 4.9934999998658895ms
4861
+ [NX Daemon Server] - 2026-09-15T12:57:50.578Z - [SYNC]: collect registered sync generators
4862
+ [NX Daemon Server] - 2026-09-15T12:57:50.578Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4863
+ [NX Daemon Server] - 2026-09-15T12:57:50.578Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4864
+ [NX Daemon Server] - 2026-09-15T12:57:50.578Z - Time taken for 'total execution time for createProjectGraph()' 8.096707999706268ms
4865
+ [NX Daemon Server] - 2026-09-15T12:58:29.639Z - [WATCHER]: Processing file changes in outputs
4866
+ [NX Daemon Server] - 2026-09-15T12:58:29.648Z - [WATCHER]: tsconfig.json was modified
4867
+ [NX Daemon Server] - 2026-09-15T12:58:29.849Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4868
+ [NX Daemon Server] - 2026-09-15T12:58:29.849Z - [REQUEST]: tsconfig.json
4869
+ [NX Daemon Server] - 2026-09-15T12:58:29.849Z - [REQUEST]:
4870
+ [NX Daemon Server] - 2026-09-15T12:58:29.852Z - Time taken for 'hash changed files from watcher' 0.15649999864399433ms
4871
+ [NX Daemon Server] - 2026-09-15T12:58:29.859Z - Time taken for 'build-project-configs' 6.393209001049399ms
4872
+ [NX Daemon Server] - 2026-09-15T12:58:29.864Z - [SYNC]: collect registered sync generators
4873
+ [NX Daemon Server] - 2026-09-15T12:58:29.864Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4874
+ [NX Daemon Server] - 2026-09-15T12:58:29.864Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4875
+ [NX Daemon Server] - 2026-09-15T12:58:29.864Z - Time taken for 'total execution time for createProjectGraph()' 4.737417001277208ms
4876
+ [NX Daemon Server] - 2026-09-15T12:58:32.311Z - [WATCHER]: Processing file changes in outputs
4877
+ [NX Daemon Server] - 2026-09-15T12:58:32.316Z - [WATCHER]: tsconfig.json was modified
4878
+ [NX Daemon Server] - 2026-09-15T12:58:32.491Z - [WATCHER]: Processing file changes in outputs
4879
+ [NX Daemon Server] - 2026-09-15T12:58:32.718Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4880
+ [NX Daemon Server] - 2026-09-15T12:58:32.718Z - [REQUEST]: tsconfig.json
4881
+ [NX Daemon Server] - 2026-09-15T12:58:32.718Z - [REQUEST]:
4882
+ [NX Daemon Server] - 2026-09-15T12:58:32.720Z - Time taken for 'hash changed files from watcher' 0.31429100036621094ms
4883
+ [NX Daemon Server] - 2026-09-15T12:58:32.729Z - Time taken for 'build-project-configs' 9.145250000059605ms
4884
+ [NX Daemon Server] - 2026-09-15T12:58:32.739Z - [SYNC]: collect registered sync generators
4885
+ [NX Daemon Server] - 2026-09-15T12:58:32.739Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4886
+ [NX Daemon Server] - 2026-09-15T12:58:32.739Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4887
+ [NX Daemon Server] - 2026-09-15T12:58:32.739Z - Time taken for 'total execution time for createProjectGraph()' 7.8305409997701645ms
4888
+ [NX Daemon Server] - 2026-09-15T12:58:33.408Z - [WATCHER]: Processing file changes in outputs
4889
+ [NX Daemon Server] - 2026-09-15T12:58:33.507Z - [WATCHER]: Processing file changes in outputs
4890
+ [NX Daemon Server] - 2026-09-15T12:58:33.566Z - [WATCHER]: Processing file changes in outputs
4891
+ [NX Daemon Server] - 2026-09-15T12:58:33.671Z - [WATCHER]: Processing file changes in outputs
4892
+ [NX Daemon Server] - 2026-09-15T12:58:33.770Z - [WATCHER]: Processing file changes in outputs
4893
+ [NX Daemon Server] - 2026-09-15T12:58:33.864Z - [WATCHER]: Processing file changes in outputs
4894
+ [NX Daemon Server] - 2026-09-15T12:58:33.949Z - [WATCHER]: Processing file changes in outputs
4895
+ [NX Daemon Server] - 2026-09-15T12:58:34.044Z - [WATCHER]: Processing file changes in outputs
4896
+ [NX Daemon Server] - 2026-09-15T12:58:34.141Z - [WATCHER]: Processing file changes in outputs
4897
+ [NX Daemon Server] - 2026-09-15T12:58:34.249Z - [WATCHER]: Processing file changes in outputs
4898
+ [NX Daemon Server] - 2026-09-15T12:58:34.308Z - [WATCHER]: Processing file changes in outputs
4899
+ [NX Daemon Server] - 2026-09-15T12:58:34.403Z - [WATCHER]: Processing file changes in outputs
4900
+ [NX Daemon Server] - 2026-09-15T12:58:49.016Z - [WATCHER]: Processing file changes in outputs
4901
+ [NX Daemon Server] - 2026-09-15T12:59:29.173Z - [WATCHER]: Processing file changes in outputs
4902
+ [NX Daemon Server] - 2026-09-15T12:59:29.179Z - [WATCHER]: tsconfig.json was modified
4903
+ [NX Daemon Server] - 2026-09-15T12:59:29.225Z - [WATCHER]: Processing file changes in outputs
4904
+ [NX Daemon Server] - 2026-09-15T12:59:29.689Z - [WATCHER]: Processing file changes in outputs
4905
+ [NX Daemon Server] - 2026-09-15T12:59:29.741Z - [WATCHER]: Processing file changes in outputs
4906
+ [NX Daemon Server] - 2026-09-15T12:59:29.981Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4907
+ [NX Daemon Server] - 2026-09-15T12:59:29.981Z - [REQUEST]: tsconfig.json
4908
+ [NX Daemon Server] - 2026-09-15T12:59:29.981Z - [REQUEST]:
4909
+ [NX Daemon Server] - 2026-09-15T12:59:29.982Z - Time taken for 'hash changed files from watcher' 0.13012499921023846ms
4910
+ [NX Daemon Server] - 2026-09-15T12:59:29.989Z - Time taken for 'build-project-configs' 6.260583000257611ms
4911
+ [NX Daemon Server] - 2026-09-15T12:59:29.996Z - [SYNC]: collect registered sync generators
4912
+ [NX Daemon Server] - 2026-09-15T12:59:29.996Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4913
+ [NX Daemon Server] - 2026-09-15T12:59:29.996Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4914
+ [NX Daemon Server] - 2026-09-15T12:59:29.996Z - Time taken for 'total execution time for createProjectGraph()' 5.668042000383139ms
4915
+ [NX Daemon Server] - 2026-09-15T12:59:30.651Z - [WATCHER]: Processing file changes in outputs
4916
+ [NX Daemon Server] - 2026-09-15T12:59:35.415Z - [WATCHER]: Processing file changes in outputs
4917
+ [NX Daemon Server] - 2026-09-15T12:59:40.552Z - [WATCHER]: Processing file changes in outputs
4918
+ [NX Daemon Server] - 2026-09-15T12:59:40.567Z - [WATCHER]: tsconfig.json was modified
4919
+ [NX Daemon Server] - 2026-09-15T12:59:42.168Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4920
+ [NX Daemon Server] - 2026-09-15T12:59:42.168Z - [REQUEST]: tsconfig.json
4921
+ [NX Daemon Server] - 2026-09-15T12:59:42.168Z - [REQUEST]:
4922
+ [NX Daemon Server] - 2026-09-15T12:59:42.169Z - Time taken for 'hash changed files from watcher' 0.1686669997870922ms
4923
+ [NX Daemon Server] - 2026-09-15T12:59:42.177Z - Time taken for 'build-project-configs' 7.237624999135733ms
4924
+ [NX Daemon Server] - 2026-09-15T12:59:42.183Z - [SYNC]: collect registered sync generators
4925
+ [NX Daemon Server] - 2026-09-15T12:59:42.183Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4926
+ [NX Daemon Server] - 2026-09-15T12:59:42.183Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4927
+ [NX Daemon Server] - 2026-09-15T12:59:42.183Z - Time taken for 'total execution time for createProjectGraph()' 5.266832999885082ms
4928
+ [NX Daemon Server] - 2026-09-15T12:59:43.172Z - [WATCHER]: Processing file changes in outputs
4929
+ [NX Daemon Server] - 2026-09-15T12:59:43.183Z - [WATCHER]: tsconfig.json was modified
4930
+ [NX Daemon Server] - 2026-09-15T12:59:43.460Z - [WATCHER]: Processing file changes in outputs
4931
+ [NX Daemon Server] - 2026-09-15T12:59:44.342Z - [WATCHER]: Processing file changes in outputs
4932
+ [NX Daemon Server] - 2026-09-15T12:59:44.404Z - [WATCHER]: Processing file changes in outputs
4933
+ [NX Daemon Server] - 2026-09-15T12:59:44.466Z - [WATCHER]: Processing file changes in outputs
4934
+ [NX Daemon Server] - 2026-09-15T12:59:44.526Z - [WATCHER]: Processing file changes in outputs
4935
+ [NX Daemon Server] - 2026-09-15T12:59:44.644Z - [WATCHER]: Processing file changes in outputs
4936
+ [NX Daemon Server] - 2026-09-15T12:59:44.705Z - [WATCHER]: Processing file changes in outputs
4937
+ [NX Daemon Server] - 2026-09-15T12:59:44.770Z - [WATCHER]: Processing file changes in outputs
4938
+ [NX Daemon Server] - 2026-09-15T12:59:44.825Z - [WATCHER]: Processing file changes in outputs
4939
+ [NX Daemon Server] - 2026-09-15T12:59:44.931Z - [WATCHER]: Processing file changes in outputs
4940
+ [NX Daemon Server] - 2026-09-15T12:59:45.008Z - [WATCHER]: Processing file changes in outputs
4941
+ [NX Daemon Server] - 2026-09-15T12:59:45.076Z - [WATCHER]: Processing file changes in outputs
4942
+ [NX Daemon Server] - 2026-09-15T12:59:45.153Z - [WATCHER]: Processing file changes in outputs
4943
+ [NX Daemon Server] - 2026-09-15T12:59:45.227Z - [WATCHER]: Processing file changes in outputs
4944
+ [NX Daemon Server] - 2026-09-15T12:59:46.385Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4945
+ [NX Daemon Server] - 2026-09-15T12:59:46.385Z - [REQUEST]: tsconfig.json
4946
+ [NX Daemon Server] - 2026-09-15T12:59:46.385Z - [REQUEST]:
4947
+ [NX Daemon Server] - 2026-09-15T12:59:46.386Z - Time taken for 'hash changed files from watcher' 0.26170799881219864ms
4948
+ [NX Daemon Server] - 2026-09-15T12:59:46.397Z - Time taken for 'build-project-configs' 10.465207999572158ms
4949
+ [NX Daemon Server] - 2026-09-15T12:59:46.407Z - [SYNC]: collect registered sync generators
4950
+ [NX Daemon Server] - 2026-09-15T12:59:46.407Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4951
+ [NX Daemon Server] - 2026-09-15T12:59:46.407Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4952
+ [NX Daemon Server] - 2026-09-15T12:59:46.407Z - Time taken for 'total execution time for createProjectGraph()' 8.113874999806285ms
4953
+ [NX Daemon Server] - 2026-09-15T12:59:58.534Z - [WATCHER]: Processing file changes in outputs
4954
+ [NX Daemon Server] - 2026-09-15T13:39:00.655Z - [WATCHER]: Processing file changes in outputs
4955
+ [NX Daemon Server] - 2026-09-15T13:39:00.658Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4956
+ [NX Daemon Server] - 2026-09-15T13:39:00.760Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4957
+ [NX Daemon Server] - 2026-09-15T13:39:00.761Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts
4958
+ [NX Daemon Server] - 2026-09-15T13:39:00.761Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts.tmp.2078.624930fcf3e1
4959
+ [NX Daemon Server] - 2026-09-15T13:39:00.761Z - Time taken for 'hash changed files from watcher' 0.23137500137090683ms
4960
+ [NX Daemon Server] - 2026-09-15T13:39:00.771Z - Time taken for 'build-project-configs' 8.722458999603987ms
4961
+ [NX Daemon Server] - 2026-09-15T13:39:00.785Z - [SYNC]: collect registered sync generators
4962
+ [NX Daemon Server] - 2026-09-15T13:39:00.786Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4963
+ [NX Daemon Server] - 2026-09-15T13:39:00.786Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4964
+ [NX Daemon Server] - 2026-09-15T13:39:00.786Z - Time taken for 'total execution time for createProjectGraph()' 6.75883400067687ms
4965
+ [NX Daemon Server] - 2026-09-15T13:39:11.305Z - [WATCHER]: Processing file changes in outputs
4966
+ [NX Daemon Server] - 2026-09-15T13:39:11.309Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4967
+ [NX Daemon Server] - 2026-09-15T13:39:11.410Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4968
+ [NX Daemon Server] - 2026-09-15T13:39:11.410Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md
4969
+ [NX Daemon Server] - 2026-09-15T13:39:11.410Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md.tmp.2078.a8bb48dd7cb5
4970
+ [NX Daemon Server] - 2026-09-15T13:39:11.412Z - Time taken for 'hash changed files from watcher' 0.10624999925494194ms
4971
+ [NX Daemon Server] - 2026-09-15T13:39:11.422Z - Time taken for 'build-project-configs' 7.1010829992592335ms
4972
+ [NX Daemon Server] - 2026-09-15T13:39:11.430Z - [SYNC]: collect registered sync generators
4973
+ [NX Daemon Server] - 2026-09-15T13:39:11.430Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4974
+ [NX Daemon Server] - 2026-09-15T13:39:11.430Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4975
+ [NX Daemon Server] - 2026-09-15T13:39:11.430Z - Time taken for 'total execution time for createProjectGraph()' 8.616042003035545ms
4976
+ [NX Daemon Server] - 2026-09-15T13:39:18.585Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
4977
+ [NX Daemon Server] - 2026-09-15T13:39:18.585Z - [WATCHER]: Processing file changes in outputs
4978
+ [NX Daemon Server] - 2026-09-15T13:39:18.686Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4979
+ [NX Daemon Server] - 2026-09-15T13:39:18.686Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/suite.md
4980
+ [NX Daemon Server] - 2026-09-15T13:39:18.686Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/suite.md.tmp.2078.e342f2dc0650
4981
+ [NX Daemon Server] - 2026-09-15T13:39:18.687Z - Time taken for 'hash changed files from watcher' 0.14387499913573265ms
4982
+ [NX Daemon Server] - 2026-09-15T13:39:18.691Z - Time taken for 'build-project-configs' 3.788874998688698ms
4983
+ [NX Daemon Server] - 2026-09-15T13:39:18.700Z - [SYNC]: collect registered sync generators
4984
+ [NX Daemon Server] - 2026-09-15T13:39:18.700Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4985
+ [NX Daemon Server] - 2026-09-15T13:39:18.700Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4986
+ [NX Daemon Server] - 2026-09-15T13:39:18.701Z - Time taken for 'total execution time for createProjectGraph()' 6.454208001494408ms
4987
+ [NX Daemon Server] - 2026-09-15T13:39:36.692Z - [WATCHER]: Processing file changes in outputs
4988
+ [NX Daemon Server] - 2026-09-15T13:39:36.699Z - [WATCHER]: tsconfig.json was modified
4989
+ [NX Daemon Server] - 2026-09-15T13:39:36.902Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
4990
+ [NX Daemon Server] - 2026-09-15T13:39:36.902Z - [REQUEST]: tsconfig.json
4991
+ [NX Daemon Server] - 2026-09-15T13:39:36.902Z - [REQUEST]:
4992
+ [NX Daemon Server] - 2026-09-15T13:39:36.902Z - Time taken for 'hash changed files from watcher' 0.12412500008940697ms
4993
+ [NX Daemon Server] - 2026-09-15T13:39:36.908Z - Time taken for 'build-project-configs' 4.3374170027673244ms
4994
+ [NX Daemon Server] - 2026-09-15T13:39:36.917Z - [SYNC]: collect registered sync generators
4995
+ [NX Daemon Server] - 2026-09-15T13:39:36.917Z - [SYNC]: project graph hash is the same, not collecting task sync generators
4996
+ [NX Daemon Server] - 2026-09-15T13:39:36.917Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
4997
+ [NX Daemon Server] - 2026-09-15T13:39:36.917Z - Time taken for 'total execution time for createProjectGraph()' 3.6817910000681877ms
4998
+ [NX Daemon Server] - 2026-09-15T13:39:37.197Z - [WATCHER]: Processing file changes in outputs
4999
+ [NX Daemon Server] - 2026-09-15T13:39:37.258Z - [WATCHER]: Processing file changes in outputs
5000
+ [NX Daemon Server] - 2026-09-15T13:39:37.822Z - [WATCHER]: Processing file changes in outputs
5001
+ [NX Daemon Server] - 2026-09-15T13:39:43.073Z - [WATCHER]: Processing file changes in outputs
5002
+ [NX Daemon Server] - 2026-09-15T13:39:48.556Z - [WATCHER]: Processing file changes in outputs
5003
+ [NX Daemon Server] - 2026-09-15T13:39:48.566Z - [WATCHER]: tsconfig.json was modified
5004
+ [NX Daemon Server] - 2026-09-15T13:39:48.967Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5005
+ [NX Daemon Server] - 2026-09-15T13:39:48.967Z - [REQUEST]: tsconfig.json
5006
+ [NX Daemon Server] - 2026-09-15T13:39:48.967Z - [REQUEST]:
5007
+ [NX Daemon Server] - 2026-09-15T13:39:48.969Z - Time taken for 'hash changed files from watcher' 0.3912919983267784ms
5008
+ [NX Daemon Server] - 2026-09-15T13:39:48.980Z - Time taken for 'build-project-configs' 10.933584000915289ms
5009
+ [NX Daemon Server] - 2026-09-15T13:39:48.990Z - [SYNC]: collect registered sync generators
5010
+ [NX Daemon Server] - 2026-09-15T13:39:48.990Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5011
+ [NX Daemon Server] - 2026-09-15T13:39:48.990Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5012
+ [NX Daemon Server] - 2026-09-15T13:39:48.990Z - Time taken for 'total execution time for createProjectGraph()' 5.851583000272512ms
5013
+ [NX Daemon Server] - 2026-09-15T13:39:51.442Z - [WATCHER]: Processing file changes in outputs
5014
+ [NX Daemon Server] - 2026-09-15T13:39:51.443Z - [WATCHER]: tsconfig.json was modified
5015
+ [NX Daemon Server] - 2026-09-15T13:39:51.765Z - [WATCHER]: Processing file changes in outputs
5016
+ [NX Daemon Server] - 2026-09-15T13:39:52.245Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5017
+ [NX Daemon Server] - 2026-09-15T13:39:52.245Z - [REQUEST]: tsconfig.json
5018
+ [NX Daemon Server] - 2026-09-15T13:39:52.245Z - [REQUEST]:
5019
+ [NX Daemon Server] - 2026-09-15T13:39:52.248Z - Time taken for 'hash changed files from watcher' 0.21558300033211708ms
5020
+ [NX Daemon Server] - 2026-09-15T13:39:52.257Z - Time taken for 'build-project-configs' 8.522874999791384ms
5021
+ [NX Daemon Server] - 2026-09-15T13:39:52.269Z - [SYNC]: collect registered sync generators
5022
+ [NX Daemon Server] - 2026-09-15T13:39:52.269Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5023
+ [NX Daemon Server] - 2026-09-15T13:39:52.269Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5024
+ [NX Daemon Server] - 2026-09-15T13:39:52.269Z - Time taken for 'total execution time for createProjectGraph()' 8.725999999791384ms
5025
+ [NX Daemon Server] - 2026-09-15T13:39:52.783Z - [WATCHER]: Processing file changes in outputs
5026
+ [NX Daemon Server] - 2026-09-15T13:39:52.879Z - [WATCHER]: Processing file changes in outputs
5027
+ [NX Daemon Server] - 2026-09-15T13:39:52.955Z - [WATCHER]: Processing file changes in outputs
5028
+ [NX Daemon Server] - 2026-09-15T13:39:53.026Z - [WATCHER]: Processing file changes in outputs
5029
+ [NX Daemon Server] - 2026-09-15T13:39:53.152Z - [WATCHER]: Processing file changes in outputs
5030
+ [NX Daemon Server] - 2026-09-15T13:39:53.215Z - [WATCHER]: Processing file changes in outputs
5031
+ [NX Daemon Server] - 2026-09-15T13:39:53.300Z - [WATCHER]: Processing file changes in outputs
5032
+ [NX Daemon Server] - 2026-09-15T13:39:53.363Z - [WATCHER]: Processing file changes in outputs
5033
+ [NX Daemon Server] - 2026-09-15T13:39:53.497Z - [WATCHER]: Processing file changes in outputs
5034
+ [NX Daemon Server] - 2026-09-15T13:39:53.573Z - [WATCHER]: Processing file changes in outputs
5035
+ [NX Daemon Server] - 2026-09-15T13:39:53.693Z - [WATCHER]: Processing file changes in outputs
5036
+ [NX Daemon Server] - 2026-09-15T13:39:53.763Z - [WATCHER]: Processing file changes in outputs
5037
+ [NX Daemon Server] - 2026-09-15T13:40:04.195Z - [WATCHER]: Processing file changes in outputs
5038
+ [NX Daemon Server] - 2026-09-15T13:41:29.447Z - Established a connection. Number of open connections: 1
5039
+ [NX Daemon Server] - 2026-09-15T13:41:29.448Z - Closed a connection. Number of open connections: 0
5040
+ [NX Daemon Server] - 2026-09-15T13:41:29.448Z - Established a connection. Number of open connections: 1
5041
+ [NX Daemon Server] - 2026-09-15T13:41:29.449Z - [REQUEST]: Client Request for Project Graph Received
5042
+ [NX Daemon Server] - 2026-09-15T13:41:29.450Z - [REQUEST]: Responding to the client. project-graph
5043
+ [NX Daemon Server] - 2026-09-15T13:41:29.450Z - Time taken for 'total for creating and serializing project graph' 0.14970899745821953ms
5044
+ [NX Daemon Server] - 2026-09-15T13:41:29.451Z - Done responding to the client project-graph
5045
+ [NX Daemon Server] - 2026-09-15T13:41:29.451Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
5046
+ [NX Daemon Server] - 2026-09-15T13:41:29.522Z - [REQUEST]: Responding to the client. handleHashTasks
5047
+ [NX Daemon Server] - 2026-09-15T13:41:29.523Z - Done responding to the client handleHashTasks
5048
+ [NX Daemon Server] - 2026-09-15T13:41:29.523Z - Handled HASH_TASKS. Handling time: 4. Response time: 1.
5049
+ [NX Daemon Server] - 2026-09-15T13:41:29.806Z - Closed a connection. Number of open connections: 0
5050
+ [NX Daemon Server] - 2026-09-15T15:11:43.616Z - [WATCHER]: tsconfig.json was modified
5051
+ [NX Daemon Server] - 2026-09-15T15:11:43.617Z - [WATCHER]: Processing file changes in outputs
5052
+ [NX Daemon Server] - 2026-09-15T15:11:43.718Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5053
+ [NX Daemon Server] - 2026-09-15T15:11:43.718Z - [REQUEST]: tsconfig.json
5054
+ [NX Daemon Server] - 2026-09-15T15:11:43.718Z - [REQUEST]:
5055
+ [NX Daemon Server] - 2026-09-15T15:11:43.721Z - Time taken for 'hash changed files from watcher' 1.2503340020775795ms
5056
+ [NX Daemon Server] - 2026-09-15T15:11:43.729Z - Time taken for 'build-project-configs' 8.191208999603987ms
5057
+ [NX Daemon Server] - 2026-09-15T15:11:43.737Z - [SYNC]: collect registered sync generators
5058
+ [NX Daemon Server] - 2026-09-15T15:11:43.738Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5059
+ [NX Daemon Server] - 2026-09-15T15:11:43.738Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5060
+ [NX Daemon Server] - 2026-09-15T15:11:43.738Z - Time taken for 'total execution time for createProjectGraph()' 4.639999996870756ms
5061
+ [NX Daemon Server] - 2026-09-15T15:11:45.716Z - [WATCHER]: Processing file changes in outputs
5062
+ [NX Daemon Server] - 2026-09-15T15:11:45.720Z - [WATCHER]: tsconfig.json was modified
5063
+ [NX Daemon Server] - 2026-09-15T15:11:45.890Z - [WATCHER]: Processing file changes in outputs
5064
+ [NX Daemon Server] - 2026-09-15T15:11:45.922Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5065
+ [NX Daemon Server] - 2026-09-15T15:11:45.922Z - [REQUEST]: tsconfig.json
5066
+ [NX Daemon Server] - 2026-09-15T15:11:45.922Z - [REQUEST]:
5067
+ [NX Daemon Server] - 2026-09-15T15:11:45.922Z - Time taken for 'hash changed files from watcher' 0.08983400091528893ms
5068
+ [NX Daemon Server] - 2026-09-15T15:11:45.927Z - Time taken for 'build-project-configs' 3.272374998778105ms
5069
+ [NX Daemon Server] - 2026-09-15T15:11:45.933Z - [SYNC]: collect registered sync generators
5070
+ [NX Daemon Server] - 2026-09-15T15:11:45.933Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5071
+ [NX Daemon Server] - 2026-09-15T15:11:45.933Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5072
+ [NX Daemon Server] - 2026-09-15T15:11:45.933Z - Time taken for 'total execution time for createProjectGraph()' 4.826791997998953ms
5073
+ [NX Daemon Server] - 2026-09-15T15:11:46.857Z - [WATCHER]: Processing file changes in outputs
5074
+ [NX Daemon Server] - 2026-09-15T15:11:46.913Z - [WATCHER]: Processing file changes in outputs
5075
+ [NX Daemon Server] - 2026-09-15T15:11:46.998Z - [WATCHER]: Processing file changes in outputs
5076
+ [NX Daemon Server] - 2026-09-15T15:11:47.061Z - [WATCHER]: Processing file changes in outputs
5077
+ [NX Daemon Server] - 2026-09-15T15:11:47.113Z - [WATCHER]: Processing file changes in outputs
5078
+ [NX Daemon Server] - 2026-09-15T15:11:47.213Z - [WATCHER]: Processing file changes in outputs
5079
+ [NX Daemon Server] - 2026-09-15T15:11:47.335Z - [WATCHER]: Processing file changes in outputs
5080
+ [NX Daemon Server] - 2026-09-15T15:11:47.429Z - [WATCHER]: Processing file changes in outputs
5081
+ [NX Daemon Server] - 2026-09-15T15:11:47.480Z - [WATCHER]: Processing file changes in outputs
5082
+ [NX Daemon Server] - 2026-09-15T15:11:47.575Z - [WATCHER]: Processing file changes in outputs
5083
+ [NX Daemon Server] - 2026-09-15T15:11:47.701Z - [WATCHER]: Processing file changes in outputs
5084
+ [NX Daemon Server] - 2026-09-15T15:11:47.753Z - [WATCHER]: Processing file changes in outputs
5085
+ [NX Daemon Server] - 2026-09-15T16:05:43.489Z - [WATCHER]: Processing file changes in outputs
5086
+ [NX Daemon Server] - 2026-09-15T16:05:43.496Z - [WATCHER]: tsconfig.json was modified
5087
+ [NX Daemon Server] - 2026-09-15T16:05:43.899Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5088
+ [NX Daemon Server] - 2026-09-15T16:05:43.899Z - [REQUEST]: tsconfig.json
5089
+ [NX Daemon Server] - 2026-09-15T16:05:43.899Z - [REQUEST]:
5090
+ [NX Daemon Server] - 2026-09-15T16:05:43.902Z - Time taken for 'hash changed files from watcher' 1.632457997649908ms
5091
+ [NX Daemon Server] - 2026-09-15T16:05:43.912Z - Time taken for 'build-project-configs' 9.375833000987768ms
5092
+ [NX Daemon Server] - 2026-09-15T16:05:43.930Z - [SYNC]: collect registered sync generators
5093
+ [NX Daemon Server] - 2026-09-15T16:05:43.930Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5094
+ [NX Daemon Server] - 2026-09-15T16:05:43.930Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5095
+ [NX Daemon Server] - 2026-09-15T16:05:43.930Z - Time taken for 'total execution time for createProjectGraph()' 10.183125000447035ms
5096
+ [NX Daemon Server] - 2026-09-15T16:05:45.596Z - [WATCHER]: Processing file changes in outputs
5097
+ [NX Daemon Server] - 2026-09-15T16:05:45.600Z - [WATCHER]: tsconfig.json was modified
5098
+ [NX Daemon Server] - 2026-09-15T16:05:45.825Z - [WATCHER]: Processing file changes in outputs
5099
+ [NX Daemon Server] - 2026-09-15T16:05:46.402Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5100
+ [NX Daemon Server] - 2026-09-15T16:05:46.403Z - [REQUEST]: tsconfig.json
5101
+ [NX Daemon Server] - 2026-09-15T16:05:46.403Z - [REQUEST]:
5102
+ [NX Daemon Server] - 2026-09-15T16:05:46.405Z - Time taken for 'hash changed files from watcher' 0.14520800113677979ms
5103
+ [NX Daemon Server] - 2026-09-15T16:05:46.413Z - Time taken for 'build-project-configs' 7.078999999910593ms
5104
+ [NX Daemon Server] - 2026-09-15T16:05:46.423Z - [SYNC]: collect registered sync generators
5105
+ [NX Daemon Server] - 2026-09-15T16:05:46.423Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5106
+ [NX Daemon Server] - 2026-09-15T16:05:46.423Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5107
+ [NX Daemon Server] - 2026-09-15T16:05:46.423Z - Time taken for 'total execution time for createProjectGraph()' 7.545375000685453ms
5108
+ [NX Daemon Server] - 2026-09-15T16:05:46.999Z - [WATCHER]: Processing file changes in outputs
5109
+ [NX Daemon Server] - 2026-09-15T16:05:47.103Z - [WATCHER]: Processing file changes in outputs
5110
+ [NX Daemon Server] - 2026-09-15T16:05:47.184Z - [WATCHER]: Processing file changes in outputs
5111
+ [NX Daemon Server] - 2026-09-15T16:05:47.276Z - [WATCHER]: Processing file changes in outputs
5112
+ [NX Daemon Server] - 2026-09-15T16:05:47.343Z - [WATCHER]: Processing file changes in outputs
5113
+ [NX Daemon Server] - 2026-09-15T16:05:47.498Z - [WATCHER]: Processing file changes in outputs
5114
+ [NX Daemon Server] - 2026-09-15T16:05:47.647Z - [WATCHER]: Processing file changes in outputs
5115
+ [NX Daemon Server] - 2026-09-15T16:05:47.730Z - [WATCHER]: Processing file changes in outputs
5116
+ [NX Daemon Server] - 2026-09-15T16:05:47.792Z - [WATCHER]: Processing file changes in outputs
5117
+ [NX Daemon Server] - 2026-09-15T16:05:47.884Z - [WATCHER]: Processing file changes in outputs
5118
+ [NX Daemon Server] - 2026-09-15T16:05:47.936Z - [WATCHER]: Processing file changes in outputs
5119
+ [NX Daemon Server] - 2026-09-15T16:05:47.990Z - [WATCHER]: Processing file changes in outputs
5120
+ [NX Daemon Server] - 2026-09-15T16:05:48.046Z - [WATCHER]: Processing file changes in outputs
5121
+ [NX Daemon Server] - 2026-09-15T16:09:07.896Z - [WATCHER]: Processing file changes in outputs
5122
+ [NX Daemon Server] - 2026-09-15T16:09:07.901Z - [WATCHER]: tsconfig.json was modified
5123
+ [NX Daemon Server] - 2026-09-15T16:09:09.503Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5124
+ [NX Daemon Server] - 2026-09-15T16:09:09.503Z - [REQUEST]: tsconfig.json
5125
+ [NX Daemon Server] - 2026-09-15T16:09:09.503Z - [REQUEST]:
5126
+ [NX Daemon Server] - 2026-09-15T16:09:09.504Z - Time taken for 'hash changed files from watcher' 0.25654200091958046ms
5127
+ [NX Daemon Server] - 2026-09-15T16:09:09.513Z - Time taken for 'build-project-configs' 8.604208998382092ms
5128
+ [NX Daemon Server] - 2026-09-15T16:09:09.523Z - [SYNC]: collect registered sync generators
5129
+ [NX Daemon Server] - 2026-09-15T16:09:09.523Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5130
+ [NX Daemon Server] - 2026-09-15T16:09:09.523Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5131
+ [NX Daemon Server] - 2026-09-15T16:09:09.523Z - Time taken for 'total execution time for createProjectGraph()' 6.039417002350092ms
5132
+ [NX Daemon Server] - 2026-09-15T16:09:10.562Z - [WATCHER]: Processing file changes in outputs
5133
+ [NX Daemon Server] - 2026-09-15T16:09:10.566Z - [WATCHER]: tsconfig.json was modified
5134
+ [NX Daemon Server] - 2026-09-15T16:09:10.750Z - [WATCHER]: Processing file changes in outputs
5135
+ [NX Daemon Server] - 2026-09-15T16:09:13.767Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5136
+ [NX Daemon Server] - 2026-09-15T16:09:13.767Z - [REQUEST]: tsconfig.json
5137
+ [NX Daemon Server] - 2026-09-15T16:09:13.767Z - [REQUEST]:
5138
+ [NX Daemon Server] - 2026-09-15T16:09:13.768Z - Time taken for 'hash changed files from watcher' 0.11654200032353401ms
5139
+ [NX Daemon Server] - 2026-09-15T16:09:13.772Z - Time taken for 'build-project-configs' 3.9715419970452785ms
5140
+ [NX Daemon Server] - 2026-09-15T16:09:13.779Z - [SYNC]: collect registered sync generators
5141
+ [NX Daemon Server] - 2026-09-15T16:09:13.779Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5142
+ [NX Daemon Server] - 2026-09-15T16:09:13.779Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5143
+ [NX Daemon Server] - 2026-09-15T16:09:13.779Z - Time taken for 'total execution time for createProjectGraph()' 5.576542001217604ms
5144
+ [NX Daemon Server] - 2026-09-15T16:25:15.255Z - [WATCHER]: tsconfig.json was modified
5145
+ [NX Daemon Server] - 2026-09-15T16:25:15.257Z - [WATCHER]: Processing file changes in outputs
5146
+ [NX Daemon Server] - 2026-09-15T16:25:17.310Z - [WATCHER]: Processing file changes in outputs
5147
+ [NX Daemon Server] - 2026-09-15T16:25:17.316Z - [WATCHER]: tsconfig.json was modified
5148
+ [NX Daemon Server] - 2026-09-15T16:25:17.526Z - [WATCHER]: Processing file changes in outputs
5149
+ [NX Daemon Server] - 2026-09-15T16:25:21.660Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5150
+ [NX Daemon Server] - 2026-09-15T16:25:21.660Z - [REQUEST]: tsconfig.json
5151
+ [NX Daemon Server] - 2026-09-15T16:25:21.660Z - [REQUEST]:
5152
+ [NX Daemon Server] - 2026-09-15T16:25:21.663Z - Time taken for 'hash changed files from watcher' 1.2167910002171993ms
5153
+ [NX Daemon Server] - 2026-09-15T16:25:21.672Z - Time taken for 'build-project-configs' 7.634665999561548ms
5154
+ [NX Daemon Server] - 2026-09-15T16:25:21.683Z - [SYNC]: collect registered sync generators
5155
+ [NX Daemon Server] - 2026-09-15T16:25:21.683Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5156
+ [NX Daemon Server] - 2026-09-15T16:25:21.683Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5157
+ [NX Daemon Server] - 2026-09-15T16:25:21.683Z - Time taken for 'total execution time for createProjectGraph()' 6.417833000421524ms
5158
+ [NX Daemon Server] - 2026-09-15T16:38:24.774Z - [WATCHER]: tsconfig.json was modified
5159
+ [NX Daemon Server] - 2026-09-15T16:38:24.776Z - [WATCHER]: Processing file changes in outputs
5160
+ [NX Daemon Server] - 2026-09-15T16:38:27.284Z - [WATCHER]: Processing file changes in outputs
5161
+ [NX Daemon Server] - 2026-09-15T16:38:27.291Z - [WATCHER]: tsconfig.json was modified
5162
+ [NX Daemon Server] - 2026-09-15T16:38:27.539Z - [WATCHER]: Processing file changes in outputs
5163
+ [NX Daemon Server] - 2026-09-15T16:38:31.180Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5164
+ [NX Daemon Server] - 2026-09-15T16:38:31.180Z - [REQUEST]: tsconfig.json
5165
+ [NX Daemon Server] - 2026-09-15T16:38:31.180Z - [REQUEST]:
5166
+ [NX Daemon Server] - 2026-09-15T16:38:31.187Z - Time taken for 'hash changed files from watcher' 2.2152910009026527ms
5167
+ [NX Daemon Server] - 2026-09-15T16:38:31.215Z - Time taken for 'build-project-configs' 25.820792000740767ms
5168
+ [NX Daemon Server] - 2026-09-15T16:38:31.225Z - [SYNC]: collect registered sync generators
5169
+ [NX Daemon Server] - 2026-09-15T16:38:31.225Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5170
+ [NX Daemon Server] - 2026-09-15T16:38:31.225Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5171
+ [NX Daemon Server] - 2026-09-15T16:38:31.225Z - Time taken for 'total execution time for createProjectGraph()' 6.175625000149012ms
5172
+ [NX Daemon Server] - 2026-09-15T19:13:55.811Z - [WATCHER]: tsconfig.json was modified
5173
+ [NX Daemon Server] - 2026-09-15T19:13:55.816Z - [WATCHER]: Processing file changes in outputs
5174
+ [NX Daemon Server] - 2026-09-15T19:13:58.341Z - [WATCHER]: Processing file changes in outputs
5175
+ [NX Daemon Server] - 2026-09-15T19:13:58.346Z - [WATCHER]: tsconfig.json was modified
5176
+ [NX Daemon Server] - 2026-09-15T19:13:58.596Z - [WATCHER]: Processing file changes in outputs
5177
+ [NX Daemon Server] - 2026-09-15T19:13:59.826Z - [WATCHER]: Processing file changes in outputs
5178
+ [NX Daemon Server] - 2026-09-15T19:13:59.898Z - [WATCHER]: Processing file changes in outputs
5179
+ [NX Daemon Server] - 2026-09-15T19:13:59.962Z - [WATCHER]: Processing file changes in outputs
5180
+ [NX Daemon Server] - 2026-09-15T19:14:00.027Z - [WATCHER]: Processing file changes in outputs
5181
+ [NX Daemon Server] - 2026-09-15T19:14:00.174Z - [WATCHER]: Processing file changes in outputs
5182
+ [NX Daemon Server] - 2026-09-15T19:14:00.243Z - [WATCHER]: Processing file changes in outputs
5183
+ [NX Daemon Server] - 2026-09-15T19:14:00.311Z - [WATCHER]: Processing file changes in outputs
5184
+ [NX Daemon Server] - 2026-09-15T19:14:00.369Z - [WATCHER]: Processing file changes in outputs
5185
+ [NX Daemon Server] - 2026-09-15T19:14:00.474Z - [WATCHER]: Processing file changes in outputs
5186
+ [NX Daemon Server] - 2026-09-15T19:14:00.538Z - [WATCHER]: Processing file changes in outputs
5187
+ [NX Daemon Server] - 2026-09-15T19:14:00.596Z - [WATCHER]: Processing file changes in outputs
5188
+ [NX Daemon Server] - 2026-09-15T19:14:00.653Z - [WATCHER]: Processing file changes in outputs
5189
+ [NX Daemon Server] - 2026-09-15T19:14:02.222Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5190
+ [NX Daemon Server] - 2026-09-15T19:14:02.222Z - [REQUEST]: tsconfig.json
5191
+ [NX Daemon Server] - 2026-09-15T19:14:02.222Z - [REQUEST]:
5192
+ [NX Daemon Server] - 2026-09-15T19:14:02.229Z - Time taken for 'hash changed files from watcher' 3.049374997615814ms
5193
+ [NX Daemon Server] - 2026-09-15T19:14:02.305Z - Time taken for 'build-project-configs' 74.54924999922514ms
5194
+ [NX Daemon Server] - 2026-09-15T19:14:02.333Z - [SYNC]: collect registered sync generators
5195
+ [NX Daemon Server] - 2026-09-15T19:14:02.333Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5196
+ [NX Daemon Server] - 2026-09-15T19:14:02.333Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5197
+ [NX Daemon Server] - 2026-09-15T19:14:02.334Z - Time taken for 'total execution time for createProjectGraph()' 22.27445799857378ms
5198
+ [NX Daemon Server] - 2026-09-15T19:30:10.013Z - [WATCHER]: tsconfig.json was modified
5199
+ [NX Daemon Server] - 2026-09-15T19:30:10.015Z - [WATCHER]: Processing file changes in outputs
5200
+ [NX Daemon Server] - 2026-09-15T19:30:13.350Z - [WATCHER]: Processing file changes in outputs
5201
+ [NX Daemon Server] - 2026-09-15T19:30:13.354Z - [WATCHER]: tsconfig.json was modified
5202
+ [NX Daemon Server] - 2026-09-15T19:30:13.830Z - [WATCHER]: Processing file changes in outputs
5203
+ [NX Daemon Server] - 2026-09-15T19:30:16.419Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5204
+ [NX Daemon Server] - 2026-09-15T19:30:16.419Z - [REQUEST]: tsconfig.json
5205
+ [NX Daemon Server] - 2026-09-15T19:30:16.419Z - [REQUEST]:
5206
+ [NX Daemon Server] - 2026-09-15T19:30:16.424Z - Time taken for 'hash changed files from watcher' 1.3927920013666153ms
5207
+ [NX Daemon Server] - 2026-09-15T19:30:16.439Z - Time taken for 'build-project-configs' 14.656458005309105ms
5208
+ [NX Daemon Server] - 2026-09-15T19:30:16.469Z - [SYNC]: collect registered sync generators
5209
+ [NX Daemon Server] - 2026-09-15T19:30:16.470Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5210
+ [NX Daemon Server] - 2026-09-15T19:30:16.470Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5211
+ [NX Daemon Server] - 2026-09-15T19:30:16.470Z - Time taken for 'total execution time for createProjectGraph()' 23.287249997258186ms
5212
+ [NX Daemon Server] - 2026-09-15T20:24:45.748Z - [WATCHER]: tsconfig.json was modified
5213
+ [NX Daemon Server] - 2026-09-15T20:24:45.750Z - [WATCHER]: Processing file changes in outputs
5214
+ [NX Daemon Server] - 2026-09-15T20:24:48.082Z - [WATCHER]: Processing file changes in outputs
5215
+ [NX Daemon Server] - 2026-09-15T20:24:48.100Z - [WATCHER]: tsconfig.json was modified
5216
+ [NX Daemon Server] - 2026-09-15T20:24:48.302Z - [WATCHER]: Processing file changes in outputs
5217
+ [NX Daemon Server] - 2026-09-15T20:24:49.527Z - [WATCHER]: Processing file changes in outputs
5218
+ [NX Daemon Server] - 2026-09-15T20:24:49.598Z - [WATCHER]: Processing file changes in outputs
5219
+ [NX Daemon Server] - 2026-09-15T20:24:49.657Z - [WATCHER]: Processing file changes in outputs
5220
+ [NX Daemon Server] - 2026-09-15T20:24:49.712Z - [WATCHER]: Processing file changes in outputs
5221
+ [NX Daemon Server] - 2026-09-15T20:24:49.828Z - [WATCHER]: Processing file changes in outputs
5222
+ [NX Daemon Server] - 2026-09-15T20:24:49.893Z - [WATCHER]: Processing file changes in outputs
5223
+ [NX Daemon Server] - 2026-09-15T20:24:49.949Z - [WATCHER]: Processing file changes in outputs
5224
+ [NX Daemon Server] - 2026-09-15T20:24:50.008Z - [WATCHER]: Processing file changes in outputs
5225
+ [NX Daemon Server] - 2026-09-15T20:24:50.097Z - [WATCHER]: Processing file changes in outputs
5226
+ [NX Daemon Server] - 2026-09-15T20:24:50.149Z - [WATCHER]: Processing file changes in outputs
5227
+ [NX Daemon Server] - 2026-09-15T20:24:50.202Z - [WATCHER]: Processing file changes in outputs
5228
+ [NX Daemon Server] - 2026-09-15T20:24:50.287Z - [WATCHER]: Processing file changes in outputs
5229
+ [NX Daemon Server] - 2026-09-15T20:24:52.153Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5230
+ [NX Daemon Server] - 2026-09-15T20:24:52.153Z - [REQUEST]: tsconfig.json
5231
+ [NX Daemon Server] - 2026-09-15T20:24:52.153Z - [REQUEST]:
5232
+ [NX Daemon Server] - 2026-09-15T20:24:52.156Z - Time taken for 'hash changed files from watcher' 1.649666003882885ms
5233
+ [NX Daemon Server] - 2026-09-15T20:24:52.167Z - Time taken for 'build-project-configs' 9.527582995593548ms
5234
+ [NX Daemon Server] - 2026-09-15T20:24:52.195Z - [SYNC]: collect registered sync generators
5235
+ [NX Daemon Server] - 2026-09-15T20:24:52.195Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5236
+ [NX Daemon Server] - 2026-09-15T20:24:52.195Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5237
+ [NX Daemon Server] - 2026-09-15T20:24:52.195Z - Time taken for 'total execution time for createProjectGraph()' 21.47070900350809ms
5238
+ [NX Daemon Server] - 2026-09-15T23:24:48.179Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (sources)
5239
+ [NX Daemon Server] - 2026-09-15T23:24:48.184Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (outputs)
5240
+ [NX Daemon Server] - 2026-09-15T23:24:48.188Z - Server stopped because: "10800000ms of inactivity"
5241
+ [NX Daemon Server] - 2026-09-16T02:50:24.094Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/3c85950abf8517112e60/d.sock
5242
+ [NX Daemon Server] - 2026-09-16T02:50:24.097Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (native)
5243
+ [NX Daemon Server] - 2026-09-16T02:50:24.104Z - Established a connection. Number of open connections: 1
5244
+ [NX Daemon Server] - 2026-09-16T02:50:24.104Z - Established a connection. Number of open connections: 2
5245
+ [NX Daemon Server] - 2026-09-16T02:50:24.105Z - Closed a connection. Number of open connections: 1
5246
+ [NX Daemon Server] - 2026-09-16T02:50:24.105Z - [REQUEST]: Client Request for Project Graph Received
5247
+ [NX Daemon Server] - 2026-09-16T02:50:24.156Z - [WATCHER]: Processing file changes in outputs
5248
+ [NX Daemon Server] - 2026-09-16T02:50:24.237Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5249
+ [NX Daemon Server] - 2026-09-16T02:50:24.237Z - [REQUEST]:
5250
+ [NX Daemon Server] - 2026-09-16T02:50:24.237Z - [REQUEST]:
5251
+ [NX Daemon Server] - 2026-09-16T02:50:24.239Z - Time taken for 'loadNxPlugins' 130.57570900000002ms
5252
+ [NX Daemon Server] - 2026-09-16T02:50:24.264Z - Time taken for 'build-project-configs' 16.731790999999987ms
5253
+ [NX Daemon Server] - 2026-09-16T02:50:24.277Z - [SYNC]: collect registered sync generators
5254
+ [NX Daemon Server] - 2026-09-16T02:50:24.277Z - [REQUEST]: Responding to the client. project-graph
5255
+ [NX Daemon Server] - 2026-09-16T02:50:24.277Z - Time taken for 'total for creating and serializing project graph' 172.041041ms
5256
+ [NX Daemon Server] - 2026-09-16T02:50:24.278Z - Done responding to the client project-graph
5257
+ [NX Daemon Server] - 2026-09-16T02:50:24.278Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 172. Response time: 1.
5258
+ [NX Daemon Server] - 2026-09-16T02:50:24.328Z - [REQUEST]: Responding to the client. handleHashTasks
5259
+ [NX Daemon Server] - 2026-09-16T02:50:24.329Z - Done responding to the client handleHashTasks
5260
+ [NX Daemon Server] - 2026-09-16T02:50:24.329Z - Handled HASH_TASKS. Handling time: 2. Response time: 1.
5261
+ [NX Daemon Server] - 2026-09-16T02:50:24.609Z - Closed a connection. Number of open connections: 0
5262
+ [NX Daemon Server] - 2026-09-16T02:51:01.248Z - [WATCHER]: Processing file changes in outputs
5263
+ [NX Daemon Server] - 2026-09-16T02:51:01.254Z - [WATCHER]: tsconfig.json was modified
5264
+ [NX Daemon Server] - 2026-09-16T02:51:01.355Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5265
+ [NX Daemon Server] - 2026-09-16T02:51:01.356Z - [REQUEST]: tsconfig.json
5266
+ [NX Daemon Server] - 2026-09-16T02:51:01.356Z - [REQUEST]:
5267
+ [NX Daemon Server] - 2026-09-16T02:51:01.356Z - Time taken for 'hash changed files from watcher' 0.14549999999871943ms
5268
+ [NX Daemon Server] - 2026-09-16T02:51:01.365Z - Time taken for 'build-project-configs' 7.23516699999891ms
5269
+ [NX Daemon Server] - 2026-09-16T02:51:01.370Z - [SYNC]: collect registered sync generators
5270
+ [NX Daemon Server] - 2026-09-16T02:51:01.370Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5271
+ [NX Daemon Server] - 2026-09-16T02:51:01.370Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5272
+ [NX Daemon Server] - 2026-09-16T02:51:01.370Z - Time taken for 'total execution time for createProjectGraph()' 4.73624999999447ms
5273
+ [NX Daemon Server] - 2026-09-16T02:51:03.502Z - [WATCHER]: Processing file changes in outputs
5274
+ [NX Daemon Server] - 2026-09-16T02:51:03.511Z - [WATCHER]: tsconfig.json was modified
5275
+ [NX Daemon Server] - 2026-09-16T02:51:03.712Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5276
+ [NX Daemon Server] - 2026-09-16T02:51:03.713Z - [REQUEST]: tsconfig.json
5277
+ [NX Daemon Server] - 2026-09-16T02:51:03.713Z - [REQUEST]:
5278
+ [NX Daemon Server] - 2026-09-16T02:51:03.713Z - Time taken for 'hash changed files from watcher' 0.11616700000013225ms
5279
+ [NX Daemon Server] - 2026-09-16T02:51:03.718Z - Time taken for 'build-project-configs' 4.328957999998238ms
5280
+ [NX Daemon Server] - 2026-09-16T02:51:03.723Z - [SYNC]: collect registered sync generators
5281
+ [NX Daemon Server] - 2026-09-16T02:51:03.723Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5282
+ [NX Daemon Server] - 2026-09-16T02:51:03.723Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5283
+ [NX Daemon Server] - 2026-09-16T02:51:03.723Z - Time taken for 'total execution time for createProjectGraph()' 4.247250000000349ms
5284
+ [NX Daemon Server] - 2026-09-16T02:51:03.724Z - [WATCHER]: Processing file changes in outputs
5285
+ [NX Daemon Server] - 2026-09-16T02:51:05.219Z - [WATCHER]: Processing file changes in outputs
5286
+ [NX Daemon Server] - 2026-09-16T02:51:05.389Z - [WATCHER]: Processing file changes in outputs
5287
+ [NX Daemon Server] - 2026-09-16T02:51:05.590Z - [WATCHER]: Processing file changes in outputs
5288
+ [NX Daemon Server] - 2026-09-16T02:51:05.659Z - [WATCHER]: Processing file changes in outputs
5289
+ [NX Daemon Server] - 2026-09-16T02:51:05.790Z - [WATCHER]: Processing file changes in outputs
5290
+ [NX Daemon Server] - 2026-09-16T02:51:05.926Z - [WATCHER]: Processing file changes in outputs
5291
+ [NX Daemon Server] - 2026-09-16T02:51:05.996Z - [WATCHER]: Processing file changes in outputs
5292
+ [NX Daemon Server] - 2026-09-16T02:51:06.069Z - [WATCHER]: Processing file changes in outputs
5293
+ [NX Daemon Server] - 2026-09-16T02:51:06.175Z - [WATCHER]: Processing file changes in outputs
5294
+ [NX Daemon Server] - 2026-09-16T02:51:06.233Z - [WATCHER]: Processing file changes in outputs
5295
+ [NX Daemon Server] - 2026-09-16T02:51:06.292Z - [WATCHER]: Processing file changes in outputs
5296
+ [NX Daemon Server] - 2026-09-16T02:51:06.350Z - [WATCHER]: Processing file changes in outputs
5297
+ [NX Daemon Server] - 2026-09-16T02:53:33.687Z - Established a connection. Number of open connections: 1
5298
+ [NX Daemon Server] - 2026-09-16T02:53:33.688Z - Established a connection. Number of open connections: 2
5299
+ [NX Daemon Server] - 2026-09-16T02:53:33.688Z - Closed a connection. Number of open connections: 1
5300
+ [NX Daemon Server] - 2026-09-16T02:53:33.690Z - [REQUEST]: Client Request for Project Graph Received
5301
+ [NX Daemon Server] - 2026-09-16T02:53:33.690Z - [REQUEST]: Responding to the client. project-graph
5302
+ [NX Daemon Server] - 2026-09-16T02:53:33.691Z - Time taken for 'total for creating and serializing project graph' 0.2522500000195578ms
5303
+ [NX Daemon Server] - 2026-09-16T02:53:33.691Z - Done responding to the client project-graph
5304
+ [NX Daemon Server] - 2026-09-16T02:53:33.691Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
5305
+ [NX Daemon Server] - 2026-09-16T02:53:33.729Z - [REQUEST]: Responding to the client. handleHashTasks
5306
+ [NX Daemon Server] - 2026-09-16T02:53:33.729Z - Done responding to the client handleHashTasks
5307
+ [NX Daemon Server] - 2026-09-16T02:53:33.729Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
5308
+ [NX Daemon Server] - 2026-09-16T02:53:34.056Z - Closed a connection. Number of open connections: 0
5309
+ [NX Daemon Server] - 2026-09-16T03:09:44.098Z - [WATCHER]: Processing file changes in outputs
5310
+ [NX Daemon Server] - 2026-09-16T03:09:44.103Z - [WATCHER]: tsconfig.json was modified
5311
+ [NX Daemon Server] - 2026-09-16T03:09:44.206Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5312
+ [NX Daemon Server] - 2026-09-16T03:09:44.206Z - [REQUEST]: tsconfig.json
5313
+ [NX Daemon Server] - 2026-09-16T03:09:44.206Z - [REQUEST]:
5314
+ [NX Daemon Server] - 2026-09-16T03:09:44.208Z - Time taken for 'hash changed files from watcher' 2.3640829999931157ms
5315
+ [NX Daemon Server] - 2026-09-16T03:09:44.216Z - Time taken for 'build-project-configs' 7.590667000040412ms
5316
+ [NX Daemon Server] - 2026-09-16T03:09:44.231Z - [SYNC]: collect registered sync generators
5317
+ [NX Daemon Server] - 2026-09-16T03:09:44.231Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5318
+ [NX Daemon Server] - 2026-09-16T03:09:44.231Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5319
+ [NX Daemon Server] - 2026-09-16T03:09:44.231Z - Time taken for 'total execution time for createProjectGraph()' 5.6860829999204725ms
5320
+ [NX Daemon Server] - 2026-09-16T03:09:46.435Z - [WATCHER]: Processing file changes in outputs
5321
+ [NX Daemon Server] - 2026-09-16T03:09:46.438Z - [WATCHER]: tsconfig.json was modified
5322
+ [NX Daemon Server] - 2026-09-16T03:09:46.640Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5323
+ [NX Daemon Server] - 2026-09-16T03:09:46.640Z - [REQUEST]: tsconfig.json
5324
+ [NX Daemon Server] - 2026-09-16T03:09:46.640Z - [REQUEST]:
5325
+ [NX Daemon Server] - 2026-09-16T03:09:46.641Z - Time taken for 'hash changed files from watcher' 0.15699999989010394ms
5326
+ [NX Daemon Server] - 2026-09-16T03:09:46.658Z - Time taken for 'build-project-configs' 16.86312499991618ms
5327
+ [NX Daemon Server] - 2026-09-16T03:09:46.687Z - [SYNC]: collect registered sync generators
5328
+ [NX Daemon Server] - 2026-09-16T03:09:46.687Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5329
+ [NX Daemon Server] - 2026-09-16T03:09:46.687Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5330
+ [NX Daemon Server] - 2026-09-16T03:09:46.687Z - Time taken for 'total execution time for createProjectGraph()' 24.055499999783933ms
5331
+ [NX Daemon Server] - 2026-09-16T03:09:46.703Z - [WATCHER]: Processing file changes in outputs
5332
+ [NX Daemon Server] - 2026-09-16T03:09:48.053Z - [WATCHER]: Processing file changes in outputs
5333
+ [NX Daemon Server] - 2026-09-16T03:09:48.120Z - [WATCHER]: Processing file changes in outputs
5334
+ [NX Daemon Server] - 2026-09-16T03:09:48.189Z - [WATCHER]: Processing file changes in outputs
5335
+ [NX Daemon Server] - 2026-09-16T03:09:48.249Z - [WATCHER]: Processing file changes in outputs
5336
+ [NX Daemon Server] - 2026-09-16T03:09:48.374Z - [WATCHER]: Processing file changes in outputs
5337
+ [NX Daemon Server] - 2026-09-16T03:09:48.446Z - [WATCHER]: Processing file changes in outputs
5338
+ [NX Daemon Server] - 2026-09-16T03:09:48.507Z - [WATCHER]: Processing file changes in outputs
5339
+ [NX Daemon Server] - 2026-09-16T03:09:48.583Z - [WATCHER]: Processing file changes in outputs
5340
+ [NX Daemon Server] - 2026-09-16T03:09:48.682Z - [WATCHER]: Processing file changes in outputs
5341
+ [NX Daemon Server] - 2026-09-16T03:09:48.744Z - [WATCHER]: Processing file changes in outputs
5342
+ [NX Daemon Server] - 2026-09-16T03:09:48.806Z - [WATCHER]: Processing file changes in outputs
5343
+ [NX Daemon Server] - 2026-09-16T03:09:48.859Z - [WATCHER]: Processing file changes in outputs
5344
+ [NX Daemon Server] - 2026-09-16T04:31:44.274Z - Established a connection. Number of open connections: 1
5345
+ [NX Daemon Server] - 2026-09-16T04:31:44.279Z - Established a connection. Number of open connections: 2
5346
+ [NX Daemon Server] - 2026-09-16T04:31:44.284Z - Closed a connection. Number of open connections: 1
5347
+ [NX Daemon Server] - 2026-09-16T04:31:44.289Z - [REQUEST]: Client Request for Project Graph Received
5348
+ [NX Daemon Server] - 2026-09-16T04:31:44.291Z - [REQUEST]: Responding to the client. project-graph
5349
+ [NX Daemon Server] - 2026-09-16T04:31:44.293Z - Time taken for 'total for creating and serializing project graph' 1.2184170000255108ms
5350
+ [NX Daemon Server] - 2026-09-16T04:31:44.298Z - Done responding to the client project-graph
5351
+ [NX Daemon Server] - 2026-09-16T04:31:44.298Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 2. Response time: 7.
5352
+ [NX Daemon Server] - 2026-09-16T04:31:44.353Z - [REQUEST]: Responding to the client. handleHashTasks
5353
+ [NX Daemon Server] - 2026-09-16T04:31:44.353Z - Done responding to the client handleHashTasks
5354
+ [NX Daemon Server] - 2026-09-16T04:31:44.353Z - Handled HASH_TASKS. Handling time: 12. Response time: 0.
5355
+ [NX Daemon Server] - 2026-09-16T04:31:44.643Z - Closed a connection. Number of open connections: 0
5356
+ [NX Daemon Server] - 2026-09-16T04:38:12.383Z - [WATCHER]: package.json was modified
5357
+ [NX Daemon Server] - 2026-09-16T04:38:12.385Z - [WATCHER]: Processing file changes in outputs
5358
+ [NX Daemon Server] - 2026-09-16T04:38:12.488Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5359
+ [NX Daemon Server] - 2026-09-16T04:38:12.488Z - [REQUEST]: package.json
5360
+ [NX Daemon Server] - 2026-09-16T04:38:12.488Z - [REQUEST]:
5361
+ [NX Daemon Server] - 2026-09-16T04:38:12.494Z - Time taken for 'hash changed files from watcher' 0.7267909999936819ms
5362
+ [NX Daemon Server] - 2026-09-16T04:38:12.538Z - Time taken for 'build-project-configs' 43.121459000743926ms
5363
+ [NX Daemon Server] - 2026-09-16T04:38:12.557Z - [SYNC]: collect registered sync generators
5364
+ [NX Daemon Server] - 2026-09-16T04:38:12.557Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5365
+ [NX Daemon Server] - 2026-09-16T04:38:12.557Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5366
+ [NX Daemon Server] - 2026-09-16T04:38:12.557Z - Time taken for 'total execution time for createProjectGraph()' 12.657541999593377ms