@testspectra/cli 1.1.8-rc.3 → 1.1.8-rc.30

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 (247) hide show
  1. package/README.md +50 -0
  2. package/bin/.testspectra-runner.hash +1 -1
  3. package/bin/spectra.js +0 -0
  4. package/dist/commands/__tests__/doctor-filter.test.js +37 -0
  5. package/dist/commands/__tests__/doctor-scope.test.d.ts +1 -0
  6. package/dist/commands/__tests__/doctor-scope.test.js +24 -0
  7. package/dist/commands/__tests__/run-e2e.test.js +49 -49
  8. package/dist/commands/__tests__/test-error-streaming.test.d.ts +1 -0
  9. package/dist/commands/__tests__/test-error-streaming.test.js +85 -0
  10. package/dist/commands/__tests__/test-scaffolding.test.d.ts +1 -0
  11. package/dist/commands/__tests__/test-scaffolding.test.js +32 -0
  12. package/dist/commands/__tests__/upgrade.test.d.ts +1 -0
  13. package/dist/commands/__tests__/upgrade.test.js +95 -0
  14. package/dist/commands/add.js +5 -4
  15. package/dist/commands/devices.js +1 -0
  16. package/dist/commands/docs.d.ts +4 -0
  17. package/dist/commands/docs.js +17 -0
  18. package/dist/commands/doctor.d.ts +9 -1
  19. package/dist/commands/doctor.js +17 -3
  20. package/dist/commands/init.js +7 -160
  21. package/dist/commands/install.js +5 -0
  22. package/dist/commands/license.js +1 -0
  23. package/dist/commands/test.d.ts +13 -0
  24. package/dist/commands/test.js +115 -21
  25. package/dist/commands/upgrade.d.ts +12 -0
  26. package/dist/commands/upgrade.js +197 -0
  27. package/dist/generator/__tests__/tsconfig-isolation.test.js +2 -1
  28. package/dist/generator/__tests__/type-generator.test.js +38 -0
  29. package/dist/generator/architecture-doc-generator.d.ts +14 -0
  30. package/dist/generator/architecture-doc-generator.js +80 -0
  31. package/dist/generator/index.d.ts +1 -0
  32. package/dist/generator/index.js +1 -0
  33. package/dist/generator/tsconfig-generator.js +1 -1
  34. package/dist/generator/type-generator.d.ts +5 -2
  35. package/dist/generator/type-generator.js +14 -17
  36. package/dist/index.js +54 -26
  37. package/dist/linter/__tests__/component-test-imports.test.js +51 -51
  38. package/dist/linter/__tests__/shared-lib-boundary.test.js +15 -15
  39. package/dist/linter/__tests__/spec-schema.test.js +167 -167
  40. package/dist/linter/discovery.d.ts +3 -3
  41. package/dist/linter/discovery.js +7 -7
  42. package/dist/linter/schemas/spec.schema.d.ts +8 -8
  43. package/dist/linter/schemas/suite.schema.d.ts +4 -4
  44. package/dist/runner/bridge.d.ts +1 -1
  45. package/dist/runner/bridge.js +101 -11
  46. package/dist/runner/reporter.d.ts +1 -0
  47. package/dist/runner/reporter.js +12 -6
  48. package/dist/utils/background-update-check.d.ts +1 -0
  49. package/dist/utils/background-update-check.js +43 -0
  50. package/dist/utils/dependency-updates.d.ts +15 -0
  51. package/dist/utils/dependency-updates.js +107 -0
  52. package/dist/utils/update-notifier.d.ts +2 -0
  53. package/dist/utils/update-notifier.js +67 -0
  54. package/package.json +34 -30
  55. package/templates/default/CLAUDE.md +16 -16
  56. package/templates/default/global-hooks/after/mobile.hook.ts +3 -3
  57. package/templates/default/global-hooks/after/web.hook.ts +3 -3
  58. package/templates/default/global-hooks/before/mobile.hook.ts +3 -3
  59. package/templates/default/global-hooks/before/web.hook.ts +3 -3
  60. package/templates/default/package.json +2 -2
  61. package/templates/default/page-objects/AuthPage/mobile.ts +5 -5
  62. package/templates/default/page-objects/AuthPage/web.ts +10 -10
  63. package/templates/default/page-objects/MatchersPage/mobile.ts +70 -70
  64. package/templates/default/page-objects/MatchersPage/web.ts +43 -43
  65. package/templates/default/page-objects/NavigationPage/mobile.ts +14 -14
  66. package/templates/default/page-objects/NavigationPage/web.ts +8 -8
  67. package/templates/default/page-objects/PlaygroundPage/mobile.ts +42 -42
  68. package/templates/default/page-objects/PlaygroundPage/web.ts +31 -31
  69. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +53 -53
  70. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +19 -19
  71. package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +31 -31
  72. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/android.test.ts +3 -3
  73. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/common.test.ts +3 -3
  74. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +27 -27
  75. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +19 -19
  76. package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +26 -26
  77. package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +30 -30
  78. package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/spec.md +22 -22
  79. package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/common.test.ts +27 -27
  80. package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/spec.md +20 -20
  81. package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/spec.md +24 -24
  82. package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/web.test.ts +26 -26
  83. package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/spec.md +37 -37
  84. package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/web.test.ts +21 -21
  85. package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/spec.md +29 -29
  86. package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/web.test.ts +16 -16
  87. package/templates/default/specs/ApiInterception/suite.md +10 -10
  88. package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/common.test.ts +30 -30
  89. package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/spec.md +23 -23
  90. package/templates/default/specs/ApiSeeding/hooks/after/common.hook.ts +16 -16
  91. package/templates/default/specs/ApiSeeding/hooks/before/common.hook.ts +28 -28
  92. package/templates/default/specs/ApiSeeding/suite.md +9 -9
  93. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -7
  94. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -19
  95. package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -9
  96. package/templates/default/specs/Authentication/suite.md +9 -9
  97. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +9 -9
  98. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +17 -17
  99. package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
  100. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/mobile.test.ts +17 -17
  101. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -28
  102. package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -26
  103. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/common.test.ts +26 -26
  104. package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/spec.md +19 -19
  105. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +11 -11
  106. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +17 -17
  107. package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
  108. package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/common.test.ts +14 -14
  109. package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -21
  110. package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/mobile.test.ts +28 -28
  111. package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/spec.md +29 -29
  112. package/templates/default/specs/DeepLink/suite.md +9 -9
  113. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +11 -11
  114. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +17 -17
  115. package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
  116. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +29 -29
  117. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +19 -19
  118. package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
  119. package/templates/default/specs/ElementMatchers/suite.md +10 -10
  120. package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
  121. package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
  122. package/templates/default/specs/EnvironmentConfig/suite.md +9 -9
  123. package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/mobile.test.ts +26 -26
  124. package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/spec.md +22 -22
  125. package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/mobile.test.ts +13 -13
  126. package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/spec.md +20 -20
  127. package/templates/default/specs/PermissionRationale/suite.md +9 -9
  128. package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +6 -6
  129. package/templates/default/specs/Playground/TC-0001-form-controls/spec.md +18 -18
  130. package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
  131. package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +6 -6
  132. package/templates/default/specs/Playground/TC-0002-toggle-elements/spec.md +18 -18
  133. package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
  134. package/templates/default/spectra.config.ts +52 -52
  135. package/templates/default/support/actions/fillCredentials/mobile.action.ts +4 -4
  136. package/templates/default/support/actions/fillCredentials/web.action.ts +4 -4
  137. package/templates/default/support/actions/seedSession/mobile.action.ts +9 -9
  138. package/templates/default/support/actions/seedSession/web.action.ts +13 -13
  139. package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +5 -5
  140. package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +5 -5
  141. package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +6 -6
  142. package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +6 -6
  143. package/templates/docs/ARCHITECTURE.default.md +26 -0
  144. package/templates/docs/ARCHITECTURE.nx.md +119 -0
  145. package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db-shm → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db} +0 -0
  146. package/templates/nx/.nx/workspace-data/d/daemon.log +1012 -1612
  147. package/templates/nx/.nx/workspace-data/file-map.json +123 -137
  148. package/templates/nx/.nx/workspace-data/lockfile.hash +1 -1
  149. package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
  150. package/templates/nx/.nx/workspace-data/parsed-lock-file.json +535 -535
  151. package/templates/nx/.nx/workspace-data/project-graph.json +592 -591
  152. package/templates/nx/.nx/workspace-data/source-maps.json +336 -0
  153. package/templates/nx/CLAUDE.md +10 -10
  154. package/templates/nx/package.json +3 -3
  155. package/templates/nx/packages/matchers/e2e/project.json +2 -2
  156. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +27 -27
  157. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -27
  158. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +24 -24
  159. package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -24
  160. package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +3 -3
  161. package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
  162. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +3 -3
  163. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +17 -17
  164. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +3 -3
  165. package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
  166. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +3 -3
  167. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
  168. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +3 -3
  169. package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
  170. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
  171. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
  172. package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -9
  173. package/templates/nx/packages/playground/e2e/project.json +2 -2
  174. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts +3 -3
  175. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
  176. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +3 -3
  177. package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
  178. package/templates/nx/pnpm-lock.yaml +6663 -6663
  179. package/templates/nx/pnpm-workspace.yaml +9 -9
  180. package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +33 -33
  181. package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +91 -91
  182. package/templates/nx/shared/testing/page-objects/NavigationPage/mobile.ts +5 -5
  183. package/templates/nx/shared/testing/page-objects/NavigationPage/web.ts +8 -8
  184. package/templates/nx/shared/testing/page-objects/PlaygroundPage/mobile.ts +26 -26
  185. package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +31 -31
  186. package/templates/nx/shared/testing/project.json +18 -19
  187. package/templates/nx/shared/testing/support/actions/fillCredentials/mobile.action.ts +4 -4
  188. package/templates/nx/shared/testing/support/actions/fillCredentials/web.action.ts +4 -4
  189. package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts +3 -3
  190. package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +5 -5
  191. package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +4 -4
  192. package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +6 -6
  193. package/templates/nx/spectra.config.ts +52 -52
  194. package/templates/react-component/.cursorrules +17 -17
  195. package/templates/react-component/.vscode/extensions.json +5 -5
  196. package/templates/react-component/CLAUDE.md +14 -14
  197. package/templates/react-component/README.md +69 -69
  198. package/templates/react-component/fixtures/component-mock.json +12 -12
  199. package/templates/react-component/global-hooks/after/web.hook.ts +3 -3
  200. package/templates/react-component/global-hooks/before/web.hook.ts +3 -3
  201. package/templates/react-component/package.json +27 -27
  202. package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -23
  203. package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -23
  204. package/templates/react-component/page-objects/InputComponent/web.ts +13 -13
  205. package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -18
  206. package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -11
  207. package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -18
  208. package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -10
  209. package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -18
  210. package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -16
  211. package/templates/react-component/specs/BadgeComponent/suite.md +12 -12
  212. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -19
  213. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +25 -28
  214. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -19
  215. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +13 -22
  216. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -18
  217. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -8
  218. package/templates/react-component/specs/ButtonComponent/suite.md +12 -12
  219. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -20
  220. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +24 -28
  221. package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -18
  222. package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -9
  223. package/templates/react-component/specs/InputComponent/suite.md +12 -12
  224. package/templates/react-component/spectra.config.ts +17 -27
  225. package/templates/react-component/src/components/Badge/Badge.tsx +60 -60
  226. package/templates/react-component/src/components/Button/Button.tsx +59 -57
  227. package/templates/react-component/src/components/Input/Input.tsx +40 -41
  228. package/templates/react-component/src/test-utils.tsx +23 -23
  229. package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -9
  230. package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -12
  231. package/bin/testspectra-runner.exe +0 -0
  232. package/dist/.tsbuildinfo +0 -1
  233. package/dist/commands/update.d.ts +0 -3
  234. package/dist/commands/update.js +0 -109
  235. package/dist/lifecycle/__tests__/lifecycle-engine.test.js +0 -290
  236. package/dist/lifecycle/hook-discovery.d.ts +0 -24
  237. package/dist/lifecycle/hook-discovery.js +0 -60
  238. package/dist/lifecycle/hook-dispatcher.d.ts +0 -34
  239. package/dist/lifecycle/hook-dispatcher.js +0 -190
  240. package/dist/lifecycle/index.d.ts +0 -3
  241. package/dist/lifecycle/index.js +0 -3
  242. package/dist/lifecycle/parallel-grouping.d.ts +0 -27
  243. package/dist/lifecycle/parallel-grouping.js +0 -151
  244. package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db +0 -0
  245. package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db-wal +0 -0
  246. package/templates/nx/.nx/workspace-data/d/server-process.json +0 -3
  247. /package/dist/{lifecycle/__tests__/lifecycle-engine.test.d.ts → commands/__tests__/doctor-filter.test.d.ts} +0 -0
