@testspectra/cli 1.1.8-rc.9 → 1.1.10

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 (80) hide show
  1. package/README.md +11 -8
  2. package/dist/.tsbuildinfo +1 -1
  3. package/dist/commands/__tests__/doctor-filter.test.d.ts +1 -0
  4. package/dist/commands/__tests__/doctor-filter.test.js +37 -0
  5. package/dist/commands/__tests__/test-error-streaming.test.d.ts +1 -0
  6. package/dist/commands/__tests__/test-error-streaming.test.js +85 -0
  7. package/dist/commands/__tests__/test-scaffolding.test.d.ts +1 -0
  8. package/dist/commands/__tests__/test-scaffolding.test.js +32 -0
  9. package/dist/commands/__tests__/upgrade.test.d.ts +1 -0
  10. package/dist/commands/__tests__/upgrade.test.js +95 -0
  11. package/dist/commands/add.js +3 -3
  12. package/dist/commands/devices.js +1 -0
  13. package/dist/commands/docs.d.ts +4 -0
  14. package/dist/commands/docs.js +17 -0
  15. package/dist/commands/doctor.d.ts +9 -1
  16. package/dist/commands/doctor.js +17 -3
  17. package/dist/commands/init.js +5 -159
  18. package/dist/commands/install.js +5 -0
  19. package/dist/commands/license.js +1 -0
  20. package/dist/commands/run.d.ts +2 -0
  21. package/dist/commands/run.js +22 -0
  22. package/dist/commands/test.d.ts +13 -0
  23. package/dist/commands/test.js +115 -21
  24. package/dist/commands/upgrade.d.ts +12 -0
  25. package/dist/commands/upgrade.js +197 -0
  26. package/dist/config/schema.d.ts +53 -0
  27. package/dist/config/schema.js +2 -0
  28. package/dist/generator/__tests__/tsconfig-isolation.test.js +2 -1
  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/index.js +59 -16
  35. package/dist/linter/discovery.js +2 -2
  36. package/dist/linter/schemas/spec.schema.d.ts +6 -6
  37. package/dist/runner/bridge.d.ts +1 -1
  38. package/dist/runner/bridge.js +58 -16
  39. package/dist/runner/reporter.d.ts +1 -0
  40. package/dist/runner/reporter.js +12 -6
  41. package/dist/utils/__tests__/dev-server-manager.test.d.ts +1 -0
  42. package/dist/utils/__tests__/dev-server-manager.test.js +72 -0
  43. package/dist/utils/background-update-check.d.ts +1 -0
  44. package/dist/utils/background-update-check.js +43 -0
  45. package/dist/utils/dependency-updates.d.ts +15 -0
  46. package/dist/utils/dependency-updates.js +107 -0
  47. package/dist/utils/dev-server-manager.d.ts +40 -0
  48. package/dist/utils/dev-server-manager.js +257 -0
  49. package/dist/utils/update-notifier.d.ts +2 -0
  50. package/dist/utils/update-notifier.js +67 -0
  51. package/package.json +10 -9
  52. package/templates/default/package.json +2 -2
  53. package/templates/docs/ARCHITECTURE.default.md +26 -0
  54. package/templates/docs/ARCHITECTURE.nx.md +147 -0
  55. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db +0 -0
  56. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-shm +0 -0
  57. package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-wal +0 -0
  58. package/templates/nx/.nx/workspace-data/d/daemon.log +745 -0
  59. package/templates/nx/.nx/workspace-data/d/server-process.json +1 -1
  60. package/templates/nx/.nx/workspace-data/file-map.json +172 -186
  61. package/templates/nx/.nx/workspace-data/lockfile.hash +1 -1
  62. package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
  63. package/templates/nx/.nx/workspace-data/parsed-lock-file.json +81 -130
  64. package/templates/nx/.nx/workspace-data/project-graph.json +85 -138
  65. package/templates/nx/.nx/workspace-data/source-maps.json +336 -0
  66. package/templates/nx/package.json +3 -3
  67. package/templates/nx/pnpm-lock.yaml +191 -214
  68. package/templates/nx/spectra.config.ts +13 -0
  69. package/templates/react-component/package.json +3 -3
  70. package/templates/react-component/page-objects/BadgeComponent/web.ts +4 -4
  71. package/templates/react-component/page-objects/ButtonComponent/web.ts +3 -3
  72. package/templates/react-component/page-objects/InputComponent/web.ts +1 -1
  73. package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +0 -3
  74. package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +0 -9
  75. package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +1 -1
  76. package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +4 -8
  77. package/templates/react-component/spectra.config.ts +0 -10
  78. package/templates/react-component/src/components/Badge/Badge.tsx +3 -3
  79. package/templates/react-component/src/components/Button/Button.tsx +5 -3
  80. package/templates/react-component/src/components/Input/Input.tsx +2 -3
@@ -5746,3 +5746,748 @@
5746
5746
  [NX Daemon Server] - 2026-09-16T10:45:38.243Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5747
5747
  [NX Daemon Server] - 2026-09-16T10:45:38.243Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5748
5748
  [NX Daemon Server] - 2026-09-16T10:45:38.243Z - Time taken for 'total execution time for createProjectGraph()' 13.837250001728535ms
5749
+ [NX Daemon Server] - 2026-09-16T10:45:41.660Z - [WATCHER]: package.json was modified
5750
+ [NX Daemon Server] - 2026-09-16T10:45:41.660Z - [WATCHER]: Processing file changes in outputs
5751
+ [NX Daemon Server] - 2026-09-16T10:45:43.262Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5752
+ [NX Daemon Server] - 2026-09-16T10:45:43.263Z - [REQUEST]: package.json
5753
+ [NX Daemon Server] - 2026-09-16T10:45:43.263Z - [REQUEST]:
5754
+ [NX Daemon Server] - 2026-09-16T10:45:43.264Z - Time taken for 'hash changed files from watcher' 0.1698330007493496ms
5755
+ [NX Daemon Server] - 2026-09-16T10:45:43.270Z - Time taken for 'build-project-configs' 4.134625002741814ms
5756
+ [NX Daemon Server] - 2026-09-16T10:45:43.283Z - [SYNC]: collect registered sync generators
5757
+ [NX Daemon Server] - 2026-09-16T10:45:43.283Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5758
+ [NX Daemon Server] - 2026-09-16T10:45:43.283Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5759
+ [NX Daemon Server] - 2026-09-16T10:45:43.283Z - Time taken for 'total execution time for createProjectGraph()' 9.622250001877546ms
5760
+ [NX Daemon Server] - 2026-09-16T10:46:01.106Z - [WATCHER]: _tmp_68112_fc4c542f18edb3b70e302f87c1e1e429 was deleted
5761
+ [NX Daemon Server] - 2026-09-16T10:46:01.106Z - [WATCHER]: Processing file changes in outputs
5762
+ [NX Daemon Server] - 2026-09-16T10:46:04.311Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5763
+ [NX Daemon Server] - 2026-09-16T10:46:04.311Z - [REQUEST]:
5764
+ [NX Daemon Server] - 2026-09-16T10:46:04.311Z - [REQUEST]: _tmp_68112_fc4c542f18edb3b70e302f87c1e1e429
5765
+ [NX Daemon Server] - 2026-09-16T10:46:04.312Z - Time taken for 'hash changed files from watcher' 0.10079199820756912ms
5766
+ [NX Daemon Server] - 2026-09-16T10:46:04.322Z - Time taken for 'build-project-configs' 9.922083001583815ms
5767
+ [NX Daemon Server] - 2026-09-16T10:46:04.330Z - [SYNC]: collect registered sync generators
5768
+ [NX Daemon Server] - 2026-09-16T10:46:04.330Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5769
+ [NX Daemon Server] - 2026-09-16T10:46:04.330Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5770
+ [NX Daemon Server] - 2026-09-16T10:46:04.331Z - Time taken for 'total execution time for createProjectGraph()' 6.800041999667883ms
5771
+ [NX Daemon Server] - 2026-09-16T10:46:50.928Z - [WATCHER]: _tmp_68277_597b1ee9d859ceaa589fcc71838004c1 was deleted
5772
+ [NX Daemon Server] - 2026-09-16T10:46:50.929Z - [WATCHER]: Processing file changes in outputs
5773
+ [NX Daemon Server] - 2026-09-16T10:46:57.334Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5774
+ [NX Daemon Server] - 2026-09-16T10:46:57.334Z - [REQUEST]:
5775
+ [NX Daemon Server] - 2026-09-16T10:46:57.334Z - [REQUEST]: _tmp_68277_597b1ee9d859ceaa589fcc71838004c1
5776
+ [NX Daemon Server] - 2026-09-16T10:46:57.336Z - Time taken for 'hash changed files from watcher' 0.15029199793934822ms
5777
+ [NX Daemon Server] - 2026-09-16T10:46:57.344Z - Time taken for 'build-project-configs' 7.1751669980585575ms
5778
+ [NX Daemon Server] - 2026-09-16T10:46:57.353Z - [SYNC]: collect registered sync generators
5779
+ [NX Daemon Server] - 2026-09-16T10:46:57.353Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5780
+ [NX Daemon Server] - 2026-09-16T10:46:57.353Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5781
+ [NX Daemon Server] - 2026-09-16T10:46:57.353Z - Time taken for 'total execution time for createProjectGraph()' 9.367084000259638ms
5782
+ [NX Daemon Server] - 2026-09-16T10:47:13.552Z - [WATCHER]: _tmp_68374_8ac33b7bd75f612b2a354ed5108b8d8b was deleted
5783
+ [NX Daemon Server] - 2026-09-16T10:47:13.552Z - [WATCHER]: Processing file changes in outputs
5784
+ [NX Daemon Server] - 2026-09-16T10:47:19.956Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5785
+ [NX Daemon Server] - 2026-09-16T10:47:19.956Z - [REQUEST]:
5786
+ [NX Daemon Server] - 2026-09-16T10:47:19.956Z - [REQUEST]: _tmp_68374_8ac33b7bd75f612b2a354ed5108b8d8b
5787
+ [NX Daemon Server] - 2026-09-16T10:47:19.957Z - Time taken for 'hash changed files from watcher' 0.0894169993698597ms
5788
+ [NX Daemon Server] - 2026-09-16T10:47:19.963Z - Time taken for 'build-project-configs' 5.043042000383139ms
5789
+ [NX Daemon Server] - 2026-09-16T10:47:19.970Z - [SYNC]: collect registered sync generators
5790
+ [NX Daemon Server] - 2026-09-16T10:47:19.970Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5791
+ [NX Daemon Server] - 2026-09-16T10:47:19.970Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5792
+ [NX Daemon Server] - 2026-09-16T10:47:19.970Z - Time taken for 'total execution time for createProjectGraph()' 6.766499999910593ms
5793
+ [NX Daemon Server] - 2026-09-16T10:49:08.658Z - [WATCHER]: package.json was modified
5794
+ [NX Daemon Server] - 2026-09-16T10:49:08.659Z - [WATCHER]: Processing file changes in outputs
5795
+ [NX Daemon Server] - 2026-09-16T10:49:15.061Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5796
+ [NX Daemon Server] - 2026-09-16T10:49:15.061Z - [REQUEST]: package.json
5797
+ [NX Daemon Server] - 2026-09-16T10:49:15.061Z - [REQUEST]:
5798
+ [NX Daemon Server] - 2026-09-16T10:49:15.063Z - Time taken for 'hash changed files from watcher' 0.4693330004811287ms
5799
+ [NX Daemon Server] - 2026-09-16T10:49:15.078Z - Time taken for 'build-project-configs' 14.850666999816895ms
5800
+ [NX Daemon Server] - 2026-09-16T10:49:15.091Z - [SYNC]: collect registered sync generators
5801
+ [NX Daemon Server] - 2026-09-16T10:49:15.092Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5802
+ [NX Daemon Server] - 2026-09-16T10:49:15.092Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5803
+ [NX Daemon Server] - 2026-09-16T10:49:15.092Z - Time taken for 'total execution time for createProjectGraph()' 12.508542001247406ms
5804
+ [NX Daemon Server] - 2026-09-16T10:49:39.067Z - [WATCHER]: package.json was modified
5805
+ [NX Daemon Server] - 2026-09-16T10:49:39.068Z - [WATCHER]: Processing file changes in outputs
5806
+ [NX Daemon Server] - 2026-09-16T10:49:45.473Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5807
+ [NX Daemon Server] - 2026-09-16T10:49:45.473Z - [REQUEST]: package.json
5808
+ [NX Daemon Server] - 2026-09-16T10:49:45.473Z - [REQUEST]:
5809
+ [NX Daemon Server] - 2026-09-16T10:49:45.480Z - Time taken for 'hash changed files from watcher' 2.650791000574827ms
5810
+ [NX Daemon Server] - 2026-09-16T10:49:45.496Z - Time taken for 'build-project-configs' 14.873833000659943ms
5811
+ [NX Daemon Server] - 2026-09-16T10:49:45.512Z - [SYNC]: collect registered sync generators
5812
+ [NX Daemon Server] - 2026-09-16T10:49:45.512Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5813
+ [NX Daemon Server] - 2026-09-16T10:49:45.512Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5814
+ [NX Daemon Server] - 2026-09-16T10:49:45.512Z - Time taken for 'total execution time for createProjectGraph()' 15.052625000476837ms
5815
+ [NX Daemon Server] - 2026-09-16T10:55:27.897Z - [WATCHER]: _tmp_69967_059a9ad2734114cf8ae368078d97fe37 was deleted
5816
+ [NX Daemon Server] - 2026-09-16T10:55:27.906Z - [WATCHER]: Processing file changes in outputs
5817
+ [NX Daemon Server] - 2026-09-16T10:55:34.311Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5818
+ [NX Daemon Server] - 2026-09-16T10:55:34.311Z - [REQUEST]:
5819
+ [NX Daemon Server] - 2026-09-16T10:55:34.311Z - [REQUEST]: _tmp_69967_059a9ad2734114cf8ae368078d97fe37
5820
+ [NX Daemon Server] - 2026-09-16T10:55:34.313Z - Time taken for 'hash changed files from watcher' 0.17045800015330315ms
5821
+ [NX Daemon Server] - 2026-09-16T10:55:34.325Z - Time taken for 'build-project-configs' 11.717916999012232ms
5822
+ [NX Daemon Server] - 2026-09-16T10:55:34.337Z - [SYNC]: collect registered sync generators
5823
+ [NX Daemon Server] - 2026-09-16T10:55:34.338Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5824
+ [NX Daemon Server] - 2026-09-16T10:55:34.338Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5825
+ [NX Daemon Server] - 2026-09-16T10:55:34.338Z - Time taken for 'total execution time for createProjectGraph()' 7.859041001647711ms
5826
+ [NX Daemon Server] - 2026-09-16T10:58:43.348Z - [WATCHER]: package.json was modified
5827
+ [NX Daemon Server] - 2026-09-16T10:58:43.349Z - [WATCHER]: Processing file changes in outputs
5828
+ [NX Daemon Server] - 2026-09-16T10:58:49.754Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5829
+ [NX Daemon Server] - 2026-09-16T10:58:49.754Z - [REQUEST]: package.json
5830
+ [NX Daemon Server] - 2026-09-16T10:58:49.754Z - [REQUEST]:
5831
+ [NX Daemon Server] - 2026-09-16T10:58:49.756Z - Time taken for 'hash changed files from watcher' 0.5998339988291264ms
5832
+ [NX Daemon Server] - 2026-09-16T10:58:49.775Z - Time taken for 'build-project-configs' 11.640249997377396ms
5833
+ [NX Daemon Server] - 2026-09-16T10:58:49.798Z - [SYNC]: collect registered sync generators
5834
+ [NX Daemon Server] - 2026-09-16T10:58:49.799Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5835
+ [NX Daemon Server] - 2026-09-16T10:58:49.799Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5836
+ [NX Daemon Server] - 2026-09-16T10:58:49.799Z - Time taken for 'total execution time for createProjectGraph()' 16.728499997407198ms
5837
+ [NX Daemon Server] - 2026-09-16T11:00:04.331Z - [WATCHER]: Processing file changes in outputs
5838
+ [NX Daemon Server] - 2026-09-16T11:00:04.362Z - [WATCHER]: tsconfig.json was modified
5839
+ [NX Daemon Server] - 2026-09-16T11:00:05.676Z - [WATCHER]: Processing file changes in outputs
5840
+ [NX Daemon Server] - 2026-09-16T11:00:05.681Z - [WATCHER]: tsconfig.json was modified
5841
+ [NX Daemon Server] - 2026-09-16T11:00:06.316Z - [WATCHER]: Processing file changes in outputs
5842
+ [NX Daemon Server] - 2026-09-16T11:00:10.768Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5843
+ [NX Daemon Server] - 2026-09-16T11:00:10.769Z - [REQUEST]: tsconfig.json
5844
+ [NX Daemon Server] - 2026-09-16T11:00:10.769Z - [REQUEST]:
5845
+ [NX Daemon Server] - 2026-09-16T11:00:10.771Z - Time taken for 'hash changed files from watcher' 0.3883330002427101ms
5846
+ [NX Daemon Server] - 2026-09-16T11:00:10.784Z - Time taken for 'build-project-configs' 12.839457999914885ms
5847
+ [NX Daemon Server] - 2026-09-16T11:00:10.795Z - [SYNC]: collect registered sync generators
5848
+ [NX Daemon Server] - 2026-09-16T11:00:10.795Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5849
+ [NX Daemon Server] - 2026-09-16T11:00:10.795Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5850
+ [NX Daemon Server] - 2026-09-16T11:00:10.795Z - Time taken for 'total execution time for createProjectGraph()' 8.274916999042034ms
5851
+ [NX Daemon Server] - 2026-09-16T11:01:55.974Z - [WATCHER]: _tmp_71415_f4904b84e043fa60eec7e444115714b9 was deleted
5852
+ [NX Daemon Server] - 2026-09-16T11:01:55.975Z - [WATCHER]: Processing file changes in outputs
5853
+ [NX Daemon Server] - 2026-09-16T11:02:00.991Z - [WATCHER]: Processing file changes in outputs
5854
+ [NX Daemon Server] - 2026-09-16T11:02:00.998Z - [WATCHER]: tsconfig.json was modified
5855
+ [NX Daemon Server] - 2026-09-16T11:02:01.105Z - [WATCHER]: Processing file changes in outputs
5856
+ [NX Daemon Server] - 2026-09-16T11:02:02.376Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5857
+ [NX Daemon Server] - 2026-09-16T11:02:02.376Z - [REQUEST]: tsconfig.json
5858
+ [NX Daemon Server] - 2026-09-16T11:02:02.376Z - [REQUEST]: _tmp_71415_f4904b84e043fa60eec7e444115714b9
5859
+ [NX Daemon Server] - 2026-09-16T11:02:02.377Z - Time taken for 'hash changed files from watcher' 0.15600000321865082ms
5860
+ [NX Daemon Server] - 2026-09-16T11:02:02.391Z - Time taken for 'build-project-configs' 12.653208002448082ms
5861
+ [NX Daemon Server] - 2026-09-16T11:02:02.407Z - [SYNC]: collect registered sync generators
5862
+ [NX Daemon Server] - 2026-09-16T11:02:02.407Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5863
+ [NX Daemon Server] - 2026-09-16T11:02:02.407Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5864
+ [NX Daemon Server] - 2026-09-16T11:02:02.407Z - Time taken for 'total execution time for createProjectGraph()' 14.431708998978138ms
5865
+ [NX Daemon Server] - 2026-09-16T11:02:05.487Z - [WATCHER]: .testspectra was deleted
5866
+ [NX Daemon Server] - 2026-09-16T11:02:05.487Z - [WATCHER]: Processing file changes in outputs
5867
+ [NX Daemon Server] - 2026-09-16T11:02:08.756Z - [WATCHER]: Processing file changes in outputs
5868
+ [NX Daemon Server] - 2026-09-16T11:02:08.762Z - [WATCHER]: tsconfig.json was modified
5869
+ [NX Daemon Server] - 2026-09-16T11:02:08.815Z - [WATCHER]: Processing file changes in outputs
5870
+ [NX Daemon Server] - 2026-09-16T11:02:11.889Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5871
+ [NX Daemon Server] - 2026-09-16T11:02:11.889Z - [REQUEST]: tsconfig.json
5872
+ [NX Daemon Server] - 2026-09-16T11:02:11.889Z - [REQUEST]: .testspectra
5873
+ [NX Daemon Server] - 2026-09-16T11:02:11.890Z - Time taken for 'hash changed files from watcher' 0.19983400031924248ms
5874
+ [NX Daemon Server] - 2026-09-16T11:02:11.909Z - Time taken for 'build-project-configs' 17.110541999340057ms
5875
+ [NX Daemon Server] - 2026-09-16T11:02:11.923Z - [SYNC]: collect registered sync generators
5876
+ [NX Daemon Server] - 2026-09-16T11:02:11.923Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5877
+ [NX Daemon Server] - 2026-09-16T11:02:11.923Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5878
+ [NX Daemon Server] - 2026-09-16T11:02:11.923Z - Time taken for 'total execution time for createProjectGraph()' 11.395833000540733ms
5879
+ [NX Daemon Server] - 2026-09-16T11:02:18.850Z - [WATCHER]: package.json was modified
5880
+ [NX Daemon Server] - 2026-09-16T11:02:18.850Z - [WATCHER]: Processing file changes in outputs
5881
+ [NX Daemon Server] - 2026-09-16T11:02:25.251Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5882
+ [NX Daemon Server] - 2026-09-16T11:02:25.251Z - [REQUEST]: package.json
5883
+ [NX Daemon Server] - 2026-09-16T11:02:25.251Z - [REQUEST]:
5884
+ [NX Daemon Server] - 2026-09-16T11:02:25.252Z - Time taken for 'hash changed files from watcher' 0.16633399948477745ms
5885
+ [NX Daemon Server] - 2026-09-16T11:02:25.257Z - Time taken for 'build-project-configs' 4.439833000302315ms
5886
+ [NX Daemon Server] - 2026-09-16T11:02:25.267Z - [SYNC]: collect registered sync generators
5887
+ [NX Daemon Server] - 2026-09-16T11:02:25.267Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5888
+ [NX Daemon Server] - 2026-09-16T11:02:25.267Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5889
+ [NX Daemon Server] - 2026-09-16T11:02:25.267Z - Time taken for 'total execution time for createProjectGraph()' 5.079959001392126ms
5890
+ [NX Daemon Server] - 2026-09-16T11:02:53.438Z - [WATCHER]: package.json was modified
5891
+ [NX Daemon Server] - 2026-09-16T11:02:53.438Z - [WATCHER]: Processing file changes in outputs
5892
+ [NX Daemon Server] - 2026-09-16T11:02:59.840Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5893
+ [NX Daemon Server] - 2026-09-16T11:02:59.840Z - [REQUEST]: package.json
5894
+ [NX Daemon Server] - 2026-09-16T11:02:59.840Z - [REQUEST]:
5895
+ [NX Daemon Server] - 2026-09-16T11:02:59.842Z - Time taken for 'hash changed files from watcher' 0.3733750022947788ms
5896
+ [NX Daemon Server] - 2026-09-16T11:02:59.859Z - Time taken for 'build-project-configs' 14.869917001575232ms
5897
+ [NX Daemon Server] - 2026-09-16T11:02:59.876Z - [SYNC]: collect registered sync generators
5898
+ [NX Daemon Server] - 2026-09-16T11:02:59.876Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5899
+ [NX Daemon Server] - 2026-09-16T11:02:59.876Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5900
+ [NX Daemon Server] - 2026-09-16T11:02:59.876Z - Time taken for 'total execution time for createProjectGraph()' 12.624250002205372ms
5901
+ [NX Daemon Server] - 2026-09-16T11:04:13.570Z - [WATCHER]: packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md was modified
5902
+ [NX Daemon Server] - 2026-09-16T11:04:13.571Z - [WATCHER]: Processing file changes in outputs
5903
+ [NX Daemon Server] - 2026-09-16T11:04:18.390Z - [WATCHER]: Processing file changes in outputs
5904
+ [NX Daemon Server] - 2026-09-16T11:04:18.391Z - [WATCHER]: packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md was modified
5905
+ [NX Daemon Server] - 2026-09-16T11:04:19.972Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5906
+ [NX Daemon Server] - 2026-09-16T11:04:19.972Z - [REQUEST]: packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md
5907
+ [NX Daemon Server] - 2026-09-16T11:04:19.972Z - [REQUEST]:
5908
+ [NX Daemon Server] - 2026-09-16T11:04:19.974Z - Time taken for 'hash changed files from watcher' 0.2441670000553131ms
5909
+ [NX Daemon Server] - 2026-09-16T11:04:19.990Z - Time taken for 'build-project-configs' 14.909917000681162ms
5910
+ [NX Daemon Server] - 2026-09-16T11:04:20.004Z - [SYNC]: collect registered sync generators
5911
+ [NX Daemon Server] - 2026-09-16T11:04:20.004Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5912
+ [NX Daemon Server] - 2026-09-16T11:04:20.004Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5913
+ [NX Daemon Server] - 2026-09-16T11:04:20.004Z - Time taken for 'total execution time for createProjectGraph()' 6.744084000587463ms
5914
+ [NX Daemon Server] - 2026-09-16T11:04:57.690Z - [WATCHER]: Processing file changes in outputs
5915
+ [NX Daemon Server] - 2026-09-16T11:04:57.706Z - [WATCHER]: tsconfig.json was modified
5916
+ [NX Daemon Server] - 2026-09-16T11:04:59.885Z - [WATCHER]: Processing file changes in outputs
5917
+ [NX Daemon Server] - 2026-09-16T11:04:59.893Z - [WATCHER]: tsconfig.json was modified
5918
+ [NX Daemon Server] - 2026-09-16T11:05:00.089Z - [WATCHER]: Processing file changes in outputs
5919
+ [NX Daemon Server] - 2026-09-16T11:05:01.088Z - [WATCHER]: Processing file changes in outputs
5920
+ [NX Daemon Server] - 2026-09-16T11:05:01.156Z - [WATCHER]: Processing file changes in outputs
5921
+ [NX Daemon Server] - 2026-09-16T11:05:01.207Z - [WATCHER]: Processing file changes in outputs
5922
+ [NX Daemon Server] - 2026-09-16T11:05:01.270Z - [WATCHER]: Processing file changes in outputs
5923
+ [NX Daemon Server] - 2026-09-16T11:05:01.344Z - [WATCHER]: Processing file changes in outputs
5924
+ [NX Daemon Server] - 2026-09-16T11:05:01.413Z - [WATCHER]: Processing file changes in outputs
5925
+ [NX Daemon Server] - 2026-09-16T11:05:01.487Z - [WATCHER]: Processing file changes in outputs
5926
+ [NX Daemon Server] - 2026-09-16T11:05:04.110Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5927
+ [NX Daemon Server] - 2026-09-16T11:05:04.110Z - [REQUEST]: tsconfig.json
5928
+ [NX Daemon Server] - 2026-09-16T11:05:04.110Z - [REQUEST]:
5929
+ [NX Daemon Server] - 2026-09-16T11:05:04.111Z - Time taken for 'hash changed files from watcher' 0.19966699928045273ms
5930
+ [NX Daemon Server] - 2026-09-16T11:05:04.126Z - Time taken for 'build-project-configs' 12.53583300113678ms
5931
+ [NX Daemon Server] - 2026-09-16T11:05:04.136Z - [SYNC]: collect registered sync generators
5932
+ [NX Daemon Server] - 2026-09-16T11:05:04.136Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5933
+ [NX Daemon Server] - 2026-09-16T11:05:04.136Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5934
+ [NX Daemon Server] - 2026-09-16T11:05:04.136Z - Time taken for 'total execution time for createProjectGraph()' 9.385166998952627ms
5935
+ [NX Daemon Server] - 2026-09-16T11:06:50.005Z - [WATCHER]: packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md was created or restored
5936
+ [NX Daemon Server] - 2026-09-16T11:06:50.006Z - [WATCHER]: Processing file changes in outputs
5937
+ [NX Daemon Server] - 2026-09-16T11:06:50.108Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5938
+ [NX Daemon Server] - 2026-09-16T11:06:50.108Z - [REQUEST]: packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/spec.md
5939
+ [NX Daemon Server] - 2026-09-16T11:06:50.108Z - [REQUEST]:
5940
+ [NX Daemon Server] - 2026-09-16T11:06:50.109Z - Time taken for 'hash changed files from watcher' 0.17695800215005875ms
5941
+ [NX Daemon Server] - 2026-09-16T11:06:50.116Z - Time taken for 'build-project-configs' 6.8775000013411045ms
5942
+ [NX Daemon Server] - 2026-09-16T11:06:50.124Z - [SYNC]: collect registered sync generators
5943
+ [NX Daemon Server] - 2026-09-16T11:06:50.124Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5944
+ [NX Daemon Server] - 2026-09-16T11:06:50.124Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5945
+ [NX Daemon Server] - 2026-09-16T11:06:50.124Z - Time taken for 'total execution time for createProjectGraph()' 6.799125000834465ms
5946
+ [NX Daemon Server] - 2026-09-16T11:08:15.093Z - [WATCHER]: package.json was modified
5947
+ [NX Daemon Server] - 2026-09-16T11:08:15.094Z - [WATCHER]: Processing file changes in outputs
5948
+ [NX Daemon Server] - 2026-09-16T11:08:15.295Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5949
+ [NX Daemon Server] - 2026-09-16T11:08:15.295Z - [REQUEST]: package.json
5950
+ [NX Daemon Server] - 2026-09-16T11:08:15.295Z - [REQUEST]:
5951
+ [NX Daemon Server] - 2026-09-16T11:08:15.296Z - Time taken for 'hash changed files from watcher' 0.1401660032570362ms
5952
+ [NX Daemon Server] - 2026-09-16T11:08:15.305Z - Time taken for 'build-project-configs' 8.184041999280453ms
5953
+ [NX Daemon Server] - 2026-09-16T11:08:15.312Z - [SYNC]: collect registered sync generators
5954
+ [NX Daemon Server] - 2026-09-16T11:08:15.312Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5955
+ [NX Daemon Server] - 2026-09-16T11:08:15.312Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5956
+ [NX Daemon Server] - 2026-09-16T11:08:15.312Z - Time taken for 'total execution time for createProjectGraph()' 5.7818749994039536ms
5957
+ [NX Daemon Server] - 2026-09-16T11:08:43.416Z - [WATCHER]: package.json was modified
5958
+ [NX Daemon Server] - 2026-09-16T11:08:43.416Z - [WATCHER]: Processing file changes in outputs
5959
+ [NX Daemon Server] - 2026-09-16T11:08:43.817Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5960
+ [NX Daemon Server] - 2026-09-16T11:08:43.817Z - [REQUEST]: package.json
5961
+ [NX Daemon Server] - 2026-09-16T11:08:43.817Z - [REQUEST]:
5962
+ [NX Daemon Server] - 2026-09-16T11:08:43.818Z - Time taken for 'hash changed files from watcher' 0.09429199993610382ms
5963
+ [NX Daemon Server] - 2026-09-16T11:08:43.823Z - Time taken for 'build-project-configs' 4.199292000383139ms
5964
+ [NX Daemon Server] - 2026-09-16T11:08:43.830Z - [SYNC]: collect registered sync generators
5965
+ [NX Daemon Server] - 2026-09-16T11:08:43.830Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5966
+ [NX Daemon Server] - 2026-09-16T11:08:43.830Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5967
+ [NX Daemon Server] - 2026-09-16T11:08:43.830Z - Time taken for 'total execution time for createProjectGraph()' 5.828499998897314ms
5968
+ [NX Daemon Server] - 2026-09-16T11:24:24.834Z - [WATCHER]: tsconfig.json was modified
5969
+ [NX Daemon Server] - 2026-09-16T11:24:24.838Z - [WATCHER]: Processing file changes in outputs
5970
+ [NX Daemon Server] - 2026-09-16T11:24:25.639Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5971
+ [NX Daemon Server] - 2026-09-16T11:24:25.639Z - [REQUEST]: tsconfig.json
5972
+ [NX Daemon Server] - 2026-09-16T11:24:25.639Z - [REQUEST]:
5973
+ [NX Daemon Server] - 2026-09-16T11:24:25.643Z - Time taken for 'hash changed files from watcher' 0.6438749991357327ms
5974
+ [NX Daemon Server] - 2026-09-16T11:24:25.652Z - Time taken for 'build-project-configs' 8.020791001617908ms
5975
+ [NX Daemon Server] - 2026-09-16T11:24:25.661Z - [SYNC]: collect registered sync generators
5976
+ [NX Daemon Server] - 2026-09-16T11:24:25.661Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5977
+ [NX Daemon Server] - 2026-09-16T11:24:25.661Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5978
+ [NX Daemon Server] - 2026-09-16T11:24:25.661Z - Time taken for 'total execution time for createProjectGraph()' 5.0819169990718365ms
5979
+ [NX Daemon Server] - 2026-09-16T11:24:26.389Z - [WATCHER]: Processing file changes in outputs
5980
+ [NX Daemon Server] - 2026-09-16T11:24:26.393Z - [WATCHER]: tsconfig.json was modified
5981
+ [NX Daemon Server] - 2026-09-16T11:24:26.619Z - [WATCHER]: Processing file changes in outputs
5982
+ [NX Daemon Server] - 2026-09-16T11:24:27.995Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
5983
+ [NX Daemon Server] - 2026-09-16T11:24:27.995Z - [REQUEST]: tsconfig.json
5984
+ [NX Daemon Server] - 2026-09-16T11:24:27.995Z - [REQUEST]:
5985
+ [NX Daemon Server] - 2026-09-16T11:24:27.997Z - Time taken for 'hash changed files from watcher' 0.13641700148582458ms
5986
+ [NX Daemon Server] - 2026-09-16T11:24:28.006Z - Time taken for 'build-project-configs' 9.209125000983477ms
5987
+ [NX Daemon Server] - 2026-09-16T11:24:28.022Z - [SYNC]: collect registered sync generators
5988
+ [NX Daemon Server] - 2026-09-16T11:24:28.022Z - [SYNC]: project graph hash is the same, not collecting task sync generators
5989
+ [NX Daemon Server] - 2026-09-16T11:24:28.022Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
5990
+ [NX Daemon Server] - 2026-09-16T11:24:28.022Z - Time taken for 'total execution time for createProjectGraph()' 7.732125002890825ms
5991
+ [NX Daemon Server] - 2026-09-16T13:15:47.115Z - Established a connection. Number of open connections: 1
5992
+ [NX Daemon Server] - 2026-09-16T13:15:47.116Z - Established a connection. Number of open connections: 2
5993
+ [NX Daemon Server] - 2026-09-16T13:15:47.117Z - Closed a connection. Number of open connections: 1
5994
+ [NX Daemon Server] - 2026-09-16T13:15:47.120Z - [REQUEST]: Client Request for Project Graph Received
5995
+ [NX Daemon Server] - 2026-09-16T13:15:47.121Z - [REQUEST]: Responding to the client. project-graph
5996
+ [NX Daemon Server] - 2026-09-16T13:15:47.121Z - Time taken for 'total for creating and serializing project graph' 0.8153339996933937ms
5997
+ [NX Daemon Server] - 2026-09-16T13:15:47.122Z - Done responding to the client project-graph
5998
+ [NX Daemon Server] - 2026-09-16T13:15:47.122Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
5999
+ [NX Daemon Server] - 2026-09-16T13:15:47.191Z - [REQUEST]: Responding to the client. handleHashTasks
6000
+ [NX Daemon Server] - 2026-09-16T13:15:47.191Z - Done responding to the client handleHashTasks
6001
+ [NX Daemon Server] - 2026-09-16T13:15:47.191Z - Handled HASH_TASKS. Handling time: 17. Response time: 0.
6002
+ [NX Daemon Server] - 2026-09-16T13:15:47.492Z - Closed a connection. Number of open connections: 0
6003
+ [NX Daemon Server] - 2026-09-16T13:17:10.300Z - [WATCHER]: Processing file changes in outputs
6004
+ [NX Daemon Server] - 2026-09-16T13:17:10.354Z - [WATCHER]: Processing file changes in outputs
6005
+ [NX Daemon Server] - 2026-09-16T13:17:13.337Z - [WATCHER]: Processing file changes in outputs
6006
+ [NX Daemon Server] - 2026-09-16T13:18:36.264Z - Established a connection. Number of open connections: 1
6007
+ [NX Daemon Server] - 2026-09-16T13:18:36.265Z - Established a connection. Number of open connections: 2
6008
+ [NX Daemon Server] - 2026-09-16T13:18:36.265Z - Closed a connection. Number of open connections: 1
6009
+ [NX Daemon Server] - 2026-09-16T13:18:36.267Z - [REQUEST]: Client Request for Project Graph Received
6010
+ [NX Daemon Server] - 2026-09-16T13:18:36.267Z - [REQUEST]: Responding to the client. project-graph
6011
+ [NX Daemon Server] - 2026-09-16T13:18:36.267Z - Time taken for 'total for creating and serializing project graph' 0.1752920001745224ms
6012
+ [NX Daemon Server] - 2026-09-16T13:18:36.270Z - Done responding to the client project-graph
6013
+ [NX Daemon Server] - 2026-09-16T13:18:36.270Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3.
6014
+ [NX Daemon Server] - 2026-09-16T13:18:36.314Z - [REQUEST]: Responding to the client. handleHashTasks
6015
+ [NX Daemon Server] - 2026-09-16T13:18:36.314Z - Done responding to the client handleHashTasks
6016
+ [NX Daemon Server] - 2026-09-16T13:18:36.314Z - Handled HASH_TASKS. Handling time: 6. Response time: 0.
6017
+ [NX Daemon Server] - 2026-09-16T13:18:36.703Z - [WATCHER]: Processing file changes in outputs
6018
+ [NX Daemon Server] - 2026-09-16T13:18:36.759Z - [WATCHER]: Processing file changes in outputs
6019
+ [NX Daemon Server] - 2026-09-16T13:18:38.893Z - [REQUEST]: Responding to the client. recordOutputsHash
6020
+ [NX Daemon Server] - 2026-09-16T13:18:38.893Z - Done responding to the client recordOutputsHash
6021
+ [NX Daemon Server] - 2026-09-16T13:18:38.893Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0.
6022
+ [NX Daemon Server] - 2026-09-16T13:18:38.893Z - [REQUEST]: Responding to the client. recordOutputsHash
6023
+ [NX Daemon Server] - 2026-09-16T13:18:38.893Z - Done responding to the client recordOutputsHash
6024
+ [NX Daemon Server] - 2026-09-16T13:18:38.893Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0.
6025
+ [NX Daemon Server] - 2026-09-16T13:18:38.906Z - [WATCHER]: Processing file changes in outputs
6026
+ [NX Daemon Server] - 2026-09-16T13:18:39.153Z - Closed a connection. Number of open connections: 0
6027
+ [NX Daemon Server] - 2026-09-16T13:19:31.979Z - [WATCHER]: Processing file changes in outputs
6028
+ [NX Daemon Server] - 2026-09-16T13:19:34.154Z - [WATCHER]: Processing file changes in outputs
6029
+ [NX Daemon Server] - 2026-09-16T13:19:38.628Z - [WATCHER]: Processing file changes in outputs
6030
+ [NX Daemon Server] - 2026-09-16T13:19:39.530Z - [WATCHER]: Processing file changes in outputs
6031
+ [NX Daemon Server] - 2026-09-16T13:19:55.951Z - [WATCHER]: Processing file changes in outputs
6032
+ [NX Daemon Server] - 2026-09-16T13:19:56.008Z - [WATCHER]: Processing file changes in outputs
6033
+ [NX Daemon Server] - 2026-09-16T13:19:56.832Z - [WATCHER]: Processing file changes in outputs
6034
+ [NX Daemon Server] - 2026-09-16T13:23:19.399Z - [WATCHER]: Processing file changes in outputs
6035
+ [NX Daemon Server] - 2026-09-16T13:23:19.456Z - [WATCHER]: Processing file changes in outputs
6036
+ [NX Daemon Server] - 2026-09-16T13:23:20.956Z - [WATCHER]: Processing file changes in outputs
6037
+ [NX Daemon Server] - 2026-09-17T01:45:45.326Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/3c85950abf8517112e60/d.sock
6038
+ [NX Daemon Server] - 2026-09-17T01:45:45.332Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (native)
6039
+ [NX Daemon Server] - 2026-09-17T01:45:45.332Z - Established a connection. Number of open connections: 1
6040
+ [NX Daemon Server] - 2026-09-17T01:45:45.333Z - Established a connection. Number of open connections: 2
6041
+ [NX Daemon Server] - 2026-09-17T01:45:45.335Z - Closed a connection. Number of open connections: 1
6042
+ [NX Daemon Server] - 2026-09-17T01:45:45.336Z - [REQUEST]: Client Request for Project Graph Received
6043
+ [NX Daemon Server] - 2026-09-17T01:45:45.587Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6044
+ [NX Daemon Server] - 2026-09-17T01:45:45.587Z - [REQUEST]:
6045
+ [NX Daemon Server] - 2026-09-17T01:45:45.587Z - [REQUEST]:
6046
+ [NX Daemon Server] - 2026-09-17T01:45:45.591Z - Time taken for 'loadNxPlugins' 248.69029200000006ms
6047
+ [NX Daemon Server] - 2026-09-17T01:45:45.622Z - Time taken for 'build-project-configs' 24.538375000000087ms
6048
+ [NX Daemon Server] - 2026-09-17T01:45:45.642Z - [SYNC]: collect registered sync generators
6049
+ [NX Daemon Server] - 2026-09-17T01:45:45.642Z - [REQUEST]: Responding to the client. project-graph
6050
+ [NX Daemon Server] - 2026-09-17T01:45:45.642Z - Time taken for 'total for creating and serializing project graph' 306.38437500000003ms
6051
+ [NX Daemon Server] - 2026-09-17T01:45:45.644Z - Done responding to the client project-graph
6052
+ [NX Daemon Server] - 2026-09-17T01:45:45.644Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 306. Response time: 2.
6053
+ [NX Daemon Server] - 2026-09-17T01:45:45.716Z - [REQUEST]: Responding to the client. handleHashTasks
6054
+ [NX Daemon Server] - 2026-09-17T01:45:45.716Z - Done responding to the client handleHashTasks
6055
+ [NX Daemon Server] - 2026-09-17T01:45:45.716Z - Handled HASH_TASKS. Handling time: 10. Response time: 0.
6056
+ [NX Daemon Server] - 2026-09-17T01:45:46.255Z - Closed a connection. Number of open connections: 0
6057
+ [NX Daemon Server] - 2026-09-17T02:10:30.776Z - Established a connection. Number of open connections: 1
6058
+ [NX Daemon Server] - 2026-09-17T02:10:30.777Z - Established a connection. Number of open connections: 2
6059
+ [NX Daemon Server] - 2026-09-17T02:10:30.777Z - Closed a connection. Number of open connections: 1
6060
+ [NX Daemon Server] - 2026-09-17T02:10:30.781Z - [REQUEST]: Client Request for Project Graph Received
6061
+ [NX Daemon Server] - 2026-09-17T02:10:30.781Z - [REQUEST]: Responding to the client. project-graph
6062
+ [NX Daemon Server] - 2026-09-17T02:10:30.782Z - Time taken for 'total for creating and serializing project graph' 0.3091250001452863ms
6063
+ [NX Daemon Server] - 2026-09-17T02:10:30.782Z - Done responding to the client project-graph
6064
+ [NX Daemon Server] - 2026-09-17T02:10:30.782Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
6065
+ [NX Daemon Server] - 2026-09-17T02:10:30.829Z - [REQUEST]: Responding to the client. handleHashTasks
6066
+ [NX Daemon Server] - 2026-09-17T02:10:30.829Z - Done responding to the client handleHashTasks
6067
+ [NX Daemon Server] - 2026-09-17T02:10:30.829Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
6068
+ [NX Daemon Server] - 2026-09-17T02:10:31.107Z - Closed a connection. Number of open connections: 0
6069
+ [NX Daemon Server] - 2026-09-17T02:29:05.886Z - [WATCHER]: tsconfig.json was modified
6070
+ [NX Daemon Server] - 2026-09-17T02:29:05.887Z - [WATCHER]: Processing file changes in outputs
6071
+ [NX Daemon Server] - 2026-09-17T02:29:05.989Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6072
+ [NX Daemon Server] - 2026-09-17T02:29:05.989Z - [REQUEST]: tsconfig.json
6073
+ [NX Daemon Server] - 2026-09-17T02:29:05.989Z - [REQUEST]:
6074
+ [NX Daemon Server] - 2026-09-17T02:29:05.992Z - Time taken for 'hash changed files from watcher' 0.96370799979195ms
6075
+ [NX Daemon Server] - 2026-09-17T02:29:06.002Z - Time taken for 'build-project-configs' 8.9636250003241ms
6076
+ [NX Daemon Server] - 2026-09-17T02:29:06.011Z - [SYNC]: collect registered sync generators
6077
+ [NX Daemon Server] - 2026-09-17T02:29:06.012Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6078
+ [NX Daemon Server] - 2026-09-17T02:29:06.012Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6079
+ [NX Daemon Server] - 2026-09-17T02:29:06.012Z - Time taken for 'total execution time for createProjectGraph()' 6.065291999839246ms
6080
+ [NX Daemon Server] - 2026-09-17T02:29:07.323Z - [WATCHER]: Processing file changes in outputs
6081
+ [NX Daemon Server] - 2026-09-17T02:29:07.328Z - [WATCHER]: tsconfig.json was modified
6082
+ [NX Daemon Server] - 2026-09-17T02:29:07.517Z - [WATCHER]: Processing file changes in outputs
6083
+ [NX Daemon Server] - 2026-09-17T02:29:07.529Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6084
+ [NX Daemon Server] - 2026-09-17T02:29:07.529Z - [REQUEST]: tsconfig.json
6085
+ [NX Daemon Server] - 2026-09-17T02:29:07.529Z - [REQUEST]:
6086
+ [NX Daemon Server] - 2026-09-17T02:29:07.531Z - Time taken for 'hash changed files from watcher' 0.0894590001553297ms
6087
+ [NX Daemon Server] - 2026-09-17T02:29:07.536Z - Time taken for 'build-project-configs' 5.084875000175089ms
6088
+ [NX Daemon Server] - 2026-09-17T02:29:07.542Z - [SYNC]: collect registered sync generators
6089
+ [NX Daemon Server] - 2026-09-17T02:29:07.543Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6090
+ [NX Daemon Server] - 2026-09-17T02:29:07.543Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6091
+ [NX Daemon Server] - 2026-09-17T02:29:07.543Z - Time taken for 'total execution time for createProjectGraph()' 5.150000000372529ms
6092
+ [NX Daemon Server] - 2026-09-17T02:31:46.020Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 3 file(s) deleted
6093
+ [NX Daemon Server] - 2026-09-17T02:31:46.020Z - [WATCHER]: Processing file changes in outputs
6094
+ [NX Daemon Server] - 2026-09-17T02:31:46.427Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6095
+ [NX Daemon Server] - 2026-09-17T02:31:46.427Z - [REQUEST]:
6096
+ [NX Daemon Server] - 2026-09-17T02:31:46.427Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/suite.md,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts
6097
+ [NX Daemon Server] - 2026-09-17T02:31:46.428Z - Time taken for 'hash changed files from watcher' 0.1464169998653233ms
6098
+ [NX Daemon Server] - 2026-09-17T02:31:46.462Z - Time taken for 'build-project-configs' 32.08508299989626ms
6099
+ [NX Daemon Server] - 2026-09-17T02:31:46.470Z - [SYNC]: collect registered sync generators
6100
+ [NX Daemon Server] - 2026-09-17T02:31:46.470Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6101
+ [NX Daemon Server] - 2026-09-17T02:31:46.471Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6102
+ [NX Daemon Server] - 2026-09-17T02:31:46.471Z - Time taken for 'total execution time for createProjectGraph()' 8.909166999626905ms
6103
+ [NX Daemon Server] - 2026-09-17T02:31:48.038Z - [WATCHER]: 21 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
6104
+ [NX Daemon Server] - 2026-09-17T02:31:48.039Z - [WATCHER]: Processing file changes in outputs
6105
+ [NX Daemon Server] - 2026-09-17T02:31:48.142Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6106
+ [NX Daemon Server] - 2026-09-17T02:31:48.142Z - [REQUEST]: packages/playground/e2e/project.json,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,packages/matchers/e2e/project.json,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,spectra.config.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,shared/testing/page-objects/PlaygroundPage/web.ts,shared/testing/page-objects/MatchersPage/mobile.ts,shared/testing/support/actions/fillCredentials/web.action.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,package.json,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/page-objects/MatchersPage/web.ts,shared/testing/page-objects/NavigationPage/web.ts,shared/testing/project.json,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,shared/testing/page-objects/NavigationPage/mobile.ts
6107
+ [NX Daemon Server] - 2026-09-17T02:31:48.142Z - [REQUEST]:
6108
+ [NX Daemon Server] - 2026-09-17T02:31:48.143Z - Time taken for 'hash changed files from watcher' 1.6598330000415444ms
6109
+ [NX Daemon Server] - 2026-09-17T02:31:48.158Z - Time taken for 'build-project-configs' 11.752042000181973ms
6110
+ [NX Daemon Server] - 2026-09-17T02:31:48.176Z - [SYNC]: collect registered sync generators
6111
+ [NX Daemon Server] - 2026-09-17T02:31:48.176Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6112
+ [NX Daemon Server] - 2026-09-17T02:31:48.176Z - Time taken for 'total execution time for createProjectGraph()' 15.78541599959135ms
6113
+ [NX Daemon Server] - 2026-09-17T02:32:11.685Z - [WATCHER]: Processing file changes in outputs
6114
+ [NX Daemon Server] - 2026-09-17T02:32:11.697Z - [WATCHER]: tsconfig.json was modified
6115
+ [NX Daemon Server] - 2026-09-17T02:32:11.899Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6116
+ [NX Daemon Server] - 2026-09-17T02:32:11.899Z - [REQUEST]: tsconfig.json
6117
+ [NX Daemon Server] - 2026-09-17T02:32:11.899Z - [REQUEST]:
6118
+ [NX Daemon Server] - 2026-09-17T02:32:11.901Z - Time taken for 'hash changed files from watcher' 0.19087499985471368ms
6119
+ [NX Daemon Server] - 2026-09-17T02:32:11.909Z - Time taken for 'build-project-configs' 8.52487500011921ms
6120
+ [NX Daemon Server] - 2026-09-17T02:32:11.919Z - [SYNC]: collect registered sync generators
6121
+ [NX Daemon Server] - 2026-09-17T02:32:11.920Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6122
+ [NX Daemon Server] - 2026-09-17T02:32:11.920Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6123
+ [NX Daemon Server] - 2026-09-17T02:32:11.920Z - Time taken for 'total execution time for createProjectGraph()' 6.518999999854714ms
6124
+ [NX Daemon Server] - 2026-09-17T02:32:14.628Z - [WATCHER]: Processing file changes in outputs
6125
+ [NX Daemon Server] - 2026-09-17T02:32:14.640Z - [WATCHER]: tsconfig.json was modified
6126
+ [NX Daemon Server] - 2026-09-17T02:32:15.041Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6127
+ [NX Daemon Server] - 2026-09-17T02:32:15.042Z - [REQUEST]: tsconfig.json
6128
+ [NX Daemon Server] - 2026-09-17T02:32:15.042Z - [REQUEST]:
6129
+ [NX Daemon Server] - 2026-09-17T02:32:15.046Z - Time taken for 'hash changed files from watcher' 0.22175000002607703ms
6130
+ [NX Daemon Server] - 2026-09-17T02:32:15.055Z - Time taken for 'build-project-configs' 9.29162500007078ms
6131
+ [NX Daemon Server] - 2026-09-17T02:32:15.067Z - [SYNC]: collect registered sync generators
6132
+ [NX Daemon Server] - 2026-09-17T02:32:15.067Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6133
+ [NX Daemon Server] - 2026-09-17T02:32:15.067Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6134
+ [NX Daemon Server] - 2026-09-17T02:32:15.067Z - Time taken for 'total execution time for createProjectGraph()' 11.4490419998765ms
6135
+ [NX Daemon Server] - 2026-09-17T02:32:15.611Z - [WATCHER]: Processing file changes in outputs
6136
+ [NX Daemon Server] - 2026-09-17T02:32:15.682Z - [WATCHER]: Processing file changes in outputs
6137
+ [NX Daemon Server] - 2026-09-17T02:32:15.746Z - [WATCHER]: Processing file changes in outputs
6138
+ [NX Daemon Server] - 2026-09-17T02:32:15.807Z - [WATCHER]: Processing file changes in outputs
6139
+ [NX Daemon Server] - 2026-09-17T02:32:15.938Z - [WATCHER]: Processing file changes in outputs
6140
+ [NX Daemon Server] - 2026-09-17T02:32:16.019Z - [WATCHER]: Processing file changes in outputs
6141
+ [NX Daemon Server] - 2026-09-17T02:32:16.085Z - [WATCHER]: Processing file changes in outputs
6142
+ [NX Daemon Server] - 2026-09-17T02:32:16.138Z - [WATCHER]: Processing file changes in outputs
6143
+ [NX Daemon Server] - 2026-09-17T02:32:16.202Z - [WATCHER]: Processing file changes in outputs
6144
+ [NX Daemon Server] - 2026-09-17T02:32:16.291Z - [WATCHER]: Processing file changes in outputs
6145
+ [NX Daemon Server] - 2026-09-17T02:32:16.375Z - [WATCHER]: Processing file changes in outputs
6146
+ [NX Daemon Server] - 2026-09-17T02:32:16.463Z - [WATCHER]: Processing file changes in outputs
6147
+ [NX Daemon Server] - 2026-09-17T02:32:16.590Z - [WATCHER]: Processing file changes in outputs
6148
+ [NX Daemon Server] - 2026-09-17T02:32:16.648Z - [WATCHER]: Processing file changes in outputs
6149
+ [NX Daemon Server] - 2026-09-17T02:33:00.578Z - [WATCHER]: Processing file changes in outputs
6150
+ [NX Daemon Server] - 2026-09-17T02:33:00.586Z - [WATCHER]: tsconfig.json was modified
6151
+ [NX Daemon Server] - 2026-09-17T02:33:01.390Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6152
+ [NX Daemon Server] - 2026-09-17T02:33:01.390Z - [REQUEST]: tsconfig.json
6153
+ [NX Daemon Server] - 2026-09-17T02:33:01.390Z - [REQUEST]:
6154
+ [NX Daemon Server] - 2026-09-17T02:33:01.392Z - Time taken for 'hash changed files from watcher' 0.6960840001702309ms
6155
+ [NX Daemon Server] - 2026-09-17T02:33:01.409Z - Time taken for 'build-project-configs' 16.555457999929786ms
6156
+ [NX Daemon Server] - 2026-09-17T02:33:01.423Z - [SYNC]: collect registered sync generators
6157
+ [NX Daemon Server] - 2026-09-17T02:33:01.423Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6158
+ [NX Daemon Server] - 2026-09-17T02:33:01.423Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6159
+ [NX Daemon Server] - 2026-09-17T02:33:01.423Z - Time taken for 'total execution time for createProjectGraph()' 13.333166999742389ms
6160
+ [NX Daemon Server] - 2026-09-17T02:33:03.590Z - [WATCHER]: Processing file changes in outputs
6161
+ [NX Daemon Server] - 2026-09-17T02:33:03.596Z - [WATCHER]: tsconfig.json was modified
6162
+ [NX Daemon Server] - 2026-09-17T02:33:05.197Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6163
+ [NX Daemon Server] - 2026-09-17T02:33:05.198Z - [REQUEST]: tsconfig.json
6164
+ [NX Daemon Server] - 2026-09-17T02:33:05.198Z - [REQUEST]:
6165
+ [NX Daemon Server] - 2026-09-17T02:33:05.199Z - Time taken for 'hash changed files from watcher' 0.17541699996218085ms
6166
+ [NX Daemon Server] - 2026-09-17T02:33:05.203Z - Time taken for 'build-project-configs' 4.493583000265062ms
6167
+ [NX Daemon Server] - 2026-09-17T02:33:05.210Z - [SYNC]: collect registered sync generators
6168
+ [NX Daemon Server] - 2026-09-17T02:33:05.211Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6169
+ [NX Daemon Server] - 2026-09-17T02:33:05.211Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6170
+ [NX Daemon Server] - 2026-09-17T02:33:05.211Z - Time taken for 'total execution time for createProjectGraph()' 5.687917000148445ms
6171
+ [NX Daemon Server] - 2026-09-17T02:33:59.354Z - [WATCHER]: 24 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
6172
+ [NX Daemon Server] - 2026-09-17T02:33:59.354Z - [WATCHER]: Processing file changes in outputs
6173
+ [NX Daemon Server] - 2026-09-17T02:33:59.466Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6174
+ [NX Daemon Server] - 2026-09-17T02:33:59.466Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/page-objects/PlaygroundPage/web.ts,shared/testing/support/actions/fillCredentials/web.action.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,spectra.config.ts,packages/matchers/e2e/project.json,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/page-objects/NavigationPage/mobile.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,package.json,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/project.json,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts,shared/testing/page-objects/NavigationPage/web.ts,shared/testing/page-objects/MatchersPage/mobile.ts,packages/playground/e2e/project.json,shared/testing/support/actions/fillCredentials/mobile.action.ts,packages/matchers/e2e/specs/EnvironmentConfig/suite.md,shared/testing/page-objects/MatchersPage/web.ts
6175
+ [NX Daemon Server] - 2026-09-17T02:33:59.467Z - [REQUEST]:
6176
+ [NX Daemon Server] - 2026-09-17T02:33:59.481Z - Time taken for 'hash changed files from watcher' 10.875665999948978ms
6177
+ [NX Daemon Server] - 2026-09-17T02:33:59.502Z - Time taken for 'build-project-configs' 8.361875000409782ms
6178
+ [NX Daemon Server] - 2026-09-17T02:33:59.513Z - [SYNC]: collect registered sync generators
6179
+ [NX Daemon Server] - 2026-09-17T02:33:59.513Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6180
+ [NX Daemon Server] - 2026-09-17T02:33:59.513Z - Time taken for 'total execution time for createProjectGraph()' 9.80941699957475ms
6181
+ [NX Daemon Server] - 2026-09-17T02:34:16.253Z - [WATCHER]: Processing file changes in outputs
6182
+ [NX Daemon Server] - 2026-09-17T02:34:16.272Z - [WATCHER]: tsconfig.json was modified
6183
+ [NX Daemon Server] - 2026-09-17T02:34:16.474Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6184
+ [NX Daemon Server] - 2026-09-17T02:34:16.474Z - [REQUEST]: tsconfig.json
6185
+ [NX Daemon Server] - 2026-09-17T02:34:16.474Z - [REQUEST]:
6186
+ [NX Daemon Server] - 2026-09-17T02:34:16.475Z - Time taken for 'hash changed files from watcher' 0.25620799977332354ms
6187
+ [NX Daemon Server] - 2026-09-17T02:34:16.486Z - Time taken for 'build-project-configs' 8.867333000060171ms
6188
+ [NX Daemon Server] - 2026-09-17T02:34:16.499Z - [SYNC]: collect registered sync generators
6189
+ [NX Daemon Server] - 2026-09-17T02:34:16.499Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6190
+ [NX Daemon Server] - 2026-09-17T02:34:16.499Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6191
+ [NX Daemon Server] - 2026-09-17T02:34:16.499Z - Time taken for 'total execution time for createProjectGraph()' 10.584999999962747ms
6192
+ [NX Daemon Server] - 2026-09-17T02:34:17.865Z - [WATCHER]: Processing file changes in outputs
6193
+ [NX Daemon Server] - 2026-09-17T02:34:17.870Z - [WATCHER]: tsconfig.json was modified
6194
+ [NX Daemon Server] - 2026-09-17T02:34:18.056Z - [WATCHER]: Processing file changes in outputs
6195
+ [NX Daemon Server] - 2026-09-17T02:34:18.271Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6196
+ [NX Daemon Server] - 2026-09-17T02:34:18.272Z - [REQUEST]: tsconfig.json
6197
+ [NX Daemon Server] - 2026-09-17T02:34:18.272Z - [REQUEST]:
6198
+ [NX Daemon Server] - 2026-09-17T02:34:18.273Z - Time taken for 'hash changed files from watcher' 0.20766700012609363ms
6199
+ [NX Daemon Server] - 2026-09-17T02:34:18.277Z - Time taken for 'build-project-configs' 4.487375000026077ms
6200
+ [NX Daemon Server] - 2026-09-17T02:34:18.285Z - [SYNC]: collect registered sync generators
6201
+ [NX Daemon Server] - 2026-09-17T02:34:18.286Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6202
+ [NX Daemon Server] - 2026-09-17T02:34:18.286Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6203
+ [NX Daemon Server] - 2026-09-17T02:34:18.286Z - Time taken for 'total execution time for createProjectGraph()' 6.647791000083089ms
6204
+ [NX Daemon Server] - 2026-09-17T02:34:18.864Z - [WATCHER]: Processing file changes in outputs
6205
+ [NX Daemon Server] - 2026-09-17T02:34:18.949Z - [WATCHER]: Processing file changes in outputs
6206
+ [NX Daemon Server] - 2026-09-17T02:34:19.001Z - [WATCHER]: Processing file changes in outputs
6207
+ [NX Daemon Server] - 2026-09-17T02:34:19.052Z - [WATCHER]: Processing file changes in outputs
6208
+ [NX Daemon Server] - 2026-09-17T02:34:19.132Z - [WATCHER]: Processing file changes in outputs
6209
+ [NX Daemon Server] - 2026-09-17T02:34:19.197Z - [WATCHER]: Processing file changes in outputs
6210
+ [NX Daemon Server] - 2026-09-17T02:34:19.284Z - [WATCHER]: Processing file changes in outputs
6211
+ [NX Daemon Server] - 2026-09-17T02:34:19.367Z - [WATCHER]: Processing file changes in outputs
6212
+ [NX Daemon Server] - 2026-09-17T02:54:17.429Z - [WATCHER]: package.json was modified
6213
+ [NX Daemon Server] - 2026-09-17T02:54:17.432Z - [WATCHER]: Processing file changes in outputs
6214
+ [NX Daemon Server] - 2026-09-17T02:54:18.240Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6215
+ [NX Daemon Server] - 2026-09-17T02:54:18.240Z - [REQUEST]: package.json
6216
+ [NX Daemon Server] - 2026-09-17T02:54:18.240Z - [REQUEST]:
6217
+ [NX Daemon Server] - 2026-09-17T02:54:18.248Z - Time taken for 'hash changed files from watcher' 1.2550409999676049ms
6218
+ [NX Daemon Server] - 2026-09-17T02:54:18.297Z - Time taken for 'build-project-configs' 44.49595799995586ms
6219
+ [NX Daemon Server] - 2026-09-17T02:54:18.320Z - [SYNC]: collect registered sync generators
6220
+ [NX Daemon Server] - 2026-09-17T02:54:18.320Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6221
+ [NX Daemon Server] - 2026-09-17T02:54:18.320Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6222
+ [NX Daemon Server] - 2026-09-17T02:54:18.320Z - Time taken for 'total execution time for createProjectGraph()' 24.35970800044015ms
6223
+ [NX Daemon Server] - 2026-09-17T02:57:57.615Z - [WATCHER]: package.json was modified
6224
+ [NX Daemon Server] - 2026-09-17T02:57:57.618Z - [WATCHER]: Processing file changes in outputs
6225
+ [NX Daemon Server] - 2026-09-17T02:57:59.223Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6226
+ [NX Daemon Server] - 2026-09-17T02:57:59.223Z - [REQUEST]: package.json
6227
+ [NX Daemon Server] - 2026-09-17T02:57:59.223Z - [REQUEST]:
6228
+ [NX Daemon Server] - 2026-09-17T02:57:59.227Z - Time taken for 'hash changed files from watcher' 1.56920799985528ms
6229
+ [NX Daemon Server] - 2026-09-17T02:57:59.239Z - Time taken for 'build-project-configs' 10.1025419998914ms
6230
+ [NX Daemon Server] - 2026-09-17T02:57:59.275Z - [SYNC]: collect registered sync generators
6231
+ [NX Daemon Server] - 2026-09-17T02:57:59.275Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6232
+ [NX Daemon Server] - 2026-09-17T02:57:59.275Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6233
+ [NX Daemon Server] - 2026-09-17T02:57:59.276Z - Time taken for 'total execution time for createProjectGraph()' 32.138667000457644ms
6234
+ [NX Daemon Server] - 2026-09-17T02:58:26.349Z - [WATCHER]: package.json was modified
6235
+ [NX Daemon Server] - 2026-09-17T02:58:26.349Z - [WATCHER]: Processing file changes in outputs
6236
+ [NX Daemon Server] - 2026-09-17T02:58:29.550Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6237
+ [NX Daemon Server] - 2026-09-17T02:58:29.551Z - [REQUEST]: package.json
6238
+ [NX Daemon Server] - 2026-09-17T02:58:29.551Z - [REQUEST]:
6239
+ [NX Daemon Server] - 2026-09-17T02:58:29.551Z - Time taken for 'hash changed files from watcher' 0.1032499996945262ms
6240
+ [NX Daemon Server] - 2026-09-17T02:58:29.556Z - Time taken for 'build-project-configs' 3.299250000156462ms
6241
+ [NX Daemon Server] - 2026-09-17T02:58:29.569Z - [SYNC]: collect registered sync generators
6242
+ [NX Daemon Server] - 2026-09-17T02:58:29.569Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6243
+ [NX Daemon Server] - 2026-09-17T02:58:29.569Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6244
+ [NX Daemon Server] - 2026-09-17T02:58:29.570Z - Time taken for 'total execution time for createProjectGraph()' 12.080791000276804ms
6245
+ [NX Daemon Server] - 2026-09-17T03:24:33.545Z - [WATCHER]: package.json was modified
6246
+ [NX Daemon Server] - 2026-09-17T03:24:33.546Z - [WATCHER]: Processing file changes in outputs
6247
+ [NX Daemon Server] - 2026-09-17T03:24:39.951Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6248
+ [NX Daemon Server] - 2026-09-17T03:24:39.951Z - [REQUEST]: package.json
6249
+ [NX Daemon Server] - 2026-09-17T03:24:39.951Z - [REQUEST]:
6250
+ [NX Daemon Server] - 2026-09-17T03:24:39.959Z - Time taken for 'hash changed files from watcher' 2.261125000193715ms
6251
+ [NX Daemon Server] - 2026-09-17T03:24:39.971Z - Time taken for 'build-project-configs' 12.515250000171363ms
6252
+ [NX Daemon Server] - 2026-09-17T03:24:39.990Z - [SYNC]: collect registered sync generators
6253
+ [NX Daemon Server] - 2026-09-17T03:24:39.991Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6254
+ [NX Daemon Server] - 2026-09-17T03:24:39.991Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6255
+ [NX Daemon Server] - 2026-09-17T03:24:39.991Z - Time taken for 'total execution time for createProjectGraph()' 9.05454200040549ms
6256
+ [NX Daemon Server] - 2026-09-17T03:24:44.356Z - [WATCHER]: package.json was modified
6257
+ [NX Daemon Server] - 2026-09-17T03:24:44.356Z - [WATCHER]: Processing file changes in outputs
6258
+ [NX Daemon Server] - 2026-09-17T03:24:50.757Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6259
+ [NX Daemon Server] - 2026-09-17T03:24:50.757Z - [REQUEST]: package.json
6260
+ [NX Daemon Server] - 2026-09-17T03:24:50.757Z - [REQUEST]:
6261
+ [NX Daemon Server] - 2026-09-17T03:24:50.759Z - Time taken for 'hash changed files from watcher' 0.4461669996380806ms
6262
+ [NX Daemon Server] - 2026-09-17T03:24:50.768Z - Time taken for 'build-project-configs' 5.500374999828637ms
6263
+ [NX Daemon Server] - 2026-09-17T03:24:50.786Z - [SYNC]: collect registered sync generators
6264
+ [NX Daemon Server] - 2026-09-17T03:24:50.786Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6265
+ [NX Daemon Server] - 2026-09-17T03:24:50.787Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6266
+ [NX Daemon Server] - 2026-09-17T03:24:50.787Z - Time taken for 'total execution time for createProjectGraph()' 13.478542000055313ms
6267
+ [NX Daemon Server] - 2026-09-17T06:24:44.491Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (sources)
6268
+ [NX Daemon Server] - 2026-09-17T06:24:44.496Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (outputs)
6269
+ [NX Daemon Server] - 2026-09-17T06:24:44.504Z - Server stopped because: "10800000ms of inactivity"
6270
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.663Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/3c85950abf8517112e60/d.sock
6271
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.666Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (native)
6272
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.668Z - Established a connection. Number of open connections: 1
6273
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.668Z - Established a connection. Number of open connections: 2
6274
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.669Z - Closed a connection. Number of open connections: 1
6275
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.669Z - [REQUEST]: Client Request for Project Graph Received
6276
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.672Z - Time taken for 'loadSpecifiedNxPlugins' 0.4139590000000055ms
6277
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.724Z - [WATCHER]: Processing file changes in outputs
6278
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.828Z - Time taken for 'Load Nx Plugin: /Volumes/Home/Documents/TestSpectra/testspectra-source/node_modules/.pnpm/nx@20.8.4_@swc+core@1.16.2_supports-color@8.1.1/node_modules/nx/src/plugins/package-json' 157.56199999999998ms
6279
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.836Z - Time taken for 'Load Nx Plugin: /Volumes/Home/Documents/TestSpectra/testspectra-source/node_modules/.pnpm/nx@20.8.4_@swc+core@1.16.2_supports-color@8.1.1/node_modules/nx/src/plugins/project-json/build-nodes/project-json' 165.29241600000003ms
6280
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.893Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6281
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.893Z - [REQUEST]:
6282
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.893Z - [REQUEST]:
6283
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:03.896Z - Time taken for 'loadDefaultNxPlugins' 223.14237500000002ms
6284
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.088Z - Time taken for 'build-project-configs' 182.19966700000003ms
6285
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.112Z - [SYNC]: collect registered sync generators
6286
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.113Z - [REQUEST]: Responding to the client. project-graph
6287
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.113Z - Time taken for 'total for creating and serializing project graph' 443.22375ms
6288
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.114Z - Done responding to the client project-graph
6289
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.114Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 444. Response time: 1.
6290
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.116Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
6291
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.117Z - Done responding to the client handleRunPreTasksExecution
6292
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.117Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 1.
6293
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.117Z - Time taken for 'preTasksExecution' 0.25783400000000256ms
6294
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.168Z - [REQUEST]: Responding to the client. handleHashTasks
6295
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.168Z - Done responding to the client handleHashTasks
6296
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.168Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
6297
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.222Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
6298
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.222Z - Done responding to the client handleGetEstimatedTaskTimings
6299
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.222Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 17. Response time: 0.
6300
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.223Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
6301
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.223Z - Done responding to the client handleRecordTaskRuns
6302
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.223Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
6303
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.223Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
6304
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.223Z - Done responding to the client handleGetFlakyTasks
6305
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.223Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
6306
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.526Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
6307
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.526Z - Done responding to the client handleRunPostTasksExecution
6308
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.526Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
6309
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.526Z - Time taken for 'postTasksExecution' 0.06875000000002274ms
6310
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:04.529Z - Closed a connection. Number of open connections: 0
6311
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.250Z - [WATCHER]: spectra.config.ts was created or restored
6312
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.250Z - [WATCHER]: Processing file changes in outputs
6313
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.351Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6314
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.352Z - [REQUEST]: spectra.config.ts
6315
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.352Z - [REQUEST]:
6316
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.353Z - Time taken for 'hash changed files from watcher' 0.135707999999795ms
6317
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.359Z - Time taken for 'build-project-configs' 5.827624999999898ms
6318
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.365Z - [SYNC]: collect registered sync generators
6319
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.365Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6320
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.365Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6321
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:16.365Z - Time taken for 'total execution time for createProjectGraph()' 4.771375000000262ms
6322
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.102Z - [WATCHER]: spectra.config.ts was created or restored
6323
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.102Z - [WATCHER]: Processing file changes in outputs
6324
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.203Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6325
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.203Z - [REQUEST]: spectra.config.ts
6326
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.203Z - [REQUEST]:
6327
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.204Z - Time taken for 'hash changed files from watcher' 0.13583400000061374ms
6328
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.208Z - Time taken for 'build-project-configs' 3.620041999998648ms
6329
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.213Z - [SYNC]: collect registered sync generators
6330
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.213Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6331
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.213Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6332
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:32:21.213Z - Time taken for 'total execution time for createProjectGraph()' 4.356667000000016ms
6333
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.417Z - [WATCHER]: package.json was modified
6334
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.418Z - [WATCHER]: Processing file changes in outputs
6335
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.619Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6336
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.619Z - [REQUEST]: package.json
6337
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.619Z - [REQUEST]:
6338
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.622Z - Time taken for 'hash changed files from watcher' 0.8113340000272729ms
6339
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.630Z - Time taken for 'build-project-configs' 7.48150000005262ms
6340
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.640Z - [SYNC]: collect registered sync generators
6341
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.640Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6342
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.640Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6343
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:37:50.640Z - Time taken for 'total execution time for createProjectGraph()' 5.402041999972425ms
6344
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.283Z - [WATCHER]: package.json was modified
6345
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.283Z - [WATCHER]: Processing file changes in outputs
6346
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.684Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6347
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.684Z - [REQUEST]: package.json
6348
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.684Z - [REQUEST]:
6349
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.685Z - Time taken for 'hash changed files from watcher' 0.10187499999301508ms
6350
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.688Z - Time taken for 'build-project-configs' 3.0644170000450686ms
6351
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.694Z - [SYNC]: collect registered sync generators
6352
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.694Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6353
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.694Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6354
+ [NX v20.8.4 Daemon Server] - 2026-09-18T03:38:16.694Z - Time taken for 'total execution time for createProjectGraph()' 4.846124999981839ms
6355
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:21:25.959Z - [WATCHER]: Processing file changes in outputs
6356
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:21:26.017Z - [WATCHER]: Processing file changes in outputs
6357
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:23:55.437Z - [WATCHER]: Processing file changes in outputs
6358
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.153Z - [WATCHER]: Processing file changes in outputs
6359
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.161Z - [WATCHER]: tsconfig.json was modified
6360
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.973Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6361
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.974Z - [REQUEST]: tsconfig.json
6362
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:32.974Z - [REQUEST]:
6363
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.010Z - Time taken for 'hash changed files from watcher' 11.100333000067621ms
6364
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.052Z - Time taken for 'build-project-configs' 38.42295900033787ms
6365
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.116Z - [SYNC]: collect registered sync generators
6366
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.117Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6367
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.117Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6368
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:33.117Z - Time taken for 'total execution time for createProjectGraph()' 61.83845800021663ms
6369
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:35.429Z - [WATCHER]: Processing file changes in outputs
6370
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:35.456Z - [WATCHER]: tsconfig.json was modified
6371
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:35.794Z - [WATCHER]: Processing file changes in outputs
6372
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.064Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6373
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.066Z - [REQUEST]: tsconfig.json
6374
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.067Z - [REQUEST]:
6375
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.073Z - Time taken for 'hash changed files from watcher' 0.9786669998429716ms
6376
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.083Z - Time taken for 'build-project-configs' 10.120624999981374ms
6377
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.099Z - [SYNC]: collect registered sync generators
6378
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.099Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6379
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.099Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6380
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:27:37.100Z - Time taken for 'total execution time for createProjectGraph()' 15.690542000345886ms
6381
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:20.927Z - [WATCHER]: Processing file changes in outputs
6382
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:20.933Z - [WATCHER]: tsconfig.json was modified
6383
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:23.083Z - [WATCHER]: Processing file changes in outputs
6384
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:23.101Z - [WATCHER]: tsconfig.json was modified
6385
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:23.307Z - [WATCHER]: Processing file changes in outputs
6386
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.134Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6387
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.134Z - [REQUEST]: tsconfig.json
6388
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.134Z - [REQUEST]:
6389
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.137Z - Time taken for 'hash changed files from watcher' 0.30362499970942736ms
6390
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.154Z - Time taken for 'build-project-configs' 15.973540999926627ms
6391
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.173Z - [SYNC]: collect registered sync generators
6392
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.173Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6393
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.173Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6394
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:29:24.173Z - Time taken for 'total execution time for createProjectGraph()' 11.552917000371963ms
6395
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:33.532Z - [WATCHER]: package.json was modified
6396
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:33.533Z - [WATCHER]: Processing file changes in outputs
6397
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.936Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6398
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.937Z - [REQUEST]: package.json
6399
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.937Z - [REQUEST]:
6400
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.943Z - Time taken for 'hash changed files from watcher' 1.6645829998888075ms
6401
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.961Z - Time taken for 'build-project-configs' 15.615833000279963ms
6402
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.981Z - [SYNC]: collect registered sync generators
6403
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.982Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6404
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.982Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6405
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:34:39.982Z - Time taken for 'total execution time for createProjectGraph()' 15.196041999850422ms
6406
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:00.746Z - [WATCHER]: package.json was modified
6407
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:00.746Z - [WATCHER]: Processing file changes in outputs
6408
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.147Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6409
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.147Z - [REQUEST]: package.json
6410
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.147Z - [REQUEST]:
6411
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.150Z - Time taken for 'hash changed files from watcher' 0.27795800007879734ms
6412
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.157Z - Time taken for 'build-project-configs' 7.948249999899417ms
6413
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.183Z - [SYNC]: collect registered sync generators
6414
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.183Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6415
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.183Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6416
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:35:07.183Z - Time taken for 'total execution time for createProjectGraph()' 16.51554200006649ms
6417
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:51:14.474Z - [WATCHER]: Processing file changes in outputs
6418
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:51:14.477Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (sources)
6419
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:51:14.477Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (outputs)
6420
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:51:14.487Z - Server stopped because: "LOCK_FILES_CHANGED"
6421
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.355Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/3c85950abf8517112e60/d.sock
6422
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.357Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/testspectra-source/cli/templates/nx (native)
6423
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.359Z - Established a connection. Number of open connections: 1
6424
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.360Z - Established a connection. Number of open connections: 2
6425
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.360Z - Closed a connection. Number of open connections: 1
6426
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.361Z - [REQUEST]: Client Request for Project Graph Received
6427
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.364Z - Time taken for 'loadSpecifiedNxPlugins' 0.42945899999999426ms
6428
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.416Z - [WATCHER]: Processing file changes in outputs
6429
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.484Z - Time taken for 'Load Nx Plugin: /Volumes/Home/Documents/TestSpectra/testspectra-source/node_modules/.pnpm/nx@20.8.4_@swc+core@1.16.2_supports-color@8.1.1/node_modules/nx/src/plugins/js' 123.01295900000001ms
6430
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.490Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6431
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.490Z - [REQUEST]:
6432
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.490Z - [REQUEST]:
6433
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.492Z - Time taken for 'loadDefaultNxPlugins' 128.666709ms
6434
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.526Z - Time taken for 'build-project-configs' 27.195208000000008ms
6435
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.555Z - [SYNC]: collect registered sync generators
6436
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.555Z - [REQUEST]: Responding to the client. project-graph
6437
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.556Z - Time taken for 'total for creating and serializing project graph' 194.528958ms
6438
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.556Z - Done responding to the client project-graph
6439
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.557Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 194. Response time: 2.
6440
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.558Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
6441
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.558Z - Done responding to the client handleRunPreTasksExecution
6442
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.558Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
6443
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.558Z - Time taken for 'preTasksExecution' 0.1555410000000279ms
6444
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.586Z - [REQUEST]: Responding to the client. handleHashTasks
6445
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.586Z - Done responding to the client handleHashTasks
6446
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.586Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
6447
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.633Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
6448
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.633Z - Done responding to the client handleGetEstimatedTaskTimings
6449
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.633Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 13. Response time: 1.
6450
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.634Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
6451
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.634Z - Done responding to the client handleRecordTaskRuns
6452
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.634Z - Handled RECORD_TASK_RUNS. Handling time: 0. Response time: 0.
6453
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.635Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
6454
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.635Z - Done responding to the client handleGetFlakyTasks
6455
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.635Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0.
6456
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.907Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
6457
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.907Z - Done responding to the client handleRunPostTasksExecution
6458
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.907Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
6459
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.907Z - Time taken for 'postTasksExecution' 0.05291599999998198ms
6460
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:52:03.910Z - Closed a connection. Number of open connections: 0
6461
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.825Z - [WATCHER]: package.json was modified
6462
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.827Z - [WATCHER]: Processing file changes in outputs
6463
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.929Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6464
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.929Z - [REQUEST]: package.json
6465
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.929Z - [REQUEST]:
6466
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.932Z - Time taken for 'hash changed files from watcher' 1.0174159999878611ms
6467
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.943Z - Time taken for 'build-project-configs' 9.845541999995476ms
6468
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.948Z - [SYNC]: collect registered sync generators
6469
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.948Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6470
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.948Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6471
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:53:45.948Z - Time taken for 'total execution time for createProjectGraph()' 4.657791999998153ms
6472
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.468Z - [WATCHER]: package.json was modified
6473
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.468Z - [WATCHER]: Processing file changes in outputs
6474
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.668Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6475
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.668Z - [REQUEST]: package.json
6476
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.669Z - [REQUEST]:
6477
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.669Z - Time taken for 'hash changed files from watcher' 0.11874999999417923ms
6478
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.674Z - Time taken for 'build-project-configs' 3.623459000024013ms
6479
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.681Z - [SYNC]: collect registered sync generators
6480
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.681Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6481
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.681Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6482
+ [NX v20.8.4 Daemon Server] - 2026-09-18T04:54:16.681Z - Time taken for 'total execution time for createProjectGraph()' 4.978499999997439ms
6483
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.393Z - [WATCHER]: package.json was modified
6484
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.395Z - [WATCHER]: Processing file changes in outputs
6485
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.798Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
6486
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.798Z - [REQUEST]: package.json
6487
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.798Z - [REQUEST]:
6488
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.801Z - Time taken for 'hash changed files from watcher' 1.3049590000882745ms
6489
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.811Z - Time taken for 'build-project-configs' 9.486708000302315ms
6490
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.824Z - [SYNC]: collect registered sync generators
6491
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.824Z - [SYNC]: project graph hash is the same, not collecting task sync generators
6492
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.824Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
6493
+ [NX v20.8.4 Daemon Server] - 2026-09-18T06:29:18.824Z - Time taken for 'total execution time for createProjectGraph()' 5.11062499973923ms