@@ -1,1612 +1,1012 @@
1
- [NX Daemon Server] - 2026-09-04T10:34:58.791Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
2
- [NX Daemon Server] - 2026-09-04T10:34:58.795Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
3
- [NX Daemon Server] - 2026-09-04T10:34:58.806Z - Established a connection. Number of open connections: 1
4
- [NX Daemon Server] - 2026-09-04T10:34:58.810Z - Closed a connection. Number of open connections: 0
5
- [NX Daemon Server] - 2026-09-04T10:34:58.811Z - Established a connection. Number of open connections: 1
6
- [NX Daemon Server] - 2026-09-04T10:34:58.813Z - [REQUEST]: Client Request for Project Graph Received
7
- [NX Daemon Server] - 2026-09-04T10:34:59.676Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
8
- [NX Daemon Server] - 2026-09-04T10:34:59.676Z - [REQUEST]:
9
- [NX Daemon Server] - 2026-09-04T10:34:59.677Z - [REQUEST]:
10
- [NX Daemon Server] - 2026-09-04T10:34:59.684Z - Time taken for 'loadNxPlugins' 861.6469000000001ms
11
- [NX Daemon Server] - 2026-09-04T10:34:59.751Z - Time taken for 'build-project-configs' 50.13979999999992ms
12
- [NX Daemon Server] - 2026-09-04T10:34:59.758Z - [SYNC]: collect registered sync generators
13
- [NX Daemon Server] - 2026-09-04T10:34:59.759Z - [REQUEST]: Responding to the client. project-graph
14
- [NX Daemon Server] - 2026-09-04T10:34:59.760Z - Time taken for 'total for creating and serializing project graph' 946.8539999999999ms
15
- [NX Daemon Server] - 2026-09-04T10:34:59.760Z - Done responding to the client project-graph
16
- [NX Daemon Server] - 2026-09-04T10:34:59.760Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 947. Response time: 1.
17
- [NX Daemon Server] - 2026-09-04T10:35:00.293Z - [REQUEST]: Responding to the client. handleHashTasks
18
- [NX Daemon Server] - 2026-09-04T10:35:00.293Z - Done responding to the client handleHashTasks
19
- [NX Daemon Server] - 2026-09-04T10:35:00.293Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
20
- [NX Daemon Server] - 2026-09-04T10:35:00.308Z - Closed a connection. Number of open connections: 0
21
- [NX Daemon Server] - 2026-09-04T10:39:26.554Z - [WATCHER]: Processing file changes in outputs
22
- [NX Daemon Server] - 2026-09-04T10:39:26.619Z - [WATCHER]: Processing file changes in outputs
23
- [NX Daemon Server] - 2026-09-04T10:39:29.665Z - [WATCHER]: Processing file changes in outputs
24
- [NX Daemon Server] - 2026-09-04T10:39:29.879Z - [WATCHER]: Processing file changes in outputs
25
- [NX Daemon Server] - 2026-09-04T10:39:30.068Z - [WATCHER]: Processing file changes in outputs
26
- [NX Daemon Server] - 2026-09-04T10:39:30.314Z - [WATCHER]: Processing file changes in outputs
27
- [NX Daemon Server] - 2026-09-05T09:34:46.890Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
28
- [NX Daemon Server] - 2026-09-05T09:34:46.895Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
29
- [NX Daemon Server] - 2026-09-05T09:34:46.898Z - Established a connection. Number of open connections: 1
30
- [NX Daemon Server] - 2026-09-05T09:34:46.899Z - Established a connection. Number of open connections: 2
31
- [NX Daemon Server] - 2026-09-05T09:34:46.903Z - Closed a connection. Number of open connections: 1
32
- [NX Daemon Server] - 2026-09-05T09:34:46.905Z - [REQUEST]: Client Request for Project Graph Received
33
- [NX Daemon Server] - 2026-09-05T09:34:47.662Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
34
- [NX Daemon Server] - 2026-09-05T09:34:47.662Z - [REQUEST]:
35
- [NX Daemon Server] - 2026-09-05T09:34:47.662Z - [REQUEST]:
36
- [NX Daemon Server] - 2026-09-05T09:34:47.669Z - Time taken for 'loadNxPlugins' 753.9609ms
37
- [NX Daemon Server] - 2026-09-05T09:34:47.732Z - Time taken for 'build-project-configs' 39.499000000000024ms
38
- [NX Daemon Server] - 2026-09-05T09:34:47.739Z - [SYNC]: collect registered sync generators
39
- [NX Daemon Server] - 2026-09-05T09:34:47.741Z - [REQUEST]: Responding to the client. project-graph
40
- [NX Daemon Server] - 2026-09-05T09:34:47.741Z - Time taken for 'total for creating and serializing project graph' 836.0146000000001ms
41
- [NX Daemon Server] - 2026-09-05T09:34:47.741Z - Done responding to the client project-graph
42
- [NX Daemon Server] - 2026-09-05T09:34:47.741Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 837. Response time: 0.
43
- [NX Daemon Server] - 2026-09-05T09:34:48.175Z - [REQUEST]: Responding to the client. handleHashTasks
44
- [NX Daemon Server] - 2026-09-05T09:34:48.176Z - Done responding to the client handleHashTasks
45
- [NX Daemon Server] - 2026-09-05T09:34:48.176Z - Handled HASH_TASKS. Handling time: 3. Response time: 1.
46
- [NX Daemon Server] - 2026-09-05T09:34:48.190Z - Closed a connection. Number of open connections: 0
47
- [NX Daemon Server] - 2026-09-05T09:35:35.664Z - [WATCHER]: Processing file changes in outputs
48
- [NX Daemon Server] - 2026-09-05T09:35:35.727Z - [WATCHER]: Processing file changes in outputs
49
- [NX Daemon Server] - 2026-09-05T11:26:32.805Z - [WATCHER]: Processing file changes in outputs
50
- [NX Daemon Server] - 2026-09-05T11:26:32.863Z - [WATCHER]: Processing file changes in outputs
51
- [NX Daemon Server] - 2026-09-05T11:28:11.083Z - Established a connection. Number of open connections: 1
52
- [NX Daemon Server] - 2026-09-05T11:28:11.083Z - Closed a connection. Number of open connections: 0
53
- [NX Daemon Server] - 2026-09-05T11:28:11.084Z - Established a connection. Number of open connections: 1
54
- [NX Daemon Server] - 2026-09-05T11:28:11.087Z - [REQUEST]: Client Request for Project Graph Received
55
- [NX Daemon Server] - 2026-09-05T11:28:11.088Z - [REQUEST]: Responding to the client. project-graph
56
- [NX Daemon Server] - 2026-09-05T11:28:11.088Z - Time taken for 'total for creating and serializing project graph' 0.616300000809133ms
57
- [NX Daemon Server] - 2026-09-05T11:28:11.088Z - Done responding to the client project-graph
58
- [NX Daemon Server] - 2026-09-05T11:28:11.089Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
59
- [NX Daemon Server] - 2026-09-05T11:28:11.142Z - [REQUEST]: Responding to the client. handleHashTasks
60
- [NX Daemon Server] - 2026-09-05T11:28:11.142Z - Done responding to the client handleHashTasks
61
- [NX Daemon Server] - 2026-09-05T11:28:11.143Z - Handled HASH_TASKS. Handling time: 0. Response time: 1.
62
- [NX Daemon Server] - 2026-09-05T11:28:11.155Z - Closed a connection. Number of open connections: 0
63
- [NX Daemon Server] - 2026-09-05T11:40:18.577Z - Established a connection. Number of open connections: 1
64
- [NX Daemon Server] - 2026-09-05T11:40:18.578Z - Closed a connection. Number of open connections: 0
65
- [NX Daemon Server] - 2026-09-05T11:40:18.579Z - Established a connection. Number of open connections: 1
66
- [NX Daemon Server] - 2026-09-05T11:40:18.584Z - [REQUEST]: Client Request for Project Graph Received
67
- [NX Daemon Server] - 2026-09-05T11:40:18.585Z - [REQUEST]: Responding to the client. project-graph
68
- [NX Daemon Server] - 2026-09-05T11:40:18.585Z - Time taken for 'total for creating and serializing project graph' 0.6617999998852611ms
69
- [NX Daemon Server] - 2026-09-05T11:40:18.585Z - Done responding to the client project-graph
70
- [NX Daemon Server] - 2026-09-05T11:40:18.585Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
71
- [NX Daemon Server] - 2026-09-05T11:40:18.663Z - [REQUEST]: Responding to the client. handleHashTasks
72
- [NX Daemon Server] - 2026-09-05T11:40:18.664Z - Done responding to the client handleHashTasks
73
- [NX Daemon Server] - 2026-09-05T11:40:18.664Z - Handled HASH_TASKS. Handling time: 0. Response time: 1.
74
- [NX Daemon Server] - 2026-09-05T11:40:18.685Z - Closed a connection. Number of open connections: 0
75
- [NX Daemon Server] - 2026-09-05T13:04:33.950Z - [WATCHER]: Processing file changes in outputs
76
- [NX Daemon Server] - 2026-09-05T13:04:34.016Z - [WATCHER]: Processing file changes in outputs
77
- [NX Daemon Server] - 2026-09-05T13:04:34.080Z - [WATCHER]: Processing file changes in outputs
78
- [NX Daemon Server] - 2026-09-05T13:05:28.728Z - [WATCHER]: Processing file changes in outputs
79
- [NX Daemon Server] - 2026-09-05T13:05:28.803Z - [WATCHER]: Processing file changes in outputs
80
- [NX Daemon Server] - 2026-09-05T13:10:42.702Z - Established a connection. Number of open connections: 1
81
- [NX Daemon Server] - 2026-09-05T13:10:42.702Z - Closed a connection. Number of open connections: 0
82
- [NX Daemon Server] - 2026-09-05T13:10:42.703Z - Established a connection. Number of open connections: 1
83
- [NX Daemon Server] - 2026-09-05T13:10:42.707Z - [REQUEST]: Client Request for Project Graph Received
84
- [NX Daemon Server] - 2026-09-05T13:10:42.708Z - [REQUEST]: Responding to the client. project-graph
85
- [NX Daemon Server] - 2026-09-05T13:10:42.709Z - Time taken for 'total for creating and serializing project graph' 1.0465999990701675ms
86
- [NX Daemon Server] - 2026-09-05T13:10:42.709Z - Done responding to the client project-graph
87
- [NX Daemon Server] - 2026-09-05T13:10:42.709Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
88
- [NX Daemon Server] - 2026-09-05T13:10:42.798Z - [REQUEST]: Responding to the client. handleHashTasks
89
- [NX Daemon Server] - 2026-09-05T13:10:42.798Z - Done responding to the client handleHashTasks
90
- [NX Daemon Server] - 2026-09-05T13:10:42.798Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
91
- [NX Daemon Server] - 2026-09-05T13:10:42.819Z - Closed a connection. Number of open connections: 0
92
- [NX Daemon Server] - 2026-09-05T13:11:24.123Z - [WATCHER]: Processing file changes in outputs
93
- [NX Daemon Server] - 2026-09-05T13:11:24.183Z - [WATCHER]: Processing file changes in outputs
94
- [NX Daemon Server] - 2026-09-05T13:27:56.872Z - [WATCHER]: Processing file changes in outputs
95
- [NX Daemon Server] - 2026-09-05T13:27:56.935Z - [WATCHER]: Processing file changes in outputs
96
- [NX Daemon Server] - 2026-09-05T13:29:09.064Z - [WATCHER]: Processing file changes in outputs
97
- [NX Daemon Server] - 2026-09-05T13:29:09.126Z - [WATCHER]: Processing file changes in outputs
98
- [NX Daemon Server] - 2026-09-05T13:30:30.264Z - Established a connection. Number of open connections: 1
99
- [NX Daemon Server] - 2026-09-05T13:30:30.265Z - Closed a connection. Number of open connections: 0
100
- [NX Daemon Server] - 2026-09-05T13:30:30.266Z - Established a connection. Number of open connections: 1
101
- [NX Daemon Server] - 2026-09-05T13:30:30.270Z - [REQUEST]: Client Request for Project Graph Received
102
- [NX Daemon Server] - 2026-09-05T13:30:30.271Z - [REQUEST]: Responding to the client. project-graph
103
- [NX Daemon Server] - 2026-09-05T13:30:30.272Z - Time taken for 'total for creating and serializing project graph' 1.039300000295043ms
104
- [NX Daemon Server] - 2026-09-05T13:30:30.272Z - Done responding to the client project-graph
105
- [NX Daemon Server] - 2026-09-05T13:30:30.272Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
106
- [NX Daemon Server] - 2026-09-05T13:30:30.360Z - [REQUEST]: Responding to the client. handleHashTasks
107
- [NX Daemon Server] - 2026-09-05T13:30:30.360Z - Done responding to the client handleHashTasks
108
- [NX Daemon Server] - 2026-09-05T13:30:30.360Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
109
- [NX Daemon Server] - 2026-09-05T13:30:30.381Z - Closed a connection. Number of open connections: 0
110
- [NX Daemon Server] - 2026-09-05T14:52:28.689Z - [WATCHER]: Processing file changes in outputs
111
- [NX Daemon Server] - 2026-09-05T14:52:28.741Z - [WATCHER]: Processing file changes in outputs
112
- [NX Daemon Server] - 2026-09-05T14:53:19.311Z - [WATCHER]: Processing file changes in outputs
113
- [NX Daemon Server] - 2026-09-05T14:53:19.363Z - [WATCHER]: Processing file changes in outputs
114
- [NX Daemon Server] - 2026-09-05T15:05:38.554Z - Established a connection. Number of open connections: 1
115
- [NX Daemon Server] - 2026-09-05T15:05:38.555Z - Closed a connection. Number of open connections: 0
116
- [NX Daemon Server] - 2026-09-05T15:05:38.557Z - Established a connection. Number of open connections: 1
117
- [NX Daemon Server] - 2026-09-05T15:05:38.562Z - [REQUEST]: Client Request for Project Graph Received
118
- [NX Daemon Server] - 2026-09-05T15:05:38.563Z - [REQUEST]: Responding to the client. project-graph
119
- [NX Daemon Server] - 2026-09-05T15:05:38.564Z - Time taken for 'total for creating and serializing project graph' 0.7055999971926212ms
120
- [NX Daemon Server] - 2026-09-05T15:05:38.564Z - Done responding to the client project-graph
121
- [NX Daemon Server] - 2026-09-05T15:05:38.564Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
122
- [NX Daemon Server] - 2026-09-05T15:05:38.699Z - [REQUEST]: Responding to the client. handleHashTasks
123
- [NX Daemon Server] - 2026-09-05T15:05:38.700Z - Done responding to the client handleHashTasks
124
- [NX Daemon Server] - 2026-09-05T15:05:38.700Z - Handled HASH_TASKS. Handling time: 1. Response time: 1.
125
- [NX Daemon Server] - 2026-09-05T15:05:38.725Z - Closed a connection. Number of open connections: 0
126
- [NX Daemon Server] - 2026-09-05T15:22:52.169Z - [WATCHER]: Processing file changes in outputs
127
- [NX Daemon Server] - 2026-09-05T15:22:52.228Z - [WATCHER]: Processing file changes in outputs
128
- [NX Daemon Server] - 2026-09-05T15:31:58.476Z - Established a connection. Number of open connections: 1
129
- [NX Daemon Server] - 2026-09-05T15:31:58.477Z - Closed a connection. Number of open connections: 0
130
- [NX Daemon Server] - 2026-09-05T15:31:58.478Z - Established a connection. Number of open connections: 1
131
- [NX Daemon Server] - 2026-09-05T15:31:58.482Z - [REQUEST]: Client Request for Project Graph Received
132
- [NX Daemon Server] - 2026-09-05T15:31:58.483Z - [REQUEST]: Responding to the client. project-graph
133
- [NX Daemon Server] - 2026-09-05T15:31:58.483Z - Time taken for 'total for creating and serializing project graph' 0.7994000017642975ms
134
- [NX Daemon Server] - 2026-09-05T15:31:58.483Z - Done responding to the client project-graph
135
- [NX Daemon Server] - 2026-09-05T15:31:58.483Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
136
- [NX Daemon Server] - 2026-09-05T15:31:58.594Z - [REQUEST]: Responding to the client. handleHashTasks
137
- [NX Daemon Server] - 2026-09-05T15:31:58.594Z - Done responding to the client handleHashTasks
138
- [NX Daemon Server] - 2026-09-05T15:31:58.595Z - Handled HASH_TASKS. Handling time: 2. Response time: 1.
139
- [NX Daemon Server] - 2026-09-05T15:31:58.619Z - Closed a connection. Number of open connections: 0
140
- [NX Daemon Server] - 2026-09-05T21:12:15.474Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (sources)
141
- [NX Daemon Server] - 2026-09-05T21:12:15.474Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (outputs)
142
- [NX Daemon Server] - 2026-09-05T21:12:15.545Z - Server stopped because: "10800000ms of inactivity"
143
- [NX Daemon Server] - 2026-09-11T03:23:46.397Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
144
- [NX Daemon Server] - 2026-09-11T03:23:46.404Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
145
- [NX Daemon Server] - 2026-09-11T03:23:46.414Z - Established a connection. Number of open connections: 1
146
- [NX Daemon Server] - 2026-09-11T03:23:46.420Z - Closed a connection. Number of open connections: 0
147
- [NX Daemon Server] - 2026-09-11T03:23:46.420Z - Established a connection. Number of open connections: 1
148
- [NX Daemon Server] - 2026-09-11T03:23:46.423Z - [REQUEST]: Client Request for Project Graph Received
149
- [NX Daemon Server] - 2026-09-11T03:23:47.370Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
150
- [NX Daemon Server] - 2026-09-11T03:23:47.370Z - [REQUEST]:
151
- [NX Daemon Server] - 2026-09-11T03:23:47.370Z - [REQUEST]:
152
- [NX Daemon Server] - 2026-09-11T03:23:47.383Z - Time taken for 'loadNxPlugins' 943.9000000000001ms
153
- [NX Daemon Server] - 2026-09-11T03:23:47.451Z - Time taken for 'build-project-configs' 55.348900000000185ms
154
- [NX Daemon Server] - 2026-09-11T03:23:47.458Z - [SYNC]: collect registered sync generators
155
- [NX Daemon Server] - 2026-09-11T03:23:47.459Z - [REQUEST]: Responding to the client. project-graph
156
- [NX Daemon Server] - 2026-09-11T03:23:47.459Z - Time taken for 'total for creating and serializing project graph' 1035.8108000000002ms
157
- [NX Daemon Server] - 2026-09-11T03:23:47.459Z - Done responding to the client project-graph
158
- [NX Daemon Server] - 2026-09-11T03:23:47.459Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1036. Response time: 0.
159
- [NX Daemon Server] - 2026-09-11T03:23:48.096Z - [REQUEST]: Responding to the client. handleHashTasks
160
- [NX Daemon Server] - 2026-09-11T03:23:48.096Z - Done responding to the client handleHashTasks
161
- [NX Daemon Server] - 2026-09-11T03:23:48.097Z - Handled HASH_TASKS. Handling time: 4. Response time: 1.
162
- [NX Daemon Server] - 2026-09-11T03:23:48.114Z - Closed a connection. Number of open connections: 0
163
- [NX Daemon Server] - 2026-09-11T03:34:18.333Z - Established a connection. Number of open connections: 1
164
- [NX Daemon Server] - 2026-09-11T03:34:18.333Z - Closed a connection. Number of open connections: 0
165
- [NX Daemon Server] - 2026-09-11T03:34:18.334Z - Established a connection. Number of open connections: 1
166
- [NX Daemon Server] - 2026-09-11T03:34:18.337Z - [REQUEST]: Client Request for Project Graph Received
167
- [NX Daemon Server] - 2026-09-11T03:34:18.338Z - [REQUEST]: Responding to the client. project-graph
168
- [NX Daemon Server] - 2026-09-11T03:34:18.338Z - Time taken for 'total for creating and serializing project graph' 0.6790000000037253ms
169
- [NX Daemon Server] - 2026-09-11T03:34:18.339Z - Done responding to the client project-graph
170
- [NX Daemon Server] - 2026-09-11T03:34:18.339Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
171
- [NX Daemon Server] - 2026-09-11T03:34:18.401Z - [REQUEST]: Responding to the client. handleHashTasks
172
- [NX Daemon Server] - 2026-09-11T03:34:18.401Z - Done responding to the client handleHashTasks
173
- [NX Daemon Server] - 2026-09-11T03:34:18.401Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
174
- [NX Daemon Server] - 2026-09-11T03:34:18.412Z - Closed a connection. Number of open connections: 0
175
- [NX Daemon Server] - 2026-09-11T03:42:32.038Z - [WATCHER]: Processing file changes in outputs
176
- [NX Daemon Server] - 2026-09-11T03:42:32.092Z - [WATCHER]: tsconfig.json was modified
177
- [NX Daemon Server] - 2026-09-11T03:42:32.093Z - [WATCHER]: Processing file changes in outputs
178
- [NX Daemon Server] - 2026-09-11T03:42:32.197Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
179
- [NX Daemon Server] - 2026-09-11T03:42:32.197Z - [REQUEST]: tsconfig.json
180
- [NX Daemon Server] - 2026-09-11T03:42:32.197Z - [REQUEST]:
181
- [NX Daemon Server] - 2026-09-11T03:42:32.200Z - Time taken for 'hash changed files from watcher' 1.1243999998550862ms
182
- [NX Daemon Server] - 2026-09-11T03:42:32.206Z - Time taken for 'build-project-configs' 5.34250000002794ms
183
- [NX Daemon Server] - 2026-09-11T03:42:32.211Z - [SYNC]: collect registered sync generators
184
- [NX Daemon Server] - 2026-09-11T03:42:32.212Z - [SYNC]: project graph hash is the same, not collecting task sync generators
185
- [NX Daemon Server] - 2026-09-11T03:42:32.212Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
186
- [NX Daemon Server] - 2026-09-11T03:42:32.212Z - Time taken for 'total execution time for createProjectGraph()' 4.654500000178814ms
187
- [NX Daemon Server] - 2026-09-11T03:42:39.288Z - [WATCHER]: Processing file changes in outputs
188
- [NX Daemon Server] - 2026-09-11T03:42:39.321Z - [WATCHER]: tsconfig.json was modified
189
- [NX Daemon Server] - 2026-09-11T03:42:39.538Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
190
- [NX Daemon Server] - 2026-09-11T03:42:39.538Z - [REQUEST]: tsconfig.json
191
- [NX Daemon Server] - 2026-09-11T03:42:39.538Z - [REQUEST]:
192
- [NX Daemon Server] - 2026-09-11T03:42:39.541Z - Time taken for 'hash changed files from watcher' 0.943900000071153ms
193
- [NX Daemon Server] - 2026-09-11T03:42:39.545Z - Time taken for 'build-project-configs' 3.4995000001508743ms
194
- [NX Daemon Server] - 2026-09-11T03:42:39.549Z - [SYNC]: collect registered sync generators
195
- [NX Daemon Server] - 2026-09-11T03:42:39.550Z - [SYNC]: project graph hash is the same, not collecting task sync generators
196
- [NX Daemon Server] - 2026-09-11T03:42:39.550Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
197
- [NX Daemon Server] - 2026-09-11T03:42:39.550Z - Time taken for 'total execution time for createProjectGraph()' 3.531500000040978ms
198
- [NX Daemon Server] - 2026-09-11T03:42:43.066Z - [WATCHER]: Processing file changes in outputs
199
- [NX Daemon Server] - 2026-09-11T03:42:43.264Z - [WATCHER]: Processing file changes in outputs
200
- [NX Daemon Server] - 2026-09-11T03:42:43.435Z - [WATCHER]: Processing file changes in outputs
201
- [NX Daemon Server] - 2026-09-11T03:42:43.583Z - [WATCHER]: Processing file changes in outputs
202
- [NX Daemon Server] - 2026-09-11T03:42:43.668Z - [WATCHER]: Processing file changes in outputs
203
- [NX Daemon Server] - 2026-09-11T03:42:43.826Z - [WATCHER]: Processing file changes in outputs
204
- [NX Daemon Server] - 2026-09-11T03:42:43.968Z - [WATCHER]: Processing file changes in outputs
205
- [NX Daemon Server] - 2026-09-11T03:42:44.118Z - [WATCHER]: Processing file changes in outputs
206
- [NX Daemon Server] - 2026-09-11T03:42:44.252Z - [WATCHER]: Processing file changes in outputs
207
- [NX Daemon Server] - 2026-09-11T03:42:44.326Z - [WATCHER]: Processing file changes in outputs
208
- [NX Daemon Server] - 2026-09-11T03:42:44.483Z - [WATCHER]: Processing file changes in outputs
209
- [NX Daemon Server] - 2026-09-11T03:42:44.619Z - [WATCHER]: Processing file changes in outputs
210
- [NX Daemon Server] - 2026-09-11T03:42:44.750Z - [WATCHER]: Processing file changes in outputs
211
- [NX Daemon Server] - 2026-09-11T03:42:44.884Z - [WATCHER]: Processing file changes in outputs
212
- [NX Daemon Server] - 2026-09-11T03:42:44.951Z - [WATCHER]: Processing file changes in outputs
213
- [NX Daemon Server] - 2026-09-11T03:42:45.098Z - [WATCHER]: Processing file changes in outputs
214
- [NX Daemon Server] - 2026-09-11T03:42:45.246Z - [WATCHER]: Processing file changes in outputs
215
- [NX Daemon Server] - 2026-09-11T03:42:45.395Z - [WATCHER]: Processing file changes in outputs
216
- [NX Daemon Server] - 2026-09-11T03:42:45.527Z - [WATCHER]: Processing file changes in outputs
217
- [NX Daemon Server] - 2026-09-11T03:42:45.652Z - [WATCHER]: Processing file changes in outputs
218
- [NX Daemon Server] - 2026-09-11T03:44:19.674Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
219
- [NX Daemon Server] - 2026-09-11T03:44:19.675Z - [WATCHER]: Processing file changes in outputs
220
- [NX Daemon Server] - 2026-09-11T03:44:20.077Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
221
- [NX Daemon Server] - 2026-09-11T03:44:20.078Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
222
- [NX Daemon Server] - 2026-09-11T03:44:20.078Z - [REQUEST]:
223
- [NX Daemon Server] - 2026-09-11T03:44:20.080Z - Time taken for 'hash changed files from watcher' 0.4146000000182539ms
224
- [NX Daemon Server] - 2026-09-11T03:44:20.083Z - Time taken for 'build-project-configs' 3.162000000011176ms
225
- [NX Daemon Server] - 2026-09-11T03:44:20.087Z - [SYNC]: collect registered sync generators
226
- [NX Daemon Server] - 2026-09-11T03:44:20.088Z - [SYNC]: project graph hash is the same, not collecting task sync generators
227
- [NX Daemon Server] - 2026-09-11T03:44:20.088Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
228
- [NX Daemon Server] - 2026-09-11T03:44:20.088Z - Time taken for 'total execution time for createProjectGraph()' 2.502600000007078ms
229
- [NX Daemon Server] - 2026-09-11T03:44:27.306Z - [WATCHER]: Processing file changes in outputs
230
- [NX Daemon Server] - 2026-09-11T03:44:27.307Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
231
- [NX Daemon Server] - 2026-09-11T03:44:28.110Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
232
- [NX Daemon Server] - 2026-09-11T03:44:28.110Z - [REQUEST]: shared/testing/support/actions/fillCredentials/mobile.action.ts
233
- [NX Daemon Server] - 2026-09-11T03:44:28.110Z - [REQUEST]:
234
- [NX Daemon Server] - 2026-09-11T03:44:28.113Z - Time taken for 'hash changed files from watcher' 0.267299999948591ms
235
- [NX Daemon Server] - 2026-09-11T03:44:28.116Z - Time taken for 'build-project-configs' 2.884499999927357ms
236
- [NX Daemon Server] - 2026-09-11T03:44:28.121Z - [SYNC]: collect registered sync generators
237
- [NX Daemon Server] - 2026-09-11T03:44:28.122Z - [SYNC]: project graph hash is the same, not collecting task sync generators
238
- [NX Daemon Server] - 2026-09-11T03:44:28.122Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
239
- [NX Daemon Server] - 2026-09-11T03:44:28.122Z - Time taken for 'total execution time for createProjectGraph()' 2.5893000001087785ms
240
- [NX Daemon Server] - 2026-09-11T03:44:32.553Z - [WATCHER]: shared/testing/support/steps/verifyPlaygroundState/web.step.ts was modified
241
- [NX Daemon Server] - 2026-09-11T03:44:32.554Z - [WATCHER]: Processing file changes in outputs
242
- [NX Daemon Server] - 2026-09-11T03:44:34.162Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
243
- [NX Daemon Server] - 2026-09-11T03:44:34.162Z - [REQUEST]: shared/testing/support/steps/verifyPlaygroundState/web.step.ts
244
- [NX Daemon Server] - 2026-09-11T03:44:34.162Z - [REQUEST]:
245
- [NX Daemon Server] - 2026-09-11T03:44:34.163Z - Time taken for 'hash changed files from watcher' 0.3253000001423061ms
246
- [NX Daemon Server] - 2026-09-11T03:44:34.166Z - Time taken for 'build-project-configs' 1.951399999903515ms
247
- [NX Daemon Server] - 2026-09-11T03:44:34.170Z - [SYNC]: collect registered sync generators
248
- [NX Daemon Server] - 2026-09-11T03:44:34.171Z - [SYNC]: project graph hash is the same, not collecting task sync generators
249
- [NX Daemon Server] - 2026-09-11T03:44:34.171Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
250
- [NX Daemon Server] - 2026-09-11T03:44:34.171Z - Time taken for 'total execution time for createProjectGraph()' 2.0679999999701977ms
251
- [NX Daemon Server] - 2026-09-11T03:44:37.688Z - [WATCHER]: shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts was modified
252
- [NX Daemon Server] - 2026-09-11T03:44:37.688Z - [WATCHER]: Processing file changes in outputs
253
- [NX Daemon Server] - 2026-09-11T03:44:40.905Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
254
- [NX Daemon Server] - 2026-09-11T03:44:40.906Z - [REQUEST]: shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts
255
- [NX Daemon Server] - 2026-09-11T03:44:40.906Z - [REQUEST]:
256
- [NX Daemon Server] - 2026-09-11T03:44:40.911Z - Time taken for 'hash changed files from watcher' 0.44680000003427267ms
257
- [NX Daemon Server] - 2026-09-11T03:44:40.914Z - Time taken for 'build-project-configs' 3.6173000000417233ms
258
- [NX Daemon Server] - 2026-09-11T03:44:40.919Z - [SYNC]: collect registered sync generators
259
- [NX Daemon Server] - 2026-09-11T03:44:40.920Z - [SYNC]: project graph hash is the same, not collecting task sync generators
260
- [NX Daemon Server] - 2026-09-11T03:44:40.920Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
261
- [NX Daemon Server] - 2026-09-11T03:44:40.920Z - Time taken for 'total execution time for createProjectGraph()' 2.884099999908358ms
262
- [NX Daemon Server] - 2026-09-11T03:44:42.119Z - [WATCHER]: Processing file changes in outputs
263
- [NX Daemon Server] - 2026-09-11T03:44:42.120Z - [WATCHER]: shared/testing/support/steps/togglePlaygroundStates/web.step.ts was modified
264
- [NX Daemon Server] - 2026-09-11T03:44:46.605Z - [WATCHER]: Processing file changes in outputs
265
- [NX Daemon Server] - 2026-09-11T03:44:46.605Z - [WATCHER]: shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts was modified
266
- [NX Daemon Server] - 2026-09-11T03:44:48.535Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
267
- [NX Daemon Server] - 2026-09-11T03:44:48.535Z - [REQUEST]: shared/testing/support/steps/togglePlaygroundStates/web.step.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts
268
- [NX Daemon Server] - 2026-09-11T03:44:48.535Z - [REQUEST]:
269
- [NX Daemon Server] - 2026-09-11T03:44:48.537Z - Time taken for 'hash changed files from watcher' 0.5150000001303852ms
270
- [NX Daemon Server] - 2026-09-11T03:44:48.541Z - Time taken for 'build-project-configs' 2.3126000000629574ms
271
- [NX Daemon Server] - 2026-09-11T03:44:48.546Z - [SYNC]: collect registered sync generators
272
- [NX Daemon Server] - 2026-09-11T03:44:48.546Z - [SYNC]: project graph hash is the same, not collecting task sync generators
273
- [NX Daemon Server] - 2026-09-11T03:44:48.547Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
274
- [NX Daemon Server] - 2026-09-11T03:44:48.547Z - Time taken for 'total execution time for createProjectGraph()' 2.990100000053644ms
275
- [NX Daemon Server] - 2026-09-11T03:48:52.449Z - Established a connection. Number of open connections: 1
276
- [NX Daemon Server] - 2026-09-11T03:48:52.450Z - Closed a connection. Number of open connections: 0
277
- [NX Daemon Server] - 2026-09-11T03:48:52.451Z - Established a connection. Number of open connections: 1
278
- [NX Daemon Server] - 2026-09-11T03:48:52.455Z - [REQUEST]: Client Request for Project Graph Received
279
- [NX Daemon Server] - 2026-09-11T03:48:52.456Z - [REQUEST]: Responding to the client. project-graph
280
- [NX Daemon Server] - 2026-09-11T03:48:52.456Z - Time taken for 'total for creating and serializing project graph' 0.5239999999757856ms
281
- [NX Daemon Server] - 2026-09-11T03:48:52.456Z - Done responding to the client project-graph
282
- [NX Daemon Server] - 2026-09-11T03:48:52.456Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
283
- [NX Daemon Server] - 2026-09-11T03:48:52.509Z - [REQUEST]: Responding to the client. handleHashTasks
284
- [NX Daemon Server] - 2026-09-11T03:48:52.509Z - Done responding to the client handleHashTasks
285
- [NX Daemon Server] - 2026-09-11T03:48:52.509Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
286
- [NX Daemon Server] - 2026-09-11T03:48:52.520Z - Closed a connection. Number of open connections: 0
287
- [NX Daemon Server] - 2026-09-11T03:49:22.689Z - [WATCHER]: _tmp_4288_4f0e88df734a26030b39f1ad42b040bf was deleted
288
- [NX Daemon Server] - 2026-09-11T03:49:22.689Z - [WATCHER]: Processing file changes in outputs
289
- [NX Daemon Server] - 2026-09-11T03:49:22.799Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
290
- [NX Daemon Server] - 2026-09-11T03:49:22.799Z - [REQUEST]:
291
- [NX Daemon Server] - 2026-09-11T03:49:22.799Z - [REQUEST]: _tmp_4288_4f0e88df734a26030b39f1ad42b040bf
292
- [NX Daemon Server] - 2026-09-11T03:49:22.801Z - Time taken for 'hash changed files from watcher' 0.25260000000707805ms
293
- [NX Daemon Server] - 2026-09-11T03:49:22.805Z - Time taken for 'build-project-configs' 2.8660000001545995ms
294
- [NX Daemon Server] - 2026-09-11T03:49:22.809Z - [SYNC]: collect registered sync generators
295
- [NX Daemon Server] - 2026-09-11T03:49:22.810Z - [SYNC]: project graph hash is the same, not collecting task sync generators
296
- [NX Daemon Server] - 2026-09-11T03:49:22.810Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
297
- [NX Daemon Server] - 2026-09-11T03:49:22.810Z - Time taken for 'total execution time for createProjectGraph()' 2.5722999998833984ms
298
- [NX Daemon Server] - 2026-09-11T03:49:29.415Z - [WATCHER]: _tmp_11632_acb7d9fd3ee3ab6222adca2054ccd01d was deleted
299
- [NX Daemon Server] - 2026-09-11T03:49:29.416Z - [WATCHER]: Processing file changes in outputs
300
- [NX Daemon Server] - 2026-09-11T03:49:29.626Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
301
- [NX Daemon Server] - 2026-09-11T03:49:29.626Z - [REQUEST]:
302
- [NX Daemon Server] - 2026-09-11T03:49:29.626Z - [REQUEST]: _tmp_11632_acb7d9fd3ee3ab6222adca2054ccd01d
303
- [NX Daemon Server] - 2026-09-11T03:49:29.629Z - Time taken for 'hash changed files from watcher' 0.28890000004321337ms
304
- [NX Daemon Server] - 2026-09-11T03:49:29.634Z - Time taken for 'build-project-configs' 3.072999999858439ms
305
- [NX Daemon Server] - 2026-09-11T03:49:29.639Z - [SYNC]: collect registered sync generators
306
- [NX Daemon Server] - 2026-09-11T03:49:29.640Z - [SYNC]: project graph hash is the same, not collecting task sync generators
307
- [NX Daemon Server] - 2026-09-11T03:49:29.640Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
308
- [NX Daemon Server] - 2026-09-11T03:49:29.640Z - Time taken for 'total execution time for createProjectGraph()' 3.9649999998509884ms
309
- [NX Daemon Server] - 2026-09-11T03:49:58.939Z - [WATCHER]: Processing file changes in outputs
310
- [NX Daemon Server] - 2026-09-11T03:49:58.939Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (sources)
311
- [NX Daemon Server] - 2026-09-11T03:49:58.939Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (outputs)
312
- [NX Daemon Server] - 2026-09-11T03:49:58.946Z - Server stopped because: "LOCK_FILES_CHANGED"
313
- [NX Daemon Server] - 2026-09-11T04:00:47.579Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
314
- [NX Daemon Server] - 2026-09-11T04:00:47.587Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
315
- [NX Daemon Server] - 2026-09-11T04:00:47.592Z - Established a connection. Number of open connections: 1
316
- [NX Daemon Server] - 2026-09-11T04:00:47.598Z - Closed a connection. Number of open connections: 0
317
- [NX Daemon Server] - 2026-09-11T04:00:47.598Z - Established a connection. Number of open connections: 1
318
- [NX Daemon Server] - 2026-09-11T04:00:47.600Z - [REQUEST]: Client Request for Project Graph Received
319
- [NX Daemon Server] - 2026-09-11T04:00:48.239Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
320
- [NX Daemon Server] - 2026-09-11T04:00:48.239Z - [REQUEST]:
321
- [NX Daemon Server] - 2026-09-11T04:00:48.239Z - [REQUEST]:
322
- [NX Daemon Server] - 2026-09-11T04:00:48.250Z - Time taken for 'loadNxPlugins' 636.4875999999999ms
323
- [NX Daemon Server] - 2026-09-11T04:00:48.487Z - Time taken for 'build-project-configs' 193.28230000000008ms
324
- [NX Daemon Server] - 2026-09-11T04:00:48.525Z - [SYNC]: collect registered sync generators
325
- [NX Daemon Server] - 2026-09-11T04:00:48.527Z - [REQUEST]: Responding to the client. project-graph
326
- [NX Daemon Server] - 2026-09-11T04:00:48.528Z - Time taken for 'total for creating and serializing project graph' 926.4051ms
327
- [NX Daemon Server] - 2026-09-11T04:00:48.530Z - Done responding to the client project-graph
328
- [NX Daemon Server] - 2026-09-11T04:00:48.530Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 927. Response time: 3.
329
- [NX Daemon Server] - 2026-09-11T04:00:48.622Z - [REQUEST]: Responding to the client. handleHashTasks
330
- [NX Daemon Server] - 2026-09-11T04:00:48.623Z - Done responding to the client handleHashTasks
331
- [NX Daemon Server] - 2026-09-11T04:00:48.623Z - Handled HASH_TASKS. Handling time: 14. Response time: 1.
332
- [NX Daemon Server] - 2026-09-11T04:00:49.961Z - Closed a connection. Number of open connections: 0
333
- [NX Daemon Server] - 2026-09-11T04:01:28.828Z - [WATCHER]: Processing file changes in outputs
334
- [NX Daemon Server] - 2026-09-11T04:01:28.885Z - [WATCHER]: tsconfig.json was modified
335
- [NX Daemon Server] - 2026-09-11T04:01:28.885Z - [WATCHER]: Processing file changes in outputs
336
- [NX Daemon Server] - 2026-09-11T04:01:28.991Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
337
- [NX Daemon Server] - 2026-09-11T04:01:28.991Z - [REQUEST]: tsconfig.json
338
- [NX Daemon Server] - 2026-09-11T04:01:28.991Z - [REQUEST]:
339
- [NX Daemon Server] - 2026-09-11T04:01:28.993Z - Time taken for 'hash changed files from watcher' 0.9003999999986263ms
340
- [NX Daemon Server] - 2026-09-11T04:01:29.010Z - Time taken for 'build-project-configs' 13.248699999996461ms
341
- [NX Daemon Server] - 2026-09-11T04:01:29.032Z - [SYNC]: collect registered sync generators
342
- [NX Daemon Server] - 2026-09-11T04:01:29.033Z - [SYNC]: project graph hash is the same, not collecting task sync generators
343
- [NX Daemon Server] - 2026-09-11T04:01:29.033Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
344
- [NX Daemon Server] - 2026-09-11T04:01:29.033Z - Time taken for 'total execution time for createProjectGraph()' 18.436700000005658ms
345
- [NX Daemon Server] - 2026-09-11T04:01:38.574Z - [WATCHER]: Processing file changes in outputs
346
- [NX Daemon Server] - 2026-09-11T04:01:38.626Z - [WATCHER]: tsconfig.json was modified
347
- [NX Daemon Server] - 2026-09-11T04:01:38.626Z - [WATCHER]: Processing file changes in outputs
348
- [NX Daemon Server] - 2026-09-11T04:01:38.837Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
349
- [NX Daemon Server] - 2026-09-11T04:01:38.837Z - [REQUEST]: tsconfig.json
350
- [NX Daemon Server] - 2026-09-11T04:01:38.837Z - [REQUEST]:
351
- [NX Daemon Server] - 2026-09-11T04:01:38.839Z - Time taken for 'hash changed files from watcher' 0.9093999999968219ms
352
- [NX Daemon Server] - 2026-09-11T04:01:38.850Z - Time taken for 'build-project-configs' 9.230799999997544ms
353
- [NX Daemon Server] - 2026-09-11T04:01:38.871Z - [SYNC]: collect registered sync generators
354
- [NX Daemon Server] - 2026-09-11T04:01:38.872Z - [SYNC]: project graph hash is the same, not collecting task sync generators
355
- [NX Daemon Server] - 2026-09-11T04:01:38.872Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
356
- [NX Daemon Server] - 2026-09-11T04:01:38.873Z - Time taken for 'total execution time for createProjectGraph()' 16.900399999998626ms
357
- [NX Daemon Server] - 2026-09-11T04:01:44.523Z - [WATCHER]: Processing file changes in outputs
358
- [NX Daemon Server] - 2026-09-11T04:01:45.012Z - [WATCHER]: Processing file changes in outputs
359
- [NX Daemon Server] - 2026-09-11T04:01:45.361Z - [WATCHER]: Processing file changes in outputs
360
- [NX Daemon Server] - 2026-09-11T04:01:45.649Z - [WATCHER]: Processing file changes in outputs
361
- [NX Daemon Server] - 2026-09-11T04:01:45.792Z - [WATCHER]: Processing file changes in outputs
362
- [NX Daemon Server] - 2026-09-11T04:01:46.050Z - [WATCHER]: Processing file changes in outputs
363
- [NX Daemon Server] - 2026-09-11T04:01:46.376Z - [WATCHER]: Processing file changes in outputs
364
- [NX Daemon Server] - 2026-09-11T04:01:46.599Z - [WATCHER]: Processing file changes in outputs
365
- [NX Daemon Server] - 2026-09-11T04:01:46.801Z - [WATCHER]: Processing file changes in outputs
366
- [NX Daemon Server] - 2026-09-11T04:01:46.916Z - [WATCHER]: Processing file changes in outputs
367
- [NX Daemon Server] - 2026-09-11T04:01:47.143Z - [WATCHER]: Processing file changes in outputs
368
- [NX Daemon Server] - 2026-09-11T04:01:47.351Z - [WATCHER]: Processing file changes in outputs
369
- [NX Daemon Server] - 2026-09-11T04:01:47.551Z - [WATCHER]: Processing file changes in outputs
370
- [NX Daemon Server] - 2026-09-11T04:01:47.749Z - [WATCHER]: Processing file changes in outputs
371
- [NX Daemon Server] - 2026-09-11T04:01:47.844Z - [WATCHER]: Processing file changes in outputs
372
- [NX Daemon Server] - 2026-09-11T04:01:48.029Z - [WATCHER]: Processing file changes in outputs
373
- [NX Daemon Server] - 2026-09-11T04:01:48.188Z - [WATCHER]: Processing file changes in outputs
374
- [NX Daemon Server] - 2026-09-11T04:01:48.348Z - [WATCHER]: Processing file changes in outputs
375
- [NX Daemon Server] - 2026-09-11T04:01:48.507Z - [WATCHER]: Processing file changes in outputs
376
- [NX Daemon Server] - 2026-09-11T04:01:48.603Z - [WATCHER]: Processing file changes in outputs
377
- [NX Daemon Server] - 2026-09-11T04:02:40.695Z - [WATCHER]: 0 file(s) created or restored, 15 file(s) modified, 0 file(s) deleted
378
- [NX Daemon Server] - 2026-09-11T04:02:40.696Z - [WATCHER]: Processing file changes in outputs
379
- [NX Daemon Server] - 2026-09-11T04:02:41.101Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
380
- [NX Daemon Server] - 2026-09-11T04:02:41.101Z - [REQUEST]: shared/specs/Playground/TC-0001-form-controls/spec.md,shared/specs/Playground/hooks/before/web.hook.ts,shared/specs/Playground/hooks/beforeEach/web.hook.ts,shared/specs/Playground/hooks/after/mobile.hook.ts,shared/specs/Playground/hooks/afterEach/web.hook.ts,shared/specs/Playground/TC-0001-form-controls/web.test.ts,shared/specs/Playground/hooks/afterEach/mobile.hook.ts,shared/specs/Playground/hooks/beforeEach/mobile.hook.ts,shared/specs/Playground/hooks/after/web.hook.ts,shared/specs/Playground/hooks/before/mobile.hook.ts,shared/specs/Playground/TC-0002-toggle-elements/mobile.test.ts,shared/specs/Playground/TC-0002-toggle-elements/web.test.ts,shared/specs/Playground/TC-0002-toggle-elements/spec.md,shared/specs/Playground/TC-0001-form-controls/mobile.test.ts,shared/specs/Playground/suite.md
381
- [NX Daemon Server] - 2026-09-11T04:02:41.101Z - [REQUEST]:
382
- [NX Daemon Server] - 2026-09-11T04:02:41.103Z - Time taken for 'hash changed files from watcher' 1.4011000000027707ms
383
- [NX Daemon Server] - 2026-09-11T04:02:41.115Z - Time taken for 'build-project-configs' 9.002099999997881ms
384
- [NX Daemon Server] - 2026-09-11T04:02:41.131Z - [SYNC]: collect registered sync generators
385
- [NX Daemon Server] - 2026-09-11T04:02:41.132Z - [SYNC]: project graph hash is the same, not collecting task sync generators
386
- [NX Daemon Server] - 2026-09-11T04:02:41.132Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
387
- [NX Daemon Server] - 2026-09-11T04:02:41.132Z - Time taken for 'total execution time for createProjectGraph()' 13.522499999991851ms
388
- [NX Daemon Server] - 2026-09-11T04:03:24.774Z - [WATCHER]: Processing file changes in outputs
389
- [NX Daemon Server] - 2026-09-11T04:03:24.775Z - [WATCHER]: shared/specs/Playground/TC-0001-form-controls/mobile.test.ts was deleted
390
- [NX Daemon Server] - 2026-09-11T04:03:24.839Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 4 file(s) deleted
391
- [NX Daemon Server] - 2026-09-11T04:03:24.839Z - [WATCHER]: Processing file changes in outputs
392
- [NX Daemon Server] - 2026-09-11T04:03:24.892Z - [WATCHER]: Processing file changes in outputs
393
- [NX Daemon Server] - 2026-09-11T04:03:24.893Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 4 file(s) deleted
394
- [NX Daemon Server] - 2026-09-11T04:03:24.961Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 3 file(s) deleted
395
- [NX Daemon Server] - 2026-09-11T04:03:24.961Z - [WATCHER]: Processing file changes in outputs
396
- [NX Daemon Server] - 2026-09-11T04:03:25.031Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 3 file(s) deleted
397
- [NX Daemon Server] - 2026-09-11T04:03:25.032Z - [WATCHER]: Processing file changes in outputs
398
- [NX Daemon Server] - 2026-09-11T04:03:25.577Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
399
- [NX Daemon Server] - 2026-09-11T04:03:25.577Z - [REQUEST]:
400
- [NX Daemon Server] - 2026-09-11T04:03:25.577Z - [REQUEST]: shared/specs/Playground/TC-0001-form-controls/mobile.test.ts,shared/specs/Playground/TC-0002-toggle-elements/spec.md,shared/specs/Playground/TC-0002-toggle-elements/web.test.ts,shared/specs/Playground/TC-0001-form-controls/web.test.ts,shared/specs/Playground/TC-0002-toggle-elements/mobile.test.ts,shared/specs/Playground/TC-0001-form-controls/spec.md,shared/specs/Playground/hooks/after/mobile.hook.ts,shared/specs/Playground/hooks/afterEach/mobile.hook.ts,shared/specs/Playground/hooks/after/web.hook.ts,shared/specs/Playground/hooks/before/mobile.hook.ts,shared/specs/Playground/hooks/before/web.hook.ts,shared/specs/Playground/hooks/afterEach/web.hook.ts,shared/specs/Playground/hooks/beforeEach/web.hook.ts,shared/specs/Playground/suite.md,shared/specs/Playground/hooks/beforeEach/mobile.hook.ts
401
- [NX Daemon Server] - 2026-09-11T04:03:25.579Z - Time taken for 'hash changed files from watcher' 0.3090000000083819ms
402
- [NX Daemon Server] - 2026-09-11T04:03:25.590Z - Time taken for 'build-project-configs' 8.086300000024494ms
403
- [NX Daemon Server] - 2026-09-11T04:03:25.607Z - [SYNC]: collect registered sync generators
404
- [NX Daemon Server] - 2026-09-11T04:03:25.607Z - [SYNC]: project graph hash is the same, not collecting task sync generators
405
- [NX Daemon Server] - 2026-09-11T04:03:25.607Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
406
- [NX Daemon Server] - 2026-09-11T04:03:25.608Z - Time taken for 'total execution time for createProjectGraph()' 13.114800000010291ms
407
- [NX Daemon Server] - 2026-09-11T04:03:41.720Z - [WATCHER]: shared/specs was deleted
408
- [NX Daemon Server] - 2026-09-11T04:03:41.720Z - [WATCHER]: Processing file changes in outputs
409
- [NX Daemon Server] - 2026-09-11T04:03:43.331Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
410
- [NX Daemon Server] - 2026-09-11T04:03:43.331Z - [REQUEST]:
411
- [NX Daemon Server] - 2026-09-11T04:03:43.331Z - [REQUEST]: shared/specs
412
- [NX Daemon Server] - 2026-09-11T04:03:43.333Z - Time taken for 'hash changed files from watcher' 0.14650000000256114ms
413
- [NX Daemon Server] - 2026-09-11T04:03:43.343Z - Time taken for 'build-project-configs' 8.20449999999255ms
414
- [NX Daemon Server] - 2026-09-11T04:03:43.359Z - [SYNC]: collect registered sync generators
415
- [NX Daemon Server] - 2026-09-11T04:03:43.359Z - [SYNC]: project graph hash is the same, not collecting task sync generators
416
- [NX Daemon Server] - 2026-09-11T04:03:43.360Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
417
- [NX Daemon Server] - 2026-09-11T04:03:43.360Z - Time taken for 'total execution time for createProjectGraph()' 12.431899999995949ms
418
- [NX Daemon Server] - 2026-09-11T04:04:01.292Z - [WATCHER]: Processing file changes in outputs
419
- [NX Daemon Server] - 2026-09-11T04:04:01.293Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
420
- [NX Daemon Server] - 2026-09-11T04:04:04.476Z - [WATCHER]: Processing file changes in outputs
421
- [NX Daemon Server] - 2026-09-11T04:04:04.477Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
422
- [NX Daemon Server] - 2026-09-11T04:04:04.498Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
423
- [NX Daemon Server] - 2026-09-11T04:04:04.498Z - [REQUEST]: shared/testing/support/actions/fillCredentials/mobile.action.ts
424
- [NX Daemon Server] - 2026-09-11T04:04:04.498Z - [REQUEST]:
425
- [NX Daemon Server] - 2026-09-11T04:04:04.500Z - Time taken for 'hash changed files from watcher' 0.4205999999830965ms
426
- [NX Daemon Server] - 2026-09-11T04:04:04.510Z - Time taken for 'build-project-configs' 8.677700000000186ms
427
- [NX Daemon Server] - 2026-09-11T04:04:04.531Z - [SYNC]: collect registered sync generators
428
- [NX Daemon Server] - 2026-09-11T04:04:04.532Z - [SYNC]: project graph hash is the same, not collecting task sync generators
429
- [NX Daemon Server] - 2026-09-11T04:04:04.532Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
430
- [NX Daemon Server] - 2026-09-11T04:04:04.532Z - Time taken for 'total execution time for createProjectGraph()' 15.611600000003818ms
431
- [NX Daemon Server] - 2026-09-11T04:04:06.825Z - [WATCHER]: Processing file changes in outputs
432
- [NX Daemon Server] - 2026-09-11T04:04:06.826Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
433
- [NX Daemon Server] - 2026-09-11T04:04:13.240Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
434
- [NX Daemon Server] - 2026-09-11T04:04:13.240Z - [REQUEST]: shared/testing/support/actions/fillCredentials/mobile.action.ts
435
- [NX Daemon Server] - 2026-09-11T04:04:13.240Z - [REQUEST]:
436
- [NX Daemon Server] - 2026-09-11T04:04:13.242Z - Time taken for 'hash changed files from watcher' 0.33699999999953434ms
437
- [NX Daemon Server] - 2026-09-11T04:04:13.251Z - Time taken for 'build-project-configs' 7.694699999992736ms
438
- [NX Daemon Server] - 2026-09-11T04:04:13.266Z - [SYNC]: collect registered sync generators
439
- [NX Daemon Server] - 2026-09-11T04:04:13.266Z - [SYNC]: project graph hash is the same, not collecting task sync generators
440
- [NX Daemon Server] - 2026-09-11T04:04:13.266Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
441
- [NX Daemon Server] - 2026-09-11T04:04:13.267Z - Time taken for 'total execution time for createProjectGraph()' 11.48389999999199ms
442
- [NX Daemon Server] - 2026-09-11T04:04:32.999Z - [WATCHER]: Processing file changes in outputs
443
- [NX Daemon Server] - 2026-09-11T04:04:33.000Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
444
- [NX Daemon Server] - 2026-09-11T04:04:34.058Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
445
- [NX Daemon Server] - 2026-09-11T04:04:34.058Z - [WATCHER]: Processing file changes in outputs
446
- [NX Daemon Server] - 2026-09-11T04:04:39.405Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
447
- [NX Daemon Server] - 2026-09-11T04:04:39.405Z - [REQUEST]: shared/testing/support/actions/fillCredentials/mobile.action.ts
448
- [NX Daemon Server] - 2026-09-11T04:04:39.405Z - [REQUEST]:
449
- [NX Daemon Server] - 2026-09-11T04:04:39.407Z - Time taken for 'hash changed files from watcher' 0.3152000000118278ms
450
- [NX Daemon Server] - 2026-09-11T04:04:39.417Z - Time taken for 'build-project-configs' 9.000800000008894ms
451
- [NX Daemon Server] - 2026-09-11T04:04:39.434Z - [SYNC]: collect registered sync generators
452
- [NX Daemon Server] - 2026-09-11T04:04:39.435Z - [SYNC]: project graph hash is the same, not collecting task sync generators
453
- [NX Daemon Server] - 2026-09-11T04:04:39.435Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
454
- [NX Daemon Server] - 2026-09-11T04:04:39.436Z - Time taken for 'total execution time for createProjectGraph()' 12.138299999991432ms
455
- [NX Daemon Server] - 2026-09-11T04:19:12.943Z - [WATCHER]: Processing file changes in outputs
456
- [NX Daemon Server] - 2026-09-11T04:19:13.030Z - [WATCHER]: Processing file changes in outputs
457
- [NX Daemon Server] - 2026-09-11T04:19:13.075Z - [WATCHER]: tsconfig.json was modified
458
- [NX Daemon Server] - 2026-09-11T04:19:13.082Z - [WATCHER]: Processing file changes in outputs
459
- [NX Daemon Server] - 2026-09-11T04:19:19.501Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
460
- [NX Daemon Server] - 2026-09-11T04:19:19.502Z - [REQUEST]: tsconfig.json
461
- [NX Daemon Server] - 2026-09-11T04:19:19.502Z - [REQUEST]:
462
- [NX Daemon Server] - 2026-09-11T04:19:19.548Z - Time taken for 'hash changed files from watcher' 0.548600000096485ms
463
- [NX Daemon Server] - 2026-09-11T04:19:19.565Z - Time taken for 'build-project-configs' 22.59930000011809ms
464
- [NX Daemon Server] - 2026-09-11T04:19:19.608Z - [SYNC]: collect registered sync generators
465
- [NX Daemon Server] - 2026-09-11T04:19:19.609Z - [SYNC]: project graph hash is the same, not collecting task sync generators
466
- [NX Daemon Server] - 2026-09-11T04:19:19.610Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
467
- [NX Daemon Server] - 2026-09-11T04:19:19.610Z - Time taken for 'total execution time for createProjectGraph()' 37.982099999906495ms
468
- [NX Daemon Server] - 2026-09-11T04:20:18.102Z - [WATCHER]: Processing file changes in outputs
469
- [NX Daemon Server] - 2026-09-11T04:20:18.186Z - [WATCHER]: Processing file changes in outputs
470
- [NX Daemon Server] - 2026-09-11T04:20:18.252Z - [WATCHER]: Processing file changes in outputs
471
- [NX Daemon Server] - 2026-09-11T04:20:18.324Z - [WATCHER]: Processing file changes in outputs
472
- [NX Daemon Server] - 2026-09-11T04:20:18.362Z - [WATCHER]: tsconfig.json was modified
473
- [NX Daemon Server] - 2026-09-11T04:20:18.386Z - [WATCHER]: Processing file changes in outputs
474
- [NX Daemon Server] - 2026-09-11T04:20:24.851Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
475
- [NX Daemon Server] - 2026-09-11T04:20:24.933Z - [REQUEST]: tsconfig.json
476
- [NX Daemon Server] - 2026-09-11T04:20:24.933Z - [REQUEST]:
477
- [NX Daemon Server] - 2026-09-11T04:20:25.382Z - Time taken for 'hash changed files from watcher' 1.0115000000223517ms
478
- [NX Daemon Server] - 2026-09-11T04:20:26.855Z - Time taken for 'build-project-configs' 1375.2268000000622ms
479
- [NX Daemon Server] - 2026-09-11T04:20:27.101Z - [SYNC]: collect registered sync generators
480
- [NX Daemon Server] - 2026-09-11T04:20:27.102Z - [SYNC]: project graph hash is the same, not collecting task sync generators
481
- [NX Daemon Server] - 2026-09-11T04:20:27.105Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
482
- [NX Daemon Server] - 2026-09-11T04:20:27.105Z - Time taken for 'total execution time for createProjectGraph()' 345.90749999997206ms
483
- [NX Daemon Server] - 2026-09-11T07:35:13.722Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
484
- [NX Daemon Server] - 2026-09-11T07:35:13.730Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
485
- [NX Daemon Server] - 2026-09-11T07:35:13.734Z - Established a connection. Number of open connections: 1
486
- [NX Daemon Server] - 2026-09-11T07:35:13.746Z - Established a connection. Number of open connections: 2
487
- [NX Daemon Server] - 2026-09-11T07:35:13.751Z - Closed a connection. Number of open connections: 1
488
- [NX Daemon Server] - 2026-09-11T07:35:13.754Z - [REQUEST]: Client Request for Project Graph Received
489
- [NX Daemon Server] - 2026-09-11T07:35:14.888Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
490
- [NX Daemon Server] - 2026-09-11T07:35:14.889Z - [REQUEST]:
491
- [NX Daemon Server] - 2026-09-11T07:35:14.889Z - [REQUEST]:
492
- [NX Daemon Server] - 2026-09-11T07:35:14.907Z - Time taken for 'loadNxPlugins' 1130.557ms
493
- [NX Daemon Server] - 2026-09-11T07:35:15.038Z - Time taken for 'build-project-configs' 85.57529999999997ms
494
- [NX Daemon Server] - 2026-09-11T07:35:15.078Z - [SYNC]: collect registered sync generators
495
- [NX Daemon Server] - 2026-09-11T07:35:15.080Z - [REQUEST]: Responding to the client. project-graph
496
- [NX Daemon Server] - 2026-09-11T07:35:15.081Z - Time taken for 'total for creating and serializing project graph' 1325.8631ms
497
- [NX Daemon Server] - 2026-09-11T07:35:15.083Z - Done responding to the client project-graph
498
- [NX Daemon Server] - 2026-09-11T07:35:15.083Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1326. Response time: 3.
499
- [NX Daemon Server] - 2026-09-11T07:35:15.742Z - [REQUEST]: Responding to the client. handleHashTasks
500
- [NX Daemon Server] - 2026-09-11T07:35:15.742Z - Done responding to the client handleHashTasks
501
- [NX Daemon Server] - 2026-09-11T07:35:15.743Z - Handled HASH_TASKS. Handling time: 21. Response time: 1.
502
- [NX Daemon Server] - 2026-09-11T07:35:16.912Z - Closed a connection. Number of open connections: 0
503
- [NX Daemon Server] - 2026-09-11T07:47:29.211Z - [WATCHER]: Processing file changes in outputs
504
- [NX Daemon Server] - 2026-09-11T07:47:29.212Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (sources)
505
- [NX Daemon Server] - 2026-09-11T07:47:29.212Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (outputs)
506
- [NX Daemon Server] - 2026-09-11T07:47:29.215Z - Server stopped because: "LOCK_FILES_CHANGED"
507
- [NX Daemon Server] - 2026-09-11T08:12:18.599Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
508
- [NX Daemon Server] - 2026-09-11T08:12:18.605Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
509
- [NX Daemon Server] - 2026-09-11T08:12:18.611Z - Established a connection. Number of open connections: 1
510
- [NX Daemon Server] - 2026-09-11T08:12:18.617Z - Closed a connection. Number of open connections: 0
511
- [NX Daemon Server] - 2026-09-11T08:12:18.617Z - Established a connection. Number of open connections: 1
512
- [NX Daemon Server] - 2026-09-11T08:12:18.620Z - [REQUEST]: Client Request for Project Graph Received
513
- [NX Daemon Server] - 2026-09-11T08:12:19.083Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
514
- [NX Daemon Server] - 2026-09-11T08:12:19.083Z - [REQUEST]:
515
- [NX Daemon Server] - 2026-09-11T08:12:19.083Z - [REQUEST]:
516
- [NX Daemon Server] - 2026-09-11T08:12:19.093Z - Time taken for 'loadNxPlugins' 460.7704ms
517
- [NX Daemon Server] - 2026-09-11T08:12:19.278Z - Time taken for 'build-project-configs' 158.1014ms
518
- [NX Daemon Server] - 2026-09-11T08:12:19.310Z - [SYNC]: collect registered sync generators
519
- [NX Daemon Server] - 2026-09-11T08:12:19.312Z - [REQUEST]: Responding to the client. project-graph
520
- [NX Daemon Server] - 2026-09-11T08:12:19.313Z - Time taken for 'total for creating and serializing project graph' 691.8238000000001ms
521
- [NX Daemon Server] - 2026-09-11T08:12:19.315Z - Done responding to the client project-graph
522
- [NX Daemon Server] - 2026-09-11T08:12:19.315Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 693. Response time: 3.
523
- [NX Daemon Server] - 2026-09-11T08:12:19.376Z - [REQUEST]: Responding to the client. handleHashTasks
524
- [NX Daemon Server] - 2026-09-11T08:12:19.377Z - Done responding to the client handleHashTasks
525
- [NX Daemon Server] - 2026-09-11T08:12:19.377Z - Handled HASH_TASKS. Handling time: 7. Response time: 1.
526
- [NX Daemon Server] - 2026-09-11T08:12:20.235Z - Closed a connection. Number of open connections: 0
527
- [NX Daemon Server] - 2026-09-11T08:13:17.932Z - [WATCHER]: Processing file changes in outputs
528
- [NX Daemon Server] - 2026-09-11T08:13:17.989Z - [WATCHER]: tsconfig.json was modified
529
- [NX Daemon Server] - 2026-09-11T08:13:17.990Z - [WATCHER]: Processing file changes in outputs
530
- [NX Daemon Server] - 2026-09-11T08:13:18.095Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
531
- [NX Daemon Server] - 2026-09-11T08:13:18.095Z - [REQUEST]: tsconfig.json
532
- [NX Daemon Server] - 2026-09-11T08:13:18.095Z - [REQUEST]:
533
- [NX Daemon Server] - 2026-09-11T08:13:18.099Z - Time taken for 'hash changed files from watcher' 1.9006999999983236ms
534
- [NX Daemon Server] - 2026-09-11T08:13:18.116Z - Time taken for 'build-project-configs' 14.0625ms
535
- [NX Daemon Server] - 2026-09-11T08:13:18.140Z - [SYNC]: collect registered sync generators
536
- [NX Daemon Server] - 2026-09-11T08:13:18.141Z - [SYNC]: project graph hash is the same, not collecting task sync generators
537
- [NX Daemon Server] - 2026-09-11T08:13:18.141Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
538
- [NX Daemon Server] - 2026-09-11T08:13:18.141Z - Time taken for 'total execution time for createProjectGraph()' 20.46990000000369ms
539
- [NX Daemon Server] - 2026-09-11T08:13:27.236Z - [WATCHER]: Processing file changes in outputs
540
- [NX Daemon Server] - 2026-09-11T08:13:27.279Z - [WATCHER]: tsconfig.json was modified
541
- [NX Daemon Server] - 2026-09-11T08:13:27.290Z - [WATCHER]: Processing file changes in outputs
542
- [NX Daemon Server] - 2026-09-11T08:13:27.491Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
543
- [NX Daemon Server] - 2026-09-11T08:13:27.491Z - [REQUEST]: tsconfig.json
544
- [NX Daemon Server] - 2026-09-11T08:13:27.491Z - [REQUEST]:
545
- [NX Daemon Server] - 2026-09-11T08:13:27.495Z - Time taken for 'hash changed files from watcher' 1.1388000000006286ms
546
- [NX Daemon Server] - 2026-09-11T08:13:27.507Z - Time taken for 'build-project-configs' 10.547399999995832ms
547
- [NX Daemon Server] - 2026-09-11T08:13:27.526Z - [SYNC]: collect registered sync generators
548
- [NX Daemon Server] - 2026-09-11T08:13:27.527Z - [SYNC]: project graph hash is the same, not collecting task sync generators
549
- [NX Daemon Server] - 2026-09-11T08:13:27.527Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
550
- [NX Daemon Server] - 2026-09-11T08:13:27.527Z - Time taken for 'total execution time for createProjectGraph()' 16.04120000000694ms
551
- [NX Daemon Server] - 2026-09-11T08:13:31.488Z - [WATCHER]: Processing file changes in outputs
552
- [NX Daemon Server] - 2026-09-11T08:13:31.687Z - [WATCHER]: Processing file changes in outputs
553
- [NX Daemon Server] - 2026-09-11T08:13:31.846Z - [WATCHER]: Processing file changes in outputs
554
- [NX Daemon Server] - 2026-09-11T08:13:32.004Z - [WATCHER]: Processing file changes in outputs
555
- [NX Daemon Server] - 2026-09-11T08:13:32.100Z - [WATCHER]: Processing file changes in outputs
556
- [NX Daemon Server] - 2026-09-11T08:13:32.298Z - [WATCHER]: Processing file changes in outputs
557
- [NX Daemon Server] - 2026-09-11T08:13:32.441Z - [WATCHER]: Processing file changes in outputs
558
- [NX Daemon Server] - 2026-09-11T08:13:32.600Z - [WATCHER]: Processing file changes in outputs
559
- [NX Daemon Server] - 2026-09-11T08:13:32.737Z - [WATCHER]: Processing file changes in outputs
560
- [NX Daemon Server] - 2026-09-11T08:13:32.826Z - [WATCHER]: Processing file changes in outputs
561
- [NX Daemon Server] - 2026-09-11T08:13:32.985Z - [WATCHER]: Processing file changes in outputs
562
- [NX Daemon Server] - 2026-09-11T08:13:33.112Z - [WATCHER]: Processing file changes in outputs
563
- [NX Daemon Server] - 2026-09-11T08:13:33.254Z - [WATCHER]: Processing file changes in outputs
564
- [NX Daemon Server] - 2026-09-11T08:13:33.414Z - [WATCHER]: Processing file changes in outputs
565
- [NX Daemon Server] - 2026-09-11T08:13:33.493Z - [WATCHER]: Processing file changes in outputs
566
- [NX Daemon Server] - 2026-09-11T08:16:00.960Z - [WATCHER]: Processing file changes in outputs
567
- [NX Daemon Server] - 2026-09-11T08:16:01.011Z - [WATCHER]: tsconfig.json was modified
568
- [NX Daemon Server] - 2026-09-11T08:16:01.012Z - [WATCHER]: Processing file changes in outputs
569
- [NX Daemon Server] - 2026-09-11T08:16:01.425Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
570
- [NX Daemon Server] - 2026-09-11T08:16:01.426Z - [REQUEST]: tsconfig.json
571
- [NX Daemon Server] - 2026-09-11T08:16:01.426Z - [REQUEST]:
572
- [NX Daemon Server] - 2026-09-11T08:16:01.430Z - Time taken for 'hash changed files from watcher' 1.8936999999859836ms
573
- [NX Daemon Server] - 2026-09-11T08:16:01.450Z - Time taken for 'build-project-configs' 17.331000000005588ms
574
- [NX Daemon Server] - 2026-09-11T08:16:01.479Z - [SYNC]: collect registered sync generators
575
- [NX Daemon Server] - 2026-09-11T08:16:01.480Z - [SYNC]: project graph hash is the same, not collecting task sync generators
576
- [NX Daemon Server] - 2026-09-11T08:16:01.480Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
577
- [NX Daemon Server] - 2026-09-11T08:16:01.480Z - Time taken for 'total execution time for createProjectGraph()' 23.324099999997998ms
578
- [NX Daemon Server] - 2026-09-11T08:16:10.665Z - [WATCHER]: Processing file changes in outputs
579
- [NX Daemon Server] - 2026-09-11T08:16:10.697Z - [WATCHER]: tsconfig.json was modified
580
- [NX Daemon Server] - 2026-09-11T08:16:11.505Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
581
- [NX Daemon Server] - 2026-09-11T08:16:11.505Z - [REQUEST]: tsconfig.json
582
- [NX Daemon Server] - 2026-09-11T08:16:11.505Z - [REQUEST]:
583
- [NX Daemon Server] - 2026-09-11T08:16:11.511Z - Time taken for 'hash changed files from watcher' 0.47370000000228174ms
584
- [NX Daemon Server] - 2026-09-11T08:16:11.529Z - Time taken for 'build-project-configs' 17.233399999997346ms
585
- [NX Daemon Server] - 2026-09-11T08:16:11.554Z - [SYNC]: collect registered sync generators
586
- [NX Daemon Server] - 2026-09-11T08:16:11.555Z - [SYNC]: project graph hash is the same, not collecting task sync generators
587
- [NX Daemon Server] - 2026-09-11T08:16:11.556Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
588
- [NX Daemon Server] - 2026-09-11T08:16:11.556Z - Time taken for 'total execution time for createProjectGraph()' 20.162799999990966ms
589
- [NX Daemon Server] - 2026-09-11T08:28:43.270Z - Established a connection. Number of open connections: 1
590
- [NX Daemon Server] - 2026-09-11T08:28:43.270Z - Closed a connection. Number of open connections: 0
591
- [NX Daemon Server] - 2026-09-11T08:28:43.271Z - Established a connection. Number of open connections: 1
592
- [NX Daemon Server] - 2026-09-11T08:28:43.275Z - [REQUEST]: Client Request for Project Graph Received
593
- [NX Daemon Server] - 2026-09-11T08:28:43.276Z - [REQUEST]: Responding to the client. project-graph
594
- [NX Daemon Server] - 2026-09-11T08:28:43.277Z - Time taken for 'total for creating and serializing project graph' 0.6385000000009313ms
595
- [NX Daemon Server] - 2026-09-11T08:28:43.278Z - Done responding to the client project-graph
596
- [NX Daemon Server] - 2026-09-11T08:28:43.278Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2.
597
- [NX Daemon Server] - 2026-09-11T08:28:43.344Z - [REQUEST]: Responding to the client. handleHashTasks
598
- [NX Daemon Server] - 2026-09-11T08:28:43.344Z - Done responding to the client handleHashTasks
599
- [NX Daemon Server] - 2026-09-11T08:28:43.344Z - Handled HASH_TASKS. Handling time: 8. Response time: 0.
600
- [NX Daemon Server] - 2026-09-11T08:28:44.254Z - Closed a connection. Number of open connections: 0
601
- [NX Daemon Server] - 2026-09-11T08:35:54.808Z - Established a connection. Number of open connections: 1
602
- [NX Daemon Server] - 2026-09-11T08:35:54.808Z - Closed a connection. Number of open connections: 0
603
- [NX Daemon Server] - 2026-09-11T08:35:54.809Z - Established a connection. Number of open connections: 1
604
- [NX Daemon Server] - 2026-09-11T08:35:54.812Z - [REQUEST]: Client Request for Project Graph Received
605
- [NX Daemon Server] - 2026-09-11T08:35:54.812Z - [REQUEST]: Responding to the client. project-graph
606
- [NX Daemon Server] - 2026-09-11T08:35:54.813Z - Time taken for 'total for creating and serializing project graph' 0.4486999998334795ms
607
- [NX Daemon Server] - 2026-09-11T08:35:54.814Z - Done responding to the client project-graph
608
- [NX Daemon Server] - 2026-09-11T08:35:54.814Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2.
609
- [NX Daemon Server] - 2026-09-11T08:35:54.867Z - [REQUEST]: Responding to the client. handleHashTasks
610
- [NX Daemon Server] - 2026-09-11T08:35:54.867Z - Done responding to the client handleHashTasks
611
- [NX Daemon Server] - 2026-09-11T08:35:54.867Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
612
- [NX Daemon Server] - 2026-09-11T08:35:55.616Z - Closed a connection. Number of open connections: 0
613
- [NX Daemon Server] - 2026-09-11T08:36:36.233Z - [WATCHER]: 0 file(s) created or restored, 15 file(s) modified, 0 file(s) deleted
614
- [NX Daemon Server] - 2026-09-11T08:36:36.234Z - [WATCHER]: Processing file changes in outputs
615
- [NX Daemon Server] - 2026-09-11T08:36:36.340Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
616
- [NX Daemon Server] - 2026-09-11T08:36:36.340Z - [REQUEST]: shared/specs/Playground/hooks/before/mobile.hook.ts,shared/specs/Playground/hooks/beforeEach/mobile.hook.ts,shared/specs/Playground/TC-0002-toggle-elements/mobile.test.ts,shared/specs/Playground/TC-0001-form-controls/spec.md,shared/specs/Playground/TC-0002-toggle-elements/spec.md,shared/specs/Playground/TC-0002-toggle-elements/web.test.ts,shared/specs/Playground/TC-0001-form-controls/mobile.test.ts,shared/specs/Playground/hooks/after/mobile.hook.ts,shared/specs/Playground/hooks/after/web.hook.ts,shared/specs/Playground/hooks/beforeEach/web.hook.ts,shared/specs/Playground/suite.md,shared/specs/Playground/TC-0001-form-controls/web.test.ts,shared/specs/Playground/hooks/afterEach/mobile.hook.ts,shared/specs/Playground/hooks/afterEach/web.hook.ts,shared/specs/Playground/hooks/before/web.hook.ts
617
- [NX Daemon Server] - 2026-09-11T08:36:36.340Z - [REQUEST]:
618
- [NX Daemon Server] - 2026-09-11T08:36:36.343Z - Time taken for 'hash changed files from watcher' 5.700100000016391ms
619
- [NX Daemon Server] - 2026-09-11T08:36:36.356Z - Time taken for 'build-project-configs' 10.887099999934435ms
620
- [NX Daemon Server] - 2026-09-11T08:36:36.377Z - [SYNC]: collect registered sync generators
621
- [NX Daemon Server] - 2026-09-11T08:36:36.377Z - [SYNC]: project graph hash is the same, not collecting task sync generators
622
- [NX Daemon Server] - 2026-09-11T08:36:36.377Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
623
- [NX Daemon Server] - 2026-09-11T08:36:36.378Z - Time taken for 'total execution time for createProjectGraph()' 16.300800000084564ms
624
- [NX Daemon Server] - 2026-09-11T08:36:43.275Z - [WATCHER]: _tmp_6028_65ba53b4cd4d540cb83f9b74a25f2d61 was deleted
625
- [NX Daemon Server] - 2026-09-11T08:36:43.275Z - [WATCHER]: Processing file changes in outputs
626
- [NX Daemon Server] - 2026-09-11T08:36:43.487Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
627
- [NX Daemon Server] - 2026-09-11T08:36:43.487Z - [REQUEST]:
628
- [NX Daemon Server] - 2026-09-11T08:36:43.487Z - [REQUEST]: _tmp_6028_65ba53b4cd4d540cb83f9b74a25f2d61
629
- [NX Daemon Server] - 2026-09-11T08:36:43.504Z - Time taken for 'hash changed files from watcher' 0.39010000019334257ms
630
- [NX Daemon Server] - 2026-09-11T08:36:43.521Z - Time taken for 'build-project-configs' 15.501699999906123ms
631
- [NX Daemon Server] - 2026-09-11T08:36:43.547Z - [SYNC]: collect registered sync generators
632
- [NX Daemon Server] - 2026-09-11T08:36:43.548Z - [SYNC]: project graph hash is the same, not collecting task sync generators
633
- [NX Daemon Server] - 2026-09-11T08:36:43.548Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
634
- [NX Daemon Server] - 2026-09-11T08:36:43.549Z - Time taken for 'total execution time for createProjectGraph()' 21.129100000020117ms
635
- [NX Daemon Server] - 2026-09-11T08:36:46.829Z - [WATCHER]: Processing file changes in outputs
636
- [NX Daemon Server] - 2026-09-11T08:36:46.893Z - [WATCHER]: tsconfig.json was modified
637
- [NX Daemon Server] - 2026-09-11T08:36:46.894Z - [WATCHER]: Processing file changes in outputs
638
- [NX Daemon Server] - 2026-09-11T08:36:47.343Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
639
- [NX Daemon Server] - 2026-09-11T08:36:47.344Z - [REQUEST]: tsconfig.json
640
- [NX Daemon Server] - 2026-09-11T08:36:47.344Z - [REQUEST]:
641
- [NX Daemon Server] - 2026-09-11T08:36:47.356Z - Time taken for 'hash changed files from watcher' 34.82589999982156ms
642
- [NX Daemon Server] - 2026-09-11T08:36:47.379Z - Time taken for 'build-project-configs' 19.18779999995604ms
643
- [NX Daemon Server] - 2026-09-11T08:36:47.413Z - [SYNC]: collect registered sync generators
644
- [NX Daemon Server] - 2026-09-11T08:36:47.415Z - [SYNC]: project graph hash is the same, not collecting task sync generators
645
- [NX Daemon Server] - 2026-09-11T08:36:47.415Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
646
- [NX Daemon Server] - 2026-09-11T08:36:47.416Z - Time taken for 'total execution time for createProjectGraph()' 28.099599999841303ms
647
- [NX Daemon Server] - 2026-09-11T08:38:33.533Z - [WATCHER]: shared/specs was deleted
648
- [NX Daemon Server] - 2026-09-11T08:38:33.533Z - [WATCHER]: Processing file changes in outputs
649
- [NX Daemon Server] - 2026-09-11T08:38:34.340Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
650
- [NX Daemon Server] - 2026-09-11T08:38:34.340Z - [REQUEST]:
651
- [NX Daemon Server] - 2026-09-11T08:38:34.340Z - [REQUEST]: shared/specs
652
- [NX Daemon Server] - 2026-09-11T08:38:34.343Z - Time taken for 'hash changed files from watcher' 0.2651999997906387ms
653
- [NX Daemon Server] - 2026-09-11T08:38:34.354Z - Time taken for 'build-project-configs' 9.821599999908358ms
654
- [NX Daemon Server] - 2026-09-11T08:38:34.375Z - [SYNC]: collect registered sync generators
655
- [NX Daemon Server] - 2026-09-11T08:38:34.376Z - [SYNC]: project graph hash is the same, not collecting task sync generators
656
- [NX Daemon Server] - 2026-09-11T08:38:34.376Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
657
- [NX Daemon Server] - 2026-09-11T08:38:34.376Z - Time taken for 'total execution time for createProjectGraph()' 16.151199999963865ms
658
- [NX Daemon Server] - 2026-09-11T08:39:10.679Z - [WATCHER]: Processing file changes in outputs
659
- [NX Daemon Server] - 2026-09-11T08:39:10.681Z - [WATCHER]: shared/testing/specs was deleted
660
- [NX Daemon Server] - 2026-09-11T08:39:12.288Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
661
- [NX Daemon Server] - 2026-09-11T08:39:12.288Z - [REQUEST]:
662
- [NX Daemon Server] - 2026-09-11T08:39:12.288Z - [REQUEST]: shared/testing/specs
663
- [NX Daemon Server] - 2026-09-11T08:39:12.290Z - Time taken for 'hash changed files from watcher' 0.3551999998744577ms
664
- [NX Daemon Server] - 2026-09-11T08:39:12.308Z - Time taken for 'build-project-configs' 14.46999999997206ms
665
- [NX Daemon Server] - 2026-09-11T08:39:12.334Z - [SYNC]: collect registered sync generators
666
- [NX Daemon Server] - 2026-09-11T08:39:12.334Z - [SYNC]: project graph hash is the same, not collecting task sync generators
667
- [NX Daemon Server] - 2026-09-11T08:39:12.335Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
668
- [NX Daemon Server] - 2026-09-11T08:39:12.335Z - Time taken for 'total execution time for createProjectGraph()' 21.359900000039488ms
669
- [NX Daemon Server] - 2026-09-11T08:52:56.419Z - Established a connection. Number of open connections: 1
670
- [NX Daemon Server] - 2026-09-11T08:52:56.420Z - Closed a connection. Number of open connections: 0
671
- [NX Daemon Server] - 2026-09-11T08:52:56.421Z - Established a connection. Number of open connections: 1
672
- [NX Daemon Server] - 2026-09-11T08:52:56.423Z - [REQUEST]: Client Request for Project Graph Received
673
- [NX Daemon Server] - 2026-09-11T08:52:56.424Z - [REQUEST]: Responding to the client. project-graph
674
- [NX Daemon Server] - 2026-09-11T08:52:56.424Z - Time taken for 'total for creating and serializing project graph' 0.4668999998830259ms
675
- [NX Daemon Server] - 2026-09-11T08:52:56.426Z - Done responding to the client project-graph
676
- [NX Daemon Server] - 2026-09-11T08:52:56.426Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2.
677
- [NX Daemon Server] - 2026-09-11T08:52:56.479Z - [REQUEST]: Responding to the client. handleHashTasks
678
- [NX Daemon Server] - 2026-09-11T08:52:56.479Z - Done responding to the client handleHashTasks
679
- [NX Daemon Server] - 2026-09-11T08:52:56.479Z - Handled HASH_TASKS. Handling time: 6. Response time: 0.
680
- [NX Daemon Server] - 2026-09-11T08:52:57.164Z - Closed a connection. Number of open connections: 0
681
- [NX Daemon Server] - 2026-09-11T08:53:42.100Z - [WATCHER]: Processing file changes in outputs
682
- [NX Daemon Server] - 2026-09-11T08:53:42.102Z - [WATCHER]: 0 file(s) created or restored, 24 file(s) modified, 0 file(s) deleted
683
- [NX Daemon Server] - 2026-09-11T08:53:42.152Z - [WATCHER]: Processing file changes in outputs
684
- [NX Daemon Server] - 2026-09-11T08:53:42.153Z - [WATCHER]: 0 file(s) created or restored, 19 file(s) modified, 0 file(s) deleted
685
- [NX Daemon Server] - 2026-09-11T08:53:42.213Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
686
- [NX Daemon Server] - 2026-09-11T08:53:42.213Z - [REQUEST]: shared/testing/specs/ApiInterception/hooks/before/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/afterEach/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/before/web.hook.ts,shared/testing/specs/ApiInterception/hooks/afterEach/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/beforeEach/web.hook.ts,shared/testing/specs/BrowserContext/hooks/after/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/after/web.hook.ts,shared/testing/specs/BrowserContext/suite.md,shared/testing/specs/BrowserContext/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/specs/ApiInterception/hooks/afterEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/after/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/spec.md,shared/testing/specs/BrowserContext/hooks/before/mobile.hook.ts,shared/testing/specs/ApiInterception/hooks/after/web.hook.ts,shared/testing/specs/ApiInterception/suite.md,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/specs/ApiInterception/hooks/beforeEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/spec.md,shared/testing/specs/BrowserContext/hooks/afterEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/before/web.hook.ts,shared/testing/specs/ContentMatchers/hooks/afterEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts,shared/testing/specs/ContentMatchers/hooks/before/web.hook.ts,shared/testing/specs/ContentMatchers/suite.md,shared/testing/specs/ContentMatchers/hooks/before/mobile.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/spec.md,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/spec.md,shared/testing/specs/ElementMatchers/hooks/after/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/afterEach/web.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts,shared/testing/specs/ContentMatchers/hooks/after/mobile.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts,shared/testing/specs/ContentMatchers/hooks/after/web.hook.ts,shared/testing/specs/ContentMatchers/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/beforeEach/web.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts
687
- [NX Daemon Server] - 2026-09-11T08:53:42.213Z - [REQUEST]:
688
- [NX Daemon Server] - 2026-09-11T08:53:42.216Z - [WATCHER]: Processing file changes in outputs
689
- [NX Daemon Server] - 2026-09-11T08:53:42.217Z - [WATCHER]: 0 file(s) created or restored, 15 file(s) modified, 0 file(s) deleted
690
- [NX Daemon Server] - 2026-09-11T08:53:42.218Z - Time taken for 'hash changed files from watcher' 8.311999999918044ms
691
- [NX Daemon Server] - 2026-09-11T08:53:42.235Z - Time taken for 'build-project-configs' 10.816200000233948ms
692
- [NX Daemon Server] - 2026-09-11T08:53:42.256Z - [SYNC]: collect registered sync generators
693
- [NX Daemon Server] - 2026-09-11T08:53:42.256Z - [SYNC]: project graph hash is the same, not collecting task sync generators
694
- [NX Daemon Server] - 2026-09-11T08:53:42.256Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
695
- [NX Daemon Server] - 2026-09-11T08:53:42.256Z - Time taken for 'total execution time for createProjectGraph()' 16.847099999897182ms
696
- [NX Daemon Server] - 2026-09-11T08:53:42.422Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
697
- [NX Daemon Server] - 2026-09-11T08:53:42.422Z - [REQUEST]:
698
- [NX Daemon Server] - 2026-09-11T08:53:42.422Z - [REQUEST]:
699
- [NX Daemon Server] - 2026-09-11T08:53:42.424Z - Time taken for 'hash changed files from watcher' 0.23480000020936131ms
700
- [NX Daemon Server] - 2026-09-11T08:53:42.433Z - Time taken for 'build-project-configs' 7.172499999869615ms
701
- [NX Daemon Server] - 2026-09-11T08:53:42.446Z - [SYNC]: collect registered sync generators
702
- [NX Daemon Server] - 2026-09-11T08:53:42.447Z - [SYNC]: project graph hash is the same, not collecting task sync generators
703
- [NX Daemon Server] - 2026-09-11T08:53:42.447Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
704
- [NX Daemon Server] - 2026-09-11T08:53:42.447Z - Time taken for 'total execution time for createProjectGraph()' 10.271500000264496ms
705
- [NX Daemon Server] - 2026-09-11T08:54:02.007Z - [WATCHER]: shared/testing/specs was deleted
706
- [NX Daemon Server] - 2026-09-11T08:54:02.008Z - [WATCHER]: Processing file changes in outputs
707
- [NX Daemon Server] - 2026-09-11T08:54:02.412Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
708
- [NX Daemon Server] - 2026-09-11T08:54:02.412Z - [REQUEST]:
709
- [NX Daemon Server] - 2026-09-11T08:54:02.412Z - [REQUEST]: shared/testing/specs
710
- [NX Daemon Server] - 2026-09-11T08:54:02.415Z - Time taken for 'hash changed files from watcher' 0.173099999781698ms
711
- [NX Daemon Server] - 2026-09-11T08:54:02.426Z - Time taken for 'build-project-configs' 10.694600000046194ms
712
- [NX Daemon Server] - 2026-09-11T08:54:02.440Z - [SYNC]: collect registered sync generators
713
- [NX Daemon Server] - 2026-09-11T08:54:02.441Z - [SYNC]: project graph hash is the same, not collecting task sync generators
714
- [NX Daemon Server] - 2026-09-11T08:54:02.441Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
715
- [NX Daemon Server] - 2026-09-11T08:54:02.441Z - Time taken for 'total execution time for createProjectGraph()' 10.939499999862164ms
716
- [NX Daemon Server] - 2026-09-11T09:20:20.613Z - [WATCHER]: Processing file changes in outputs
717
- [NX Daemon Server] - 2026-09-11T09:20:20.661Z - [WATCHER]: tsconfig.json was modified
718
- [NX Daemon Server] - 2026-09-11T09:20:20.676Z - [WATCHER]: Processing file changes in outputs
719
- [NX Daemon Server] - 2026-09-11T09:20:21.471Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
720
- [NX Daemon Server] - 2026-09-11T09:20:21.472Z - [REQUEST]: tsconfig.json
721
- [NX Daemon Server] - 2026-09-11T09:20:21.472Z - [REQUEST]:
722
- [NX Daemon Server] - 2026-09-11T09:20:21.476Z - Time taken for 'hash changed files from watcher' 0.4398999996483326ms
723
- [NX Daemon Server] - 2026-09-11T09:20:21.493Z - Time taken for 'build-project-configs' 13.767200000118464ms
724
- [NX Daemon Server] - 2026-09-11T09:20:21.518Z - [SYNC]: collect registered sync generators
725
- [NX Daemon Server] - 2026-09-11T09:20:21.518Z - [SYNC]: project graph hash is the same, not collecting task sync generators
726
- [NX Daemon Server] - 2026-09-11T09:20:21.519Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
727
- [NX Daemon Server] - 2026-09-11T09:20:21.519Z - Time taken for 'total execution time for createProjectGraph()' 20.930399999953806ms
728
- [NX Daemon Server] - 2026-09-11T09:20:30.888Z - [WATCHER]: Processing file changes in outputs
729
- [NX Daemon Server] - 2026-09-11T09:20:30.921Z - [WATCHER]: tsconfig.json was modified
730
- [NX Daemon Server] - 2026-09-11T09:20:32.524Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
731
- [NX Daemon Server] - 2026-09-11T09:20:32.524Z - [REQUEST]: tsconfig.json
732
- [NX Daemon Server] - 2026-09-11T09:20:32.524Z - [REQUEST]:
733
- [NX Daemon Server] - 2026-09-11T09:20:32.529Z - Time taken for 'hash changed files from watcher' 0.4154000002890825ms
734
- [NX Daemon Server] - 2026-09-11T09:20:32.549Z - Time taken for 'build-project-configs' 16.04769999999553ms
735
- [NX Daemon Server] - 2026-09-11T09:20:32.583Z - [SYNC]: collect registered sync generators
736
- [NX Daemon Server] - 2026-09-11T09:20:32.583Z - [SYNC]: project graph hash is the same, not collecting task sync generators
737
- [NX Daemon Server] - 2026-09-11T09:20:32.584Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
738
- [NX Daemon Server] - 2026-09-11T09:20:32.584Z - Time taken for 'total execution time for createProjectGraph()' 29.22649999987334ms
739
- [NX Daemon Server] - 2026-09-11T09:20:35.566Z - [WATCHER]: Processing file changes in outputs
740
- [NX Daemon Server] - 2026-09-11T09:20:35.913Z - [WATCHER]: Processing file changes in outputs
741
- [NX Daemon Server] - 2026-09-11T09:20:36.134Z - [WATCHER]: Processing file changes in outputs
742
- [NX Daemon Server] - 2026-09-11T09:20:36.338Z - [WATCHER]: Processing file changes in outputs
743
- [NX Daemon Server] - 2026-09-11T09:20:36.484Z - [WATCHER]: Processing file changes in outputs
744
- [NX Daemon Server] - 2026-09-11T09:20:36.786Z - [WATCHER]: Processing file changes in outputs
745
- [NX Daemon Server] - 2026-09-11T09:20:36.977Z - [WATCHER]: Processing file changes in outputs
746
- [NX Daemon Server] - 2026-09-11T09:20:37.152Z - [WATCHER]: Processing file changes in outputs
747
- [NX Daemon Server] - 2026-09-11T09:20:37.327Z - [WATCHER]: Processing file changes in outputs
748
- [NX Daemon Server] - 2026-09-11T09:20:37.422Z - [WATCHER]: Processing file changes in outputs
749
- [NX Daemon Server] - 2026-09-11T09:20:37.598Z - [WATCHER]: Processing file changes in outputs
750
- [NX Daemon Server] - 2026-09-11T09:20:37.756Z - [WATCHER]: Processing file changes in outputs
751
- [NX Daemon Server] - 2026-09-11T09:20:37.900Z - [WATCHER]: Processing file changes in outputs
752
- [NX Daemon Server] - 2026-09-11T09:20:38.043Z - [WATCHER]: Processing file changes in outputs
753
- [NX Daemon Server] - 2026-09-11T09:20:38.123Z - [WATCHER]: Processing file changes in outputs
754
- [NX Daemon Server] - 2026-09-11T09:26:55.603Z - [WATCHER]: Processing file changes in outputs
755
- [NX Daemon Server] - 2026-09-11T09:26:55.736Z - [WATCHER]: Processing file changes in outputs
756
- [NX Daemon Server] - 2026-09-11T09:27:19.584Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
757
- [NX Daemon Server] - 2026-09-11T09:27:19.584Z - [WATCHER]: Processing file changes in outputs
758
- [NX Daemon Server] - 2026-09-11T09:27:19.725Z - [WATCHER]: Processing file changes in outputs
759
- [NX Daemon Server] - 2026-09-11T09:27:21.447Z - [WATCHER]: Processing file changes in outputs
760
- [NX Daemon Server] - 2026-09-11T09:27:21.465Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
761
- [NX Daemon Server] - 2026-09-11T09:27:21.613Z - [WATCHER]: Processing file changes in outputs
762
- [NX Daemon Server] - 2026-09-11T09:27:22.811Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
763
- [NX Daemon Server] - 2026-09-11T09:27:22.812Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts
764
- [NX Daemon Server] - 2026-09-11T09:27:22.812Z - [REQUEST]:
765
- [NX Daemon Server] - 2026-09-11T09:27:22.859Z - Time taken for 'hash changed files from watcher' 13.543999999761581ms
766
- [NX Daemon Server] - 2026-09-11T09:27:22.874Z - Time taken for 'build-project-configs' 53.83409999962896ms
767
- [NX Daemon Server] - 2026-09-11T09:27:22.913Z - [SYNC]: collect registered sync generators
768
- [NX Daemon Server] - 2026-09-11T09:27:22.915Z - [SYNC]: project graph hash is the same, not collecting task sync generators
769
- [NX Daemon Server] - 2026-09-11T09:27:22.915Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
770
- [NX Daemon Server] - 2026-09-11T09:27:22.915Z - Time taken for 'total execution time for createProjectGraph()' 31.8335000006482ms
771
- [NX Daemon Server] - 2026-09-11T09:27:32.468Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
772
- [NX Daemon Server] - 2026-09-11T09:27:32.468Z - [WATCHER]: Processing file changes in outputs
773
- [NX Daemon Server] - 2026-09-11T09:27:32.630Z - [WATCHER]: Processing file changes in outputs
774
- [NX Daemon Server] - 2026-09-11T09:27:37.249Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
775
- [NX Daemon Server] - 2026-09-11T09:27:37.249Z - [WATCHER]: Processing file changes in outputs
776
- [NX Daemon Server] - 2026-09-11T09:27:37.410Z - [WATCHER]: Processing file changes in outputs
777
- [NX Daemon Server] - 2026-09-11T09:27:38.870Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
778
- [NX Daemon Server] - 2026-09-11T09:27:38.870Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts
779
- [NX Daemon Server] - 2026-09-11T09:27:38.870Z - [REQUEST]:
780
- [NX Daemon Server] - 2026-09-11T09:27:38.875Z - Time taken for 'hash changed files from watcher' 0.9177999999374151ms
781
- [NX Daemon Server] - 2026-09-11T09:27:38.889Z - Time taken for 'build-project-configs' 13.597000000067055ms
782
- [NX Daemon Server] - 2026-09-11T09:27:38.908Z - [SYNC]: collect registered sync generators
783
- [NX Daemon Server] - 2026-09-11T09:27:38.909Z - [SYNC]: project graph hash is the same, not collecting task sync generators
784
- [NX Daemon Server] - 2026-09-11T09:27:38.909Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
785
- [NX Daemon Server] - 2026-09-11T09:27:38.910Z - Time taken for 'total execution time for createProjectGraph()' 14.512400000356138ms
786
- [NX Daemon Server] - 2026-09-11T09:27:51.507Z - [WATCHER]: Processing file changes in outputs
787
- [NX Daemon Server] - 2026-09-11T09:27:51.508Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
788
- [NX Daemon Server] - 2026-09-11T09:27:51.656Z - [WATCHER]: Processing file changes in outputs
789
- [NX Daemon Server] - 2026-09-11T09:27:57.914Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
790
- [NX Daemon Server] - 2026-09-11T09:27:57.914Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts
791
- [NX Daemon Server] - 2026-09-11T09:27:57.914Z - [REQUEST]:
792
- [NX Daemon Server] - 2026-09-11T09:27:57.917Z - Time taken for 'hash changed files from watcher' 0.3262999998405576ms
793
- [NX Daemon Server] - 2026-09-11T09:27:57.930Z - Time taken for 'build-project-configs' 12.138999999500811ms
794
- [NX Daemon Server] - 2026-09-11T09:27:57.946Z - [SYNC]: collect registered sync generators
795
- [NX Daemon Server] - 2026-09-11T09:27:57.947Z - [SYNC]: project graph hash is the same, not collecting task sync generators
796
- [NX Daemon Server] - 2026-09-11T09:27:57.947Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
797
- [NX Daemon Server] - 2026-09-11T09:27:57.947Z - Time taken for 'total execution time for createProjectGraph()' 12.74750000052154ms
798
- [NX Daemon Server] - 2026-09-11T09:28:01.343Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
799
- [NX Daemon Server] - 2026-09-11T09:28:01.344Z - [WATCHER]: Processing file changes in outputs
800
- [NX Daemon Server] - 2026-09-11T09:28:01.517Z - [WATCHER]: Processing file changes in outputs
801
- [NX Daemon Server] - 2026-09-11T09:28:07.744Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
802
- [NX Daemon Server] - 2026-09-11T09:28:07.744Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
803
- [NX Daemon Server] - 2026-09-11T09:28:07.744Z - [REQUEST]:
804
- [NX Daemon Server] - 2026-09-11T09:28:07.746Z - Time taken for 'hash changed files from watcher' 0.2686999998986721ms
805
- [NX Daemon Server] - 2026-09-11T09:28:07.757Z - Time taken for 'build-project-configs' 8.835199999623ms
806
- [NX Daemon Server] - 2026-09-11T09:28:07.776Z - [SYNC]: collect registered sync generators
807
- [NX Daemon Server] - 2026-09-11T09:28:07.776Z - [SYNC]: project graph hash is the same, not collecting task sync generators
808
- [NX Daemon Server] - 2026-09-11T09:28:07.777Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
809
- [NX Daemon Server] - 2026-09-11T09:28:07.777Z - Time taken for 'total execution time for createProjectGraph()' 14.802099999971688ms
810
- [NX Daemon Server] - 2026-09-11T09:28:10.043Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
811
- [NX Daemon Server] - 2026-09-11T09:28:10.044Z - [WATCHER]: Processing file changes in outputs
812
- [NX Daemon Server] - 2026-09-11T09:28:10.981Z - [WATCHER]: Processing file changes in outputs
813
- [NX Daemon Server] - 2026-09-11T09:28:11.029Z - [WATCHER]: Processing file changes in outputs
814
- [NX Daemon Server] - 2026-09-11T09:28:16.082Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
815
- [NX Daemon Server] - 2026-09-11T09:28:16.083Z - [WATCHER]: Processing file changes in outputs
816
- [NX Daemon Server] - 2026-09-11T09:28:16.247Z - [WATCHER]: Processing file changes in outputs
817
- [NX Daemon Server] - 2026-09-11T09:28:16.448Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
818
- [NX Daemon Server] - 2026-09-11T09:28:16.449Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
819
- [NX Daemon Server] - 2026-09-11T09:28:16.449Z - [REQUEST]:
820
- [NX Daemon Server] - 2026-09-11T09:28:16.450Z - Time taken for 'hash changed files from watcher' 0.323900000192225ms
821
- [NX Daemon Server] - 2026-09-11T09:28:16.461Z - Time taken for 'build-project-configs' 9.059600000269711ms
822
- [NX Daemon Server] - 2026-09-11T09:28:16.479Z - [SYNC]: collect registered sync generators
823
- [NX Daemon Server] - 2026-09-11T09:28:16.479Z - [SYNC]: project graph hash is the same, not collecting task sync generators
824
- [NX Daemon Server] - 2026-09-11T09:28:16.479Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
825
- [NX Daemon Server] - 2026-09-11T09:28:16.480Z - Time taken for 'total execution time for createProjectGraph()' 13.233200000599027ms
826
- [NX Daemon Server] - 2026-09-11T09:28:26.313Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
827
- [NX Daemon Server] - 2026-09-11T09:28:26.313Z - [WATCHER]: Processing file changes in outputs
828
- [NX Daemon Server] - 2026-09-11T09:28:26.451Z - [WATCHER]: Processing file changes in outputs
829
- [NX Daemon Server] - 2026-09-11T09:28:32.723Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
830
- [NX Daemon Server] - 2026-09-11T09:28:32.723Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
831
- [NX Daemon Server] - 2026-09-11T09:28:32.723Z - [REQUEST]:
832
- [NX Daemon Server] - 2026-09-11T09:28:32.724Z - Time taken for 'hash changed files from watcher' 0.316300000064075ms
833
- [NX Daemon Server] - 2026-09-11T09:28:32.737Z - Time taken for 'build-project-configs' 10.84389999974519ms
834
- [NX Daemon Server] - 2026-09-11T09:28:32.757Z - [SYNC]: collect registered sync generators
835
- [NX Daemon Server] - 2026-09-11T09:28:32.757Z - [SYNC]: project graph hash is the same, not collecting task sync generators
836
- [NX Daemon Server] - 2026-09-11T09:28:32.757Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
837
- [NX Daemon Server] - 2026-09-11T09:28:32.757Z - Time taken for 'total execution time for createProjectGraph()' 13.932100000791252ms
838
- [NX Daemon Server] - 2026-09-11T09:28:35.226Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
839
- [NX Daemon Server] - 2026-09-11T09:28:35.226Z - [WATCHER]: Processing file changes in outputs
840
- [NX Daemon Server] - 2026-09-11T09:28:35.403Z - [WATCHER]: Processing file changes in outputs
841
- [NX Daemon Server] - 2026-09-11T09:28:35.466Z - [WATCHER]: Processing file changes in outputs
842
- [NX Daemon Server] - 2026-09-11T09:28:38.909Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
843
- [NX Daemon Server] - 2026-09-11T09:28:38.910Z - [WATCHER]: Processing file changes in outputs
844
- [NX Daemon Server] - 2026-09-11T09:28:39.057Z - [WATCHER]: Processing file changes in outputs
845
- [NX Daemon Server] - 2026-09-11T09:28:40.570Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
846
- [NX Daemon Server] - 2026-09-11T09:28:40.570Z - [WATCHER]: Processing file changes in outputs
847
- [NX Daemon Server] - 2026-09-11T09:28:40.704Z - [WATCHER]: Processing file changes in outputs
848
- [NX Daemon Server] - 2026-09-11T09:28:40.774Z - [WATCHER]: Processing file changes in outputs
849
- [NX Daemon Server] - 2026-09-11T09:28:41.631Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
850
- [NX Daemon Server] - 2026-09-11T09:28:41.631Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
851
- [NX Daemon Server] - 2026-09-11T09:28:41.632Z - [REQUEST]:
852
- [NX Daemon Server] - 2026-09-11T09:28:41.635Z - Time taken for 'hash changed files from watcher' 0.4240000005811453ms
853
- [NX Daemon Server] - 2026-09-11T09:28:41.651Z - Time taken for 'build-project-configs' 14.071100000292063ms
854
- [NX Daemon Server] - 2026-09-11T09:28:41.678Z - [SYNC]: collect registered sync generators
855
- [NX Daemon Server] - 2026-09-11T09:28:41.679Z - [SYNC]: project graph hash is the same, not collecting task sync generators
856
- [NX Daemon Server] - 2026-09-11T09:28:41.679Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
857
- [NX Daemon Server] - 2026-09-11T09:28:41.679Z - Time taken for 'total execution time for createProjectGraph()' 20.709400000050664ms
858
- [NX Daemon Server] - 2026-09-11T09:28:42.208Z - [WATCHER]: Processing file changes in outputs
859
- [NX Daemon Server] - 2026-09-11T09:28:42.209Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
860
- [NX Daemon Server] - 2026-09-11T09:28:42.417Z - [WATCHER]: Processing file changes in outputs
861
- [NX Daemon Server] - 2026-09-11T09:28:42.477Z - [WATCHER]: Processing file changes in outputs
862
- [NX Daemon Server] - 2026-09-11T09:28:48.620Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
863
- [NX Daemon Server] - 2026-09-11T09:28:48.621Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
864
- [NX Daemon Server] - 2026-09-11T09:28:48.621Z - [REQUEST]:
865
- [NX Daemon Server] - 2026-09-11T09:28:48.622Z - Time taken for 'hash changed files from watcher' 0.3148999996483326ms
866
- [NX Daemon Server] - 2026-09-11T09:28:48.638Z - Time taken for 'build-project-configs' 12.65610000025481ms
867
- [NX Daemon Server] - 2026-09-11T09:28:48.661Z - [SYNC]: collect registered sync generators
868
- [NX Daemon Server] - 2026-09-11T09:28:48.662Z - [SYNC]: project graph hash is the same, not collecting task sync generators
869
- [NX Daemon Server] - 2026-09-11T09:28:48.662Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
870
- [NX Daemon Server] - 2026-09-11T09:28:48.662Z - Time taken for 'total execution time for createProjectGraph()' 16.735599999316037ms
871
- [NX Daemon Server] - 2026-09-11T09:28:51.985Z - [WATCHER]: 0 file(s) created or restored, 20 file(s) modified, 0 file(s) deleted
872
- [NX Daemon Server] - 2026-09-11T09:28:51.986Z - [WATCHER]: Processing file changes in outputs
873
- [NX Daemon Server] - 2026-09-11T09:28:52.036Z - [WATCHER]: Processing file changes in outputs
874
- [NX Daemon Server] - 2026-09-11T09:28:52.040Z - [WATCHER]: 0 file(s) created or restored, 17 file(s) modified, 0 file(s) deleted
875
- [NX Daemon Server] - 2026-09-11T09:28:52.092Z - [WATCHER]: 0 file(s) created or restored, 16 file(s) modified, 0 file(s) deleted
876
- [NX Daemon Server] - 2026-09-11T09:28:52.094Z - [WATCHER]: Processing file changes in outputs
877
- [NX Daemon Server] - 2026-09-11T09:28:52.148Z - [WATCHER]: 0 file(s) created or restored, 7 file(s) modified, 0 file(s) deleted
878
- [NX Daemon Server] - 2026-09-11T09:28:52.149Z - [WATCHER]: Processing file changes in outputs
879
- [NX Daemon Server] - 2026-09-11T09:28:52.396Z - [WATCHER]: Processing file changes in outputs
880
- [NX Daemon Server] - 2026-09-11T09:28:58.398Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
881
- [NX Daemon Server] - 2026-09-11T09:28:58.399Z - [REQUEST]: shared/testing/specs/ApiInterception/hooks/beforeEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/spec.md,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/spec.md,shared/testing/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/specs/ApiInterception/hooks/afterEach/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/after/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/specs/BrowserContext/hooks/afterEach/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/before/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/afterEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/before/web.hook.ts,shared/testing/specs/ApiInterception/hooks/before/mobile.hook.ts,shared/testing/specs/ApiInterception/suite.md,shared/testing/specs/ApiInterception/hooks/afterEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/after/mobile.hook.ts,shared/testing/specs/ApiInterception/hooks/after/web.hook.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/specs/BrowserContext/hooks/after/web.hook.ts,shared/testing/specs/BrowserContext/hooks/before/web.hook.ts,shared/testing/specs/ContentMatchers/hooks/after/web.hook.ts,shared/testing/specs/BrowserContext/hooks/beforeEach/web.hook.ts,shared/testing/specs/ContentMatchers/hooks/before/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/afterEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts,shared/testing/specs/ContentMatchers/hooks/after/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/afterEach/web.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/spec.md,shared/testing/specs/ContentMatchers/hooks/beforeEach/web.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts,shared/testing/specs/BrowserContext/suite.md,shared/testing/specs/ContentMatchers/hooks/before/web.hook.ts,shared/testing/specs/BrowserContext/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/suite.md,shared/testing/specs/ElementMatchers/suite.md,shared/testing/specs/ElementMatchers/hooks/before/mobile.hook.ts,shared/testing/specs/ElementMatchers/hooks/after/web.hook.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts,shared/testing/specs/ElementMatchers/hooks/afterEach/mobile.hook.ts,shared/testing/specs/ElementMatchers/hooks/afterEach/web.hook.ts,shared/testing/specs/ElementMatchers/hooks/before/web.hook.ts,shared/testing/specs/ElementMatchers/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts,shared/testing/specs/ElementMatchers/hooks/beforeEach/web.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/spec.md,shared/testing/specs/ElementMatchers/hooks/after/mobile.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md,shared/testing/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts,shared/testing/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md,shared/testing/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts,shared/testing/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md,shared/testing/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts,shared/testing/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts
882
- [NX Daemon Server] - 2026-09-11T09:28:58.399Z - [REQUEST]:
883
- [NX Daemon Server] - 2026-09-11T09:28:58.401Z - Time taken for 'hash changed files from watcher' 1.4682000000029802ms
884
- [NX Daemon Server] - 2026-09-11T09:28:58.413Z - Time taken for 'build-project-configs' 10.479000000283122ms
885
- [NX Daemon Server] - 2026-09-11T09:28:58.432Z - [SYNC]: collect registered sync generators
886
- [NX Daemon Server] - 2026-09-11T09:28:58.432Z - [SYNC]: project graph hash is the same, not collecting task sync generators
887
- [NX Daemon Server] - 2026-09-11T09:28:58.432Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
888
- [NX Daemon Server] - 2026-09-11T09:28:58.432Z - Time taken for 'total execution time for createProjectGraph()' 14.00029999949038ms
889
- [NX Daemon Server] - 2026-09-11T09:28:58.587Z - [WATCHER]: shared/testing/specs was deleted
890
- [NX Daemon Server] - 2026-09-11T09:28:58.587Z - [WATCHER]: Processing file changes in outputs
891
- [NX Daemon Server] - 2026-09-11T09:29:04.995Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
892
- [NX Daemon Server] - 2026-09-11T09:29:04.995Z - [REQUEST]:
893
- [NX Daemon Server] - 2026-09-11T09:29:04.995Z - [REQUEST]: shared/testing/specs
894
- [NX Daemon Server] - 2026-09-11T09:29:04.998Z - Time taken for 'hash changed files from watcher' 0.2635999992489815ms
895
- [NX Daemon Server] - 2026-09-11T09:29:05.011Z - Time taken for 'build-project-configs' 10.877199999988079ms
896
- [NX Daemon Server] - 2026-09-11T09:29:05.028Z - [SYNC]: collect registered sync generators
897
- [NX Daemon Server] - 2026-09-11T09:29:05.029Z - [SYNC]: project graph hash is the same, not collecting task sync generators
898
- [NX Daemon Server] - 2026-09-11T09:29:05.029Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
899
- [NX Daemon Server] - 2026-09-11T09:29:05.029Z - Time taken for 'total execution time for createProjectGraph()' 12.870000000111759ms
900
- [NX Daemon Server] - 2026-09-11T09:29:32.746Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
901
- [NX Daemon Server] - 2026-09-11T09:29:32.746Z - [WATCHER]: Processing file changes in outputs
902
- [NX Daemon Server] - 2026-09-11T09:29:32.922Z - [WATCHER]: Processing file changes in outputs
903
- [NX Daemon Server] - 2026-09-11T09:29:34.426Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
904
- [NX Daemon Server] - 2026-09-11T09:29:34.434Z - [WATCHER]: Processing file changes in outputs
905
- [NX Daemon Server] - 2026-09-11T09:29:34.538Z - [WATCHER]: Processing file changes in outputs
906
- [NX Daemon Server] - 2026-09-11T09:29:34.600Z - [WATCHER]: Processing file changes in outputs
907
- [NX Daemon Server] - 2026-09-11T09:29:34.686Z - [WATCHER]: Processing file changes in outputs
908
- [NX Daemon Server] - 2026-09-11T09:29:34.744Z - [WATCHER]: Processing file changes in outputs
909
- [NX Daemon Server] - 2026-09-11T09:29:35.376Z - [WATCHER]: Processing file changes in outputs
910
- [NX Daemon Server] - 2026-09-11T09:29:35.378Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
911
- [NX Daemon Server] - 2026-09-11T09:29:35.555Z - [WATCHER]: Processing file changes in outputs
912
- [NX Daemon Server] - 2026-09-11T09:29:35.604Z - [WATCHER]: Processing file changes in outputs
913
- [NX Daemon Server] - 2026-09-11T09:29:39.147Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
914
- [NX Daemon Server] - 2026-09-11T09:29:39.147Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts
915
- [NX Daemon Server] - 2026-09-11T09:29:39.147Z - [REQUEST]:
916
- [NX Daemon Server] - 2026-09-11T09:29:39.149Z - Time taken for 'hash changed files from watcher' 0.2443000003695488ms
917
- [NX Daemon Server] - 2026-09-11T09:29:39.163Z - Time taken for 'build-project-configs' 11.465800000354648ms
918
- [NX Daemon Server] - 2026-09-11T09:29:39.181Z - [SYNC]: collect registered sync generators
919
- [NX Daemon Server] - 2026-09-11T09:29:39.181Z - [SYNC]: project graph hash is the same, not collecting task sync generators
920
- [NX Daemon Server] - 2026-09-11T09:29:39.182Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
921
- [NX Daemon Server] - 2026-09-11T09:29:39.182Z - Time taken for 'total execution time for createProjectGraph()' 15.049899999983609ms
922
- [NX Daemon Server] - 2026-09-11T09:30:51.434Z - [WATCHER]: Processing file changes in outputs
923
- [NX Daemon Server] - 2026-09-11T09:30:51.435Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
924
- [NX Daemon Server] - 2026-09-11T09:30:51.601Z - [WATCHER]: Processing file changes in outputs
925
- [NX Daemon Server] - 2026-09-11T09:30:53.419Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
926
- [NX Daemon Server] - 2026-09-11T09:30:53.420Z - [WATCHER]: Processing file changes in outputs
927
- [NX Daemon Server] - 2026-09-11T09:30:53.554Z - [WATCHER]: Processing file changes in outputs
928
- [NX Daemon Server] - 2026-09-11T09:30:57.847Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
929
- [NX Daemon Server] - 2026-09-11T09:30:57.847Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts
930
- [NX Daemon Server] - 2026-09-11T09:30:57.847Z - [REQUEST]:
931
- [NX Daemon Server] - 2026-09-11T09:30:57.850Z - Time taken for 'hash changed files from watcher' 0.26549999974668026ms
932
- [NX Daemon Server] - 2026-09-11T09:30:57.866Z - Time taken for 'build-project-configs' 12.998699999414384ms
933
- [NX Daemon Server] - 2026-09-11T09:30:57.880Z - [SYNC]: collect registered sync generators
934
- [NX Daemon Server] - 2026-09-11T09:30:57.881Z - [SYNC]: project graph hash is the same, not collecting task sync generators
935
- [NX Daemon Server] - 2026-09-11T09:30:57.881Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
936
- [NX Daemon Server] - 2026-09-11T09:30:57.882Z - Time taken for 'total execution time for createProjectGraph()' 12.151500000618398ms
937
- [NX Daemon Server] - 2026-09-11T09:30:58.999Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
938
- [NX Daemon Server] - 2026-09-11T09:30:58.999Z - [WATCHER]: Processing file changes in outputs
939
- [NX Daemon Server] - 2026-09-11T09:30:59.153Z - [WATCHER]: Processing file changes in outputs
940
- [NX Daemon Server] - 2026-09-11T09:31:05.412Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
941
- [NX Daemon Server] - 2026-09-11T09:31:05.412Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts
942
- [NX Daemon Server] - 2026-09-11T09:31:05.412Z - [REQUEST]:
943
- [NX Daemon Server] - 2026-09-11T09:31:05.414Z - Time taken for 'hash changed files from watcher' 0.28849999979138374ms
944
- [NX Daemon Server] - 2026-09-11T09:31:05.428Z - Time taken for 'build-project-configs' 10.925199999473989ms
945
- [NX Daemon Server] - 2026-09-11T09:31:05.450Z - [SYNC]: collect registered sync generators
946
- [NX Daemon Server] - 2026-09-11T09:31:05.451Z - [SYNC]: project graph hash is the same, not collecting task sync generators
947
- [NX Daemon Server] - 2026-09-11T09:31:05.451Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
948
- [NX Daemon Server] - 2026-09-11T09:31:05.451Z - Time taken for 'total execution time for createProjectGraph()' 17.121499999426305ms
949
- [NX Daemon Server] - 2026-09-11T09:31:17.926Z - [WATCHER]: Processing file changes in outputs
950
- [NX Daemon Server] - 2026-09-11T09:31:17.927Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md was modified
951
- [NX Daemon Server] - 2026-09-11T09:31:20.542Z - [WATCHER]: Processing file changes in outputs
952
- [NX Daemon Server] - 2026-09-11T09:31:20.542Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md was modified
953
- [NX Daemon Server] - 2026-09-11T09:31:24.339Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
954
- [NX Daemon Server] - 2026-09-11T09:31:24.339Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md
955
- [NX Daemon Server] - 2026-09-11T09:31:24.340Z - [REQUEST]:
956
- [NX Daemon Server] - 2026-09-11T09:31:24.343Z - Time taken for 'hash changed files from watcher' 0.3697000006213784ms
957
- [NX Daemon Server] - 2026-09-11T09:31:24.360Z - Time taken for 'build-project-configs' 13.288900000043213ms
958
- [NX Daemon Server] - 2026-09-11T09:31:24.383Z - [SYNC]: collect registered sync generators
959
- [NX Daemon Server] - 2026-09-11T09:31:24.384Z - [SYNC]: project graph hash is the same, not collecting task sync generators
960
- [NX Daemon Server] - 2026-09-11T09:31:24.384Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
961
- [NX Daemon Server] - 2026-09-11T09:31:24.384Z - Time taken for 'total execution time for createProjectGraph()' 20.02680000010878ms
962
- [NX Daemon Server] - 2026-09-11T09:31:32.572Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts was modified
963
- [NX Daemon Server] - 2026-09-11T09:31:32.572Z - [WATCHER]: Processing file changes in outputs
964
- [NX Daemon Server] - 2026-09-11T09:31:32.722Z - [WATCHER]: Processing file changes in outputs
965
- [NX Daemon Server] - 2026-09-11T09:31:38.984Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
966
- [NX Daemon Server] - 2026-09-11T09:31:38.984Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts
967
- [NX Daemon Server] - 2026-09-11T09:31:38.984Z - [REQUEST]:
968
- [NX Daemon Server] - 2026-09-11T09:31:38.986Z - Time taken for 'hash changed files from watcher' 0.3157999999821186ms
969
- [NX Daemon Server] - 2026-09-11T09:31:38.999Z - Time taken for 'build-project-configs' 10.693199999630451ms
970
- [NX Daemon Server] - 2026-09-11T09:31:39.014Z - [SYNC]: collect registered sync generators
971
- [NX Daemon Server] - 2026-09-11T09:31:39.015Z - [SYNC]: project graph hash is the same, not collecting task sync generators
972
- [NX Daemon Server] - 2026-09-11T09:31:39.015Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
973
- [NX Daemon Server] - 2026-09-11T09:31:39.015Z - Time taken for 'total execution time for createProjectGraph()' 12.977400000207126ms
974
- [NX Daemon Server] - 2026-09-11T09:31:41.467Z - [WATCHER]: Processing file changes in outputs
975
- [NX Daemon Server] - 2026-09-11T09:31:41.468Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md was modified
976
- [NX Daemon Server] - 2026-09-11T09:31:47.878Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
977
- [NX Daemon Server] - 2026-09-11T09:31:47.879Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md
978
- [NX Daemon Server] - 2026-09-11T09:31:47.879Z - [REQUEST]:
979
- [NX Daemon Server] - 2026-09-11T09:31:47.882Z - Time taken for 'hash changed files from watcher' 0.3427999997511506ms
980
- [NX Daemon Server] - 2026-09-11T09:31:47.899Z - Time taken for 'build-project-configs' 13.380499999970198ms
981
- [NX Daemon Server] - 2026-09-11T09:31:47.919Z - [SYNC]: collect registered sync generators
982
- [NX Daemon Server] - 2026-09-11T09:31:47.920Z - [SYNC]: project graph hash is the same, not collecting task sync generators
983
- [NX Daemon Server] - 2026-09-11T09:31:47.920Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
984
- [NX Daemon Server] - 2026-09-11T09:31:47.920Z - Time taken for 'total execution time for createProjectGraph()' 18.040699999779463ms
985
- [NX Daemon Server] - 2026-09-11T09:31:50.973Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts was modified
986
- [NX Daemon Server] - 2026-09-11T09:31:50.973Z - [WATCHER]: Processing file changes in outputs
987
- [NX Daemon Server] - 2026-09-11T09:31:51.152Z - [WATCHER]: Processing file changes in outputs
988
- [NX Daemon Server] - 2026-09-11T09:31:51.203Z - [WATCHER]: Processing file changes in outputs
989
- [NX Daemon Server] - 2026-09-11T09:31:57.387Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
990
- [NX Daemon Server] - 2026-09-11T09:31:57.387Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts
991
- [NX Daemon Server] - 2026-09-11T09:31:57.387Z - [REQUEST]:
992
- [NX Daemon Server] - 2026-09-11T09:31:57.390Z - Time taken for 'hash changed files from watcher' 0.22550000064074993ms
993
- [NX Daemon Server] - 2026-09-11T09:31:57.402Z - Time taken for 'build-project-configs' 10.75109999999404ms
994
- [NX Daemon Server] - 2026-09-11T09:31:57.420Z - [SYNC]: collect registered sync generators
995
- [NX Daemon Server] - 2026-09-11T09:31:57.421Z - [SYNC]: project graph hash is the same, not collecting task sync generators
996
- [NX Daemon Server] - 2026-09-11T09:31:57.421Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
997
- [NX Daemon Server] - 2026-09-11T09:31:57.421Z - Time taken for 'total execution time for createProjectGraph()' 14.5152000002563ms
998
- [NX Daemon Server] - 2026-09-11T09:33:07.176Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md was modified
999
- [NX Daemon Server] - 2026-09-11T09:33:07.176Z - [WATCHER]: Processing file changes in outputs
1000
- [NX Daemon Server] - 2026-09-11T09:33:13.588Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1001
- [NX Daemon Server] - 2026-09-11T09:33:13.589Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md
1002
- [NX Daemon Server] - 2026-09-11T09:33:13.589Z - [REQUEST]:
1003
- [NX Daemon Server] - 2026-09-11T09:33:13.591Z - Time taken for 'hash changed files from watcher' 0.3866000007838011ms
1004
- [NX Daemon Server] - 2026-09-11T09:33:13.612Z - Time taken for 'build-project-configs' 14.745300000533462ms
1005
- [NX Daemon Server] - 2026-09-11T09:33:13.638Z - [SYNC]: collect registered sync generators
1006
- [NX Daemon Server] - 2026-09-11T09:33:13.640Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1007
- [NX Daemon Server] - 2026-09-11T09:33:13.640Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1008
- [NX Daemon Server] - 2026-09-11T09:33:13.640Z - Time taken for 'total execution time for createProjectGraph()' 22.004800000227988ms
1009
- [NX Daemon Server] - 2026-09-11T09:33:15.860Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md was modified
1010
- [NX Daemon Server] - 2026-09-11T09:33:15.860Z - [WATCHER]: Processing file changes in outputs
1011
- [NX Daemon Server] - 2026-09-11T09:33:22.270Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1012
- [NX Daemon Server] - 2026-09-11T09:33:22.270Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md
1013
- [NX Daemon Server] - 2026-09-11T09:33:22.270Z - [REQUEST]:
1014
- [NX Daemon Server] - 2026-09-11T09:33:22.272Z - Time taken for 'hash changed files from watcher' 0.32659999933093786ms
1015
- [NX Daemon Server] - 2026-09-11T09:33:22.284Z - Time taken for 'build-project-configs' 9.488599999807775ms
1016
- [NX Daemon Server] - 2026-09-11T09:33:22.300Z - [SYNC]: collect registered sync generators
1017
- [NX Daemon Server] - 2026-09-11T09:33:22.301Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1018
- [NX Daemon Server] - 2026-09-11T09:33:22.302Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1019
- [NX Daemon Server] - 2026-09-11T09:33:22.302Z - Time taken for 'total execution time for createProjectGraph()' 12.793800000101328ms
1020
- [NX Daemon Server] - 2026-09-11T09:33:48.078Z - [WATCHER]: Processing file changes in outputs
1021
- [NX Daemon Server] - 2026-09-11T09:33:48.079Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md was modified
1022
- [NX Daemon Server] - 2026-09-11T09:33:49.768Z - [WATCHER]: Processing file changes in outputs
1023
- [NX Daemon Server] - 2026-09-11T09:33:49.769Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md was modified
1024
- [NX Daemon Server] - 2026-09-11T09:33:54.493Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1025
- [NX Daemon Server] - 2026-09-11T09:33:54.493Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md
1026
- [NX Daemon Server] - 2026-09-11T09:33:54.493Z - [REQUEST]:
1027
- [NX Daemon Server] - 2026-09-11T09:33:54.495Z - Time taken for 'hash changed files from watcher' 0.26570000033825636ms
1028
- [NX Daemon Server] - 2026-09-11T09:33:54.508Z - Time taken for 'build-project-configs' 11.09539999999106ms
1029
- [NX Daemon Server] - 2026-09-11T09:33:54.526Z - [SYNC]: collect registered sync generators
1030
- [NX Daemon Server] - 2026-09-11T09:33:54.526Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1031
- [NX Daemon Server] - 2026-09-11T09:33:54.526Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1032
- [NX Daemon Server] - 2026-09-11T09:33:54.527Z - Time taken for 'total execution time for createProjectGraph()' 14.220800000242889ms
1033
- [NX Daemon Server] - 2026-09-11T09:34:03.740Z - [WATCHER]: Processing file changes in outputs
1034
- [NX Daemon Server] - 2026-09-11T09:34:03.742Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md was modified
1035
- [NX Daemon Server] - 2026-09-11T09:34:10.156Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1036
- [NX Daemon Server] - 2026-09-11T09:34:10.156Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md
1037
- [NX Daemon Server] - 2026-09-11T09:34:10.156Z - [REQUEST]:
1038
- [NX Daemon Server] - 2026-09-11T09:34:10.158Z - Time taken for 'hash changed files from watcher' 0.3979000002145767ms
1039
- [NX Daemon Server] - 2026-09-11T09:34:10.173Z - Time taken for 'build-project-configs' 11.042499999515712ms
1040
- [NX Daemon Server] - 2026-09-11T09:34:10.189Z - [SYNC]: collect registered sync generators
1041
- [NX Daemon Server] - 2026-09-11T09:34:10.189Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1042
- [NX Daemon Server] - 2026-09-11T09:34:10.189Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1043
- [NX Daemon Server] - 2026-09-11T09:34:10.190Z - Time taken for 'total execution time for createProjectGraph()' 14.690200000070035ms
1044
- [NX Daemon Server] - 2026-09-11T09:34:10.927Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1045
- [NX Daemon Server] - 2026-09-11T09:34:10.928Z - [WATCHER]: Processing file changes in outputs
1046
- [NX Daemon Server] - 2026-09-11T09:34:13.404Z - [WATCHER]: Processing file changes in outputs
1047
- [NX Daemon Server] - 2026-09-11T09:34:13.405Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1048
- [NX Daemon Server] - 2026-09-11T09:34:17.335Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1049
- [NX Daemon Server] - 2026-09-11T09:34:17.335Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
1050
- [NX Daemon Server] - 2026-09-11T09:34:17.335Z - [REQUEST]:
1051
- [NX Daemon Server] - 2026-09-11T09:34:17.341Z - Time taken for 'hash changed files from watcher' 0.9309999998658895ms
1052
- [NX Daemon Server] - 2026-09-11T09:34:17.359Z - Time taken for 'build-project-configs' 15.59320000000298ms
1053
- [NX Daemon Server] - 2026-09-11T09:34:17.389Z - [SYNC]: collect registered sync generators
1054
- [NX Daemon Server] - 2026-09-11T09:34:17.390Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1055
- [NX Daemon Server] - 2026-09-11T09:34:17.390Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1056
- [NX Daemon Server] - 2026-09-11T09:34:17.390Z - Time taken for 'total execution time for createProjectGraph()' 23.874499999918044ms
1057
- [NX Daemon Server] - 2026-09-11T09:34:26.400Z - [WATCHER]: Processing file changes in outputs
1058
- [NX Daemon Server] - 2026-09-11T09:34:26.401Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1059
- [NX Daemon Server] - 2026-09-11T09:34:32.812Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1060
- [NX Daemon Server] - 2026-09-11T09:34:32.812Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
1061
- [NX Daemon Server] - 2026-09-11T09:34:32.812Z - [REQUEST]:
1062
- [NX Daemon Server] - 2026-09-11T09:34:32.814Z - Time taken for 'hash changed files from watcher' 0.3123000003397465ms
1063
- [NX Daemon Server] - 2026-09-11T09:34:32.829Z - Time taken for 'build-project-configs' 12.292100000195205ms
1064
- [NX Daemon Server] - 2026-09-11T09:34:32.849Z - [SYNC]: collect registered sync generators
1065
- [NX Daemon Server] - 2026-09-11T09:34:32.849Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1066
- [NX Daemon Server] - 2026-09-11T09:34:32.850Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1067
- [NX Daemon Server] - 2026-09-11T09:34:32.850Z - Time taken for 'total execution time for createProjectGraph()' 16.533500000834465ms
1068
- [NX Daemon Server] - 2026-09-11T09:34:36.180Z - [WATCHER]: Processing file changes in outputs
1069
- [NX Daemon Server] - 2026-09-11T09:34:36.181Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1070
- [NX Daemon Server] - 2026-09-11T09:34:37.895Z - [WATCHER]: Processing file changes in outputs
1071
- [NX Daemon Server] - 2026-09-11T09:34:37.897Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1072
- [NX Daemon Server] - 2026-09-11T09:34:42.594Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1073
- [NX Daemon Server] - 2026-09-11T09:34:42.595Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
1074
- [NX Daemon Server] - 2026-09-11T09:34:42.595Z - [REQUEST]:
1075
- [NX Daemon Server] - 2026-09-11T09:34:42.596Z - Time taken for 'hash changed files from watcher' 0.288399999961257ms
1076
- [NX Daemon Server] - 2026-09-11T09:34:42.608Z - Time taken for 'build-project-configs' 8.740299999713898ms
1077
- [NX Daemon Server] - 2026-09-11T09:34:42.624Z - [SYNC]: collect registered sync generators
1078
- [NX Daemon Server] - 2026-09-11T09:34:42.625Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1079
- [NX Daemon Server] - 2026-09-11T09:34:42.625Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1080
- [NX Daemon Server] - 2026-09-11T09:34:42.625Z - Time taken for 'total execution time for createProjectGraph()' 13.72039999999106ms
1081
- [NX Daemon Server] - 2026-09-11T09:34:44.162Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1082
- [NX Daemon Server] - 2026-09-11T09:34:44.162Z - [WATCHER]: Processing file changes in outputs
1083
- [NX Daemon Server] - 2026-09-11T09:34:47.346Z - [WATCHER]: Processing file changes in outputs
1084
- [NX Daemon Server] - 2026-09-11T09:34:47.347Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1085
- [NX Daemon Server] - 2026-09-11T09:34:50.570Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1086
- [NX Daemon Server] - 2026-09-11T09:34:50.570Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
1087
- [NX Daemon Server] - 2026-09-11T09:34:50.570Z - [REQUEST]:
1088
- [NX Daemon Server] - 2026-09-11T09:34:50.572Z - Time taken for 'hash changed files from watcher' 0.2907999996095896ms
1089
- [NX Daemon Server] - 2026-09-11T09:34:50.585Z - Time taken for 'build-project-configs' 9.27419999986887ms
1090
- [NX Daemon Server] - 2026-09-11T09:34:50.601Z - [SYNC]: collect registered sync generators
1091
- [NX Daemon Server] - 2026-09-11T09:34:50.602Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1092
- [NX Daemon Server] - 2026-09-11T09:34:50.602Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1093
- [NX Daemon Server] - 2026-09-11T09:34:50.602Z - Time taken for 'total execution time for createProjectGraph()' 13.902099999599159ms
1094
- [NX Daemon Server] - 2026-09-11T09:34:53.025Z - [WATCHER]: Processing file changes in outputs
1095
- [NX Daemon Server] - 2026-09-11T09:34:53.027Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1096
- [NX Daemon Server] - 2026-09-11T09:34:56.173Z - [WATCHER]: Processing file changes in outputs
1097
- [NX Daemon Server] - 2026-09-11T09:34:56.174Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1098
- [NX Daemon Server] - 2026-09-11T09:34:57.468Z - [WATCHER]: Processing file changes in outputs
1099
- [NX Daemon Server] - 2026-09-11T09:34:57.470Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1100
- [NX Daemon Server] - 2026-09-11T09:34:59.438Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1101
- [NX Daemon Server] - 2026-09-11T09:34:59.438Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
1102
- [NX Daemon Server] - 2026-09-11T09:34:59.438Z - [REQUEST]:
1103
- [NX Daemon Server] - 2026-09-11T09:34:59.440Z - Time taken for 'hash changed files from watcher' 0.3378999996930361ms
1104
- [NX Daemon Server] - 2026-09-11T09:34:59.451Z - Time taken for 'build-project-configs' 9.541599999181926ms
1105
- [NX Daemon Server] - 2026-09-11T09:34:59.476Z - [SYNC]: collect registered sync generators
1106
- [NX Daemon Server] - 2026-09-11T09:34:59.477Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1107
- [NX Daemon Server] - 2026-09-11T09:34:59.477Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1108
- [NX Daemon Server] - 2026-09-11T09:34:59.477Z - Time taken for 'total execution time for createProjectGraph()' 18.084800000302494ms
1109
- [NX Daemon Server] - 2026-09-11T09:35:04.148Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1110
- [NX Daemon Server] - 2026-09-11T09:35:04.148Z - [WATCHER]: Processing file changes in outputs
1111
- [NX Daemon Server] - 2026-09-11T09:35:05.926Z - [WATCHER]: Processing file changes in outputs
1112
- [NX Daemon Server] - 2026-09-11T09:35:05.928Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
1113
- [NX Daemon Server] - 2026-09-11T09:35:10.553Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1114
- [NX Daemon Server] - 2026-09-11T09:35:10.553Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
1115
- [NX Daemon Server] - 2026-09-11T09:35:10.553Z - [REQUEST]:
1116
- [NX Daemon Server] - 2026-09-11T09:35:10.555Z - Time taken for 'hash changed files from watcher' 0.30310000013560057ms
1117
- [NX Daemon Server] - 2026-09-11T09:35:10.564Z - Time taken for 'build-project-configs' 8.294699999503791ms
1118
- [NX Daemon Server] - 2026-09-11T09:35:10.583Z - [SYNC]: collect registered sync generators
1119
- [NX Daemon Server] - 2026-09-11T09:35:10.583Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1120
- [NX Daemon Server] - 2026-09-11T09:35:10.583Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1121
- [NX Daemon Server] - 2026-09-11T09:35:10.584Z - Time taken for 'total execution time for createProjectGraph()' 11.778300000354648ms
1122
- [NX Daemon Server] - 2026-09-11T10:35:47.060Z - [WATCHER]: Processing file changes in outputs
1123
- [NX Daemon Server] - 2026-09-11T10:35:47.132Z - [WATCHER]: Processing file changes in outputs
1124
- [NX Daemon Server] - 2026-09-11T10:36:04.474Z - [WATCHER]: Processing file changes in outputs
1125
- [NX Daemon Server] - 2026-09-11T10:36:04.477Z - [WATCHER]: shared/testing/page-objects/MatchersPages was deleted
1126
- [NX Daemon Server] - 2026-09-11T10:36:10.879Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1127
- [NX Daemon Server] - 2026-09-11T10:36:10.879Z - [REQUEST]:
1128
- [NX Daemon Server] - 2026-09-11T10:36:10.879Z - [REQUEST]: shared/testing/page-objects/MatchersPages
1129
- [NX Daemon Server] - 2026-09-11T10:36:10.881Z - Time taken for 'hash changed files from watcher' 0.1519000008702278ms
1130
- [NX Daemon Server] - 2026-09-11T10:36:10.892Z - Time taken for 'build-project-configs' 9.35300000011921ms
1131
- [NX Daemon Server] - 2026-09-11T10:36:10.909Z - [SYNC]: collect registered sync generators
1132
- [NX Daemon Server] - 2026-09-11T10:36:10.910Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1133
- [NX Daemon Server] - 2026-09-11T10:36:10.910Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1134
- [NX Daemon Server] - 2026-09-11T10:36:10.910Z - Time taken for 'total execution time for createProjectGraph()' 12.190100001171231ms
1135
- [NX Daemon Server] - 2026-09-11T10:36:19.592Z - [WATCHER]: Processing file changes in outputs
1136
- [NX Daemon Server] - 2026-09-11T10:36:19.593Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
1137
- [NX Daemon Server] - 2026-09-11T10:36:19.758Z - [WATCHER]: Processing file changes in outputs
1138
- [NX Daemon Server] - 2026-09-11T10:36:26.000Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1139
- [NX Daemon Server] - 2026-09-11T10:36:26.000Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
1140
- [NX Daemon Server] - 2026-09-11T10:36:26.000Z - [REQUEST]:
1141
- [NX Daemon Server] - 2026-09-11T10:36:26.001Z - Time taken for 'hash changed files from watcher' 0.25740000046789646ms
1142
- [NX Daemon Server] - 2026-09-11T10:36:26.011Z - Time taken for 'build-project-configs' 8.156399998813868ms
1143
- [NX Daemon Server] - 2026-09-11T10:36:26.030Z - [SYNC]: collect registered sync generators
1144
- [NX Daemon Server] - 2026-09-11T10:36:26.030Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1145
- [NX Daemon Server] - 2026-09-11T10:36:26.031Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1146
- [NX Daemon Server] - 2026-09-11T10:36:26.031Z - Time taken for 'total execution time for createProjectGraph()' 13.578900000080466ms
1147
- [NX Daemon Server] - 2026-09-11T10:36:31.988Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
1148
- [NX Daemon Server] - 2026-09-11T10:36:31.989Z - [WATCHER]: Processing file changes in outputs
1149
- [NX Daemon Server] - 2026-09-11T10:36:32.127Z - [WATCHER]: Processing file changes in outputs
1150
- [NX Daemon Server] - 2026-09-11T10:36:33.592Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
1151
- [NX Daemon Server] - 2026-09-11T10:36:33.592Z - [WATCHER]: Processing file changes in outputs
1152
- [NX Daemon Server] - 2026-09-11T10:36:33.756Z - [WATCHER]: Processing file changes in outputs
1153
- [NX Daemon Server] - 2026-09-11T10:36:38.389Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1154
- [NX Daemon Server] - 2026-09-11T10:36:38.389Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
1155
- [NX Daemon Server] - 2026-09-11T10:36:38.389Z - [REQUEST]:
1156
- [NX Daemon Server] - 2026-09-11T10:36:38.390Z - Time taken for 'hash changed files from watcher' 0.2805000003427267ms
1157
- [NX Daemon Server] - 2026-09-11T10:36:38.400Z - Time taken for 'build-project-configs' 7.691700000315905ms
1158
- [NX Daemon Server] - 2026-09-11T10:36:38.419Z - [SYNC]: collect registered sync generators
1159
- [NX Daemon Server] - 2026-09-11T10:36:38.419Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1160
- [NX Daemon Server] - 2026-09-11T10:36:38.419Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1161
- [NX Daemon Server] - 2026-09-11T10:36:38.419Z - Time taken for 'total execution time for createProjectGraph()' 14.401100000366569ms
1162
- [NX Daemon Server] - 2026-09-11T10:36:43.662Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
1163
- [NX Daemon Server] - 2026-09-11T10:36:43.662Z - [WATCHER]: Processing file changes in outputs
1164
- [NX Daemon Server] - 2026-09-11T10:36:43.817Z - [WATCHER]: Processing file changes in outputs
1165
- [NX Daemon Server] - 2026-09-11T10:36:46.033Z - [WATCHER]: Processing file changes in outputs
1166
- [NX Daemon Server] - 2026-09-11T10:36:46.034Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
1167
- [NX Daemon Server] - 2026-09-11T10:36:46.184Z - [WATCHER]: Processing file changes in outputs
1168
- [NX Daemon Server] - 2026-09-11T10:36:47.185Z - [WATCHER]: Processing file changes in outputs
1169
- [NX Daemon Server] - 2026-09-11T10:36:47.186Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
1170
- [NX Daemon Server] - 2026-09-11T10:36:47.404Z - [WATCHER]: Processing file changes in outputs
1171
- [NX Daemon Server] - 2026-09-11T10:36:50.069Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1172
- [NX Daemon Server] - 2026-09-11T10:36:50.069Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
1173
- [NX Daemon Server] - 2026-09-11T10:36:50.069Z - [REQUEST]:
1174
- [NX Daemon Server] - 2026-09-11T10:36:50.072Z - Time taken for 'hash changed files from watcher' 0.30280000157654285ms
1175
- [NX Daemon Server] - 2026-09-11T10:36:50.081Z - Time taken for 'build-project-configs' 7.9078000001609325ms
1176
- [NX Daemon Server] - 2026-09-11T10:36:50.096Z - [SYNC]: collect registered sync generators
1177
- [NX Daemon Server] - 2026-09-11T10:36:50.096Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1178
- [NX Daemon Server] - 2026-09-11T10:36:50.097Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1179
- [NX Daemon Server] - 2026-09-11T10:36:50.097Z - Time taken for 'total execution time for createProjectGraph()' 11.362500000745058ms
1180
- [NX Daemon Server] - 2026-09-11T10:36:58.429Z - [WATCHER]: Processing file changes in outputs
1181
- [NX Daemon Server] - 2026-09-11T10:36:58.430Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
1182
- [NX Daemon Server] - 2026-09-11T10:36:58.596Z - [WATCHER]: Processing file changes in outputs
1183
- [NX Daemon Server] - 2026-09-11T10:37:04.831Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1184
- [NX Daemon Server] - 2026-09-11T10:37:04.831Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
1185
- [NX Daemon Server] - 2026-09-11T10:37:04.831Z - [REQUEST]:
1186
- [NX Daemon Server] - 2026-09-11T10:37:04.832Z - Time taken for 'hash changed files from watcher' 0.3953999988734722ms
1187
- [NX Daemon Server] - 2026-09-11T10:37:04.848Z - Time taken for 'build-project-configs' 12.105299999937415ms
1188
- [NX Daemon Server] - 2026-09-11T10:37:04.867Z - [SYNC]: collect registered sync generators
1189
- [NX Daemon Server] - 2026-09-11T10:37:04.868Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1190
- [NX Daemon Server] - 2026-09-11T10:37:04.868Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1191
- [NX Daemon Server] - 2026-09-11T10:37:04.868Z - Time taken for 'total execution time for createProjectGraph()' 15.996899999678135ms
1192
- [NX Daemon Server] - 2026-09-11T10:49:18.560Z - [WATCHER]: Processing file changes in outputs
1193
- [NX Daemon Server] - 2026-09-11T10:49:18.609Z - [WATCHER]: tsconfig.json was modified
1194
- [NX Daemon Server] - 2026-09-11T10:49:18.624Z - [WATCHER]: Processing file changes in outputs
1195
- [NX Daemon Server] - 2026-09-11T10:49:25.012Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1196
- [NX Daemon Server] - 2026-09-11T10:49:25.013Z - [REQUEST]: tsconfig.json
1197
- [NX Daemon Server] - 2026-09-11T10:49:25.013Z - [REQUEST]:
1198
- [NX Daemon Server] - 2026-09-11T10:49:25.015Z - Time taken for 'hash changed files from watcher' 0.4276000000536442ms
1199
- [NX Daemon Server] - 2026-09-11T10:49:25.032Z - Time taken for 'build-project-configs' 13.775700001046062ms
1200
- [NX Daemon Server] - 2026-09-11T10:49:25.057Z - [SYNC]: collect registered sync generators
1201
- [NX Daemon Server] - 2026-09-11T10:49:25.058Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1202
- [NX Daemon Server] - 2026-09-11T10:49:25.058Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1203
- [NX Daemon Server] - 2026-09-11T10:49:25.058Z - Time taken for 'total execution time for createProjectGraph()' 18.79530000127852ms
1204
- [NX Daemon Server] - 2026-09-11T10:49:26.929Z - [WATCHER]: Processing file changes in outputs
1205
- [NX Daemon Server] - 2026-09-11T10:49:26.962Z - [WATCHER]: tsconfig.json was modified
1206
- [NX Daemon Server] - 2026-09-11T10:49:30.807Z - [WATCHER]: Processing file changes in outputs
1207
- [NX Daemon Server] - 2026-09-11T10:49:31.297Z - [WATCHER]: Processing file changes in outputs
1208
- [NX Daemon Server] - 2026-09-11T10:49:31.799Z - [WATCHER]: Processing file changes in outputs
1209
- [NX Daemon Server] - 2026-09-11T10:49:33.375Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1210
- [NX Daemon Server] - 2026-09-11T10:49:33.375Z - [REQUEST]: tsconfig.json
1211
- [NX Daemon Server] - 2026-09-11T10:49:33.375Z - [REQUEST]:
1212
- [NX Daemon Server] - 2026-09-11T10:49:33.377Z - Time taken for 'hash changed files from watcher' 0.2906999997794628ms
1213
- [NX Daemon Server] - 2026-09-11T10:49:33.393Z - Time taken for 'build-project-configs' 11.801200000569224ms
1214
- [NX Daemon Server] - 2026-09-11T10:49:33.414Z - [SYNC]: collect registered sync generators
1215
- [NX Daemon Server] - 2026-09-11T10:49:33.415Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1216
- [NX Daemon Server] - 2026-09-11T10:49:33.415Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1217
- [NX Daemon Server] - 2026-09-11T10:49:33.415Z - Time taken for 'total execution time for createProjectGraph()' 16.393800001591444ms
1218
- [NX Daemon Server] - 2026-09-12T17:52:58.618Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
1219
- [NX Daemon Server] - 2026-09-12T17:52:58.626Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
1220
- [NX Daemon Server] - 2026-09-12T17:52:58.629Z - Established a connection. Number of open connections: 1
1221
- [NX Daemon Server] - 2026-09-12T17:52:58.631Z - Established a connection. Number of open connections: 2
1222
- [NX Daemon Server] - 2026-09-12T17:52:58.635Z - Closed a connection. Number of open connections: 1
1223
- [NX Daemon Server] - 2026-09-12T17:52:58.638Z - [REQUEST]: Client Request for Project Graph Received
1224
- [NX Daemon Server] - 2026-09-12T17:52:59.885Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1225
- [NX Daemon Server] - 2026-09-12T17:52:59.885Z - [REQUEST]:
1226
- [NX Daemon Server] - 2026-09-12T17:52:59.885Z - [REQUEST]:
1227
- [NX Daemon Server] - 2026-09-12T17:52:59.902Z - Time taken for 'loadNxPlugins' 1242.721ms
1228
- [NX Daemon Server] - 2026-09-12T17:53:00.032Z - Time taken for 'build-project-configs' 90.6863000000003ms
1229
- [NX Daemon Server] - 2026-09-12T17:53:00.074Z - [SYNC]: collect registered sync generators
1230
- [NX Daemon Server] - 2026-09-12T17:53:00.077Z - [REQUEST]: Responding to the client. project-graph
1231
- [NX Daemon Server] - 2026-09-12T17:53:00.078Z - Time taken for 'total for creating and serializing project graph' 1438.0722999999998ms
1232
- [NX Daemon Server] - 2026-09-12T17:53:00.080Z - Done responding to the client project-graph
1233
- [NX Daemon Server] - 2026-09-12T17:53:00.080Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1438. Response time: 4.
1234
- [NX Daemon Server] - 2026-09-12T17:53:00.677Z - [REQUEST]: Responding to the client. handleHashTasks
1235
- [NX Daemon Server] - 2026-09-12T17:53:00.677Z - Done responding to the client handleHashTasks
1236
- [NX Daemon Server] - 2026-09-12T17:53:00.677Z - Handled HASH_TASKS. Handling time: 10. Response time: 0.
1237
- [NX Daemon Server] - 2026-09-12T17:53:01.626Z - Closed a connection. Number of open connections: 0
1238
- [NX Daemon Server] - 2026-09-12T18:14:31.297Z - Established a connection. Number of open connections: 1
1239
- [NX Daemon Server] - 2026-09-12T18:14:31.297Z - Closed a connection. Number of open connections: 0
1240
- [NX Daemon Server] - 2026-09-12T18:14:31.298Z - Established a connection. Number of open connections: 1
1241
- [NX Daemon Server] - 2026-09-12T18:14:31.302Z - [REQUEST]: Client Request for Project Graph Received
1242
- [NX Daemon Server] - 2026-09-12T18:14:31.303Z - [REQUEST]: Responding to the client. project-graph
1243
- [NX Daemon Server] - 2026-09-12T18:14:31.304Z - Time taken for 'total for creating and serializing project graph' 0.9169999998994172ms
1244
- [NX Daemon Server] - 2026-09-12T18:14:31.306Z - Done responding to the client project-graph
1245
- [NX Daemon Server] - 2026-09-12T18:14:31.306Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
1246
- [NX Daemon Server] - 2026-09-12T18:14:31.367Z - [REQUEST]: Responding to the client. handleHashTasks
1247
- [NX Daemon Server] - 2026-09-12T18:14:31.368Z - Done responding to the client handleHashTasks
1248
- [NX Daemon Server] - 2026-09-12T18:14:31.368Z - Handled HASH_TASKS. Handling time: 2. Response time: 1.
1249
- [NX Daemon Server] - 2026-09-12T18:14:32.181Z - Closed a connection. Number of open connections: 0
1250
- [NX Daemon Server] - 2026-09-12T18:18:28.971Z - [WATCHER]: Processing file changes in outputs
1251
- [NX Daemon Server] - 2026-09-12T18:18:29.033Z - [WATCHER]: Processing file changes in outputs
1252
- [NX Daemon Server] - 2026-09-12T18:18:29.047Z - [WATCHER]: tsconfig.json was modified
1253
- [NX Daemon Server] - 2026-09-12T18:18:29.156Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1254
- [NX Daemon Server] - 2026-09-12T18:18:29.156Z - [REQUEST]: tsconfig.json
1255
- [NX Daemon Server] - 2026-09-12T18:18:29.156Z - [REQUEST]:
1256
- [NX Daemon Server] - 2026-09-12T18:18:29.162Z - Time taken for 'hash changed files from watcher' 2.0808000001125038ms
1257
- [NX Daemon Server] - 2026-09-12T18:18:29.194Z - Time taken for 'build-project-configs' 25.62789999996312ms
1258
- [NX Daemon Server] - 2026-09-12T18:18:29.231Z - [SYNC]: collect registered sync generators
1259
- [NX Daemon Server] - 2026-09-12T18:18:29.232Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1260
- [NX Daemon Server] - 2026-09-12T18:18:29.232Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1261
- [NX Daemon Server] - 2026-09-12T18:18:29.233Z - Time taken for 'total execution time for createProjectGraph()' 31.96889999997802ms
1262
- [NX Daemon Server] - 2026-09-12T18:18:51.899Z - [WATCHER]: Processing file changes in outputs
1263
- [NX Daemon Server] - 2026-09-12T18:18:51.940Z - [WATCHER]: Processing file changes in outputs
1264
- [NX Daemon Server] - 2026-09-12T18:18:51.952Z - [WATCHER]: tsconfig.json was modified
1265
- [NX Daemon Server] - 2026-09-12T18:18:52.157Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1266
- [NX Daemon Server] - 2026-09-12T18:18:52.157Z - [REQUEST]: tsconfig.json
1267
- [NX Daemon Server] - 2026-09-12T18:18:52.157Z - [REQUEST]:
1268
- [NX Daemon Server] - 2026-09-12T18:18:52.164Z - Time taken for 'hash changed files from watcher' 2.1903999999631196ms
1269
- [NX Daemon Server] - 2026-09-12T18:18:52.186Z - Time taken for 'build-project-configs' 19.487800000002608ms
1270
- [NX Daemon Server] - 2026-09-12T18:18:52.223Z - [SYNC]: collect registered sync generators
1271
- [NX Daemon Server] - 2026-09-12T18:18:52.224Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1272
- [NX Daemon Server] - 2026-09-12T18:18:52.225Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1273
- [NX Daemon Server] - 2026-09-12T18:18:52.225Z - Time taken for 'total execution time for createProjectGraph()' 30.777600000146776ms
1274
- [NX Daemon Server] - 2026-09-12T18:18:58.989Z - [WATCHER]: Processing file changes in outputs
1275
- [NX Daemon Server] - 2026-09-12T18:18:59.158Z - [WATCHER]: Processing file changes in outputs
1276
- [NX Daemon Server] - 2026-09-12T18:18:59.273Z - [WATCHER]: Processing file changes in outputs
1277
- [NX Daemon Server] - 2026-09-12T18:18:59.425Z - [WATCHER]: Processing file changes in outputs
1278
- [NX Daemon Server] - 2026-09-12T18:18:59.580Z - [WATCHER]: Processing file changes in outputs
1279
- [NX Daemon Server] - 2026-09-12T18:18:59.754Z - [WATCHER]: Processing file changes in outputs
1280
- [NX Daemon Server] - 2026-09-12T18:18:59.901Z - [WATCHER]: Processing file changes in outputs
1281
- [NX Daemon Server] - 2026-09-12T18:19:00.043Z - [WATCHER]: Processing file changes in outputs
1282
- [NX Daemon Server] - 2026-09-12T18:19:00.190Z - [WATCHER]: Processing file changes in outputs
1283
- [NX Daemon Server] - 2026-09-12T18:19:00.328Z - [WATCHER]: Processing file changes in outputs
1284
- [NX Daemon Server] - 2026-09-12T18:19:00.533Z - [WATCHER]: Processing file changes in outputs
1285
- [NX Daemon Server] - 2026-09-12T18:19:00.663Z - [WATCHER]: Processing file changes in outputs
1286
- [NX Daemon Server] - 2026-09-12T18:19:00.789Z - [WATCHER]: Processing file changes in outputs
1287
- [NX Daemon Server] - 2026-09-12T18:19:00.941Z - [WATCHER]: Processing file changes in outputs
1288
- [NX Daemon Server] - 2026-09-12T18:19:01.083Z - [WATCHER]: Processing file changes in outputs
1289
- [NX Daemon Server] - 2026-09-15T06:34:22.058Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
1290
- [NX Daemon Server] - 2026-09-15T06:34:22.069Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
1291
- [NX Daemon Server] - 2026-09-15T06:34:22.073Z - Established a connection. Number of open connections: 1
1292
- [NX Daemon Server] - 2026-09-15T06:34:22.078Z - Established a connection. Number of open connections: 2
1293
- [NX Daemon Server] - 2026-09-15T06:34:22.084Z - Closed a connection. Number of open connections: 1
1294
- [NX Daemon Server] - 2026-09-15T06:34:22.093Z - [REQUEST]: Client Request for Project Graph Received
1295
- [NX Daemon Server] - 2026-09-15T06:34:23.374Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1296
- [NX Daemon Server] - 2026-09-15T06:34:23.374Z - [REQUEST]:
1297
- [NX Daemon Server] - 2026-09-15T06:34:23.374Z - [REQUEST]:
1298
- [NX Daemon Server] - 2026-09-15T06:34:23.393Z - Time taken for 'loadNxPlugins' 1275.5236ms
1299
- [NX Daemon Server] - 2026-09-15T06:34:23.537Z - Time taken for 'build-project-configs' 100.94979999999987ms
1300
- [NX Daemon Server] - 2026-09-15T06:34:23.588Z - [SYNC]: collect registered sync generators
1301
- [NX Daemon Server] - 2026-09-15T06:34:23.592Z - [REQUEST]: Responding to the client. project-graph
1302
- [NX Daemon Server] - 2026-09-15T06:34:23.594Z - Time taken for 'total for creating and serializing project graph' 1498.8001ms
1303
- [NX Daemon Server] - 2026-09-15T06:34:23.595Z - Done responding to the client project-graph
1304
- [NX Daemon Server] - 2026-09-15T06:34:23.595Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1499. Response time: 3.
1305
- [NX Daemon Server] - 2026-09-15T06:34:24.384Z - [REQUEST]: Responding to the client. handleHashTasks
1306
- [NX Daemon Server] - 2026-09-15T06:34:24.385Z - Done responding to the client handleHashTasks
1307
- [NX Daemon Server] - 2026-09-15T06:34:24.385Z - Handled HASH_TASKS. Handling time: 17. Response time: 1.
1308
- [NX Daemon Server] - 2026-09-15T06:34:27.207Z - Closed a connection. Number of open connections: 0
1309
- [NX Daemon Server] - 2026-09-15T09:07:52.439Z - [WATCHER]: Processing file changes in outputs
1310
- [NX Daemon Server] - 2026-09-15T09:07:52.479Z - [WATCHER]: Processing file changes in outputs
1311
- [NX Daemon Server] - 2026-09-15T09:07:52.501Z - [WATCHER]: tsconfig.json was modified
1312
- [NX Daemon Server] - 2026-09-15T09:07:52.523Z - [WATCHER]: Processing file changes in outputs
1313
- [NX Daemon Server] - 2026-09-15T09:07:52.626Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1314
- [NX Daemon Server] - 2026-09-15T09:07:52.632Z - [REQUEST]: tsconfig.json
1315
- [NX Daemon Server] - 2026-09-15T09:07:52.632Z - [REQUEST]:
1316
- [NX Daemon Server] - 2026-09-15T09:07:52.685Z - Time taken for 'hash changed files from watcher' 8.769100001081824ms
1317
- [NX Daemon Server] - 2026-09-15T09:07:52.749Z - Time taken for 'build-project-configs' 61.77890000119805ms
1318
- [NX Daemon Server] - 2026-09-15T09:07:52.825Z - [SYNC]: collect registered sync generators
1319
- [NX Daemon Server] - 2026-09-15T09:07:52.827Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1320
- [NX Daemon Server] - 2026-09-15T09:07:52.827Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1321
- [NX Daemon Server] - 2026-09-15T09:07:52.828Z - Time taken for 'total execution time for createProjectGraph()' 84.07980000041425ms
1322
- [NX Daemon Server] - 2026-09-15T09:08:11.396Z - [WATCHER]: Processing file changes in outputs
1323
- [NX Daemon Server] - 2026-09-15T09:08:11.443Z - [WATCHER]: tsconfig.json was modified
1324
- [NX Daemon Server] - 2026-09-15T09:08:11.458Z - [WATCHER]: Processing file changes in outputs
1325
- [NX Daemon Server] - 2026-09-15T09:08:11.646Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1326
- [NX Daemon Server] - 2026-09-15T09:08:11.647Z - [REQUEST]: tsconfig.json
1327
- [NX Daemon Server] - 2026-09-15T09:08:11.647Z - [REQUEST]:
1328
- [NX Daemon Server] - 2026-09-15T09:08:11.653Z - Time taken for 'hash changed files from watcher' 1.104900000616908ms
1329
- [NX Daemon Server] - 2026-09-15T09:08:11.672Z - Time taken for 'build-project-configs' 17.196500001475215ms
1330
- [NX Daemon Server] - 2026-09-15T09:08:11.697Z - [SYNC]: collect registered sync generators
1331
- [NX Daemon Server] - 2026-09-15T09:08:11.698Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1332
- [NX Daemon Server] - 2026-09-15T09:08:11.699Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1333
- [NX Daemon Server] - 2026-09-15T09:08:11.699Z - Time taken for 'total execution time for createProjectGraph()' 22.678700000047684ms
1334
- [NX Daemon Server] - 2026-09-15T09:08:15.236Z - [WATCHER]: Processing file changes in outputs
1335
- [NX Daemon Server] - 2026-09-15T09:08:15.456Z - [WATCHER]: Processing file changes in outputs
1336
- [NX Daemon Server] - 2026-09-15T09:08:15.629Z - [WATCHER]: Processing file changes in outputs
1337
- [NX Daemon Server] - 2026-09-15T09:08:15.802Z - [WATCHER]: Processing file changes in outputs
1338
- [NX Daemon Server] - 2026-09-15T09:08:15.904Z - [WATCHER]: Processing file changes in outputs
1339
- [NX Daemon Server] - 2026-09-15T09:08:16.142Z - [WATCHER]: Processing file changes in outputs
1340
- [NX Daemon Server] - 2026-09-15T09:08:16.322Z - [WATCHER]: Processing file changes in outputs
1341
- [NX Daemon Server] - 2026-09-15T09:08:16.504Z - [WATCHER]: Processing file changes in outputs
1342
- [NX Daemon Server] - 2026-09-15T09:08:16.668Z - [WATCHER]: Processing file changes in outputs
1343
- [NX Daemon Server] - 2026-09-15T09:08:16.750Z - [WATCHER]: Processing file changes in outputs
1344
- [NX Daemon Server] - 2026-09-15T09:08:16.915Z - [WATCHER]: Processing file changes in outputs
1345
- [NX Daemon Server] - 2026-09-15T09:08:17.087Z - [WATCHER]: Processing file changes in outputs
1346
- [NX Daemon Server] - 2026-09-15T09:08:17.227Z - [WATCHER]: Processing file changes in outputs
1347
- [NX Daemon Server] - 2026-09-15T09:08:17.376Z - [WATCHER]: Processing file changes in outputs
1348
- [NX Daemon Server] - 2026-09-15T09:08:17.473Z - [WATCHER]: Processing file changes in outputs
1349
- [NX Daemon Server] - 2026-09-16T01:45:17.937Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
1350
- [NX Daemon Server] - 2026-09-16T01:45:17.943Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
1351
- [NX Daemon Server] - 2026-09-16T01:45:17.950Z - Established a connection. Number of open connections: 1
1352
- [NX Daemon Server] - 2026-09-16T01:45:17.955Z - Closed a connection. Number of open connections: 0
1353
- [NX Daemon Server] - 2026-09-16T01:45:17.956Z - Established a connection. Number of open connections: 1
1354
- [NX Daemon Server] - 2026-09-16T01:45:17.957Z - [REQUEST]: Client Request for Project Graph Received
1355
- [NX Daemon Server] - 2026-09-16T01:45:18.365Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1356
- [NX Daemon Server] - 2026-09-16T01:45:18.366Z - [REQUEST]:
1357
- [NX Daemon Server] - 2026-09-16T01:45:18.366Z - [REQUEST]:
1358
- [NX Daemon Server] - 2026-09-16T01:45:18.375Z - Time taken for 'loadNxPlugins' 404.98779999999994ms
1359
- [NX Daemon Server] - 2026-09-16T01:45:18.445Z - Time taken for 'build-project-configs' 48.53729999999996ms
1360
- [NX Daemon Server] - 2026-09-16T01:45:18.472Z - [SYNC]: collect registered sync generators
1361
- [NX Daemon Server] - 2026-09-16T01:45:18.473Z - [REQUEST]: Responding to the client. project-graph
1362
- [NX Daemon Server] - 2026-09-16T01:45:18.474Z - Time taken for 'total for creating and serializing project graph' 515.8249000000001ms
1363
- [NX Daemon Server] - 2026-09-16T01:45:18.476Z - Done responding to the client project-graph
1364
- [NX Daemon Server] - 2026-09-16T01:45:18.476Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 516. Response time: 3.
1365
- [NX Daemon Server] - 2026-09-16T01:45:18.734Z - [REQUEST]: Responding to the client. handleHashTasks
1366
- [NX Daemon Server] - 2026-09-16T01:45:18.734Z - Done responding to the client handleHashTasks
1367
- [NX Daemon Server] - 2026-09-16T01:45:18.734Z - Handled HASH_TASKS. Handling time: 10. Response time: 0.
1368
- [NX Daemon Server] - 2026-09-16T01:45:19.562Z - Closed a connection. Number of open connections: 0
1369
- [NX Daemon Server] - 2026-09-16T02:38:19.996Z - Established a connection. Number of open connections: 1
1370
- [NX Daemon Server] - 2026-09-16T02:38:19.996Z - Closed a connection. Number of open connections: 0
1371
- [NX Daemon Server] - 2026-09-16T02:38:19.997Z - Established a connection. Number of open connections: 1
1372
- [NX Daemon Server] - 2026-09-16T02:38:19.999Z - [REQUEST]: Client Request for Project Graph Received
1373
- [NX Daemon Server] - 2026-09-16T02:38:20.000Z - [REQUEST]: Responding to the client. project-graph
1374
- [NX Daemon Server] - 2026-09-16T02:38:20.001Z - Time taken for 'total for creating and serializing project graph' 0.5132999997586012ms
1375
- [NX Daemon Server] - 2026-09-16T02:38:20.003Z - Done responding to the client project-graph
1376
- [NX Daemon Server] - 2026-09-16T02:38:20.003Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
1377
- [NX Daemon Server] - 2026-09-16T02:38:20.387Z - [REQUEST]: Responding to the client. handleHashTasks
1378
- [NX Daemon Server] - 2026-09-16T02:38:20.387Z - Done responding to the client handleHashTasks
1379
- [NX Daemon Server] - 2026-09-16T02:38:20.387Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
1380
- [NX Daemon Server] - 2026-09-16T02:38:21.035Z - Closed a connection. Number of open connections: 0
1381
- [NX Daemon Server] - 2026-09-16T02:45:04.292Z - Established a connection. Number of open connections: 1
1382
- [NX Daemon Server] - 2026-09-16T02:45:04.292Z - Closed a connection. Number of open connections: 0
1383
- [NX Daemon Server] - 2026-09-16T02:45:04.293Z - Established a connection. Number of open connections: 1
1384
- [NX Daemon Server] - 2026-09-16T02:45:04.296Z - [REQUEST]: Client Request for Project Graph Received
1385
- [NX Daemon Server] - 2026-09-16T02:45:04.297Z - [REQUEST]: Responding to the client. project-graph
1386
- [NX Daemon Server] - 2026-09-16T02:45:04.298Z - Time taken for 'total for creating and serializing project graph' 0.43410000018775463ms
1387
- [NX Daemon Server] - 2026-09-16T02:45:04.300Z - Done responding to the client project-graph
1388
- [NX Daemon Server] - 2026-09-16T02:45:04.300Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
1389
- [NX Daemon Server] - 2026-09-16T02:45:04.336Z - [REQUEST]: Responding to the client. handleHashTasks
1390
- [NX Daemon Server] - 2026-09-16T02:45:04.336Z - Done responding to the client handleHashTasks
1391
- [NX Daemon Server] - 2026-09-16T02:45:04.336Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
1392
- [NX Daemon Server] - 2026-09-16T02:45:04.997Z - Closed a connection. Number of open connections: 0
1393
- [NX Daemon Server] - 2026-09-16T03:18:31.765Z - Established a connection. Number of open connections: 1
1394
- [NX Daemon Server] - 2026-09-16T03:18:31.766Z - Closed a connection. Number of open connections: 0
1395
- [NX Daemon Server] - 2026-09-16T03:18:31.767Z - Established a connection. Number of open connections: 1
1396
- [NX Daemon Server] - 2026-09-16T03:18:31.770Z - [REQUEST]: Client Request for Project Graph Received
1397
- [NX Daemon Server] - 2026-09-16T03:18:31.771Z - [REQUEST]: Responding to the client. project-graph
1398
- [NX Daemon Server] - 2026-09-16T03:18:31.771Z - Time taken for 'total for creating and serializing project graph' 0.6277999999001622ms
1399
- [NX Daemon Server] - 2026-09-16T03:18:31.773Z - Done responding to the client project-graph
1400
- [NX Daemon Server] - 2026-09-16T03:18:31.773Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2.
1401
- [NX Daemon Server] - 2026-09-16T03:18:31.814Z - [REQUEST]: Responding to the client. handleHashTasks
1402
- [NX Daemon Server] - 2026-09-16T03:18:31.814Z - Done responding to the client handleHashTasks
1403
- [NX Daemon Server] - 2026-09-16T03:18:31.814Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
1404
- [NX Daemon Server] - 2026-09-16T03:18:32.448Z - Closed a connection. Number of open connections: 0
1405
- [NX Daemon Server] - 2026-09-16T03:33:20.578Z - Established a connection. Number of open connections: 1
1406
- [NX Daemon Server] - 2026-09-16T03:33:20.578Z - Closed a connection. Number of open connections: 0
1407
- [NX Daemon Server] - 2026-09-16T03:33:20.579Z - Established a connection. Number of open connections: 1
1408
- [NX Daemon Server] - 2026-09-16T03:33:20.581Z - [REQUEST]: Client Request for Project Graph Received
1409
- [NX Daemon Server] - 2026-09-16T03:33:20.582Z - [REQUEST]: Responding to the client. project-graph
1410
- [NX Daemon Server] - 2026-09-16T03:33:20.583Z - Time taken for 'total for creating and serializing project graph' 0.642400000244379ms
1411
- [NX Daemon Server] - 2026-09-16T03:33:20.585Z - Done responding to the client project-graph
1412
- [NX Daemon Server] - 2026-09-16T03:33:20.585Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
1413
- [NX Daemon Server] - 2026-09-16T03:33:20.624Z - [REQUEST]: Responding to the client. handleHashTasks
1414
- [NX Daemon Server] - 2026-09-16T03:33:20.624Z - Done responding to the client handleHashTasks
1415
- [NX Daemon Server] - 2026-09-16T03:33:20.624Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
1416
- [NX Daemon Server] - 2026-09-16T03:33:21.246Z - Closed a connection. Number of open connections: 0
1417
- [NX Daemon Server] - 2026-09-16T03:34:19.773Z - Established a connection. Number of open connections: 1
1418
- [NX Daemon Server] - 2026-09-16T03:34:19.774Z - Closed a connection. Number of open connections: 0
1419
- [NX Daemon Server] - 2026-09-16T03:34:19.775Z - Established a connection. Number of open connections: 1
1420
- [NX Daemon Server] - 2026-09-16T03:34:19.781Z - [REQUEST]: Client Request for Project Graph Received
1421
- [NX Daemon Server] - 2026-09-16T03:34:19.782Z - [REQUEST]: Responding to the client. project-graph
1422
- [NX Daemon Server] - 2026-09-16T03:34:19.784Z - Time taken for 'total for creating and serializing project graph' 0.7047000005841255ms
1423
- [NX Daemon Server] - 2026-09-16T03:34:19.787Z - Done responding to the client project-graph
1424
- [NX Daemon Server] - 2026-09-16T03:34:19.787Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5.
1425
- [NX Daemon Server] - 2026-09-16T03:34:19.869Z - [REQUEST]: Responding to the client. handleHashTasks
1426
- [NX Daemon Server] - 2026-09-16T03:34:19.869Z - Done responding to the client handleHashTasks
1427
- [NX Daemon Server] - 2026-09-16T03:34:19.869Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
1428
- [NX Daemon Server] - 2026-09-16T03:34:20.838Z - Closed a connection. Number of open connections: 0
1429
- [NX Daemon Server] - 2026-09-16T03:48:37.023Z - [WATCHER]: Processing file changes in outputs
1430
- [NX Daemon Server] - 2026-09-16T03:48:37.024Z - [WATCHER]: 0 file(s) created or restored, 4 file(s) modified, 0 file(s) deleted
1431
- [NX Daemon Server] - 2026-09-16T03:48:37.139Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1432
- [NX Daemon Server] - 2026-09-16T03:48:37.139Z - [REQUEST]: spectra.config.ts,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/EnvironmentConfig/suite.md,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts
1433
- [NX Daemon Server] - 2026-09-16T03:48:37.139Z - [REQUEST]:
1434
- [NX Daemon Server] - 2026-09-16T03:48:37.141Z - Time taken for 'hash changed files from watcher' 2.0879000006243587ms
1435
- [NX Daemon Server] - 2026-09-16T03:48:37.154Z - Time taken for 'build-project-configs' 9.820099999196827ms
1436
- [NX Daemon Server] - 2026-09-16T03:48:37.177Z - [SYNC]: collect registered sync generators
1437
- [NX Daemon Server] - 2026-09-16T03:48:37.178Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1438
- [NX Daemon Server] - 2026-09-16T03:48:37.178Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1439
- [NX Daemon Server] - 2026-09-16T03:48:37.178Z - Time taken for 'total execution time for createProjectGraph()' 19.874699999578297ms
1440
- [NX Daemon Server] - 2026-09-16T03:57:54.907Z - [WATCHER]: 0 file(s) created or restored, 1 file(s) modified, 5 file(s) deleted
1441
- [NX Daemon Server] - 2026-09-16T03:57:54.908Z - [WATCHER]: Processing file changes in outputs
1442
- [NX Daemon Server] - 2026-09-16T03:57:55.111Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1443
- [NX Daemon Server] - 2026-09-16T03:57:55.111Z - [REQUEST]: spectra.config.ts
1444
- [NX Daemon Server] - 2026-09-16T03:57:55.111Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable,packages/matchers/e2e/specs/EnvironmentConfig,packages/matchers/e2e/specs/EnvironmentConfig/suite.md,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts
1445
- [NX Daemon Server] - 2026-09-16T03:57:55.113Z - Time taken for 'hash changed files from watcher' 0.8640000000596046ms
1446
- [NX Daemon Server] - 2026-09-16T03:57:55.125Z - Time taken for 'build-project-configs' 10.81900000013411ms
1447
- [NX Daemon Server] - 2026-09-16T03:57:55.141Z - [SYNC]: collect registered sync generators
1448
- [NX Daemon Server] - 2026-09-16T03:57:55.141Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1449
- [NX Daemon Server] - 2026-09-16T03:57:55.141Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1450
- [NX Daemon Server] - 2026-09-16T03:57:55.142Z - Time taken for 'total execution time for createProjectGraph()' 12.106700000353158ms
1451
- [NX Daemon Server] - 2026-09-16T03:59:26.803Z - Established a connection. Number of open connections: 1
1452
- [NX Daemon Server] - 2026-09-16T03:59:26.804Z - Closed a connection. Number of open connections: 0
1453
- [NX Daemon Server] - 2026-09-16T03:59:26.807Z - Established a connection. Number of open connections: 1
1454
- [NX Daemon Server] - 2026-09-16T03:59:26.811Z - [REQUEST]: Client Request for Project Graph Received
1455
- [NX Daemon Server] - 2026-09-16T03:59:26.811Z - [REQUEST]: Responding to the client. project-graph
1456
- [NX Daemon Server] - 2026-09-16T03:59:26.813Z - Time taken for 'total for creating and serializing project graph' 0.6319000003859401ms
1457
- [NX Daemon Server] - 2026-09-16T03:59:26.817Z - Done responding to the client project-graph
1458
- [NX Daemon Server] - 2026-09-16T03:59:26.817Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6.
1459
- [NX Daemon Server] - 2026-09-16T03:59:26.912Z - [REQUEST]: Responding to the client. handleHashTasks
1460
- [NX Daemon Server] - 2026-09-16T03:59:26.912Z - Done responding to the client handleHashTasks
1461
- [NX Daemon Server] - 2026-09-16T03:59:26.912Z - Handled HASH_TASKS. Handling time: 9. Response time: 0.
1462
- [NX Daemon Server] - 2026-09-16T03:59:28.163Z - Closed a connection. Number of open connections: 0
1463
- [NX Daemon Server] - 2026-09-16T04:08:01.412Z - [WATCHER]: 0 file(s) created or restored, 4 file(s) modified, 0 file(s) deleted
1464
- [NX Daemon Server] - 2026-09-16T04:08:01.413Z - [WATCHER]: Processing file changes in outputs
1465
- [NX Daemon Server] - 2026-09-16T04:08:01.524Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1466
- [NX Daemon Server] - 2026-09-16T04:08:01.525Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts,spectra.config.ts,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/EnvironmentConfig/suite.md
1467
- [NX Daemon Server] - 2026-09-16T04:08:01.525Z - [REQUEST]:
1468
- [NX Daemon Server] - 2026-09-16T04:08:01.528Z - Time taken for 'hash changed files from watcher' 1.2573000006377697ms
1469
- [NX Daemon Server] - 2026-09-16T04:08:01.541Z - Time taken for 'build-project-configs' 9.942700000479817ms
1470
- [NX Daemon Server] - 2026-09-16T04:08:01.562Z - [SYNC]: collect registered sync generators
1471
- [NX Daemon Server] - 2026-09-16T04:08:01.563Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1472
- [NX Daemon Server] - 2026-09-16T04:08:01.563Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1473
- [NX Daemon Server] - 2026-09-16T04:08:01.563Z - Time taken for 'total execution time for createProjectGraph()' 20.66550000011921ms
1474
- [NX Daemon Server] - 2026-09-16T04:34:11.350Z - [WATCHER]: spectra.config.ts was modified
1475
- [NX Daemon Server] - 2026-09-16T04:34:11.350Z - [WATCHER]: Processing file changes in outputs
1476
- [NX Daemon Server] - 2026-09-16T04:34:11.583Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1477
- [NX Daemon Server] - 2026-09-16T04:34:11.584Z - [REQUEST]: spectra.config.ts
1478
- [NX Daemon Server] - 2026-09-16T04:34:11.584Z - [REQUEST]:
1479
- [NX Daemon Server] - 2026-09-16T04:34:11.598Z - Time taken for 'hash changed files from watcher' 3.6319999992847443ms
1480
- [NX Daemon Server] - 2026-09-16T04:34:11.614Z - Time taken for 'build-project-configs' 14.667899999767542ms
1481
- [NX Daemon Server] - 2026-09-16T04:34:11.636Z - [SYNC]: collect registered sync generators
1482
- [NX Daemon Server] - 2026-09-16T04:34:11.637Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1483
- [NX Daemon Server] - 2026-09-16T04:34:11.637Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1484
- [NX Daemon Server] - 2026-09-16T04:34:11.637Z - Time taken for 'total execution time for createProjectGraph()' 19.375199999660254ms
1485
- [NX Daemon Server] - 2026-09-16T04:35:37.980Z - [WATCHER]: Processing file changes in outputs
1486
- [NX Daemon Server] - 2026-09-16T04:35:37.981Z - [WATCHER]: spectra.config.ts was modified
1487
- [NX Daemon Server] - 2026-09-16T04:35:38.486Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1488
- [NX Daemon Server] - 2026-09-16T04:35:38.486Z - [REQUEST]: spectra.config.ts
1489
- [NX Daemon Server] - 2026-09-16T04:35:38.486Z - [REQUEST]:
1490
- [NX Daemon Server] - 2026-09-16T04:35:38.568Z - Time taken for 'hash changed files from watcher' 68.4129999987781ms
1491
- [NX Daemon Server] - 2026-09-16T04:35:38.592Z - [SYNC]: collect registered sync generators
1492
- [NX Daemon Server] - 2026-09-16T04:35:38.593Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1493
- [NX Daemon Server] - 2026-09-16T04:35:38.593Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1494
- [NX Daemon Server] - 2026-09-16T04:35:38.593Z - Time taken for 'total execution time for createProjectGraph()' 19.33409999869764ms
1495
- [NX Daemon Server] - 2026-09-16T04:43:29.375Z - [WATCHER]: Processing file changes in outputs
1496
- [NX Daemon Server] - 2026-09-16T04:43:29.446Z - [WATCHER]: tsconfig.json was modified
1497
- [NX Daemon Server] - 2026-09-16T04:43:29.446Z - [WATCHER]: Processing file changes in outputs
1498
- [NX Daemon Server] - 2026-09-16T04:43:30.258Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1499
- [NX Daemon Server] - 2026-09-16T04:43:30.258Z - [REQUEST]: tsconfig.json
1500
- [NX Daemon Server] - 2026-09-16T04:43:30.259Z - [REQUEST]:
1501
- [NX Daemon Server] - 2026-09-16T04:43:30.264Z - Time taken for 'hash changed files from watcher' 2.442400000989437ms
1502
- [NX Daemon Server] - 2026-09-16T04:43:30.290Z - Time taken for 'build-project-configs' 20.646300001069903ms
1503
- [NX Daemon Server] - 2026-09-16T04:43:30.334Z - [SYNC]: collect registered sync generators
1504
- [NX Daemon Server] - 2026-09-16T04:43:30.336Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1505
- [NX Daemon Server] - 2026-09-16T04:43:30.337Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1506
- [NX Daemon Server] - 2026-09-16T04:43:30.337Z - Time taken for 'total execution time for createProjectGraph()' 39.80870000086725ms
1507
- [NX Daemon Server] - 2026-09-16T04:48:09.246Z - [WATCHER]: Processing file changes in outputs
1508
- [NX Daemon Server] - 2026-09-16T04:48:09.277Z - [WATCHER]: tsconfig.json was modified
1509
- [NX Daemon Server] - 2026-09-16T04:48:10.955Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1510
- [NX Daemon Server] - 2026-09-16T04:48:10.955Z - [REQUEST]: tsconfig.json
1511
- [NX Daemon Server] - 2026-09-16T04:48:10.956Z - [REQUEST]:
1512
- [NX Daemon Server] - 2026-09-16T04:48:11.192Z - Time taken for 'hash changed files from watcher' 0.4665000010281801ms
1513
- [NX Daemon Server] - 2026-09-16T04:48:11.215Z - Time taken for 'build-project-configs' 18.74089999869466ms
1514
- [NX Daemon Server] - 2026-09-16T04:48:11.249Z - [SYNC]: collect registered sync generators
1515
- [NX Daemon Server] - 2026-09-16T04:48:11.250Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1516
- [NX Daemon Server] - 2026-09-16T04:48:11.250Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1517
- [NX Daemon Server] - 2026-09-16T04:48:11.250Z - Time taken for 'total execution time for createProjectGraph()' 29.686300000175834ms
1518
- [NX Daemon Server] - 2026-09-16T04:48:16.166Z - [WATCHER]: Processing file changes in outputs
1519
- [NX Daemon Server] - 2026-09-16T04:48:16.213Z - [WATCHER]: tsconfig.json was modified
1520
- [NX Daemon Server] - 2026-09-16T04:48:16.227Z - [WATCHER]: Processing file changes in outputs
1521
- [NX Daemon Server] - 2026-09-16T04:48:17.224Z - [WATCHER]: Processing file changes in outputs
1522
- [NX Daemon Server] - 2026-09-16T04:48:19.429Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1523
- [NX Daemon Server] - 2026-09-16T04:48:19.430Z - [REQUEST]: tsconfig.json
1524
- [NX Daemon Server] - 2026-09-16T04:48:19.430Z - [REQUEST]:
1525
- [NX Daemon Server] - 2026-09-16T04:48:19.432Z - Time taken for 'hash changed files from watcher' 0.828099999576807ms
1526
- [NX Daemon Server] - 2026-09-16T04:48:19.445Z - Time taken for 'build-project-configs' 11.156600000336766ms
1527
- [NX Daemon Server] - 2026-09-16T04:48:19.470Z - [SYNC]: collect registered sync generators
1528
- [NX Daemon Server] - 2026-09-16T04:48:19.471Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1529
- [NX Daemon Server] - 2026-09-16T04:48:19.471Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1530
- [NX Daemon Server] - 2026-09-16T04:48:19.471Z - Time taken for 'total execution time for createProjectGraph()' 19.581800000742078ms
1531
- [NX Daemon Server] - 2026-09-16T04:48:20.791Z - [WATCHER]: Processing file changes in outputs
1532
- [NX Daemon Server] - 2026-09-16T04:48:20.912Z - [WATCHER]: Processing file changes in outputs
1533
- [NX Daemon Server] - 2026-09-16T04:48:21.023Z - [WATCHER]: Processing file changes in outputs
1534
- [NX Daemon Server] - 2026-09-16T04:48:21.163Z - [WATCHER]: Processing file changes in outputs
1535
- [NX Daemon Server] - 2026-09-16T04:48:21.243Z - [WATCHER]: Processing file changes in outputs
1536
- [NX Daemon Server] - 2026-09-16T04:48:21.412Z - [WATCHER]: Processing file changes in outputs
1537
- [NX Daemon Server] - 2026-09-16T04:48:21.562Z - [WATCHER]: Processing file changes in outputs
1538
- [NX Daemon Server] - 2026-09-16T04:48:21.686Z - [WATCHER]: Processing file changes in outputs
1539
- [NX Daemon Server] - 2026-09-16T04:48:21.804Z - [WATCHER]: Processing file changes in outputs
1540
- [NX Daemon Server] - 2026-09-16T04:48:21.867Z - [WATCHER]: Processing file changes in outputs
1541
- [NX Daemon Server] - 2026-09-16T04:48:22.039Z - [WATCHER]: Processing file changes in outputs
1542
- [NX Daemon Server] - 2026-09-16T04:48:22.173Z - [WATCHER]: Processing file changes in outputs
1543
- [NX Daemon Server] - 2026-09-16T04:48:22.275Z - [WATCHER]: Processing file changes in outputs
1544
- [NX Daemon Server] - 2026-09-16T04:48:22.381Z - [WATCHER]: Processing file changes in outputs
1545
- [NX Daemon Server] - 2026-09-16T05:11:40.341Z - [WATCHER]: Processing file changes in outputs
1546
- [NX Daemon Server] - 2026-09-16T05:11:40.343Z - [WATCHER]: package.json was modified
1547
- [NX Daemon Server] - 2026-09-16T05:11:46.755Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1548
- [NX Daemon Server] - 2026-09-16T05:11:46.755Z - [REQUEST]: package.json
1549
- [NX Daemon Server] - 2026-09-16T05:11:46.755Z - [REQUEST]:
1550
- [NX Daemon Server] - 2026-09-16T05:11:46.758Z - Time taken for 'hash changed files from watcher' 0.38430000096559525ms
1551
- [NX Daemon Server] - 2026-09-16T05:11:46.768Z - Time taken for 'build-project-configs' 9.717699998989701ms
1552
- [NX Daemon Server] - 2026-09-16T05:11:46.784Z - [SYNC]: collect registered sync generators
1553
- [NX Daemon Server] - 2026-09-16T05:11:46.785Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1554
- [NX Daemon Server] - 2026-09-16T05:11:46.785Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1555
- [NX Daemon Server] - 2026-09-16T05:11:46.785Z - Time taken for 'total execution time for createProjectGraph()' 13.529999999329448ms
1556
- [NX Daemon Server] - 2026-09-16T05:42:13.571Z - [WATCHER]: Processing file changes in outputs
1557
- [NX Daemon Server] - 2026-09-16T05:42:13.583Z - [WATCHER]: package.json was modified
1558
- [NX Daemon Server] - 2026-09-16T05:42:19.996Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1559
- [NX Daemon Server] - 2026-09-16T05:42:19.996Z - [REQUEST]: package.json
1560
- [NX Daemon Server] - 2026-09-16T05:42:19.996Z - [REQUEST]:
1561
- [NX Daemon Server] - 2026-09-16T05:42:19.999Z - Time taken for 'hash changed files from watcher' 0.22199999913573265ms
1562
- [NX Daemon Server] - 2026-09-16T05:42:20.009Z - Time taken for 'build-project-configs' 8.771900000050664ms
1563
- [NX Daemon Server] - 2026-09-16T05:42:20.026Z - [SYNC]: collect registered sync generators
1564
- [NX Daemon Server] - 2026-09-16T05:42:20.027Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1565
- [NX Daemon Server] - 2026-09-16T05:42:20.027Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1566
- [NX Daemon Server] - 2026-09-16T05:42:20.027Z - Time taken for 'total execution time for createProjectGraph()' 14.452099999412894ms
1567
- [NX Daemon Server] - 2026-09-16T05:43:22.548Z - [WATCHER]: Processing file changes in outputs
1568
- [NX Daemon Server] - 2026-09-16T05:43:22.550Z - [WATCHER]: package.json was modified
1569
- [NX Daemon Server] - 2026-09-16T05:43:28.964Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1570
- [NX Daemon Server] - 2026-09-16T05:43:28.964Z - [REQUEST]: package.json
1571
- [NX Daemon Server] - 2026-09-16T05:43:28.964Z - [REQUEST]:
1572
- [NX Daemon Server] - 2026-09-16T05:43:28.968Z - Time taken for 'hash changed files from watcher' 0.42109999991953373ms
1573
- [NX Daemon Server] - 2026-09-16T05:43:28.983Z - Time taken for 'build-project-configs' 11.90929999947548ms
1574
- [NX Daemon Server] - 2026-09-16T05:43:29.001Z - [SYNC]: collect registered sync generators
1575
- [NX Daemon Server] - 2026-09-16T05:43:29.002Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1576
- [NX Daemon Server] - 2026-09-16T05:43:29.002Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1577
- [NX Daemon Server] - 2026-09-16T05:43:29.003Z - Time taken for 'total execution time for createProjectGraph()' 16.250700000673532ms
1578
- [NX Daemon Server] - 2026-09-16T05:44:37.109Z - [WATCHER]: package.json was modified
1579
- [NX Daemon Server] - 2026-09-16T05:44:37.110Z - [WATCHER]: Processing file changes in outputs
1580
- [NX Daemon Server] - 2026-09-16T05:44:43.524Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1581
- [NX Daemon Server] - 2026-09-16T05:44:43.525Z - [REQUEST]: package.json
1582
- [NX Daemon Server] - 2026-09-16T05:44:43.525Z - [REQUEST]:
1583
- [NX Daemon Server] - 2026-09-16T05:44:43.527Z - Time taken for 'hash changed files from watcher' 0.264699999243021ms
1584
- [NX Daemon Server] - 2026-09-16T05:44:43.539Z - Time taken for 'build-project-configs' 9.642599999904633ms
1585
- [NX Daemon Server] - 2026-09-16T05:44:43.554Z - [SYNC]: collect registered sync generators
1586
- [NX Daemon Server] - 2026-09-16T05:44:43.555Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1587
- [NX Daemon Server] - 2026-09-16T05:44:43.555Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1588
- [NX Daemon Server] - 2026-09-16T05:44:43.555Z - Time taken for 'total execution time for createProjectGraph()' 14.14079999923706ms
1589
- [NX Daemon Server] - 2026-09-16T06:26:38.391Z - [WATCHER]: Processing file changes in outputs
1590
- [NX Daemon Server] - 2026-09-16T06:26:38.435Z - [WATCHER]: tsconfig.json was modified
1591
- [NX Daemon Server] - 2026-09-16T06:26:38.449Z - [WATCHER]: Processing file changes in outputs
1592
- [NX Daemon Server] - 2026-09-16T06:26:38.534Z - [WATCHER]: Processing file changes in outputs
1593
- [NX Daemon Server] - 2026-09-16T06:26:44.847Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1594
- [NX Daemon Server] - 2026-09-16T06:26:44.847Z - [REQUEST]: tsconfig.json
1595
- [NX Daemon Server] - 2026-09-16T06:26:44.847Z - [REQUEST]:
1596
- [NX Daemon Server] - 2026-09-16T06:26:44.850Z - Time taken for 'hash changed files from watcher' 0.300500001758337ms
1597
- [NX Daemon Server] - 2026-09-16T06:26:44.864Z - Time taken for 'build-project-configs' 12.19510000012815ms
1598
- [NX Daemon Server] - 2026-09-16T06:26:44.879Z - [SYNC]: collect registered sync generators
1599
- [NX Daemon Server] - 2026-09-16T06:26:44.880Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1600
- [NX Daemon Server] - 2026-09-16T06:26:44.880Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1601
- [NX Daemon Server] - 2026-09-16T06:26:44.880Z - Time taken for 'total execution time for createProjectGraph()' 13.378800000995398ms
1602
- [NX Daemon Server] - 2026-09-16T06:26:55.366Z - [WATCHER]: package.json was modified
1603
- [NX Daemon Server] - 2026-09-16T06:26:55.367Z - [WATCHER]: Processing file changes in outputs
1604
- [NX Daemon Server] - 2026-09-16T06:27:01.782Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1605
- [NX Daemon Server] - 2026-09-16T06:27:01.782Z - [REQUEST]: package.json
1606
- [NX Daemon Server] - 2026-09-16T06:27:01.782Z - [REQUEST]:
1607
- [NX Daemon Server] - 2026-09-16T06:27:01.797Z - Time taken for 'hash changed files from watcher' 0.5230000000447035ms
1608
- [NX Daemon Server] - 2026-09-16T06:27:01.823Z - Time taken for 'build-project-configs' 23.789499999955297ms
1609
- [NX Daemon Server] - 2026-09-16T06:27:01.859Z - [SYNC]: collect registered sync generators
1610
- [NX Daemon Server] - 2026-09-16T06:27:01.860Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1611
- [NX Daemon Server] - 2026-09-16T06:27:01.861Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1612
- [NX Daemon Server] - 2026-09-16T06:27:01.861Z - Time taken for 'total execution time for createProjectGraph()' 32.90670000016689ms
1
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:20.903Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/091eddd6eaf287d577f0/d.sock
2
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:20.905Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (native)
3
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:20.909Z - Established a connection. Number of open connections: 1
4
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:20.909Z - Established a connection. Number of open connections: 2
5
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:20.910Z - Closed a connection. Number of open connections: 1
6
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:20.910Z - [REQUEST]: Client Request for Project Graph Received
7
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:20.912Z - Time taken for 'loadSpecifiedNxPlugins' 0.41670799999999986ms
8
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:20.964Z - [WATCHER]: Processing file changes in outputs
9
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.043Z - Time taken for 'Load Nx Plugin: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.pnpm/nx@20.8.4/node_modules/nx/src/plugins/package-json' 132.49975ms
10
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.054Z - Time taken for 'Load Nx Plugin: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.pnpm/nx@20.8.4/node_modules/nx/src/plugins/project-json/build-nodes/project-json' 142.85462499999997ms
11
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.065Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
12
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.066Z - [REQUEST]:
13
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.066Z - [REQUEST]:
14
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.068Z - Time taken for 'loadDefaultNxPlugins' 154.84566700000002ms
15
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.110Z - Time taken for 'build-project-configs' 36.20316600000001ms
16
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.123Z - [SYNC]: collect registered sync generators
17
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.123Z - [REQUEST]: Responding to the client. project-graph
18
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.123Z - Time taken for 'total for creating and serializing project graph' 212.953375ms
19
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.124Z - Done responding to the client project-graph
20
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.124Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 213. Response time: 1.
21
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.126Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
22
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.126Z - Done responding to the client handleRunPreTasksExecution
23
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.126Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
24
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.126Z - Time taken for 'preTasksExecution' 0.14945799999998144ms
25
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.167Z - [REQUEST]: Responding to the client. handleHashTasks
26
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.167Z - Done responding to the client handleHashTasks
27
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.167Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
28
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.216Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
29
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.216Z - Done responding to the client handleGetEstimatedTaskTimings
30
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.216Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 13. Response time: 0.
31
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.217Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
32
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.217Z - Done responding to the client handleRecordTaskRuns
33
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.217Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
34
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.217Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
35
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.217Z - Done responding to the client handleGetFlakyTasks
36
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.217Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
37
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.497Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
38
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.497Z - Done responding to the client handleRunPostTasksExecution
39
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.497Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
40
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.497Z - Time taken for 'postTasksExecution' 0.05916700000000219ms
41
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:48:21.500Z - Closed a connection. Number of open connections: 0
42
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:59:09.707Z - [WATCHER]: Processing file changes in outputs
43
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:59:09.709Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (sources)
44
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:59:09.709Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (outputs)
45
+ [NX v20.8.4 Daemon Server] - 2026-09-17T12:59:09.714Z - Server stopped because: "LOCK_FILES_CHANGED"
46
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:45.934Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/091eddd6eaf287d577f0/d.sock
47
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:45.937Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (native)
48
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:45.941Z - Established a connection. Number of open connections: 1
49
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:45.941Z - Established a connection. Number of open connections: 2
50
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:45.942Z - Closed a connection. Number of open connections: 1
51
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:45.942Z - [REQUEST]: Client Request for Project Graph Received
52
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:45.944Z - Time taken for 'loadSpecifiedNxPlugins' 0.424666000000002ms
53
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:45.996Z - [WATCHER]: Processing file changes in outputs
54
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.131Z - Time taken for 'Load Nx Plugin: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.pnpm/nx@20.8.4/node_modules/nx/src/plugins/project-json/build-nodes/project-json' 188.61195899999998ms
55
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.144Z - Time taken for 'Load Nx Plugin: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.pnpm/nx@20.8.4/node_modules/nx/src/plugins/package-json' 201.24250000000004ms
56
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.151Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
57
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.151Z - [REQUEST]:
58
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.151Z - [REQUEST]:
59
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.154Z - Time taken for 'loadDefaultNxPlugins' 208.414667ms
60
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.202Z - Time taken for 'build-project-configs' 40.16374999999999ms
61
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.214Z - [SYNC]: collect registered sync generators
62
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.215Z - [REQUEST]: Responding to the client. project-graph
63
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.215Z - Time taken for 'total for creating and serializing project graph' 272.686292ms
64
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.216Z - Done responding to the client project-graph
65
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.216Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 273. Response time: 1.
66
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.218Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
67
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.218Z - Done responding to the client handleRunPreTasksExecution
68
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.218Z - Handled PRE_TASKS_EXECUTION. Handling time: 1. Response time: 0.
69
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.218Z - Time taken for 'preTasksExecution' 0.18587500000001ms
70
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.271Z - [REQUEST]: Responding to the client. handleHashTasks
71
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.271Z - Done responding to the client handleHashTasks
72
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.271Z - Handled HASH_TASKS. Handling time: 4. Response time: 0.
73
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.337Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
74
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.337Z - Done responding to the client handleGetEstimatedTaskTimings
75
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.337Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 17. Response time: 0.
76
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.339Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
77
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.339Z - Done responding to the client handleRecordTaskRuns
78
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.339Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
79
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.339Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
80
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.339Z - Done responding to the client handleGetFlakyTasks
81
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.339Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
82
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.638Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
83
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.638Z - Done responding to the client handleRunPostTasksExecution
84
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.638Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
85
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.638Z - Time taken for 'postTasksExecution' 0.06366700000000947ms
86
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:00:46.641Z - Closed a connection. Number of open connections: 0
87
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.439Z - Established a connection. Number of open connections: 1
88
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.442Z - Closed a connection. Number of open connections: 0
89
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.442Z - Established a connection. Number of open connections: 1
90
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.444Z - [REQUEST]: Client Request for Project Graph Received
91
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.445Z - [REQUEST]: Responding to the client. project-graph
92
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.445Z - Time taken for 'total for creating and serializing project graph' 0.28595799999311566ms
93
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.446Z - Done responding to the client project-graph
94
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.446Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
95
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.447Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
96
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.447Z - Done responding to the client handleRunPreTasksExecution
97
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.447Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
98
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.447Z - Time taken for 'preTasksExecution' 0.05554199998732656ms
99
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.491Z - [REQUEST]: Responding to the client. handleHashTasks
100
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.491Z - Done responding to the client handleHashTasks
101
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.491Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
102
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.539Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
103
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.540Z - Done responding to the client handleGetEstimatedTaskTimings
104
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.540Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 0. Response time: 1.
105
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.541Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
106
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.541Z - Done responding to the client handleRecordTaskRuns
107
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.541Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
108
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.541Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
109
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.541Z - Done responding to the client handleGetFlakyTasks
110
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.541Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
111
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.833Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
112
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.833Z - Done responding to the client handleRunPostTasksExecution
113
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.833Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
114
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.834Z - Time taken for 'postTasksExecution' 0.10195799998473376ms
115
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:13:56.836Z - Closed a connection. Number of open connections: 0
116
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.604Z - [WATCHER]: Processing file changes in outputs
117
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.608Z - [WATCHER]: tsconfig.json was modified
118
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.709Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
119
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.709Z - [REQUEST]: tsconfig.json
120
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.709Z - [REQUEST]:
121
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.713Z - Time taken for 'hash changed files from watcher' 0.35812499991152436ms
122
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.722Z - Time taken for 'build-project-configs' 9.889666999923065ms
123
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.734Z - [SYNC]: collect registered sync generators
124
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.734Z - [SYNC]: project graph hash is the same, not collecting task sync generators
125
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.734Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
126
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:09.734Z - Time taken for 'total execution time for createProjectGraph()' 6.5792079999810085ms
127
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.160Z - [WATCHER]: Processing file changes in outputs
128
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.167Z - [WATCHER]: tsconfig.json was modified
129
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.368Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
130
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.368Z - [REQUEST]: tsconfig.json
131
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.368Z - [REQUEST]:
132
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.369Z - Time taken for 'hash changed files from watcher' 0.11254199990071356ms
133
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.377Z - Time taken for 'build-project-configs' 7.273625000030734ms
134
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.388Z - [SYNC]: collect registered sync generators
135
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.388Z - [SYNC]: project graph hash is the same, not collecting task sync generators
136
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.388Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
137
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.388Z - Time taken for 'total execution time for createProjectGraph()' 6.254249999998137ms
138
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:14:11.443Z - [WATCHER]: Processing file changes in outputs
139
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.148Z - [WATCHER]: Processing file changes in outputs
140
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.153Z - [WATCHER]: tsconfig.json was modified
141
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.580Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
142
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.580Z - [REQUEST]: tsconfig.json
143
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.584Z - [REQUEST]:
144
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.618Z - Time taken for 'hash changed files from watcher' 1.984292000066489ms
145
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.648Z - Time taken for 'build-project-configs' 28.563084000023082ms
146
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.684Z - [SYNC]: collect registered sync generators
147
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.684Z - [SYNC]: project graph hash is the same, not collecting task sync generators
148
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.684Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
149
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:54.684Z - Time taken for 'total execution time for createProjectGraph()' 24.633790999883786ms
150
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:56.651Z - [WATCHER]: Processing file changes in outputs
151
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:56.659Z - [WATCHER]: tsconfig.json was modified
152
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:56.912Z - [WATCHER]: Processing file changes in outputs
153
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.459Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
154
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.459Z - [REQUEST]: tsconfig.json
155
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.459Z - [REQUEST]:
156
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.460Z - Time taken for 'hash changed files from watcher' 0.118959000101313ms
157
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.468Z - Time taken for 'build-project-configs' 5.543499999912456ms
158
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.475Z - [SYNC]: collect registered sync generators
159
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.475Z - [SYNC]: project graph hash is the same, not collecting task sync generators
160
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.475Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
161
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:29:57.475Z - Time taken for 'total execution time for createProjectGraph()' 6.971542000072077ms
162
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.923Z - Established a connection. Number of open connections: 1
163
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.927Z - Closed a connection. Number of open connections: 0
164
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.927Z - Established a connection. Number of open connections: 1
165
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.928Z - [REQUEST]: Client Request for Project Graph Received
166
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.928Z - [REQUEST]: Responding to the client. project-graph
167
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.929Z - Time taken for 'total for creating and serializing project graph' 0.20708300010301173ms
168
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.929Z - Done responding to the client project-graph
169
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.929Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
170
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.931Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
171
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.931Z - Done responding to the client handleRunPreTasksExecution
172
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.931Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
173
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.931Z - Time taken for 'preTasksExecution' 0.053208000026643276ms
174
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.979Z - [REQUEST]: Responding to the client. handleHashTasks
175
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.979Z - Done responding to the client handleHashTasks
176
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:13.979Z - Handled HASH_TASKS. Handling time: 5. Response time: 0.
177
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.021Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
178
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.022Z - Done responding to the client handleGetEstimatedTaskTimings
179
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.022Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 0. Response time: 1.
180
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.023Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
181
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.023Z - Done responding to the client handleRecordTaskRuns
182
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.023Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
183
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.023Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
184
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.024Z - Done responding to the client handleGetFlakyTasks
185
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.024Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 1.
186
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.306Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
187
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.306Z - Done responding to the client handleRunPostTasksExecution
188
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.306Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
189
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.306Z - Time taken for 'postTasksExecution' 0.05783299985341728ms
190
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:14.308Z - Closed a connection. Number of open connections: 0
191
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.728Z - [WATCHER]: Processing file changes in outputs
192
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.737Z - [WATCHER]: tsconfig.json was modified
193
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.841Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
194
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.841Z - [REQUEST]: tsconfig.json
195
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.841Z - [REQUEST]:
196
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.847Z - Time taken for 'hash changed files from watcher' 3.000749999890104ms
197
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.864Z - Time taken for 'build-project-configs' 11.780541999964043ms
198
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.892Z - [SYNC]: collect registered sync generators
199
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.893Z - [SYNC]: project graph hash is the same, not collecting task sync generators
200
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.893Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
201
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:27.893Z - Time taken for 'total execution time for createProjectGraph()' 22.658834000118077ms
202
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.384Z - [WATCHER]: Processing file changes in outputs
203
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.389Z - [WATCHER]: tsconfig.json was modified
204
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.589Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
205
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.589Z - [REQUEST]: tsconfig.json
206
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.589Z - [REQUEST]:
207
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.591Z - Time taken for 'hash changed files from watcher' 0.10895900009199977ms
208
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.599Z - Time taken for 'build-project-configs' 7.568958000047132ms
209
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.612Z - [SYNC]: collect registered sync generators
210
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.613Z - [SYNC]: project graph hash is the same, not collecting task sync generators
211
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.613Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
212
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.613Z - Time taken for 'total execution time for createProjectGraph()' 5.875833000056446ms
213
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:31:29.622Z - [WATCHER]: Processing file changes in outputs
214
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:36.881Z - [WATCHER]: Processing file changes in outputs
215
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:36.883Z - [WATCHER]: tsconfig.json was modified
216
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.285Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
217
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.285Z - [REQUEST]: tsconfig.json
218
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.285Z - [REQUEST]:
219
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.296Z - Time taken for 'hash changed files from watcher' 0.36091599985957146ms
220
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.321Z - Time taken for 'build-project-configs' 24.475542000029236ms
221
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.356Z - [SYNC]: collect registered sync generators
222
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.356Z - [SYNC]: project graph hash is the same, not collecting task sync generators
223
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.356Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
224
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:37.356Z - Time taken for 'total execution time for createProjectGraph()' 24.157999999821186ms
225
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:38.513Z - [WATCHER]: Processing file changes in outputs
226
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:38.517Z - [WATCHER]: tsconfig.json was modified
227
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:38.734Z - [WATCHER]: Processing file changes in outputs
228
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.318Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
229
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.318Z - [REQUEST]: tsconfig.json
230
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.318Z - [REQUEST]:
231
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.320Z - Time taken for 'hash changed files from watcher' 0.21358400024473667ms
232
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.328Z - Time taken for 'build-project-configs' 6.954209000337869ms
233
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.343Z - [SYNC]: collect registered sync generators
234
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.343Z - [SYNC]: project graph hash is the same, not collecting task sync generators
235
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.343Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
236
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:37:39.343Z - Time taken for 'total execution time for createProjectGraph()' 7.246874999720603ms
237
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:12.256Z - [WATCHER]: Processing file changes in outputs
238
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:12.263Z - [WATCHER]: tsconfig.json was modified
239
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.865Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
240
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.865Z - [REQUEST]: tsconfig.json
241
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.865Z - [REQUEST]:
242
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.868Z - Time taken for 'hash changed files from watcher' 0.5552079998888075ms
243
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.880Z - Time taken for 'build-project-configs' 12.009709000121802ms
244
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.895Z - [SYNC]: collect registered sync generators
245
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.895Z - [SYNC]: project graph hash is the same, not collecting task sync generators
246
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.896Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
247
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.896Z - Time taken for 'total execution time for createProjectGraph()' 7.747291999869049ms
248
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.962Z - [WATCHER]: Processing file changes in outputs
249
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:13.976Z - [WATCHER]: tsconfig.json was modified
250
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:14.498Z - [WATCHER]: Processing file changes in outputs
251
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.187Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
252
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.189Z - [REQUEST]: tsconfig.json
253
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.189Z - [REQUEST]:
254
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.191Z - Time taken for 'hash changed files from watcher' 5.319707999937236ms
255
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.224Z - Time taken for 'build-project-configs' 22.936499999836087ms
256
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.259Z - [SYNC]: collect registered sync generators
257
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.259Z - [SYNC]: project graph hash is the same, not collecting task sync generators
258
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.259Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
259
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:40:17.260Z - Time taken for 'total execution time for createProjectGraph()' 38.49325000029057ms
260
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:41.754Z - [WATCHER]: tsconfig.json was modified
261
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:41.755Z - [WATCHER]: Processing file changes in outputs
262
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:43.518Z - [WATCHER]: Processing file changes in outputs
263
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:43.529Z - [WATCHER]: tsconfig.json was modified
264
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:43.811Z - [WATCHER]: Processing file changes in outputs
265
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.159Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
266
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.159Z - [REQUEST]: tsconfig.json
267
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.159Z - [REQUEST]:
268
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.165Z - Time taken for 'hash changed files from watcher' 2.818500000052154ms
269
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.177Z - Time taken for 'build-project-configs' 10.978542000055313ms
270
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.196Z - [SYNC]: collect registered sync generators
271
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.197Z - [SYNC]: project graph hash is the same, not collecting task sync generators
272
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.197Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
273
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:43:48.197Z - Time taken for 'total execution time for createProjectGraph()' 4.9789590002037585ms
274
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:28.420Z - [WATCHER]: Processing file changes in outputs
275
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:28.429Z - [WATCHER]: tsconfig.json was modified
276
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:30.042Z - [WATCHER]: Processing file changes in outputs
277
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:30.048Z - [WATCHER]: tsconfig.json was modified
278
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:30.249Z - [WATCHER]: Processing file changes in outputs
279
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.832Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
280
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.832Z - [REQUEST]: tsconfig.json
281
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.832Z - [REQUEST]:
282
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.834Z - Time taken for 'hash changed files from watcher' 0.27549999998882413ms
283
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.847Z - Time taken for 'build-project-configs' 11.635750000365078ms
284
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.862Z - [SYNC]: collect registered sync generators
285
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.862Z - [SYNC]: project graph hash is the same, not collecting task sync generators
286
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.862Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
287
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:45:34.862Z - Time taken for 'total execution time for createProjectGraph()' 5.570708000101149ms
288
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:28.973Z - [WATCHER]: Processing file changes in outputs
289
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:28.982Z - [WATCHER]: tsconfig.json was modified
290
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:30.509Z - [WATCHER]: Processing file changes in outputs
291
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:30.518Z - [WATCHER]: tsconfig.json was modified
292
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:30.938Z - [WATCHER]: Processing file changes in outputs
293
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.383Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
294
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.383Z - [REQUEST]: tsconfig.json
295
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.383Z - [REQUEST]:
296
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.384Z - Time taken for 'hash changed files from watcher' 0.18079200014472008ms
297
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.392Z - Time taken for 'build-project-configs' 6.955709000118077ms
298
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.405Z - [SYNC]: collect registered sync generators
299
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.405Z - [SYNC]: project graph hash is the same, not collecting task sync generators
300
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.405Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
301
+ [NX v20.8.4 Daemon Server] - 2026-09-17T13:48:35.405Z - Time taken for 'total execution time for createProjectGraph()' 4.979667000006884ms
302
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.967Z - Established a connection. Number of open connections: 1
303
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.971Z - Established a connection. Number of open connections: 2
304
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.973Z - Closed a connection. Number of open connections: 1
305
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.978Z - [REQUEST]: Client Request for Project Graph Received
306
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.981Z - [REQUEST]: Responding to the client. project-graph
307
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.982Z - Time taken for 'total for creating and serializing project graph' 1.9587079994380474ms
308
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.983Z - Done responding to the client project-graph
309
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.983Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 3. Response time: 2.
310
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.986Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
311
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.987Z - Done responding to the client handleRunPreTasksExecution
312
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.987Z - Handled PRE_TASKS_EXECUTION. Handling time: 1. Response time: 1.
313
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:29.987Z - Time taken for 'preTasksExecution' 0.5657499991357327ms
314
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.040Z - [REQUEST]: Responding to the client. handleHashTasks
315
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.040Z - Done responding to the client handleHashTasks
316
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.040Z - Handled HASH_TASKS. Handling time: 12. Response time: 0.
317
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.086Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
318
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.086Z - Done responding to the client handleGetEstimatedTaskTimings
319
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.086Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 0.
320
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.088Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
321
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.088Z - Done responding to the client handleRecordTaskRuns
322
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.088Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
323
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.088Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
324
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.088Z - Done responding to the client handleGetFlakyTasks
325
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.088Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
326
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.363Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
327
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.363Z - Done responding to the client handleRunPostTasksExecution
328
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.363Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
329
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.363Z - Time taken for 'postTasksExecution' 0.053790999576449394ms
330
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:22:30.367Z - Closed a connection. Number of open connections: 0
331
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.822Z - [WATCHER]: Processing file changes in outputs
332
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.827Z - [WATCHER]: tsconfig.json was modified
333
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.928Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
334
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.928Z - [REQUEST]: tsconfig.json
335
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.928Z - [REQUEST]:
336
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.931Z - Time taken for 'hash changed files from watcher' 0.8540410008281469ms
337
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.962Z - Time taken for 'build-project-configs' 27.14770800061524ms
338
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.986Z - [SYNC]: collect registered sync generators
339
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.986Z - [SYNC]: project graph hash is the same, not collecting task sync generators
340
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.986Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
341
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:04.986Z - Time taken for 'total execution time for createProjectGraph()' 20.020375000312924ms
342
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.441Z - [WATCHER]: Processing file changes in outputs
343
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.448Z - [WATCHER]: tsconfig.json was modified
344
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.649Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
345
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.650Z - [REQUEST]: tsconfig.json
346
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.650Z - [REQUEST]:
347
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.651Z - Time taken for 'hash changed files from watcher' 0.11191700026392937ms
348
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.658Z - Time taken for 'build-project-configs' 5.8448329996317625ms
349
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.671Z - [SYNC]: collect registered sync generators
350
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.671Z - [SYNC]: project graph hash is the same, not collecting task sync generators
351
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.671Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
352
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.671Z - Time taken for 'total execution time for createProjectGraph()' 9.770833000540733ms
353
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:06.696Z - [WATCHER]: Processing file changes in outputs
354
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:07.768Z - [WATCHER]: Processing file changes in outputs
355
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:07.844Z - [WATCHER]: Processing file changes in outputs
356
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:07.898Z - [WATCHER]: Processing file changes in outputs
357
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:07.956Z - [WATCHER]: Processing file changes in outputs
358
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:08.012Z - [WATCHER]: Processing file changes in outputs
359
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:08.084Z - [WATCHER]: Processing file changes in outputs
360
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:23:08.136Z - [WATCHER]: Processing file changes in outputs
361
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.124Z - Established a connection. Number of open connections: 1
362
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.124Z - Established a connection. Number of open connections: 2
363
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.125Z - Closed a connection. Number of open connections: 1
364
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.125Z - [REQUEST]: Client Request for Project Graph Received
365
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.126Z - [REQUEST]: Responding to the client. project-graph
366
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.126Z - Time taken for 'total for creating and serializing project graph' 0.2509589996188879ms
367
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.127Z - Done responding to the client project-graph
368
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.127Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
369
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.129Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
370
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.129Z - Done responding to the client handleRunPreTasksExecution
371
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.129Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
372
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.129Z - Time taken for 'preTasksExecution' 0.054791999980807304ms
373
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.161Z - [REQUEST]: Responding to the client. handleHashTasks
374
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.161Z - Done responding to the client handleHashTasks
375
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.161Z - Handled HASH_TASKS. Handling time: 4. Response time: 0.
376
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.200Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
377
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.200Z - Done responding to the client handleGetEstimatedTaskTimings
378
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.200Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 0.
379
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.201Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
380
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.202Z - Done responding to the client handleRecordTaskRuns
381
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.202Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 1.
382
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.202Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
383
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.202Z - Done responding to the client handleGetFlakyTasks
384
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.202Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
385
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.478Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
386
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.478Z - Done responding to the client handleRunPostTasksExecution
387
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.478Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
388
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.478Z - Time taken for 'postTasksExecution' 0.05700000002980232ms
389
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:25:34.481Z - Closed a connection. Number of open connections: 0
390
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.727Z - [WATCHER]: tsconfig.json was modified
391
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.729Z - [WATCHER]: Processing file changes in outputs
392
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.830Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
393
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.830Z - [REQUEST]: tsconfig.json
394
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.830Z - [REQUEST]:
395
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.834Z - Time taken for 'hash changed files from watcher' 1.4860839992761612ms
396
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.851Z - Time taken for 'build-project-configs' 15.87508299946785ms
397
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.868Z - [SYNC]: collect registered sync generators
398
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.868Z - [SYNC]: project graph hash is the same, not collecting task sync generators
399
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.868Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
400
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:13.868Z - Time taken for 'total execution time for createProjectGraph()' 13.660459000617266ms
401
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.365Z - [WATCHER]: Processing file changes in outputs
402
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.370Z - [WATCHER]: tsconfig.json was modified
403
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.570Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
404
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.570Z - [REQUEST]: tsconfig.json
405
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.570Z - [REQUEST]:
406
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.577Z - Time taken for 'hash changed files from watcher' 0.10437499918043613ms
407
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.583Z - Time taken for 'build-project-configs' 7.42845799960196ms
408
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.599Z - [WATCHER]: Processing file changes in outputs
409
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.612Z - [SYNC]: collect registered sync generators
410
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.612Z - [SYNC]: project graph hash is the same, not collecting task sync generators
411
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.612Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
412
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:33:15.612Z - Time taken for 'total execution time for createProjectGraph()' 30.5774999987334ms
413
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:21.829Z - [WATCHER]: Processing file changes in outputs
414
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:21.841Z - [WATCHER]: tsconfig.json was modified
415
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.249Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
416
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.249Z - [REQUEST]: tsconfig.json
417
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.249Z - [REQUEST]:
418
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.254Z - Time taken for 'hash changed files from watcher' 2.724958999082446ms
419
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.270Z - Time taken for 'build-project-configs' 16.056958001106977ms
420
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.289Z - [SYNC]: collect registered sync generators
421
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.290Z - [SYNC]: project graph hash is the same, not collecting task sync generators
422
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.290Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
423
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:22.290Z - Time taken for 'total execution time for createProjectGraph()' 14.951084000989795ms
424
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:24.647Z - [WATCHER]: Processing file changes in outputs
425
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:24.662Z - [WATCHER]: tsconfig.json was modified
426
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.232Z - [WATCHER]: Processing file changes in outputs
427
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.462Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
428
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.462Z - [REQUEST]: tsconfig.json
429
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.462Z - [REQUEST]:
430
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.465Z - Time taken for 'hash changed files from watcher' 0.1881250012665987ms
431
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.480Z - Time taken for 'build-project-configs' 12.501666000112891ms
432
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.494Z - [SYNC]: collect registered sync generators
433
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.494Z - [SYNC]: project graph hash is the same, not collecting task sync generators
434
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.494Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
435
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:39:25.495Z - Time taken for 'total execution time for createProjectGraph()' 12.371625000610948ms
436
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.486Z - Established a connection. Number of open connections: 1
437
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.489Z - Established a connection. Number of open connections: 2
438
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.489Z - Closed a connection. Number of open connections: 1
439
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.492Z - [REQUEST]: Client Request for Project Graph Received
440
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.493Z - [REQUEST]: Responding to the client. project-graph
441
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.493Z - Time taken for 'total for creating and serializing project graph' 0.390625ms
442
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.494Z - Done responding to the client project-graph
443
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.494Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
444
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.496Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
445
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.496Z - Done responding to the client handleRunPreTasksExecution
446
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.496Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
447
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.496Z - Time taken for 'preTasksExecution' 0.2269579991698265ms
448
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.558Z - [REQUEST]: Responding to the client. handleHashTasks
449
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.558Z - Done responding to the client handleHashTasks
450
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.558Z - Handled HASH_TASKS. Handling time: 4. Response time: 0.
451
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.603Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
452
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.603Z - Done responding to the client handleGetEstimatedTaskTimings
453
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.603Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 0.
454
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.604Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
455
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.604Z - Done responding to the client handleRecordTaskRuns
456
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.604Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
457
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.605Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
458
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.605Z - Done responding to the client handleGetFlakyTasks
459
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.605Z - Handled GET_FLAKY_TASKS. Handling time: 1. Response time: 0.
460
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.901Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
461
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.901Z - Done responding to the client handleRunPostTasksExecution
462
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.901Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
463
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.902Z - Time taken for 'postTasksExecution' 0.06529100053012371ms
464
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:40:03.904Z - Closed a connection. Number of open connections: 0
465
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.666Z - [WATCHER]: Processing file changes in outputs
466
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.678Z - [WATCHER]: tsconfig.json was modified
467
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.779Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
468
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.779Z - [REQUEST]: tsconfig.json
469
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.779Z - [REQUEST]:
470
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.780Z - Time taken for 'hash changed files from watcher' 0.1750830002129078ms
471
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.789Z - Time taken for 'build-project-configs' 8.291042000055313ms
472
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.810Z - [SYNC]: collect registered sync generators
473
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.810Z - [SYNC]: project graph hash is the same, not collecting task sync generators
474
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.810Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
475
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:22.810Z - Time taken for 'total execution time for createProjectGraph()' 15.646250000223517ms
476
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.150Z - [WATCHER]: Processing file changes in outputs
477
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.156Z - [WATCHER]: tsconfig.json was modified
478
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.357Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
479
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.357Z - [REQUEST]: tsconfig.json
480
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.357Z - [REQUEST]:
481
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.358Z - Time taken for 'hash changed files from watcher' 0.33724999986588955ms
482
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.363Z - Time taken for 'build-project-configs' 4.4135409984737635ms
483
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.377Z - [SYNC]: collect registered sync generators
484
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.377Z - [SYNC]: project graph hash is the same, not collecting task sync generators
485
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.377Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
486
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.377Z - Time taken for 'total execution time for createProjectGraph()' 8.96862499974668ms
487
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:24.377Z - [WATCHER]: Processing file changes in outputs
488
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.455Z - [WATCHER]: Processing file changes in outputs
489
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.473Z - [WATCHER]: tsconfig.json was modified
490
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.874Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
491
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.874Z - [REQUEST]: tsconfig.json
492
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.874Z - [REQUEST]:
493
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.877Z - Time taken for 'hash changed files from watcher' 0.1820830013602972ms
494
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.904Z - Time taken for 'build-project-configs' 25.57837500050664ms
495
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.921Z - [SYNC]: collect registered sync generators
496
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.921Z - [SYNC]: project graph hash is the same, not collecting task sync generators
497
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.921Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
498
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:57.921Z - Time taken for 'total execution time for createProjectGraph()' 13.423417000100017ms
499
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:59.618Z - [WATCHER]: Processing file changes in outputs
500
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:59.631Z - [WATCHER]: tsconfig.json was modified
501
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:43:59.887Z - [WATCHER]: Processing file changes in outputs
502
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.431Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
503
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.431Z - [REQUEST]: tsconfig.json
504
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.431Z - [REQUEST]:
505
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.432Z - Time taken for 'hash changed files from watcher' 0.10091600008308887ms
506
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.442Z - Time taken for 'build-project-configs' 8.902250001206994ms
507
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.455Z - [SYNC]: collect registered sync generators
508
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.455Z - [SYNC]: project graph hash is the same, not collecting task sync generators
509
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.455Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
510
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:44:00.455Z - Time taken for 'total execution time for createProjectGraph()' 8.552875000983477ms
511
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:25.711Z - [WATCHER]: Processing file changes in outputs
512
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:25.736Z - [WATCHER]: tsconfig.json was modified
513
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.338Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
514
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.338Z - [REQUEST]: tsconfig.json
515
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.338Z - [REQUEST]:
516
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.340Z - Time taken for 'hash changed files from watcher' 0.29266699962317944ms
517
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.350Z - Time taken for 'build-project-configs' 9.409667000174522ms
518
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.362Z - [SYNC]: collect registered sync generators
519
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.363Z - [SYNC]: project graph hash is the same, not collecting task sync generators
520
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.363Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
521
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.363Z - Time taken for 'total execution time for createProjectGraph()' 7.068958999589086ms
522
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.626Z - [WATCHER]: Processing file changes in outputs
523
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.638Z - [WATCHER]: tsconfig.json was modified
524
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:27.833Z - [WATCHER]: Processing file changes in outputs
525
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.839Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
526
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.839Z - [REQUEST]: tsconfig.json
527
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.839Z - [REQUEST]:
528
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.840Z - Time taken for 'hash changed files from watcher' 0.19074999913573265ms
529
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.846Z - Time taken for 'build-project-configs' 4.867707999423146ms
530
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.855Z - [SYNC]: collect registered sync generators
531
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.855Z - [SYNC]: project graph hash is the same, not collecting task sync generators
532
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.855Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
533
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:49:30.855Z - Time taken for 'total execution time for createProjectGraph()' 7.752874998375773ms
534
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:04.287Z - [WATCHER]: Processing file changes in outputs
535
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:04.300Z - [WATCHER]: tsconfig.json was modified
536
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:05.691Z - [WATCHER]: Processing file changes in outputs
537
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:05.700Z - [WATCHER]: tsconfig.json was modified
538
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:05.885Z - [WATCHER]: Processing file changes in outputs
539
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.701Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
540
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.701Z - [REQUEST]: tsconfig.json
541
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.701Z - [REQUEST]:
542
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.703Z - Time taken for 'hash changed files from watcher' 0.19550000131130219ms
543
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.710Z - Time taken for 'build-project-configs' 6.8381660003215075ms
544
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.721Z - [SYNC]: collect registered sync generators
545
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.721Z - [SYNC]: project graph hash is the same, not collecting task sync generators
546
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.721Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
547
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:10.721Z - Time taken for 'total execution time for createProjectGraph()' 7.472249999642372ms
548
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:46.359Z - [WATCHER]: Processing file changes in outputs
549
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:46.367Z - [WATCHER]: tsconfig.json was modified
550
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:47.920Z - [WATCHER]: Processing file changes in outputs
551
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:47.932Z - [WATCHER]: tsconfig.json was modified
552
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:48.143Z - [WATCHER]: Processing file changes in outputs
553
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.769Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
554
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.769Z - [REQUEST]: tsconfig.json
555
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.769Z - [REQUEST]:
556
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.772Z - Time taken for 'hash changed files from watcher' 0.31599999964237213ms
557
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.783Z - Time taken for 'build-project-configs' 10.51079199835658ms
558
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.795Z - [SYNC]: collect registered sync generators
559
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.795Z - [SYNC]: project graph hash is the same, not collecting task sync generators
560
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.795Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
561
+ [NX v20.8.4 Daemon Server] - 2026-09-17T15:52:52.795Z - Time taken for 'total execution time for createProjectGraph()' 7.406333001330495ms
562
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:09.254Z - [WATCHER]: Processing file changes in outputs
563
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:09.290Z - [WATCHER]: tsconfig.json was modified
564
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:10.836Z - [WATCHER]: Processing file changes in outputs
565
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:10.846Z - [WATCHER]: tsconfig.json was modified
566
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:11.041Z - [WATCHER]: Processing file changes in outputs
567
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.697Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
568
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.697Z - [REQUEST]: tsconfig.json
569
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.697Z - [REQUEST]:
570
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.704Z - Time taken for 'hash changed files from watcher' 2.2114579994231462ms
571
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.717Z - Time taken for 'build-project-configs' 11.757792001590133ms
572
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.729Z - [SYNC]: collect registered sync generators
573
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.729Z - [SYNC]: project graph hash is the same, not collecting task sync generators
574
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.729Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
575
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:15.729Z - Time taken for 'total execution time for createProjectGraph()' 6.093209000304341ms
576
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.773Z - Established a connection. Number of open connections: 1
577
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.775Z - Closed a connection. Number of open connections: 0
578
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.776Z - Established a connection. Number of open connections: 1
579
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.778Z - [REQUEST]: Client Request for Project Graph Received
580
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.778Z - [REQUEST]: Responding to the client. project-graph
581
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.778Z - Time taken for 'total for creating and serializing project graph' 0.11537500098347664ms
582
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.779Z - Done responding to the client project-graph
583
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.779Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
584
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.781Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
585
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.781Z - Done responding to the client handleRunPreTasksExecution
586
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.781Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
587
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.781Z - Time taken for 'preTasksExecution' 0.05937499925494194ms
588
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.828Z - [REQUEST]: Responding to the client. handleHashTasks
589
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.828Z - Done responding to the client handleHashTasks
590
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.828Z - Handled HASH_TASKS. Handling time: 4. Response time: 0.
591
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.877Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
592
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.877Z - Done responding to the client handleGetEstimatedTaskTimings
593
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.877Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 0. Response time: 0.
594
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.880Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
595
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.880Z - Done responding to the client handleRecordTaskRuns
596
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.880Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
597
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.881Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
598
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.881Z - Done responding to the client handleGetFlakyTasks
599
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:42.881Z - Handled GET_FLAKY_TASKS. Handling time: 1. Response time: 0.
600
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:43.166Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
601
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:43.166Z - Done responding to the client handleRunPostTasksExecution
602
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:43.166Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
603
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:43.166Z - Time taken for 'postTasksExecution' 0.045291000977158546ms
604
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:04:43.169Z - Closed a connection. Number of open connections: 0
605
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.572Z - [WATCHER]: Processing file changes in outputs
606
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.584Z - [WATCHER]: tsconfig.json was modified
607
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.686Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
608
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.686Z - [REQUEST]: tsconfig.json
609
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.686Z - [REQUEST]:
610
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.689Z - Time taken for 'hash changed files from watcher' 0.3966249991208315ms
611
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.697Z - Time taken for 'build-project-configs' 7.019708000123501ms
612
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.708Z - [SYNC]: collect registered sync generators
613
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.708Z - [SYNC]: project graph hash is the same, not collecting task sync generators
614
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.708Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
615
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:51.708Z - Time taken for 'total execution time for createProjectGraph()' 6.63154099881649ms
616
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.366Z - [WATCHER]: Processing file changes in outputs
617
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.427Z - [WATCHER]: Processing file changes in outputs
618
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.430Z - [WATCHER]: tsconfig.json was modified
619
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.631Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
620
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.631Z - [REQUEST]: tsconfig.json
621
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.631Z - [REQUEST]:
622
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.632Z - Time taken for 'hash changed files from watcher' 0.27745800092816353ms
623
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.643Z - Time taken for 'build-project-configs' 7.881374999880791ms
624
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.652Z - [SYNC]: collect registered sync generators
625
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.652Z - [SYNC]: project graph hash is the same, not collecting task sync generators
626
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.652Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
627
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.652Z - Time taken for 'total execution time for createProjectGraph()' 9.890625ms
628
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:14:54.962Z - [WATCHER]: Processing file changes in outputs
629
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.427Z - Established a connection. Number of open connections: 1
630
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.429Z - Closed a connection. Number of open connections: 0
631
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.429Z - Established a connection. Number of open connections: 1
632
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.431Z - [REQUEST]: Client Request for Project Graph Received
633
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.432Z - [REQUEST]: Responding to the client. project-graph
634
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.432Z - Time taken for 'total for creating and serializing project graph' 0.1875ms
635
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.432Z - Done responding to the client project-graph
636
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.432Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
637
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.434Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
638
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.434Z - Done responding to the client handleRunPreTasksExecution
639
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.434Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
640
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.434Z - Time taken for 'preTasksExecution' 0.11858300119638443ms
641
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.477Z - [REQUEST]: Responding to the client. handleHashTasks
642
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.477Z - Done responding to the client handleHashTasks
643
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.477Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
644
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.521Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
645
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.521Z - Done responding to the client handleGetEstimatedTaskTimings
646
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.521Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 0.
647
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.523Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
648
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.523Z - Done responding to the client handleRecordTaskRuns
649
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.523Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
650
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.523Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
651
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.523Z - Done responding to the client handleGetFlakyTasks
652
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.523Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
653
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.799Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
654
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.799Z - Done responding to the client handleRunPostTasksExecution
655
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.799Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
656
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.799Z - Time taken for 'postTasksExecution' 0.052000001072883606ms
657
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:15:26.802Z - Closed a connection. Number of open connections: 0
658
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:29.841Z - [WATCHER]: Processing file changes in outputs
659
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:29.859Z - [WATCHER]: tsconfig.json was modified
660
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:29.965Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
661
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:29.965Z - [REQUEST]: tsconfig.json
662
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:29.965Z - [REQUEST]:
663
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:29.974Z - Time taken for 'hash changed files from watcher' 2.415583999827504ms
664
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:30.047Z - Time taken for 'build-project-configs' 70.5509580001235ms
665
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:30.072Z - [SYNC]: collect registered sync generators
666
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:30.072Z - [SYNC]: project graph hash is the same, not collecting task sync generators
667
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:30.072Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
668
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:30.072Z - Time taken for 'total execution time for createProjectGraph()' 22.283165998756886ms
669
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.447Z - [WATCHER]: Processing file changes in outputs
670
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.452Z - [WATCHER]: tsconfig.json was modified
671
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.653Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
672
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.653Z - [REQUEST]: tsconfig.json
673
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.653Z - [REQUEST]:
674
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.656Z - Time taken for 'hash changed files from watcher' 0.21870899945497513ms
675
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.664Z - Time taken for 'build-project-configs' 7.757790999487042ms
676
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.665Z - [WATCHER]: Processing file changes in outputs
677
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.687Z - [SYNC]: collect registered sync generators
678
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.687Z - [SYNC]: project graph hash is the same, not collecting task sync generators
679
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.687Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
680
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:31.688Z - Time taken for 'total execution time for createProjectGraph()' 17.639208000153303ms
681
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.416Z - Established a connection. Number of open connections: 1
682
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.416Z - Established a connection. Number of open connections: 2
683
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.416Z - Closed a connection. Number of open connections: 1
684
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.419Z - [REQUEST]: Client Request for Project Graph Received
685
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.419Z - [REQUEST]: Responding to the client. project-graph
686
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.420Z - Time taken for 'total for creating and serializing project graph' 0.35579200088977814ms
687
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.421Z - Done responding to the client project-graph
688
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.421Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2.
689
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.423Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
690
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.423Z - Done responding to the client handleRunPreTasksExecution
691
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.423Z - Handled PRE_TASKS_EXECUTION. Handling time: 1. Response time: 0.
692
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.423Z - Time taken for 'preTasksExecution' 0.13595899939537048ms
693
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.470Z - [REQUEST]: Responding to the client. handleHashTasks
694
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.470Z - Done responding to the client handleHashTasks
695
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.470Z - Handled HASH_TASKS. Handling time: 4. Response time: 0.
696
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.510Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
697
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.510Z - Done responding to the client handleGetEstimatedTaskTimings
698
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.510Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 0. Response time: 0.
699
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.512Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
700
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.512Z - Done responding to the client handleRecordTaskRuns
701
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.512Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
702
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.513Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
703
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.513Z - Done responding to the client handleGetFlakyTasks
704
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.513Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
705
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.931Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
706
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.931Z - Done responding to the client handleRunPostTasksExecution
707
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.931Z - Handled POST_TASKS_EXECUTION. Handling time: 1. Response time: 0.
708
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.931Z - Time taken for 'postTasksExecution' 0.12299999967217445ms
709
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:36:57.935Z - Closed a connection. Number of open connections: 0
710
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:10.903Z - [WATCHER]: Processing file changes in outputs
711
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:10.911Z - [WATCHER]: tsconfig.json was modified
712
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.012Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
713
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.012Z - [REQUEST]: tsconfig.json
714
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.012Z - [REQUEST]:
715
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.015Z - Time taken for 'hash changed files from watcher' 0.43066699989140034ms
716
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.026Z - Time taken for 'build-project-configs' 9.710333999246359ms
717
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.041Z - [SYNC]: collect registered sync generators
718
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.041Z - [SYNC]: project graph hash is the same, not collecting task sync generators
719
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.041Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
720
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:11.042Z - Time taken for 'total execution time for createProjectGraph()' 8.323915999382734ms
721
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.419Z - [WATCHER]: Processing file changes in outputs
722
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.426Z - [WATCHER]: tsconfig.json was modified
723
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.627Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
724
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.627Z - [REQUEST]: tsconfig.json
725
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.627Z - [REQUEST]:
726
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.628Z - Time taken for 'hash changed files from watcher' 0.18754199892282486ms
727
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.633Z - Time taken for 'build-project-configs' 4.3988749999552965ms
728
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.644Z - [SYNC]: collect registered sync generators
729
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.644Z - [SYNC]: project graph hash is the same, not collecting task sync generators
730
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.644Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
731
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.644Z - Time taken for 'total execution time for createProjectGraph()' 8.835417000576854ms
732
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:12.658Z - [WATCHER]: Processing file changes in outputs
733
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.562Z - Established a connection. Number of open connections: 1
734
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.563Z - Established a connection. Number of open connections: 2
735
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.563Z - Closed a connection. Number of open connections: 1
736
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.565Z - [REQUEST]: Client Request for Project Graph Received
737
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.565Z - [REQUEST]: Responding to the client. project-graph
738
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.566Z - Time taken for 'total for creating and serializing project graph' 0.41404199972748756ms
739
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.566Z - Done responding to the client project-graph
740
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.566Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
741
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.568Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
742
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.568Z - Done responding to the client handleRunPreTasksExecution
743
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.568Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
744
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.568Z - Time taken for 'preTasksExecution' 0.08837499842047691ms
745
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.605Z - [REQUEST]: Responding to the client. handleHashTasks
746
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.605Z - Done responding to the client handleHashTasks
747
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.605Z - Handled HASH_TASKS. Handling time: 5. Response time: 0.
748
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.641Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
749
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.641Z - Done responding to the client handleGetEstimatedTaskTimings
750
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.641Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 0.
751
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.643Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
752
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.643Z - Done responding to the client handleRecordTaskRuns
753
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.643Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
754
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.643Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
755
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.643Z - Done responding to the client handleGetFlakyTasks
756
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.643Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
757
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.924Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
758
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.924Z - Done responding to the client handleRunPostTasksExecution
759
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.924Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
760
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.924Z - Time taken for 'postTasksExecution' 0.05591699853539467ms
761
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:41:36.927Z - Closed a connection. Number of open connections: 0
762
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.418Z - [WATCHER]: Processing file changes in outputs
763
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.426Z - [WATCHER]: tsconfig.json was modified
764
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.527Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
765
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.527Z - [REQUEST]: tsconfig.json
766
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.527Z - [REQUEST]:
767
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.530Z - Time taken for 'hash changed files from watcher' 0.43987500108778477ms
768
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.543Z - Time taken for 'build-project-configs' 10.49133300036192ms
769
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.563Z - [SYNC]: collect registered sync generators
770
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.563Z - [SYNC]: project graph hash is the same, not collecting task sync generators
771
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.563Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
772
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:54.563Z - Time taken for 'total execution time for createProjectGraph()' 17.552207998931408ms
773
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.597Z - [WATCHER]: Processing file changes in outputs
774
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.605Z - [WATCHER]: tsconfig.json was modified
775
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.805Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
776
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.805Z - [REQUEST]: tsconfig.json
777
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.805Z - [REQUEST]:
778
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.808Z - Time taken for 'hash changed files from watcher' 0.3354160003364086ms
779
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.825Z - Time taken for 'build-project-configs' 15.514750000089407ms
780
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.832Z - [SYNC]: collect registered sync generators
781
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.832Z - [SYNC]: project graph hash is the same, not collecting task sync generators
782
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.832Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
783
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.832Z - Time taken for 'total execution time for createProjectGraph()' 7.911166001111269ms
784
+ [NX v20.8.4 Daemon Server] - 2026-09-17T16:46:56.878Z - [WATCHER]: Processing file changes in outputs
785
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.159Z - [WATCHER]: Processing file changes in outputs
786
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.237Z - [WATCHER]: Processing file changes in outputs
787
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.282Z - [WATCHER]: tsconfig.json was modified
788
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.289Z - [WATCHER]: Processing file changes in outputs
789
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.689Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
790
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.689Z - [REQUEST]: tsconfig.json
791
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.689Z - [REQUEST]:
792
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.692Z - Time taken for 'hash changed files from watcher' 1.9162909984588623ms
793
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.705Z - Time taken for 'build-project-configs' 11.540709000080824ms
794
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.722Z - [SYNC]: collect registered sync generators
795
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.722Z - [SYNC]: project graph hash is the same, not collecting task sync generators
796
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.723Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
797
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:02.723Z - Time taken for 'total execution time for createProjectGraph()' 11.052749998867512ms
798
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:04.676Z - [WATCHER]: Processing file changes in outputs
799
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:04.683Z - [WATCHER]: tsconfig.json was modified
800
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.106Z - [WATCHER]: Processing file changes in outputs
801
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.483Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
802
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.483Z - [REQUEST]: tsconfig.json
803
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.483Z - [REQUEST]:
804
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.485Z - Time taken for 'hash changed files from watcher' 0.10895899683237076ms
805
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.490Z - Time taken for 'build-project-configs' 5.122333001345396ms
806
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.507Z - [SYNC]: collect registered sync generators
807
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.507Z - [SYNC]: project graph hash is the same, not collecting task sync generators
808
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.507Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
809
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:05.507Z - Time taken for 'total execution time for createProjectGraph()' 7.528083998709917ms
810
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.191Z - [WATCHER]: Processing file changes in outputs
811
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.264Z - [WATCHER]: Processing file changes in outputs
812
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.336Z - [WATCHER]: Processing file changes in outputs
813
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.419Z - [WATCHER]: Processing file changes in outputs
814
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.481Z - [WATCHER]: Processing file changes in outputs
815
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.558Z - [WATCHER]: Processing file changes in outputs
816
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.610Z - [WATCHER]: Processing file changes in outputs
817
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.690Z - [WATCHER]: Processing file changes in outputs
818
+ [NX v20.8.4 Daemon Server] - 2026-09-17T17:53:06.744Z - [WATCHER]: Processing file changes in outputs
819
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:21.338Z - [WATCHER]: tsconfig.json was modified
820
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:21.339Z - [WATCHER]: Processing file changes in outputs
821
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.941Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
822
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.941Z - [REQUEST]: tsconfig.json
823
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.941Z - [REQUEST]:
824
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.944Z - Time taken for 'hash changed files from watcher' 1.7881250008940697ms
825
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.954Z - Time taken for 'build-project-configs' 8.02854199707508ms
826
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.975Z - [SYNC]: collect registered sync generators
827
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.975Z - [SYNC]: project graph hash is the same, not collecting task sync generators
828
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.975Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
829
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:22.975Z - Time taken for 'total execution time for createProjectGraph()' 11.680125001817942ms
830
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:23.160Z - [WATCHER]: Processing file changes in outputs
831
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:23.171Z - [WATCHER]: tsconfig.json was modified
832
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:23.490Z - [WATCHER]: Processing file changes in outputs
833
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.371Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
834
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.371Z - [REQUEST]: tsconfig.json
835
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.371Z - [REQUEST]:
836
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.372Z - Time taken for 'hash changed files from watcher' 0.1352499984204769ms
837
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.380Z - Time taken for 'build-project-configs' 6.98233300074935ms
838
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.392Z - [SYNC]: collect registered sync generators
839
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.392Z - [SYNC]: project graph hash is the same, not collecting task sync generators
840
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.392Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
841
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:42:26.392Z - Time taken for 'total execution time for createProjectGraph()' 6.0456659980118275ms
842
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:38.912Z - [WATCHER]: Processing file changes in outputs
843
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:38.918Z - [WATCHER]: tsconfig.json was modified
844
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:40.693Z - [WATCHER]: Processing file changes in outputs
845
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:40.702Z - [WATCHER]: tsconfig.json was modified
846
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:40.952Z - [WATCHER]: Processing file changes in outputs
847
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.318Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
848
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.319Z - [REQUEST]: tsconfig.json
849
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.319Z - [REQUEST]:
850
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.319Z - Time taken for 'hash changed files from watcher' 0.11087500303983688ms
851
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.353Z - Time taken for 'build-project-configs' 33.11066700145602ms
852
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.419Z - [SYNC]: collect registered sync generators
853
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.419Z - [SYNC]: project graph hash is the same, not collecting task sync generators
854
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.419Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
855
+ [NX v20.8.4 Daemon Server] - 2026-09-17T18:45:45.419Z - Time taken for 'total execution time for createProjectGraph()' 3.812542002648115ms
856
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:00.419Z - [WATCHER]: Processing file changes in outputs
857
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:00.425Z - [WATCHER]: tsconfig.json was modified
858
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:01.803Z - [WATCHER]: Processing file changes in outputs
859
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:01.810Z - [WATCHER]: tsconfig.json was modified
860
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:01.992Z - [WATCHER]: Processing file changes in outputs
861
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.826Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
862
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.827Z - [REQUEST]: tsconfig.json
863
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.827Z - [REQUEST]:
864
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.833Z - Time taken for 'hash changed files from watcher' 0.928541999310255ms
865
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.855Z - Time taken for 'build-project-configs' 25.312291000038385ms
866
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.874Z - [SYNC]: collect registered sync generators
867
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.874Z - [SYNC]: project graph hash is the same, not collecting task sync generators
868
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.874Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
869
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:08:06.874Z - Time taken for 'total execution time for createProjectGraph()' 7.634291999042034ms
870
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:29:56.274Z - [WATCHER]: tsconfig.json was modified
871
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:29:56.275Z - [WATCHER]: Processing file changes in outputs
872
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:29:58.277Z - [WATCHER]: Processing file changes in outputs
873
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:29:58.285Z - [WATCHER]: tsconfig.json was modified
874
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:29:58.515Z - [WATCHER]: Processing file changes in outputs
875
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.677Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
876
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.677Z - [REQUEST]: tsconfig.json
877
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.679Z - [REQUEST]:
878
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.683Z - Time taken for 'hash changed files from watcher' 1.9431670010089874ms
879
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.699Z - Time taken for 'build-project-configs' 16.99712499976158ms
880
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.738Z - [SYNC]: collect registered sync generators
881
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.739Z - [SYNC]: project graph hash is the same, not collecting task sync generators
882
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.739Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
883
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:02.739Z - Time taken for 'total execution time for createProjectGraph()' 8.877415999770164ms
884
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:56.009Z - [WATCHER]: Processing file changes in outputs
885
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:56.014Z - [WATCHER]: tsconfig.json was modified
886
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:57.765Z - [WATCHER]: Processing file changes in outputs
887
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:57.771Z - [WATCHER]: tsconfig.json was modified
888
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:30:57.985Z - [WATCHER]: Processing file changes in outputs
889
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.415Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
890
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.415Z - [REQUEST]: tsconfig.json
891
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.415Z - [REQUEST]:
892
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.417Z - Time taken for 'hash changed files from watcher' 0.25508399680256844ms
893
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.443Z - Time taken for 'build-project-configs' 23.5271660014987ms
894
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.464Z - [SYNC]: collect registered sync generators
895
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.465Z - [SYNC]: project graph hash is the same, not collecting task sync generators
896
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.465Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
897
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:02.465Z - Time taken for 'total execution time for createProjectGraph()' 10.485625002533197ms
898
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.376Z - Established a connection. Number of open connections: 1
899
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.376Z - Closed a connection. Number of open connections: 0
900
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.376Z - Established a connection. Number of open connections: 1
901
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.377Z - [REQUEST]: Client Request for Project Graph Received
902
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.377Z - [REQUEST]: Responding to the client. project-graph
903
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.377Z - Time taken for 'total for creating and serializing project graph' 0.1911660023033619ms
904
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.379Z - Done responding to the client project-graph
905
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.379Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2.
906
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.380Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
907
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.380Z - Done responding to the client handleRunPreTasksExecution
908
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.380Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
909
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.380Z - Time taken for 'preTasksExecution' 0.1462079994380474ms
910
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.412Z - [REQUEST]: Responding to the client. handleHashTasks
911
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.412Z - Done responding to the client handleHashTasks
912
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.412Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
913
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.450Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
914
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.450Z - Done responding to the client handleGetEstimatedTaskTimings
915
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.450Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 0. Response time: 0.
916
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.452Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
917
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.452Z - Done responding to the client handleRecordTaskRuns
918
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.452Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
919
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.452Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
920
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.452Z - Done responding to the client handleGetFlakyTasks
921
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.452Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
922
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.717Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
923
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.717Z - Done responding to the client handleRunPostTasksExecution
924
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.717Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
925
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.717Z - Time taken for 'postTasksExecution' 0.04762499779462814ms
926
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:31:23.719Z - Closed a connection. Number of open connections: 0
927
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.568Z - [WATCHER]: Processing file changes in outputs
928
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.574Z - [WATCHER]: tsconfig.json was modified
929
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.674Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
930
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.674Z - [REQUEST]: tsconfig.json
931
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.674Z - [REQUEST]:
932
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.675Z - Time taken for 'hash changed files from watcher' 0.16770800203084946ms
933
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.684Z - Time taken for 'build-project-configs' 7.693833999335766ms
934
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.701Z - [SYNC]: collect registered sync generators
935
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.701Z - [SYNC]: project graph hash is the same, not collecting task sync generators
936
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.701Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
937
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:57.701Z - Time taken for 'total execution time for createProjectGraph()' 5.061583001166582ms
938
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.292Z - [WATCHER]: Processing file changes in outputs
939
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.300Z - [WATCHER]: tsconfig.json was modified
940
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.501Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
941
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.501Z - [REQUEST]: tsconfig.json
942
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.501Z - [REQUEST]:
943
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.501Z - Time taken for 'hash changed files from watcher' 0.09216700121760368ms
944
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.507Z - Time taken for 'build-project-configs' 3.918790999799967ms
945
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.519Z - [SYNC]: collect registered sync generators
946
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.519Z - [SYNC]: project graph hash is the same, not collecting task sync generators
947
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.519Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
948
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.519Z - Time taken for 'total execution time for createProjectGraph()' 6.12287499755621ms
949
+ [NX v20.8.4 Daemon Server] - 2026-09-17T19:41:59.524Z - [WATCHER]: Processing file changes in outputs
950
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.376Z - [WATCHER]: Processing file changes in outputs
951
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.381Z - [WATCHER]: tsconfig.json was modified
952
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.784Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
953
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.784Z - [REQUEST]: tsconfig.json
954
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.784Z - [REQUEST]:
955
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.787Z - Time taken for 'hash changed files from watcher' 2.180459000170231ms
956
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.802Z - Time taken for 'build-project-configs' 12.160625003278255ms
957
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.829Z - [SYNC]: collect registered sync generators
958
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.830Z - [SYNC]: project graph hash is the same, not collecting task sync generators
959
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.830Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
960
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:23.830Z - Time taken for 'total execution time for createProjectGraph()' 12.662832997739315ms
961
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:25.421Z - [WATCHER]: Processing file changes in outputs
962
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:25.430Z - [WATCHER]: tsconfig.json was modified
963
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:25.654Z - [WATCHER]: Processing file changes in outputs
964
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.230Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
965
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.230Z - [REQUEST]: tsconfig.json
966
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.230Z - [REQUEST]:
967
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.236Z - Time taken for 'hash changed files from watcher' 0.14229200035333633ms
968
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.244Z - Time taken for 'build-project-configs' 6.569667000323534ms
969
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.257Z - [SYNC]: collect registered sync generators
970
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.257Z - [SYNC]: project graph hash is the same, not collecting task sync generators
971
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.257Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
972
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:04:26.257Z - Time taken for 'total execution time for createProjectGraph()' 7.851583998650312ms
973
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:16.995Z - [WATCHER]: package.json was modified
974
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:16.996Z - [WATCHER]: Processing file changes in outputs
975
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.598Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
976
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.598Z - [REQUEST]: package.json
977
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.598Z - [REQUEST]:
978
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.601Z - Time taken for 'hash changed files from watcher' 1.2318329997360706ms
979
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.609Z - Time taken for 'build-project-configs' 6.851249996572733ms
980
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.678Z - [SYNC]: collect registered sync generators
981
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.678Z - [SYNC]: project graph hash is the same, not collecting task sync generators
982
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.678Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
983
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:18.678Z - Time taken for 'total execution time for createProjectGraph()' 5.0485000014305115ms
984
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:42.064Z - [WATCHER]: package.json was modified
985
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:42.064Z - [WATCHER]: Processing file changes in outputs
986
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.264Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
987
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.264Z - [REQUEST]: package.json
988
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.264Z - [REQUEST]:
989
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.265Z - Time taken for 'hash changed files from watcher' 0.1368749998509884ms
990
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.269Z - Time taken for 'build-project-configs' 3.669082999229431ms
991
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.281Z - [SYNC]: collect registered sync generators
992
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.281Z - [SYNC]: project graph hash is the same, not collecting task sync generators
993
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.281Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
994
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:39:45.281Z - Time taken for 'total execution time for createProjectGraph()' 5.437832999974489ms
995
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:12.278Z - [WATCHER]: Processing file changes in outputs
996
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:12.284Z - [WATCHER]: tsconfig.json was modified
997
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:14.031Z - [WATCHER]: Processing file changes in outputs
998
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:14.089Z - [WATCHER]: Processing file changes in outputs
999
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:14.093Z - [WATCHER]: tsconfig.json was modified
1000
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:14.327Z - [WATCHER]: Processing file changes in outputs
1001
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.686Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
1002
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.686Z - [REQUEST]: tsconfig.json
1003
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.686Z - [REQUEST]:
1004
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.689Z - Time taken for 'hash changed files from watcher' 1.9309579990804195ms
1005
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.697Z - Time taken for 'build-project-configs' 6.837875001132488ms
1006
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.711Z - [SYNC]: collect registered sync generators
1007
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.711Z - [SYNC]: project graph hash is the same, not collecting task sync generators
1008
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.711Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
1009
+ [NX v20.8.4 Daemon Server] - 2026-09-17T20:59:18.711Z - Time taken for 'total execution time for createProjectGraph()' 4.091667000204325ms
1010
+ [NX v20.8.4 Daemon Server] - 2026-09-17T23:59:14.164Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (sources)
1011
+ [NX v20.8.4 Daemon Server] - 2026-09-17T23:59:14.170Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (outputs)
1012
+ [NX v20.8.4 Daemon Server] - 2026-09-17T23:59:14.178Z - Server stopped because: "10800000ms of inactivity"