@africanies/angular-web-sdk 0.1.2 → 0.1.3

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 (57) hide show
  1. package/.nx/cache/12276756491762927325/dist/libs/africanies-theme/README.md +46 -0
  2. package/.nx/cache/12276756491762927325/dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs +215 -0
  3. package/.nx/cache/12276756491762927325/dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs.map +1 -0
  4. package/.nx/cache/12276756491762927325/dist/libs/africanies-theme/package.json +35 -0
  5. package/.nx/cache/12276756491762927325/dist/libs/africanies-theme/tailwind-preset.cjs +245 -0
  6. package/.nx/cache/12276756491762927325/dist/libs/africanies-theme/types/africanies-africanies-theme.d.ts +157 -0
  7. package/.nx/cache/17491371155400585077/dist/libs/africanies-core/README.md +85 -0
  8. package/.nx/cache/17491371155400585077/dist/libs/africanies-core/fesm2022/africanies-africanies-core.mjs +4546 -0
  9. package/.nx/cache/17491371155400585077/dist/libs/africanies-core/fesm2022/africanies-africanies-core.mjs.map +1 -0
  10. package/.nx/cache/17491371155400585077/dist/libs/africanies-core/package.json +31 -0
  11. package/.nx/cache/17491371155400585077/dist/libs/africanies-core/types/africanies-africanies-core.d.ts +2740 -0
  12. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/README.md +68 -0
  13. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/assets/brand/africanies-logo-mini.png +0 -0
  14. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/assets/brand/africanies-logo.png +0 -0
  15. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/assets/brand/africanies-logo.svg +5 -0
  16. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/assets/carriers/dhl.svg +7 -0
  17. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs +19291 -0
  18. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs.map +1 -0
  19. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/package.json +35 -0
  20. package/.nx/cache/3314955264390318442/dist/libs/africanies-ui/types/africanies-africanies-ui.d.ts +5483 -0
  21. package/.nx/cache/run.json +38 -38
  22. package/.nx/cache/terminalOutputs/12276756491762927325 +21 -0
  23. package/.nx/cache/terminalOutputs/17491371155400585077 +21 -0
  24. package/.nx/cache/terminalOutputs/3017748574492080228 +28 -0
  25. package/.nx/cache/terminalOutputs/3314955264390318442 +21 -0
  26. package/.nx/cache/terminalOutputs/8648260256613557249 +173 -0
  27. package/.nx/cache/terminalOutputs/9408529484792607601 +6 -0
  28. package/.nx/workspace-data/0091ABA9-5C90-580D-953C-8C94E763ADB5-v3.db +0 -0
  29. package/.nx/workspace-data/0091ABA9-5C90-580D-953C-8C94E763ADB5-v3.db-shm +0 -0
  30. package/.nx/workspace-data/0091ABA9-5C90-580D-953C-8C94E763ADB5-v3.db-wal +0 -0
  31. package/.nx/workspace-data/d/daemon.log +1659 -0
  32. package/.nx/workspace-data/d/server-process.json +2 -2
  33. package/.nx/workspace-data/file-map.json +3578 -3529
  34. package/.nx/workspace-data/nx_files.nxt +0 -0
  35. package/.nx/workspace-data/project-graph.json +5 -5
  36. package/.nx/workspace-data/source-maps.json +0 -80
  37. package/apps/playground/src/app/snippets/action-menu.snippets.ts +1 -0
  38. package/dist/libs/africanies-core/fesm2022/africanies-africanies-core.mjs +1 -1
  39. package/dist/libs/africanies-core/fesm2022/africanies-africanies-core.mjs.map +1 -1
  40. package/dist/libs/africanies-core/package.json +3 -3
  41. package/dist/libs/africanies-theme/package.json +3 -3
  42. package/dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs +318 -115
  43. package/dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs.map +1 -1
  44. package/dist/libs/africanies-ui/package.json +5 -5
  45. package/dist/libs/africanies-ui/types/africanies-africanies-ui.d.ts +92 -19
  46. package/libs/africanies-core/package.json +3 -3
  47. package/libs/africanies-core/src/lib/payment-method/payment-method.mapper.spec.ts +15 -0
  48. package/libs/africanies-core/src/lib/payment-method/payment-method.mapper.ts +1 -2
  49. package/libs/africanies-theme/package.json +3 -3
  50. package/libs/africanies-ui/package.json +5 -5
  51. package/libs/africanies-ui/src/index.ts +6 -0
  52. package/libs/africanies-ui/src/lib/accordion/accordion.component.ts +135 -0
  53. package/libs/africanies-ui/src/lib/accordion/index.ts +7 -0
  54. package/libs/africanies-ui/src/lib/action-menu/action-menu.component.ts +84 -17
  55. package/libs/africanies-ui/src/lib/action-menu/menu-item.ts +19 -2
  56. package/libs/africanies-ui/src/lib/modules/africanies-feedback.module.ts +3 -1
  57. package/package.json +1 -1
@@ -20546,3 +20546,1662 @@ DEBUG nx::native::watch::watcher: [create] .husky/_/husky.sh
20546
20546
  DEBUG nx::native::watch::watcher: [update] .husky/_/pre-applypatch
20547
20547
  DEBUG nx::native::watch::watcher: [update] .husky/_/pre-commit
20548
20548
  [NX v23.1.1 Daemon Server] - 2026-08-25T16:45:04.934Z - [WATCHER]: Processing file changes in outputs
20549
+ DEBUG nx::native::watch::watcher: watching stopped origin=/Applications/AngularJS/angular-web-sdk
20550
+ [NX v23.1.1 Daemon Server] - 2026-08-25T19:49:41.005Z - [WATCHER]: Stopping the watcher for /Applications/AngularJS/angular-web-sdk (sources)
20551
+ DEBUG nx::native::watch::watcher: watching stopped origin=/Applications/AngularJS/angular-web-sdk
20552
+ [NX v23.1.1 Daemon Server] - 2026-08-25T19:49:41.040Z - [WATCHER]: Stopping the watcher for /Applications/AngularJS/angular-web-sdk (outputs)
20553
+ [NX v23.1.1 Daemon Server] - 2026-08-25T19:49:41.049Z - [LATEST-NX]: Cleaning up latest Nx installation from /private/tmp/tmp-61260-OAJVH65Ua3uZ
20554
+ [NX v23.1.1 Daemon Server] - 2026-08-25T19:49:41.062Z - Server stopped because: "10800000ms of inactivity"
20555
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:51:58.327Z - [Client] Starting new daemon server in background
20556
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:51:58.481Z - [Client] Waiting for server (max: 6000 attempts, 10ms interval)
20557
+ DEBUG nx::native::watch::watcher: watching started origin=/Applications/AngularJS/angular-web-sdk
20558
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.501Z - [WATCHER]: Subscribed to changes within: /Applications/AngularJS/angular-web-sdk (native)
20559
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.652Z - New daemon starting from: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/daemon/server/server.js
20560
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.652Z - New daemon __dirname: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/daemon/server
20561
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.652Z - New daemon nxVersion: 23.1.1
20562
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.668Z - New daemon getInstalledNxVersion(): 23.1.1
20563
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.673Z - Time taken for 'workspace context init' 0.7907089999998789ms
20564
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.684Z - [Server] Starting outdated check interval (20ms)
20565
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.710Z - Started listening on: /private/tmp/296ca56c10e3c3f77739/d.sock
20566
+ DEBUG nx::native::watch::watcher: watching started origin=/Applications/AngularJS/angular-web-sdk
20567
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.720Z - [LATEST-NX]: Pulling latest Nx...
20568
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:00.725Z - [AI-AGENTS]: Starting agent configuration status computation
20569
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:00.776Z - [Client] Server available
20570
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:00.781Z - [Client] Daemon server started, pid=59911
20571
+ [isolated-plugin] spawned worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 59948, socket: /private/tmp/plugin59911-0-2235.426417.sock)
20572
+ [isolated-plugin] spawned worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 59949, socket: /private/tmp/plugin59911-1-2608.192083.sock)
20573
+ [isolated-plugin] spawned worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 59950, socket: /private/tmp/plugin59911-2-2608.886333.sock)
20574
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.101Z - Time taken for 'hash changed files from watcher' 0.014083000000027823ms
20575
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.101Z - Time taken for 'loadSpecifiedNxPlugins' 380.417375ms
20576
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.104Z - Established a connection. Number of open connections: 1
20577
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.105Z - Closed a connection. Number of open connections: 0
20578
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.137Z - Established a connection. Number of open connections: 1
20579
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.141Z - Closed a connection. Number of open connections: 0
20580
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.142Z - Established a connection. Number of open connections: 1
20581
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.143Z - [Messenger] Setting up socket listeners
20582
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.144Z - [Messenger] listen() complete
20583
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.167Z - [Messenger] Sending message type: REQUEST_PROJECT_GRAPH
20584
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.168Z - [Messenger] Message sent
20585
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.170Z - Received raw message of length 2558
20586
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.170Z - Received json message of type REQUEST_PROJECT_GRAPH
20587
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.171Z - Graph recompute necessary due to env variable refresh. Changed keys: PATH, PWD, NODE_PATH, PNPM_PACKAGE_NAME, NX_CLI_SET
20588
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.171Z - [REQUEST]: Client Request for Project Graph Received
20589
+ DEBUG nx::native::watch::watcher: force-flush END count=0 replies=1 elapsed=61.227625ms
20590
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.235Z - No in-memory cached project graph found. Recomputing it...
20591
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 59950) listening on /private/tmp/plugin59911-2-2608.886333.sock
20592
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 59948) listening on /private/tmp/plugin59911-0-2235.426417.sock
20593
+ Time taken for 'plugin worker 59950 code loading' 393.722667ms
20594
+ Time taken for 'plugin worker 59948 code loading' 393.389292ms
20595
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 59948) connected
20596
+ [isolated-plugin] connected to worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 59948)
20597
+ [isolated-plugin] connected to worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 59950)
20598
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.543Z - Time taken for 'start-plugin-worker:/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js' 816.0197080000003ms
20599
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.543Z - Time taken for 'start-plugin-worker:/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json' 442.92987500000027ms
20600
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 59949) listening on /private/tmp/plugin59911-1-2608.192083.sock
20601
+ Time taken for 'plugin worker 59949 code loading' 391.995792ms
20602
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 59950) connected
20603
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 59950) loaded successfully
20604
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.548Z - Time taken for 'Load Nx Plugin: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json' 827.6336249999999ms
20605
+ [isolated-plugin] connected to worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 59949)
20606
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.552Z - Time taken for 'start-plugin-worker:/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json' 453.313709ms
20607
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 59949) connected
20608
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 59949) loaded successfully
20609
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.556Z - Time taken for 'Load Nx Plugin: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json' 836.9367500000003ms
20610
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 59948) loaded successfully
20611
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.559Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
20612
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.559Z - [REQUEST]:
20613
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.559Z - [REQUEST]:
20614
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.561Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
20615
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.561Z - [REQUEST]:
20616
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.561Z - [REQUEST]:
20617
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.562Z - Streaming message to client: progress update for topic graph-construction
20618
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.562Z - Streaming message to client: progress update for topic graph-construction
20619
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.562Z - Time taken for 'loadDefaultNxPlugins' 840.8777920000002ms
20620
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.562Z - Time taken for 'Load Nx Plugin: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js' 840.611625ms
20621
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.562Z - [Messenger] Received message, length: 47
20622
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.563Z - [Messenger] Received message, length: 47
20623
+ Time taken for 'nx/core/project-json:createNodes' 0.3442080000000374ms
20624
+ Time taken for 'nx/core/project-json:createNodes' 1.5704170000000204ms
20625
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
20626
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.568Z - Streaming message to client: progress update for topic graph-construction
20627
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.568Z - Streaming message to client: progress update for topic graph-construction
20628
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.568Z - [Messenger] Received message, length: 153
20629
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.568Z - [Messenger] Received message, length: 153
20630
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 12.194709000000046ms
20631
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.583Z - Streaming message to client: progress update for topic graph-construction
20632
+ Time taken for 'nx/core/package-json:createNodes' 19.23566599999998ms
20633
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.583Z - [Messenger] Received message, length: 112
20634
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
20635
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.587Z - Streaming message to client: progress update for topic graph-construction
20636
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.588Z - [Messenger] Received message, length: 112
20637
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 8.714832999999999ms
20638
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.602Z - Streaming message to client: progress update for topic graph-construction
20639
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.602Z - Streaming message to client: progress update for topic graph-construction
20640
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.602Z - [Messenger] Received message, length: 47
20641
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.603Z - [Messenger] Received message, length: 47
20642
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.678Z - Streaming message to client: progress update for topic graph-construction
20643
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.678Z - [Messenger] Received message, length: 47
20644
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.682Z - Time taken for 'build-project-configs' 73.58279099999982ms
20645
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.683Z - Time taken for 'build-project-configs' 81.0793749999998ms
20646
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.684Z - Time taken for 'createNodes:merge' 33.10162500000024ms
20647
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.684Z - Time taken for 'createNodes:merge' 7.448124999999891ms
20648
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.684Z - Time taken for 'native-file-deps' 0.009457999999995081ms
20649
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.684Z - Time taken for 'get-workspace-files' 1.9489579999999478ms
20650
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.684Z - Time taken for 'read cache' 3.266791999999896ms
20651
+ Time taken for 'build typescript dependencies' 0.2044580000000451ms
20652
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
20653
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.730Z - Streaming message to client: progress update for topic graph-construction
20654
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.730Z - [Messenger] Received message, length: 47
20655
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.746Z - [SYNC]: collect registered sync generators
20656
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.772Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
20657
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.773Z - Serializing response for REQUEST_PROJECT_GRAPH message in json mode
20658
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.773Z - Responding to REQUEST_PROJECT_GRAPH message
20659
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.773Z - [REQUEST]: Responding to the client. project-graph
20660
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.773Z - Time taken for 'total for creating and serializing project graph' 601.0562919999998ms
20661
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.773Z - Time taken for 'total execution time for createProjectGraph()' 77.87587499999972ms
20662
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.774Z - Time taken for 'createDependencies' 62.4211250000003ms
20663
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.774Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 61.851166999999805ms
20664
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.774Z - Time taken for 'createMetadata' 0.017124999999850843ms
20665
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.774Z - Time taken for 'serialize graph' 3.3620419999997466ms
20666
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.774Z - Time taken for 'write cache' 25.522083999999722ms
20667
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.804Z - Done responding to the client project-graph
20668
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.805Z - Handled json message REQUEST_PROJECT_GRAPH. Handling time: 602. Response time: 32.
20669
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.805Z - [Messenger] Received message, length: 895604
20670
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.820Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
20671
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.820Z - [Messenger] Message sent
20672
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.820Z - Received raw message of length 32
20673
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.821Z - Received json message of type GET_CONTEXT_FILE_DATA
20674
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.822Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
20675
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.822Z - Responding to GET_CONTEXT_FILE_DATA message
20676
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.822Z - [REQUEST]: Responding to the client. handleContextFileData
20677
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.823Z - Done responding to the client handleContextFileData
20678
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:01.823Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 1.
20679
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:01.824Z - [Messenger] Received message, length: 86769
20680
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:03.020Z - [Messenger] Setting up socket listeners
20681
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:03.020Z - [Messenger] listen() complete
20682
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:03.020Z - Established a connection. Number of open connections: 2
20683
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:03.021Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
20684
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:03.021Z - [Messenger] Message sent
20685
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:03.021Z - Established a connection. Number of open connections: 3
20686
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:03.022Z - Closed a connection. Number of open connections: 2
20687
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:03.022Z - Received raw message of length 42
20688
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:03.022Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
20689
+ Fetching nx...
20690
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:10.888Z - [LATEST-NX]: Successfully pulled latest Nx to /private/tmp/tmp-59911-5sbOruGCy2bA
20691
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:10.893Z - [NX-CONSOLE]: Using local implementation (NX_USE_LOCAL=true or inner call)
20692
+ DEBUG nx::native::ide::preferences: Loaded console preferences: NxConsolePreferences { auto_install_console: Some(true), path: "/Users/ikechukwukalu/.config/nx/ide.json" }
20693
+ DEBUG nx::native::ide::install: Detected editor: Unknown
20694
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:10.922Z - [NX-CONSOLE]: Console status check completed, shouldPrompt: false
20695
+ DEBUG nx::native::ide::install: Editor command 'code' is installed
20696
+ DEBUG nx::native::ide::install: Editor command 'code-insiders' not found
20697
+ DEBUG nx::native::ide::install: Checking if Nx Console extension is installed with: code --list-extensions
20698
+ DEBUG nx::native::ide::install: Command failed with status: ExitStatus(unix_wait_status(256))
20699
+ DEBUG nx::native::ide::install: Editor command 'cursor' not found
20700
+ DEBUG nx::native::ide::install: Checking if Nx Console extension is installed with: cursor --list-extensions
20701
+ DEBUG nx::native::ide::install: Command 'cursor' not found, cannot check extension status
20702
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:12.025Z - [AI-AGENTS]: Agent configuration status computation completed: 0 fully configured, 0 outdated, 0 partially configured, 5 non-configured
20703
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=12
20704
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=12
20705
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-core/package.json
20706
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/action-menu/menu-item.ts
20707
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/modules/africanies-feedback.module.ts
20708
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/modules/africanies-feedback.module.ts
20709
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-core/src/lib/payment-method/payment-method.mapper.spec.ts
20710
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/package.json
20711
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-core/package.json
20712
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/accordion/index.ts
20713
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-theme/package.json
20714
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/action-menu/action-menu.component.ts
20715
+ DEBUG nx::native::watch::watcher: [create] apps/playground/src/app/snippets/action-menu.snippets.ts
20716
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/package.json
20717
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/index.ts
20718
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/accordion/accordion.component.ts
20719
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-core/src/lib/payment-method/payment-method.mapper.ts
20720
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-theme/package.json
20721
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/accordion/index.ts
20722
+ DEBUG nx::native::watch::watcher: [create] apps/playground/src/app/snippets/action-menu.snippets.ts
20723
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/action-menu/action-menu.component.ts
20724
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/action-menu/menu-item.ts
20725
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-core/src/lib/payment-method/payment-method.mapper.spec.ts
20726
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-core/src/lib/payment-method/payment-method.mapper.ts
20727
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/index.ts
20728
+ DEBUG nx::native::watch::watcher: [create] libs/africanies-ui/src/lib/accordion/accordion.component.ts
20729
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.772Z - [WATCHER]: Processing file changes in outputs
20730
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.773Z - [WATCHER]: 12 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
20731
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.774Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 12 events: create:libs/africanies-core/package.json, create:libs/africanies-ui/src/lib/modules/africanies-feedback.module.ts, create:libs/africanies-core/src/lib/payment-method/payment-method.mapper.spec.ts, create:libs/africanies-ui/package.json, create:libs/africanies-ui/src/index.ts, create:libs/africanies-ui/src/lib/accordion/accordion.component.ts, create:libs/africanies-core/src/lib/payment-method/payment-method.mapper.ts, create:libs/africanies-theme/package.json, create:libs/africanies-ui/src/lib/accordion/index.ts, create:apps/playground/src/app/snippets/action-menu.snippets.ts, create:libs/africanies-ui/src/lib/action-menu/action-menu.component.ts, create:libs/africanies-ui/src/lib/action-menu/menu-item.ts
20732
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.774Z - [WATCHER]: File changes detected:
20733
+ Created:
20734
+ - libs/africanies-core/package.json
20735
+ - libs/africanies-ui/src/lib/modules/africanies-feedback.module.ts
20736
+ - libs/africanies-core/src/lib/payment-method/payment-method.mapper.spec.ts
20737
+ - libs/africanies-ui/package.json
20738
+ - libs/africanies-ui/src/index.ts
20739
+ - libs/africanies-ui/src/lib/accordion/accordion.component.ts
20740
+ - libs/africanies-core/src/lib/payment-method/payment-method.mapper.ts
20741
+ - libs/africanies-theme/package.json
20742
+ - libs/africanies-ui/src/lib/accordion/index.ts
20743
+ - apps/playground/src/app/snippets/action-menu.snippets.ts
20744
+ ... and 2 more
20745
+ Updated:
20746
+ (none)
20747
+ Deleted:
20748
+ (none)
20749
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.779Z - [SYNC]: clearing sync generators cache due to file changes
20750
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.779Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
20751
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.779Z - [REQUEST]: libs/africanies-core/package.json,libs/africanies-ui/src/index.ts,libs/africanies-ui/src/lib/accordion/index.ts,libs/africanies-ui/src/lib/action-menu/action-menu.component.ts,libs/africanies-core/src/lib/payment-method/payment-method.mapper.ts,libs/africanies-core/src/lib/payment-method/payment-method.mapper.spec.ts,libs/africanies-ui/src/lib/accordion/accordion.component.ts,apps/playground/src/app/snippets/action-menu.snippets.ts,libs/africanies-ui/src/lib/modules/africanies-feedback.module.ts,libs/africanies-theme/package.json,libs/africanies-ui/src/lib/action-menu/menu-item.ts,libs/africanies-ui/package.json
20752
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.779Z - [REQUEST]:
20753
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
20754
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 60279, socket: /private/tmp/plugin59911-3-23287.6575.sock)
20755
+ [plugin-client] restarting worker for "nx/core/package-json"
20756
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 60280, socket: /private/tmp/plugin59911-4-23290.623208.sock)
20757
+ [plugin-client] restarting worker for "nx/core/project-json"
20758
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 60281, socket: /private/tmp/plugin59911-5-23291.318792.sock)
20759
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:21.786Z - Time taken for 'hash changed files from watcher' 4.225125000000844ms
20760
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 60279) listening on /private/tmp/plugin59911-3-23287.6575.sock
20761
+ [plugin-worker] "nx/core/project-json" (pid: 60281) listening on /private/tmp/plugin59911-5-23291.318792.sock
20762
+ [plugin-worker] "nx/core/package-json" (pid: 60280) listening on /private/tmp/plugin59911-4-23290.623208.sock
20763
+ Time taken for 'plugin worker 60279 code loading' 838.6530409999999ms
20764
+ Time taken for 'plugin worker 60280 code loading' 838.5769580000001ms
20765
+ Time taken for 'plugin worker 60281 code loading' 838.7839170000001ms
20766
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 60279)
20767
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 60280)
20768
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 60281)
20769
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:22.987Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 1202.4262079999971ms
20770
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:22.987Z - Time taken for 'start-plugin-worker:nx/core/package-json' 1201.0887089999997ms
20771
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:22.987Z - Time taken for 'start-plugin-worker:nx/core/project-json' 1200.7224580000002ms
20772
+ [plugin-worker] "nx/core/project-json" (pid: 60281) connected
20773
+ [plugin-worker] "nx/core/package-json" (pid: 60280) connected
20774
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 60279) connected
20775
+ [plugin-worker] "nx/core/project-json" (pid: 60281) loaded successfully
20776
+ [plugin-worker] "nx/core/package-json" (pid: 60280) loaded successfully
20777
+ Time taken for 'nx/core/project-json:createNodes' 2.2777920000000904ms
20778
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
20779
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 60279) loaded successfully
20780
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
20781
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 12.464707999999973ms
20782
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.050Z - Time taken for 'build-project-configs' 1259.8041250000024ms
20783
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.050Z - Time taken for 'createNodes:merge' 3.0475420000002487ms
20784
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.050Z - Time taken for 'native-file-deps' 0.001582999997481238ms
20785
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.050Z - Time taken for 'get-workspace-files' 2.586874999997235ms
20786
+ Time taken for 'build typescript dependencies' 32.03970800000002ms
20787
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
20788
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.099Z - [SYNC]: collect registered sync generators
20789
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.099Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
20790
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.109Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
20791
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.109Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
20792
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.111Z - Responding to PROJECT_GRAPH_UPDATED message
20793
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.111Z - [REQUEST]: Responding to the client. Project graph updated
20794
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.112Z - Time taken for 'total execution time for createProjectGraph()' 52.2868750000016ms
20795
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.112Z - Time taken for 'createDependencies' 47.646583000001556ms
20796
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.112Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 47.55104199999914ms
20797
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.112Z - Time taken for 'createMetadata' 0.007667000001674751ms
20798
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.112Z - Time taken for 'serialize graph' 1.9618749999972351ms
20799
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.112Z - Time taken for 'write cache' 9.328499999999622ms
20800
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.145Z - Done responding to the client Project graph updated
20801
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:23.145Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 10. Response time: 36.
20802
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:23.146Z - [Messenger] Received message, length: 895597
20803
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.158Z - Established a connection. Number of open connections: 3
20804
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:24.159Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
20805
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:24.159Z - [Messenger] Message sent
20806
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.159Z - Received raw message of length 32
20807
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.159Z - Received json message of type GET_CONTEXT_FILE_DATA
20808
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.160Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
20809
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.160Z - Responding to GET_CONTEXT_FILE_DATA message
20810
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.160Z - [REQUEST]: Responding to the client. handleContextFileData
20811
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.160Z - Closed a connection. Number of open connections: 2
20812
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.161Z - Done responding to the client handleContextFileData
20813
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.161Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 1.
20814
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:24.161Z - [Messenger] Received message, length: 86956
20815
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:24.729Z - [ProjectGraphListener] Socket closed, triggering reconnection
20816
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.729Z - Closed a connection. Number of open connections: 1
20817
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.730Z - Established a connection. Number of open connections: 2
20818
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:24.730Z - [Messenger] Setting up socket listeners
20819
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:24.730Z - [Messenger] listen() complete
20820
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:24.730Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
20821
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.730Z - Established a connection. Number of open connections: 3
20822
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:24.730Z - [Messenger] Message sent
20823
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.730Z - Closed a connection. Number of open connections: 2
20824
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.731Z - Received raw message of length 42
20825
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:24.731Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
20826
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.617Z - [Server] lock file hash changed! old=6227132078796796162, new=6086193982527695913
20827
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.620Z - [Server] Daemon outdated: LOCK_FILES_CHANGED
20828
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.620Z - [Server] Restarting daemon...
20829
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.623Z - Restarting daemon with script: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/daemon/server/start.js
20830
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.623Z - Old daemon __dirname: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/daemon/server
20831
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.624Z - Current process.execPath: /Users/ikechukwukalu/.nvm/versions/node/v24.20.0/bin/node
20832
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.624Z - Started new daemon process in background
20833
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.626Z - Closed a connection. Number of open connections: 1
20834
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.626Z - Closed a connection. Number of open connections: 0
20835
+ DEBUG nx::native::watch::watcher: watching stopped origin=/Applications/AngularJS/angular-web-sdk
20836
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.629Z - [WATCHER]: Stopping the watcher for /Applications/AngularJS/angular-web-sdk (sources)
20837
+ DEBUG nx::native::watch::watcher: watching stopped origin=/Applications/AngularJS/angular-web-sdk
20838
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:36.629Z - [ProjectGraphListener] Socket closed, triggering reconnection
20839
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.629Z - [WATCHER]: Stopping the watcher for /Applications/AngularJS/angular-web-sdk (outputs)
20840
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:36.629Z - [ProjectGraphListener] Starting reconnection for 1 callbacks
20841
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.629Z - [LATEST-NX]: Cleaning up latest Nx installation from /private/tmp/tmp-59911-5sbOruGCy2bA
20842
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:36.629Z - [Client] Waiting for server (max: 6000 attempts, 10ms interval)
20843
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:36.630Z - Server stopped because: "LOCK_FILES_CHANGED"
20844
+ DEBUG nx::native::watch::watcher: watching started origin=/Applications/AngularJS/angular-web-sdk
20845
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.398Z - [WATCHER]: Subscribed to changes within: /Applications/AngularJS/angular-web-sdk (native)
20846
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.402Z - New daemon starting from: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/daemon/server/server.js
20847
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.402Z - New daemon __dirname: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/daemon/server
20848
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.402Z - New daemon nxVersion: 23.1.1
20849
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.403Z - New daemon getInstalledNxVersion(): 23.1.1
20850
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.409Z - Time taken for 'workspace context init' 0.469791999999984ms
20851
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.419Z - [Server] Starting outdated check interval (20ms)
20852
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.422Z - Started listening on: /private/tmp/23fbda77f70b6dc999dc/d.sock
20853
+ DEBUG nx::native::watch::watcher: watching started origin=/Applications/AngularJS/angular-web-sdk
20854
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.426Z - [LATEST-NX]: Pulling latest Nx...
20855
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.428Z - [AI-AGENTS]: Starting agent configuration status computation
20856
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:37.431Z - [Client] Server available
20857
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:37.431Z - [Messenger] Setting up socket listeners
20858
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:37.432Z - [Messenger] listen() complete
20859
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:37.432Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
20860
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:37.432Z - [Messenger] Message sent
20861
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:37.432Z - [ProjectGraphListener] Reconnected successfully
20862
+ [isolated-plugin] spawned worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 60478, socket: /private/tmp/plugin60459-0-786.3985.sock)
20863
+ [isolated-plugin] spawned worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 60479, socket: /private/tmp/plugin60459-1-833.184292.sock)
20864
+ [isolated-plugin] spawned worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 60480, socket: /private/tmp/plugin60459-2-833.73.sock)
20865
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.476Z - Time taken for 'hash changed files from watcher' 0.010750000000030013ms
20866
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.476Z - Time taken for 'loadSpecifiedNxPlugins' 50.40733399999999ms
20867
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.477Z - Established a connection. Number of open connections: 1
20868
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.477Z - Established a connection. Number of open connections: 2
20869
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.478Z - Closed a connection. Number of open connections: 1
20870
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.478Z - Received raw message of length 42
20871
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.478Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
20872
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
20873
+ DEBUG nx::native::watch::watcher: [create] .nx/workspace-data/d/server-process.json
20874
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.535Z - [WATCHER]: Processing file changes in outputs
20875
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 60480) listening on /private/tmp/plugin60459-2-833.73.sock
20876
+ Time taken for 'plugin worker 60480 code loading' 239.956083ms
20877
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 60478) listening on /private/tmp/plugin60459-0-786.3985.sock
20878
+ Time taken for 'plugin worker 60478 code loading' 239.57320900000002ms
20879
+ [isolated-plugin] connected to worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 60478)
20880
+ [isolated-plugin] connected to worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 60480)
20881
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.766Z - Time taken for 'start-plugin-worker:/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js' 335.67708300000004ms
20882
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.766Z - Time taken for 'start-plugin-worker:/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json' 289.64829199999997ms
20883
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 60480) connected
20884
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 60478) connected
20885
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json" (pid: 60480) loaded successfully
20886
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.772Z - Time taken for 'Load Nx Plugin: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/project-json/build-nodes/project-json' 347.1315000000001ms
20887
+ [isolated-plugin] connected to worker for "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 60479)
20888
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.775Z - Time taken for 'start-plugin-worker:/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json' 299.364292ms
20889
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 60479) listening on /private/tmp/plugin60459-1-833.184292.sock
20890
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 60479) connected
20891
+ Time taken for 'plugin worker 60479 code loading' 240.60004200000003ms
20892
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json" (pid: 60479) loaded successfully
20893
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.793Z - Time taken for 'Load Nx Plugin: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/package-json' 367.88091699999995ms
20894
+ [plugin-worker] "/Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js" (pid: 60478) loaded successfully
20895
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.797Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
20896
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.797Z - [REQUEST]:
20897
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.797Z - [REQUEST]:
20898
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.812Z - Time taken for 'loadDefaultNxPlugins' 371.0841670000001ms
20899
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.812Z - Time taken for 'Load Nx Plugin: /Applications/AngularJS/angular-web-sdk/node_modules/.pnpm/nx@23.1.1/node_modules/nx/dist/src/plugins/js' 370.85574999999994ms
20900
+ Time taken for 'nx/core/project-json:createNodes' 2.3917090000000485ms
20901
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
20902
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 18.204791999999998ms
20903
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
20904
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.882Z - Time taken for 'build-project-configs' 49.663499999999885ms
20905
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.882Z - Time taken for 'createNodes:merge' 18.4368750000001ms
20906
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.882Z - Time taken for 'native-file-deps' 0.006374999999934516ms
20907
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.882Z - Time taken for 'get-workspace-files' 1.9865830000001097ms
20908
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.882Z - Time taken for 'read cache' 1.1793749999999363ms
20909
+ Time taken for 'build typescript dependencies' 55.73866700000002ms
20910
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
20911
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.966Z - [SYNC]: collect registered sync generators
20912
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.982Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
20913
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.982Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
20914
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.985Z - Responding to PROJECT_GRAPH_UPDATED message
20915
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.986Z - [REQUEST]: Responding to the client. Project graph updated
20916
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.986Z - Time taken for 'total execution time for createProjectGraph()' 87.29091699999981ms
20917
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.986Z - Time taken for 'createDependencies' 78.09662500000013ms
20918
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.986Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 77.48170800000003ms
20919
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.987Z - Time taken for 'createMetadata' 0.16229199999997945ms
20920
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.987Z - Time taken for 'serialize graph' 4.358457999999928ms
20921
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.987Z - Time taken for 'write cache' 15.448250000000144ms
20922
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.996Z - Done responding to the client Project graph updated
20923
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:37.996Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 16. Response time: 14.
20924
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.003Z - [Messenger] Received message, length: 895597
20925
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.559Z - Established a connection. Number of open connections: 2
20926
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.560Z - Closed a connection. Number of open connections: 1
20927
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.562Z - Established a connection. Number of open connections: 2
20928
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.562Z - Closed a connection. Number of open connections: 1
20929
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.563Z - Established a connection. Number of open connections: 2
20930
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.562Z - [Messenger] Setting up socket listeners
20931
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.565Z - [Messenger] listen() complete
20932
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.578Z - [Messenger] Sending message type: GET_NX_CONSOLE_STATUS
20933
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.578Z - [Messenger] Message sent
20934
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.580Z - Received raw message of length 4833
20935
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.581Z - Received json message of type GET_NX_CONSOLE_STATUS
20936
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.581Z - Graph recompute necessary due to env variable refresh. Changed keys: MXC_BIN_DIR, COPILOT_OTEL_FILE_EXPORTER_PATH, PHP_INI_SCAN_DIR, ELECTRON_NO_ASAR, ELECTRON_RUN_AS_NODE, PATH, PWD, MACH_PORT_RENDEZVOUS_PEER_VALDATION, XPC_SERVICE_NAME, NX_WORKSPACE_ROOT_PATH, APPLICATION_INSIGHTS_NO_STATSBEAT, CI, DEBUG, DATA_CLOUD_CURR_IDE_NAME, TERM_PROGRAM, NODE, INIT_CWD, TERM, TERM_PROGRAM_VERSION, ZDOTDIR, COLOR, GIT_AUTHOR_DATE, COPILOT_DEBUG_NONCE, GIT_EDITOR, GIT_NO_REPLACE_OBJECTS, GIT_INDEX_FILE, GIT_AUTHOR_NAME, GIT_PREFIX, USER_ZDOTDIR, EDITOR, LANG, PYTHONSTARTUP, NODE_PATH, PYTHON_BASIC_REPL, GIT_SSH_COMMAND, GIT_ASKPASS, GIT_AUTHOR_EMAIL, GIT_EXEC_PATH, COLORTERM, NX_CLI_SET
20937
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.582Z - Serializing response for GET_NX_CONSOLE_STATUS message in json mode
20938
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.582Z - Responding to GET_NX_CONSOLE_STATUS message
20939
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.582Z - [REQUEST]: Responding to the client. handleGetNxConsoleStatus
20940
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.582Z - Done responding to the client handleGetNxConsoleStatus
20941
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.582Z - Handled json message GET_NX_CONSOLE_STATUS. Handling time: 0. Response time: 0.
20942
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.582Z - [Messenger] Received message, length: 22
20943
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.657Z - [Messenger] Sending message type: REQUEST_PROJECT_GRAPH
20944
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.657Z - [Messenger] Message sent
20945
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.657Z - Received raw message of length 32
20946
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.657Z - Received json message of type REQUEST_PROJECT_GRAPH
20947
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.658Z - [REQUEST]: Client Request for Project Graph Received
20948
+ DEBUG nx::native::watch::watcher: force-flush END count=0 replies=1 elapsed=65.407083ms
20949
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.724Z - No in-memory cached project graph found. Recomputing it...
20950
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.724Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
20951
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.724Z - [REQUEST]:
20952
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.724Z - [REQUEST]:
20953
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.725Z - Streaming message to client: progress update for topic graph-construction
20954
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
20955
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.725Z - [Messenger] Received message, length: 47
20956
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 60519, socket: /private/tmp/plugin60459-3-2083.472625.sock)
20957
+ [plugin-client] restarting worker for "nx/core/package-json"
20958
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 60520, socket: /private/tmp/plugin60459-4-2084.287042.sock)
20959
+ [plugin-client] restarting worker for "nx/core/project-json"
20960
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 60521, socket: /private/tmp/plugin60459-5-2084.783625.sock)
20961
+ [plugin-worker] "nx/core/package-json" (pid: 60520) listening on /private/tmp/plugin60459-4-2084.287042.sock
20962
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 60519) listening on /private/tmp/plugin60459-3-2083.472625.sock
20963
+ [plugin-worker] "nx/core/project-json" (pid: 60521) listening on /private/tmp/plugin60459-5-2084.783625.sock
20964
+ Time taken for 'plugin worker 60521 code loading' 106.183458ms
20965
+ Time taken for 'plugin worker 60520 code loading' 107.92504199999999ms
20966
+ Time taken for 'plugin worker 60519 code loading' 107.955875ms
20967
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 60519)
20968
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 60520)
20969
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 60521)
20970
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.868Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 141.7836669999997ms
20971
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.868Z - Time taken for 'start-plugin-worker:nx/core/package-json' 141.43716700000004ms
20972
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.868Z - Time taken for 'start-plugin-worker:nx/core/project-json' 141.25070800000003ms
20973
+ [plugin-worker] "nx/core/project-json" (pid: 60521) connected
20974
+ [plugin-worker] "nx/core/package-json" (pid: 60520) connected
20975
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 60519) connected
20976
+ [plugin-worker] "nx/core/project-json" (pid: 60521) loaded successfully
20977
+ [plugin-worker] "nx/core/package-json" (pid: 60520) loaded successfully
20978
+ Time taken for 'nx/core/project-json:createNodes' 0.6767499999999984ms
20979
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
20980
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.874Z - Streaming message to client: progress update for topic graph-construction
20981
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.874Z - [Messenger] Received message, length: 153
20982
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 60519) loaded successfully
20983
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
20984
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.882Z - Streaming message to client: progress update for topic graph-construction
20985
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.882Z - [Messenger] Received message, length: 112
20986
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 5.997749999999996ms
20987
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.889Z - Streaming message to client: progress update for topic graph-construction
20988
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.889Z - [Messenger] Received message, length: 47
20989
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.895Z - Streaming message to client: progress update for topic graph-construction
20990
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.895Z - [Messenger] Received message, length: 47
20991
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.896Z - Time taken for 'build-project-configs' 165.94908299999997ms
20992
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.896Z - Time taken for 'createNodes:merge' 2.099290999999994ms
20993
+ Time taken for 'build typescript dependencies' 0.09158299999998576ms
20994
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
20995
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.905Z - Streaming message to client: progress update for topic graph-construction
20996
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.905Z - [Messenger] Received message, length: 47
20997
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.911Z - [SYNC]: collect registered sync generators
20998
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.911Z - [SYNC]: project graph hash is the same, not collecting task sync generators
20999
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.911Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
21000
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.920Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
21001
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.920Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
21002
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.922Z - Responding to PROJECT_GRAPH_UPDATED message
21003
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.922Z - [REQUEST]: Responding to the client. Project graph updated
21004
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Serializing response for REQUEST_PROJECT_GRAPH message in json mode
21005
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Responding to REQUEST_PROJECT_GRAPH message
21006
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - [REQUEST]: Responding to the client. project-graph
21007
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Time taken for 'total for creating and serializing project graph' 265.022833ms
21008
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Time taken for 'total execution time for createProjectGraph()' 16.80033400000002ms
21009
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Time taken for 'createDependencies' 13.441166000000067ms
21010
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 13.26379100000031ms
21011
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Time taken for 'createMetadata' 0.007499999999708962ms
21012
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Time taken for 'serialize graph' 1.91399999999976ms
21013
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.923Z - Time taken for 'write cache' 8.999084000000039ms
21014
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.926Z - Done responding to the client project-graph
21015
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.926Z - Handled json message REQUEST_PROJECT_GRAPH. Handling time: 266. Response time: 3.
21016
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.926Z - [Messenger] Received message, length: 895604
21017
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.927Z - Done responding to the client Project graph updated
21018
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.927Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 9. Response time: 7.
21019
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.931Z - [Messenger] Sending message type: PRE_TASKS_EXECUTION
21020
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.932Z - [Messenger] Message sent
21021
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.932Z - Received raw message of length 2087
21022
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.932Z - Received json message of type PRE_TASKS_EXECUTION
21023
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.932Z - Serializing response for PRE_TASKS_EXECUTION message in json mode
21024
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.932Z - Responding to PRE_TASKS_EXECUTION message
21025
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.932Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
21026
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.932Z - Done responding to the client handleRunPreTasksExecution
21027
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.932Z - Handled json message PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
21028
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.932Z - [Messenger] Received message, length: 2
21029
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.932Z - Time taken for 'preTasksExecution' 0.5072919999997794ms
21030
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.933Z - [Messenger] Received message, length: 895597
21031
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.962Z - [Messenger] Sending message type: HASH_TASKS
21032
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:38.962Z - [Messenger] Message sent
21033
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.964Z - Received raw message of length 44126
21034
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:38.964Z - Received json message of type HASH_TASKS
21035
+ DEBUG nx::native::watch::watcher: force-flush END count=0 replies=1 elapsed=57.036417ms
21036
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.021Z - Reusing in-memory cached project graph because no files changed.
21037
+ DEBUG nx::native::tasks::hash_planner: get_plans_internal COMPLETED in 9.72125ms - processed 6 tasks (setup: 7.294792ms, parallel_planning: 2.41775ms, pool: 1031 unique instructions)
21038
+ DEBUG nx::native::tasks::hashers::hash_workspace_files: Hashing workspace fileset: Adding "8520130568453209191" (".gitignore") to hash
21039
+ DEBUG nx::native::tasks::hashers::hash_workspace_files: Hashing workspace fileset: Adding "2425668806101952406" ("nx.json") to hash
21040
+ DEBUG nx::native::tasks::hashers::hash_workspace_files: Hashing workspace fileset: Adding "6605332246132408965" ("eslint.config.mjs") to hash
21041
+ DEBUG nx::native::tasks::hashers::hash_workspace_files: Hashing workspace fileset: Hash Value: "17385814077483807182"
21042
+ DEBUG nx::native::tasks::hashers::hash_workspace_files: Hashing workspace fileset: Hash Value: "17732202739991855709"
21043
+ DEBUG nx::native::tasks::task_hasher: hash_plans COMPLETED in 8.190209ms - processed 6 plans (setup: 660.125µs, hashing: 7.527917ms, assembly: 4.569917ms)
21044
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.052Z - Serializing response for HASH_TASKS message in json mode
21045
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.053Z - Responding to HASH_TASKS message
21046
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.053Z - [REQUEST]: Responding to the client. handleHashTasks
21047
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.056Z - Done responding to the client handleHashTasks
21048
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.056Z - [Messenger] Received message, length: 288892
21049
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.056Z - Handled json message HASH_TASKS. Handling time: 88. Response time: 4.
21050
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.485Z - [Messenger] Sending message type: GET_ESTIMATED_TASK_TIMINGS
21051
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.485Z - [Messenger] Message sent
21052
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.485Z - Received raw message of length 330
21053
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.485Z - Received json message of type GET_ESTIMATED_TASK_TIMINGS
21054
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.498Z - Serializing response for GET_ESTIMATED_TASK_TIMINGS message in json mode
21055
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.498Z - Responding to GET_ESTIMATED_TASK_TIMINGS message
21056
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.498Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
21057
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.498Z - Done responding to the client handleGetEstimatedTaskTimings
21058
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.498Z - Handled json message GET_ESTIMATED_TASK_TIMINGS. Handling time: 13. Response time: 0.
21059
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.498Z - [Messenger] Received message, length: 180
21060
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.964Z - Established a connection. Number of open connections: 3
21061
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.965Z - [Messenger] Setting up socket listeners
21062
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.965Z - [Messenger] listen() complete
21063
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.965Z - Established a connection. Number of open connections: 4
21064
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.966Z - Closed a connection. Number of open connections: 3
21065
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.966Z - Established a connection. Number of open connections: 4
21066
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.966Z - Closed a connection. Number of open connections: 3
21067
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.968Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
21068
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.968Z - [Messenger] Message sent
21069
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.968Z - Received raw message of length 32
21070
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.968Z - Received json message of type GET_CONTEXT_FILE_DATA
21071
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.969Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
21072
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.970Z - Responding to GET_CONTEXT_FILE_DATA message
21073
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.970Z - [REQUEST]: Responding to the client. handleContextFileData
21074
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.970Z - Done responding to the client handleContextFileData
21075
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:39.970Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 1.
21076
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:39.970Z - [Messenger] Received message, length: 86957
21077
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:40.862Z - Closed a connection. Number of open connections: 2
21078
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:40.874Z - [Messenger] Setting up socket listeners
21079
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:40.874Z - [Messenger] listen() complete
21080
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:40.874Z - Established a connection. Number of open connections: 3
21081
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:40.874Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
21082
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:40.874Z - Established a connection. Number of open connections: 4
21083
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:40.874Z - [Messenger] Message sent
21084
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:40.874Z - Closed a connection. Number of open connections: 3
21085
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:40.875Z - Received raw message of length 42
21086
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:40.875Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
21087
+ Fetching nx...
21088
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.768Z - [Messenger] Sending message type: RECORD_TASK_RUNS
21089
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.769Z - [Messenger] Message sent
21090
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.769Z - Received raw message of length 1137
21091
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.769Z - Received json message of type RECORD_TASK_RUNS
21092
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.777Z - Serializing response for RECORD_TASK_RUNS message in json mode
21093
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.777Z - Responding to RECORD_TASK_RUNS message
21094
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.777Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
21095
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.777Z - Done responding to the client handleRecordTaskRuns
21096
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.777Z - Handled json message RECORD_TASK_RUNS. Handling time: 8. Response time: 0.
21097
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.777Z - [Messenger] Received message, length: 4
21098
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.777Z - [Messenger] Sending message type: GET_FLAKY_TASKS
21099
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.778Z - [Messenger] Message sent
21100
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.778Z - Received raw message of length 169
21101
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.778Z - Received json message of type GET_FLAKY_TASKS
21102
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.780Z - Serializing response for GET_FLAKY_TASKS message in json mode
21103
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.780Z - Responding to GET_FLAKY_TASKS message
21104
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.780Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
21105
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.780Z - Done responding to the client handleGetFlakyTasks
21106
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.780Z - Handled json message GET_FLAKY_TASKS. Handling time: 2. Response time: 0.
21107
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.780Z - [Messenger] Received message, length: 2
21108
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.782Z - Established a connection. Number of open connections: 4
21109
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.782Z - [Messenger] Sending message type: GET_CONFIGURE_AI_AGENTS_STATUS
21110
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.782Z - [Messenger] Message sent
21111
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.783Z - Received raw message of length 41
21112
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.783Z - Received json message of type GET_CONFIGURE_AI_AGENTS_STATUS
21113
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.783Z - Serializing response for GET_CONFIGURE_AI_AGENTS_STATUS message in json mode
21114
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.783Z - Responding to GET_CONFIGURE_AI_AGENTS_STATUS message
21115
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.783Z - [REQUEST]: Responding to the client. handleGetConfigureAiAgentsStatus
21116
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.783Z - Done responding to the client handleGetConfigureAiAgentsStatus
21117
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.783Z - Handled json message GET_CONFIGURE_AI_AGENTS_STATUS. Handling time: 0. Response time: 0.
21118
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.783Z - [Messenger] Received message, length: 104
21119
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.783Z - Closed a connection. Number of open connections: 3
21120
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.788Z - [Messenger] Sending message type: POST_TASKS_EXECUTION
21121
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.792Z - [Messenger] Message sent
21122
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.803Z - [LATEST-NX]: Successfully pulled latest Nx to /private/tmp/tmp-60459-B1mZGF2knYGg
21123
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.806Z - [NX-CONSOLE]: Using local implementation (NX_USE_LOCAL=true or inner call)
21124
+ DEBUG nx::native::ide::preferences: Loaded console preferences: NxConsolePreferences { auto_install_console: Some(true), path: "/Users/ikechukwukalu/.config/nx/ide.json" }
21125
+ DEBUG nx::native::ide::install: Detected editor: VSCode
21126
+ DEBUG nx::native::ide::install: Checking if Nx Console extension is installed with: code --list-extensions
21127
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.831Z - Received raw message of length 319427
21128
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.833Z - Received json message of type POST_TASKS_EXECUTION
21129
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.833Z - Serializing response for POST_TASKS_EXECUTION message in json mode
21130
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.833Z - Responding to POST_TASKS_EXECUTION message
21131
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.833Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
21132
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.833Z - Done responding to the client handleRunPostTasksExecution
21133
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.833Z - Handled json message POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
21134
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.833Z - Time taken for 'postTasksExecution' 0.3772499999995489ms
21135
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:52:46.833Z - [Messenger] Received message, length: 4
21136
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:46.900Z - Closed a connection. Number of open connections: 2
21137
+ DEBUG nx::native::ide::install: Editor command 'code' is installed
21138
+ DEBUG nx::native::ide::install: Editor command 'code-insiders' not found
21139
+ DEBUG nx::native::ide::install: Checking if Nx Console extension is installed with: code --list-extensions
21140
+ DEBUG nx::native::ide::install: Nx Console extension is installed
21141
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:48.724Z - [NX-CONSOLE]: Console status check completed, shouldPrompt: false
21142
+ DEBUG nx::native::ide::install: Nx Console extension is installed
21143
+ DEBUG nx::native::ide::install: Editor command 'cursor' not found
21144
+ DEBUG nx::native::ide::install: Checking if Nx Console extension is installed with: cursor --list-extensions
21145
+ DEBUG nx::native::ide::install: Command 'cursor' not found, cannot check extension status
21146
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:52:49.066Z - [AI-AGENTS]: Agent configuration status computation completed: 0 fully configured, 0 outdated, 1 partially configured, 4 non-configured
21147
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=17
21148
+ DEBUG nx::native::watch::watcher: [update] .husky/_/h
21149
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-applypatch
21150
+ DEBUG nx::native::watch::watcher: [update] .husky/_/prepare-commit-msg
21151
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-merge-commit
21152
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-checkout
21153
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-commit
21154
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-rewrite
21155
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-push
21156
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-merge
21157
+ DEBUG nx::native::watch::watcher: [update] .husky/_/commit-msg
21158
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-commit
21159
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-auto-gc
21160
+ DEBUG nx::native::watch::watcher: [update] .husky/_/.gitignore
21161
+ DEBUG nx::native::watch::watcher: [update] .husky/_/applypatch-msg
21162
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-rebase
21163
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-applypatch
21164
+ DEBUG nx::native::watch::watcher: [create] .husky/_/husky.sh
21165
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:53:13.144Z - [WATCHER]: Processing file changes in outputs
21166
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
21167
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
21168
+ DEBUG nx::native::watch::watcher: [delete] _tmp_61689_cc17806212f6060c567135acf4678611
21169
+ DEBUG nx::native::watch::watcher: [delete] _tmp_61689_cc17806212f6060c567135acf4678611
21170
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.244Z - [WATCHER]: Processing file changes in outputs
21171
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.245Z - [WATCHER]: _tmp_61689_cc17806212f6060c567135acf4678611 was deleted
21172
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.246Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 1 events: delete:_tmp_61689_cc17806212f6060c567135acf4678611
21173
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.246Z - [WATCHER]: File changes detected:
21174
+ Created:
21175
+ (none)
21176
+ Updated:
21177
+ (none)
21178
+ Deleted:
21179
+ - _tmp_61689_cc17806212f6060c567135acf4678611
21180
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.251Z - [SYNC]: clearing sync generators cache due to file changes
21181
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.254Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
21182
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.254Z - [REQUEST]:
21183
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.254Z - [REQUEST]: _tmp_61689_cc17806212f6060c567135acf4678611
21184
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
21185
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61690, socket: /private/tmp/plugin60459-6-85619.155083.sock)
21186
+ [plugin-client] restarting worker for "nx/core/package-json"
21187
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61691, socket: /private/tmp/plugin60459-7-85620.9155.sock)
21188
+ [plugin-client] restarting worker for "nx/core/project-json"
21189
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61692, socket: /private/tmp/plugin60459-8-85621.545542.sock)
21190
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.263Z - Time taken for 'hash changed files from watcher' 5.089749999999185ms
21191
+ [plugin-worker] "nx/core/project-json" (pid: 61692) listening on /private/tmp/plugin60459-8-85621.545542.sock
21192
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61690) listening on /private/tmp/plugin60459-6-85619.155083.sock
21193
+ [plugin-worker] "nx/core/package-json" (pid: 61691) listening on /private/tmp/plugin60459-7-85620.9155.sock
21194
+ Time taken for 'plugin worker 61690 code loading' 318.172708ms
21195
+ Time taken for 'plugin worker 61691 code loading' 318.558125ms
21196
+ Time taken for 'plugin worker 61692 code loading' 318.948125ms
21197
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61690)
21198
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61691)
21199
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61692)
21200
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.671Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 406.9562500000029ms
21201
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.671Z - Time taken for 'start-plugin-worker:nx/core/package-json' 405.3532079999859ms
21202
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.671Z - Time taken for 'start-plugin-worker:nx/core/project-json' 407.93487499999173ms
21203
+ [plugin-worker] "nx/core/package-json" (pid: 61691) connected
21204
+ [plugin-worker] "nx/core/project-json" (pid: 61692) connected
21205
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61690) connected
21206
+ [plugin-worker] "nx/core/project-json" (pid: 61692) loaded successfully
21207
+ [plugin-worker] "nx/core/package-json" (pid: 61691) loaded successfully
21208
+ Time taken for 'nx/core/project-json:createNodes' 5.79445800000002ms
21209
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
21210
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61690) loaded successfully
21211
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
21212
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 9.019166999999982ms
21213
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.715Z - Time taken for 'build-project-configs' 447.9437500000058ms
21214
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.715Z - Time taken for 'createNodes:merge' 2.5639999999984866ms
21215
+ Time taken for 'build typescript dependencies' 0.08437500000002274ms
21216
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
21217
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.735Z - [SYNC]: collect registered sync generators
21218
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.735Z - [SYNC]: project graph hash is the same, not collecting task sync generators
21219
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.735Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
21220
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.751Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
21221
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.751Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
21222
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.755Z - Responding to PROJECT_GRAPH_UPDATED message
21223
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.755Z - [REQUEST]: Responding to the client. Project graph updated
21224
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.755Z - Time taken for 'total execution time for createProjectGraph()' 21.440417000005255ms
21225
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.755Z - Time taken for 'createDependencies' 17.12879200000316ms
21226
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.755Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 17.039749999996275ms
21227
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.755Z - Time taken for 'createMetadata' 0.007874999995692633ms
21228
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.755Z - Time taken for 'serialize graph' 3.2055419999960577ms
21229
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.755Z - Time taken for 'write cache' 15.84299999999348ms
21230
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.764Z - Done responding to the client Project graph updated
21231
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:02.764Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 16. Response time: 13.
21232
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:02.765Z - [Messenger] Received message, length: 895597
21233
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:03.777Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
21234
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.777Z - Established a connection. Number of open connections: 3
21235
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:03.778Z - [Messenger] Message sent
21236
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.779Z - Received raw message of length 32
21237
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.779Z - Received json message of type GET_CONTEXT_FILE_DATA
21238
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.787Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
21239
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.788Z - Responding to GET_CONTEXT_FILE_DATA message
21240
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.790Z - [REQUEST]: Responding to the client. handleContextFileData
21241
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.791Z - Closed a connection. Number of open connections: 2
21242
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.792Z - Done responding to the client handleContextFileData
21243
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.792Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 7. Response time: 5.
21244
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:03.794Z - [Messenger] Received message, length: 86957
21245
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:03.946Z - [ProjectGraphListener] Socket closed, triggering reconnection
21246
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.947Z - Closed a connection. Number of open connections: 1
21247
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.947Z - Established a connection. Number of open connections: 2
21248
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:03.947Z - [Messenger] Setting up socket listeners
21249
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.947Z - Closed a connection. Number of open connections: 1
21250
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:03.947Z - [Messenger] listen() complete
21251
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.947Z - Established a connection. Number of open connections: 2
21252
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:03.947Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
21253
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:03.947Z - [Messenger] Message sent
21254
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.948Z - Received raw message of length 42
21255
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:03.948Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
21256
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=17
21257
+ DEBUG nx::native::watch::watcher: [update] .husky/_/h
21258
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-applypatch
21259
+ DEBUG nx::native::watch::watcher: [update] .husky/_/prepare-commit-msg
21260
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-merge-commit
21261
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-checkout
21262
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-commit
21263
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-rewrite
21264
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-push
21265
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-merge
21266
+ DEBUG nx::native::watch::watcher: [update] .husky/_/commit-msg
21267
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-commit
21268
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-auto-gc
21269
+ DEBUG nx::native::watch::watcher: [update] .husky/_/.gitignore
21270
+ DEBUG nx::native::watch::watcher: [update] .husky/_/applypatch-msg
21271
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-rebase
21272
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-applypatch
21273
+ DEBUG nx::native::watch::watcher: [create] .husky/_/husky.sh
21274
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:04.717Z - [WATCHER]: Processing file changes in outputs
21275
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.354Z - Established a connection. Number of open connections: 3
21276
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.355Z - Closed a connection. Number of open connections: 2
21277
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.355Z - Established a connection. Number of open connections: 3
21278
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.356Z - Closed a connection. Number of open connections: 2
21279
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.356Z - Established a connection. Number of open connections: 3
21280
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.356Z - [Messenger] Setting up socket listeners
21281
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.360Z - [Messenger] listen() complete
21282
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.368Z - [Messenger] Sending message type: GET_NX_CONSOLE_STATUS
21283
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.383Z - [Messenger] Message sent
21284
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.386Z - Received raw message of length 4325
21285
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.386Z - Received json message of type GET_NX_CONSOLE_STATUS
21286
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.386Z - Graph recompute necessary due to env variable refresh. Changed keys: PATH, COLOR, GIT_AUTHOR_DATE, GIT_EDITOR, GIT_NO_REPLACE_OBJECTS, GIT_INDEX_FILE, GIT_AUTHOR_NAME, GIT_PREFIX, EDITOR, GIT_SSH_COMMAND, GIT_AUTHOR_EMAIL, GIT_EXEC_PATH, PNPM_SCRIPT_SRC_DIR
21287
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.387Z - Serializing response for GET_NX_CONSOLE_STATUS message in json mode
21288
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.387Z - Responding to GET_NX_CONSOLE_STATUS message
21289
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.387Z - [REQUEST]: Responding to the client. handleGetNxConsoleStatus
21290
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.387Z - Done responding to the client handleGetNxConsoleStatus
21291
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.387Z - Handled json message GET_NX_CONSOLE_STATUS. Handling time: 0. Response time: 0.
21292
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.387Z - [Messenger] Received message, length: 22
21293
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.463Z - [Messenger] Sending message type: REQUEST_PROJECT_GRAPH
21294
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.464Z - [Messenger] Message sent
21295
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.464Z - Received raw message of length 32
21296
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.464Z - Received json message of type REQUEST_PROJECT_GRAPH
21297
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.464Z - [REQUEST]: Client Request for Project Graph Received
21298
+ DEBUG nx::native::watch::watcher: force-flush END count=0 replies=1 elapsed=65.607292ms
21299
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.531Z - No in-memory cached project graph found. Recomputing it...
21300
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.531Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
21301
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.531Z - [REQUEST]:
21302
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.531Z - [REQUEST]:
21303
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.532Z - Streaming message to client: progress update for topic graph-construction
21304
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
21305
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.532Z - [Messenger] Received message, length: 47
21306
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61779, socket: /private/tmp/plugin60459-9-88891.271208.sock)
21307
+ [plugin-client] restarting worker for "nx/core/package-json"
21308
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61780, socket: /private/tmp/plugin60459-10-88892.07025.sock)
21309
+ [plugin-client] restarting worker for "nx/core/project-json"
21310
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61781, socket: /private/tmp/plugin60459-11-88892.43425.sock)
21311
+ [plugin-worker] "nx/core/project-json" (pid: 61781) listening on /private/tmp/plugin60459-11-88892.43425.sock
21312
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61779) listening on /private/tmp/plugin60459-9-88891.271208.sock
21313
+ Time taken for 'plugin worker 61779 code loading' 197.073625ms
21314
+ [plugin-worker] "nx/core/package-json" (pid: 61780) listening on /private/tmp/plugin60459-10-88892.07025.sock
21315
+ Time taken for 'plugin worker 61781 code loading' 196.303125ms
21316
+ Time taken for 'plugin worker 61780 code loading' 196.89404199999998ms
21317
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61779)
21318
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61780)
21319
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61781)
21320
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.772Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 237.98241599999892ms
21321
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.772Z - Time taken for 'start-plugin-worker:nx/core/package-json' 237.82825000000594ms
21322
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.772Z - Time taken for 'start-plugin-worker:nx/core/project-json' 237.75129200000083ms
21323
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61779) connected
21324
+ [plugin-worker] "nx/core/package-json" (pid: 61780) connected
21325
+ [plugin-worker] "nx/core/project-json" (pid: 61781) connected
21326
+ [plugin-worker] "nx/core/project-json" (pid: 61781) loaded successfully
21327
+ [plugin-worker] "nx/core/package-json" (pid: 61780) loaded successfully
21328
+ Time taken for 'nx/core/project-json:createNodes' 1.6460419999999942ms
21329
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
21330
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.777Z - Streaming message to client: progress update for topic graph-construction
21331
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.777Z - [Messenger] Received message, length: 153
21332
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61779) loaded successfully
21333
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
21334
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.791Z - Streaming message to client: progress update for topic graph-construction
21335
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.791Z - [Messenger] Received message, length: 112
21336
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 12.157874999999962ms
21337
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.830Z - Streaming message to client: progress update for topic graph-construction
21338
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.831Z - [Messenger] Received message, length: 47
21339
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.840Z - Streaming message to client: progress update for topic graph-construction
21340
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.840Z - [Messenger] Received message, length: 47
21341
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.842Z - Time taken for 'build-project-configs' 303.54083399999945ms
21342
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.842Z - Time taken for 'createNodes:merge' 4.700292000008631ms
21343
+ Time taken for 'build typescript dependencies' 0.09979199999997945ms
21344
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
21345
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.852Z - Streaming message to client: progress update for topic graph-construction
21346
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.852Z - [Messenger] Received message, length: 47
21347
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.860Z - [SYNC]: collect registered sync generators
21348
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.860Z - [SYNC]: project graph hash is the same, not collecting task sync generators
21349
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.860Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
21350
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.867Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
21351
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.867Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
21352
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.870Z - Responding to PROJECT_GRAPH_UPDATED message
21353
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.870Z - [REQUEST]: Responding to the client. Project graph updated
21354
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.870Z - Serializing response for REQUEST_PROJECT_GRAPH message in json mode
21355
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.870Z - Responding to REQUEST_PROJECT_GRAPH message
21356
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.870Z - [REQUEST]: Responding to the client. project-graph
21357
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.871Z - Time taken for 'total for creating and serializing project graph' 405.85408299999835ms
21358
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.871Z - Time taken for 'total execution time for createProjectGraph()' 20.118459000004805ms
21359
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.871Z - Time taken for 'createDependencies' 16.066832999989856ms
21360
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.871Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 15.888125000012224ms
21361
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.871Z - Time taken for 'createMetadata' 0.011665999991237186ms
21362
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.871Z - Time taken for 'serialize graph' 2.884041999990586ms
21363
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.871Z - Time taken for 'write cache' 6.066666999991867ms
21364
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.880Z - Done responding to the client project-graph
21365
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.881Z - Handled json message REQUEST_PROJECT_GRAPH. Handling time: 406. Response time: 11.
21366
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.881Z - [Messenger] Received message, length: 895604
21367
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.881Z - Done responding to the client Project graph updated
21368
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.881Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 6. Response time: 14.
21369
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.882Z - [Messenger] Received message, length: 895597
21370
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.889Z - [Messenger] Sending message type: PRE_TASKS_EXECUTION
21371
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.889Z - [Messenger] Message sent
21372
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.889Z - Received raw message of length 2164
21373
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.889Z - Received json message of type PRE_TASKS_EXECUTION
21374
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.889Z - Serializing response for PRE_TASKS_EXECUTION message in json mode
21375
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.889Z - Responding to PRE_TASKS_EXECUTION message
21376
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.889Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution
21377
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.889Z - Done responding to the client handleRunPreTasksExecution
21378
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.889Z - Handled json message PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0.
21379
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.889Z - [Messenger] Received message, length: 2
21380
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.890Z - Time taken for 'preTasksExecution' 0.11675000000104774ms
21381
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.984Z - [Messenger] Sending message type: HASH_TASKS
21382
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:05.984Z - [Messenger] Message sent
21383
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.993Z - Received raw message of length 40266
21384
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:05.994Z - Received json message of type HASH_TASKS
21385
+ DEBUG nx::native::watch::watcher: force-flush END count=0 replies=1 elapsed=53.214875ms
21386
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.048Z - Reusing in-memory cached project graph because no files changed.
21387
+ DEBUG nx::native::tasks::hash_planner: get_plans_internal COMPLETED in 10.13275ms - processed 6 tasks (setup: 5.321583ms, parallel_planning: 4.8015ms, pool: 1544 unique instructions)
21388
+ DEBUG nx::native::tasks::hashers::hash_workspace_files: Hashing workspace fileset: Adding "8520130568453209191" (".gitignore") to hash
21389
+ DEBUG nx::native::tasks::hashers::hash_workspace_files: Hashing workspace fileset: Adding "2425668806101952406" ("nx.json") to hash
21390
+ DEBUG nx::native::tasks::hashers::hash_workspace_files: Hashing workspace fileset: Hash Value: "17385814077483807182"
21391
+ DEBUG nx::native::tasks::task_hasher: hash_plans COMPLETED in 26.515167ms - processed 6 plans (setup: 411.542µs, hashing: 26.101833ms, assembly: 17.043333ms)
21392
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.101Z - Serializing response for HASH_TASKS message in json mode
21393
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.103Z - Responding to HASH_TASKS message
21394
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.103Z - [REQUEST]: Responding to the client. handleHashTasks
21395
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.105Z - Done responding to the client handleHashTasks
21396
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.105Z - Handled json message HASH_TASKS. Handling time: 107. Response time: 4.
21397
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.105Z - [Messenger] Received message, length: 446772
21398
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.162Z - [Messenger] Sending message type: GET_ESTIMATED_TASK_TIMINGS
21399
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.162Z - [Messenger] Message sent
21400
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.162Z - Received raw message of length 510
21401
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.162Z - Received json message of type GET_ESTIMATED_TASK_TIMINGS
21402
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.168Z - Serializing response for GET_ESTIMATED_TASK_TIMINGS message in json mode
21403
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.168Z - Responding to GET_ESTIMATED_TASK_TIMINGS message
21404
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.168Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings
21405
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.168Z - Done responding to the client handleGetEstimatedTaskTimings
21406
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.168Z - Handled json message GET_ESTIMATED_TASK_TIMINGS. Handling time: 6. Response time: 0.
21407
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.168Z - [Messenger] Received message, length: 304
21408
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.178Z - [Messenger] Sending message type: OUTPUTS_HASHES_MATCH_BATCH
21409
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.178Z - [Messenger] Message sent
21410
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.179Z - Received raw message of length 267
21411
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.179Z - Received json message of type OUTPUTS_HASHES_MATCH_BATCH
21412
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.180Z - Serializing response for OUTPUTS_HASHES_MATCH_BATCH message in json mode
21413
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.180Z - Responding to OUTPUTS_HASHES_MATCH_BATCH message
21414
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.180Z - [REQUEST]: Responding to the client. outputsHashesMatchBatch
21415
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.180Z - Done responding to the client outputsHashesMatchBatch
21416
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.180Z - [Messenger] Received message, length: 19
21417
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.180Z - Handled json message OUTPUTS_HASHES_MATCH_BATCH. Handling time: 1. Response time: 0.
21418
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.199Z - [Messenger] Sending message type: RECORD_OUTPUTS_HASH_BATCH
21419
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.199Z - [Messenger] Message sent
21420
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.199Z - Received raw message of length 266
21421
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.200Z - Received json message of type RECORD_OUTPUTS_HASH_BATCH
21422
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.208Z - Serializing response for RECORD_OUTPUTS_HASH_BATCH message in json mode
21423
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.208Z - Responding to RECORD_OUTPUTS_HASH_BATCH message
21424
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.208Z - [REQUEST]: Responding to the client. recordOutputsHashBatch
21425
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.208Z - Done responding to the client recordOutputsHashBatch
21426
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.208Z - Handled json message RECORD_OUTPUTS_HASH_BATCH. Handling time: 8. Response time: 0.
21427
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.208Z - [Messenger] Received message, length: 2
21428
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=16
21429
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-icons/fesm2022/africanies-africanies-icons.mjs.map
21430
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-icons/package.json
21431
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-storage/fesm2022/africanies-africanies-storage.mjs.map
21432
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-models/README.md
21433
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-storage/fesm2022/africanies-africanies-storage.mjs
21434
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-models/types/africanies-africanies-models.d.ts
21435
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-models/fesm2022/africanies-africanies-models.mjs.map
21436
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-storage/package.json
21437
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-icons/README.md
21438
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-icons/assets/icons.sprite.svg
21439
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-models/fesm2022/africanies-africanies-models.mjs
21440
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-models/package.json
21441
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-icons/fesm2022/africanies-africanies-icons.mjs
21442
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-storage/README.md
21443
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-storage/types/africanies-africanies-storage.d.ts
21444
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-icons/types/africanies-africanies-icons.d.ts
21445
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.302Z - [WATCHER]: Processing file changes in outputs
21446
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=3
21447
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-storage/README.md
21448
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-models/README.md
21449
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-icons/README.md
21450
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.307Z - [WATCHER]: 0 file(s) created or restored, 3 file(s) modified, 0 file(s) deleted
21451
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.307Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 3 events: update:dist/libs/africanies-storage/README.md, update:dist/libs/africanies-models/README.md, update:dist/libs/africanies-icons/README.md
21452
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.308Z - [WATCHER]: File changes detected:
21453
+ Created:
21454
+ (none)
21455
+ Updated:
21456
+ - dist/libs/africanies-storage/README.md
21457
+ - dist/libs/africanies-models/README.md
21458
+ - dist/libs/africanies-icons/README.md
21459
+ Deleted:
21460
+ (none)
21461
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.309Z - [SYNC]: clearing sync generators cache due to file changes
21462
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.309Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
21463
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.309Z - [REQUEST]: dist/libs/africanies-storage/README.md,dist/libs/africanies-models/README.md,dist/libs/africanies-icons/README.md
21464
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.309Z - [REQUEST]:
21465
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
21466
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61796, socket: /private/tmp/plugin60459-12-89670.194083.sock)
21467
+ [plugin-client] restarting worker for "nx/core/package-json"
21468
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61797, socket: /private/tmp/plugin60459-13-89671.293.sock)
21469
+ [plugin-client] restarting worker for "nx/core/project-json"
21470
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61798, socket: /private/tmp/plugin60459-14-89671.889125.sock)
21471
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.313Z - Time taken for 'hash changed files from watcher' 1.3175409999967087ms
21472
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61796) listening on /private/tmp/plugin60459-12-89670.194083.sock
21473
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61796)
21474
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.630Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 318.4628329999978ms
21475
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61796) connected
21476
+ Time taken for 'plugin worker 61796 code loading' 250.339791ms
21477
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61796) loaded successfully
21478
+ [plugin-worker] "nx/core/project-json" (pid: 61798) listening on /private/tmp/plugin60459-14-89671.889125.sock
21479
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61798)
21480
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.712Z - Time taken for 'start-plugin-worker:nx/core/project-json' 398.54175000000396ms
21481
+ Time taken for 'plugin worker 61798 code loading' 314.536834ms
21482
+ [plugin-worker] "nx/core/project-json" (pid: 61798) connected
21483
+ [plugin-worker] "nx/core/project-json" (pid: 61798) loaded successfully
21484
+ Time taken for 'nx/core/project-json:createNodes' 0.6119170000000054ms
21485
+ [plugin-worker] "nx/core/package-json" (pid: 61797) listening on /private/tmp/plugin60459-13-89671.293.sock
21486
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
21487
+ Time taken for 'plugin worker 61797 code loading' 365.41887499999996ms
21488
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 29.003791999999976ms
21489
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61797)
21490
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.756Z - Time taken for 'start-plugin-worker:nx/core/package-json' 443.7509160000045ms
21491
+ [plugin-worker] "nx/core/package-json" (pid: 61797) connected
21492
+ [plugin-worker] "nx/core/package-json" (pid: 61797) loaded successfully
21493
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
21494
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.818Z - Time taken for 'build-project-configs' 493.3249169999908ms
21495
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.818Z - Time taken for 'createNodes:merge' 11.72599999999511ms
21496
+ Time taken for 'build typescript dependencies' 42.588708ms
21497
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
21498
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.906Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
21499
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.906Z - [Messenger] Message sent
21500
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.911Z - [SYNC]: collect registered sync generators
21501
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.911Z - [SYNC]: project graph hash is the same, not collecting task sync generators
21502
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.911Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
21503
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.933Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
21504
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.934Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
21505
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.937Z - Responding to PROJECT_GRAPH_UPDATED message
21506
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.938Z - [REQUEST]: Responding to the client. Project graph updated
21507
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.942Z - Time taken for 'total execution time for createProjectGraph()' 102.55266599998868ms
21508
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.943Z - Time taken for 'createDependencies' 94.95133300000452ms
21509
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.943Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 94.82429199999024ms
21510
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.943Z - Time taken for 'createMetadata' 0.012667000002693385ms
21511
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.943Z - Time taken for 'serialize graph' 2.1419999999925494ms
21512
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.944Z - Time taken for 'write cache' 23.060916999995243ms
21513
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.945Z - Established a connection. Number of open connections: 4
21514
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.945Z - Received raw message of length 32
21515
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.945Z - Received json message of type GET_CONTEXT_FILE_DATA
21516
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.946Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
21517
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.954Z - Responding to GET_CONTEXT_FILE_DATA message
21518
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.954Z - [REQUEST]: Responding to the client. handleContextFileData
21519
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.954Z - Closed a connection. Number of open connections: 3
21520
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.963Z - Done responding to the client handleContextFileData
21521
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:06.963Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 17.
21522
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:06.963Z - [Messenger] Received message, length: 87191
21523
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.063Z - Done responding to the client Project graph updated
21524
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.063Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 23. Response time: 129.
21525
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:07.074Z - [Messenger] Received message, length: 895597
21526
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:07.729Z - [ProjectGraphListener] Socket closed, triggering reconnection
21527
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.729Z - Closed a connection. Number of open connections: 2
21528
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.730Z - Established a connection. Number of open connections: 3
21529
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:07.730Z - [Messenger] Setting up socket listeners
21530
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.730Z - Established a connection. Number of open connections: 4
21531
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.730Z - Closed a connection. Number of open connections: 3
21532
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:07.730Z - [Messenger] listen() complete
21533
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:07.730Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
21534
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:07.730Z - [Messenger] Message sent
21535
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.733Z - Received raw message of length 42
21536
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.734Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
21537
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
21538
+ DEBUG nx::native::watch::watcher: [create] tmp/libs/africanies-core/build/tsconfig.generated.0150da64-388e-41f4-92a7-3acd40e86e3e.json
21539
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:07.942Z - [WATCHER]: Processing file changes in outputs
21540
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.107Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
21541
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.107Z - Established a connection. Number of open connections: 4
21542
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.107Z - [Messenger] Message sent
21543
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.108Z - Received raw message of length 32
21544
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.108Z - Received json message of type GET_CONTEXT_FILE_DATA
21545
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.110Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
21546
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.110Z - Responding to GET_CONTEXT_FILE_DATA message
21547
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.110Z - [REQUEST]: Responding to the client. handleContextFileData
21548
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.111Z - Closed a connection. Number of open connections: 3
21549
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.111Z - Done responding to the client handleContextFileData
21550
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.111Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 2. Response time: 1.
21551
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.111Z - [Messenger] Received message, length: 87191
21552
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
21553
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-core/README.md
21554
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.182Z - [WATCHER]: dist/libs/africanies-core/README.md was deleted
21555
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.182Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 1 events: delete:dist/libs/africanies-core/README.md
21556
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.182Z - [WATCHER]: File changes detected:
21557
+ Created:
21558
+ (none)
21559
+ Updated:
21560
+ (none)
21561
+ Deleted:
21562
+ - dist/libs/africanies-core/README.md
21563
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=5
21564
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-core/types/africanies-africanies-core.d.ts
21565
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-core/package.json
21566
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-core/fesm2022/africanies-africanies-core.mjs
21567
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-core/fesm2022/africanies-africanies-core.mjs.map
21568
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-core/README.md
21569
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.185Z - [SYNC]: clearing sync generators cache due to file changes
21570
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.185Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
21571
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.186Z - [REQUEST]:
21572
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.186Z - [REQUEST]: dist/libs/africanies-core/README.md
21573
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
21574
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61829, socket: /private/tmp/plugin60459-15-91546.763375.sock)
21575
+ [plugin-client] restarting worker for "nx/core/package-json"
21576
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61830, socket: /private/tmp/plugin60459-16-91547.63125.sock)
21577
+ [plugin-client] restarting worker for "nx/core/project-json"
21578
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61831, socket: /private/tmp/plugin60459-17-91549.461.sock)
21579
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.192Z - Time taken for 'hash changed files from watcher' 2.3318750000034925ms
21580
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.193Z - [WATCHER]: Processing file changes in outputs
21581
+ [plugin-worker] "nx/core/package-json" (pid: 61830) listening on /private/tmp/plugin60459-16-91547.63125.sock
21582
+ Time taken for 'plugin worker 61830 code loading' 275.17879200000004ms
21583
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61830)
21584
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.587Z - Time taken for 'start-plugin-worker:nx/core/package-json' 398.8869169999962ms
21585
+ [plugin-worker] "nx/core/package-json" (pid: 61830) connected
21586
+ [plugin-worker] "nx/core/package-json" (pid: 61830) loaded successfully
21587
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61829) listening on /private/tmp/plugin60459-15-91546.763375.sock
21588
+ Time taken for 'plugin worker 61829 code loading' 306.349958ms
21589
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61829)
21590
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.620Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 432.74779199999466ms
21591
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61829) connected
21592
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
21593
+ [plugin-worker] "nx/core/project-json" (pid: 61831) listening on /private/tmp/plugin60459-17-91549.461.sock
21594
+ Time taken for 'plugin worker 61831 code loading' 333.25245800000005ms
21595
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61831)
21596
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.655Z - Time taken for 'start-plugin-worker:nx/core/project-json' 464.17541700000584ms
21597
+ [plugin-worker] "nx/core/project-json" (pid: 61831) connected
21598
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61829) loaded successfully
21599
+ [plugin-worker] "nx/core/project-json" (pid: 61831) loaded successfully
21600
+ Time taken for 'nx/core/project-json:createNodes' 3.990292000000011ms
21601
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
21602
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.692Z - Closed a connection. Number of open connections: 2
21603
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.691Z - [ProjectGraphListener] Socket closed, triggering reconnection
21604
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.696Z - [Messenger] Setting up socket listeners
21605
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.696Z - [Messenger] listen() complete
21606
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.696Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
21607
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.697Z - Established a connection. Number of open connections: 3
21608
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.697Z - [Messenger] Message sent
21609
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.697Z - Established a connection. Number of open connections: 4
21610
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.697Z - Closed a connection. Number of open connections: 3
21611
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.699Z - Received raw message of length 42
21612
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.699Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
21613
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 36.38383299999998ms
21614
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.773Z - Time taken for 'build-project-configs' 574.7323329999927ms
21615
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.774Z - Time taken for 'createNodes:merge' 3.326874999998836ms
21616
+ Time taken for 'build typescript dependencies' 0.12704199999996035ms
21617
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
21618
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.798Z - [SYNC]: collect registered sync generators
21619
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.799Z - [SYNC]: project graph hash is the same, not collecting task sync generators
21620
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.799Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
21621
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.839Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
21622
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.840Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
21623
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.846Z - Responding to PROJECT_GRAPH_UPDATED message
21624
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.846Z - [REQUEST]: Responding to the client. Project graph updated
21625
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.852Z - Time taken for 'total execution time for createProjectGraph()' 31.913375000003725ms
21626
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.853Z - Time taken for 'createDependencies' 24.860874999998487ms
21627
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.853Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 24.640208999990136ms
21628
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.853Z - Time taken for 'createMetadata' 0.026249999995343387ms
21629
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.853Z - Time taken for 'serialize graph' 3.134541999999783ms
21630
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.853Z - Time taken for 'write cache' 39.9761659999931ms
21631
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.860Z - Done responding to the client Project graph updated
21632
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:08.860Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 41. Response time: 20.
21633
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:08.860Z - [Messenger] Received message, length: 895597
21634
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:09.876Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
21635
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.876Z - Established a connection. Number of open connections: 4
21636
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:09.876Z - [Messenger] Message sent
21637
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.878Z - Received raw message of length 32
21638
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.878Z - Received json message of type GET_CONTEXT_FILE_DATA
21639
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.879Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
21640
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.879Z - Responding to GET_CONTEXT_FILE_DATA message
21641
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.879Z - [REQUEST]: Responding to the client. handleContextFileData
21642
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.880Z - Closed a connection. Number of open connections: 3
21643
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.880Z - Done responding to the client handleContextFileData
21644
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:09.880Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 1.
21645
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:09.880Z - [Messenger] Received message, length: 87191
21646
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:10.568Z - [ProjectGraphListener] Socket closed, triggering reconnection
21647
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.569Z - Closed a connection. Number of open connections: 2
21648
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:10.571Z - [Messenger] Setting up socket listeners
21649
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:10.571Z - [Messenger] listen() complete
21650
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:10.571Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
21651
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:10.571Z - [Messenger] Message sent
21652
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.574Z - Established a connection. Number of open connections: 3
21653
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.575Z - Established a connection. Number of open connections: 4
21654
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.575Z - Closed a connection. Number of open connections: 3
21655
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.575Z - Received raw message of length 42
21656
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.575Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
21657
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:10.891Z - [Messenger] Sending message type: RECORD_OUTPUTS_HASH_BATCH
21658
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:10.891Z - [Messenger] Message sent
21659
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.891Z - Received raw message of length 117
21660
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.891Z - Received json message of type RECORD_OUTPUTS_HASH_BATCH
21661
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.895Z - Serializing response for RECORD_OUTPUTS_HASH_BATCH message in json mode
21662
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.895Z - Responding to RECORD_OUTPUTS_HASH_BATCH message
21663
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.895Z - [REQUEST]: Responding to the client. recordOutputsHashBatch
21664
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.895Z - Done responding to the client recordOutputsHashBatch
21665
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:10.895Z - Handled json message RECORD_OUTPUTS_HASH_BATCH. Handling time: 4. Response time: 0.
21666
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:10.895Z - [Messenger] Received message, length: 2
21667
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=2
21668
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=6
21669
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-core/README.md
21670
+ DEBUG nx::native::watch::watcher: [update] .nx/cache/17491371155400585077/dist/libs/africanies-core/README.md
21671
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-core/types/africanies-africanies-core.d.ts
21672
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-core/fesm2022/africanies-africanies-core.mjs.map
21673
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-core/fesm2022/africanies-africanies-core.mjs
21674
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-core/package.json
21675
+ DEBUG nx::native::watch::watcher: [delete] tmp/libs/africanies-core/build/tsconfig.generated.0150da64-388e-41f4-92a7-3acd40e86e3e.json
21676
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-core/README.md
21677
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.000Z - [WATCHER]: Processing file changes in outputs
21678
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.000Z - [WATCHER]: 0 file(s) created or restored, 2 file(s) modified, 0 file(s) deleted
21679
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.000Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 2 events: update:dist/libs/africanies-core/README.md, update:.nx/cache/17491371155400585077/dist/libs/africanies-core/README.md
21680
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.001Z - [WATCHER]: File changes detected:
21681
+ Created:
21682
+ (none)
21683
+ Updated:
21684
+ - dist/libs/africanies-core/README.md
21685
+ - .nx/cache/17491371155400585077/dist/libs/africanies-core/README.md
21686
+ Deleted:
21687
+ (none)
21688
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.002Z - [SYNC]: clearing sync generators cache due to file changes
21689
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.002Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
21690
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.002Z - [REQUEST]: .nx/cache/17491371155400585077/dist/libs/africanies-core/README.md,dist/libs/africanies-core/README.md
21691
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.002Z - [REQUEST]:
21692
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
21693
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61854, socket: /private/tmp/plugin60459-18-94362.611792.sock)
21694
+ [plugin-client] restarting worker for "nx/core/package-json"
21695
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61855, socket: /private/tmp/plugin60459-19-94363.318542.sock)
21696
+ [plugin-client] restarting worker for "nx/core/project-json"
21697
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61856, socket: /private/tmp/plugin60459-20-94364.161542.sock)
21698
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.006Z - Time taken for 'hash changed files from watcher' 1.22225000000617ms
21699
+ [plugin-worker] "nx/core/project-json" (pid: 61856) listening on /private/tmp/plugin60459-20-94364.161542.sock
21700
+ [plugin-worker] "nx/core/package-json" (pid: 61855) listening on /private/tmp/plugin60459-19-94363.318542.sock
21701
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61854) listening on /private/tmp/plugin60459-18-94362.611792.sock
21702
+ Time taken for 'plugin worker 61854 code loading' 160.369417ms
21703
+ Time taken for 'plugin worker 61855 code loading' 165.079209ms
21704
+ Time taken for 'plugin worker 61856 code loading' 162.27474999999998ms
21705
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61854)
21706
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61855)
21707
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61856)
21708
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.213Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 209.57316700000956ms
21709
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.213Z - Time taken for 'start-plugin-worker:nx/core/package-json' 209.00954199999978ms
21710
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.213Z - Time taken for 'start-plugin-worker:nx/core/project-json' 208.3809590000019ms
21711
+ [plugin-worker] "nx/core/package-json" (pid: 61855) connected
21712
+ [plugin-worker] "nx/core/project-json" (pid: 61856) connected
21713
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61854) connected
21714
+ [plugin-worker] "nx/core/package-json" (pid: 61855) loaded successfully
21715
+ [plugin-worker] "nx/core/project-json" (pid: 61856) loaded successfully
21716
+ Time taken for 'nx/core/project-json:createNodes' 3.0367920000000197ms
21717
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
21718
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61854) loaded successfully
21719
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
21720
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 8.28212499999998ms
21721
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.254Z - Time taken for 'build-project-configs' 241.5483749999985ms
21722
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.254Z - Time taken for 'createNodes:merge' 2.269040999992285ms
21723
+ Time taken for 'build typescript dependencies' 3.7751250000000027ms
21724
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
21725
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.272Z - [SYNC]: collect registered sync generators
21726
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.273Z - [SYNC]: project graph hash is the same, not collecting task sync generators
21727
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.273Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
21728
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.285Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
21729
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.286Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
21730
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.289Z - Responding to PROJECT_GRAPH_UPDATED message
21731
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.290Z - [REQUEST]: Responding to the client. Project graph updated
21732
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.290Z - Time taken for 'total execution time for createProjectGraph()' 24.500083999999333ms
21733
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.290Z - Time taken for 'createDependencies' 18.36458299998776ms
21734
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.290Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 18.28341599999112ms
21735
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.290Z - Time taken for 'createMetadata' 0.008333000005222857ms
21736
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.290Z - Time taken for 'serialize graph' 1.8728750000009313ms
21737
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.290Z - Time taken for 'write cache' 13.041041999997105ms
21738
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.363Z - Done responding to the client Project graph updated
21739
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:11.363Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 13. Response time: 77.
21740
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:11.364Z - [Messenger] Received message, length: 895597
21741
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:12.423Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
21742
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:12.423Z - [Messenger] Message sent
21743
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.423Z - Established a connection. Number of open connections: 4
21744
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.424Z - Received raw message of length 32
21745
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.424Z - Received json message of type GET_CONTEXT_FILE_DATA
21746
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.430Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
21747
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.431Z - Responding to GET_CONTEXT_FILE_DATA message
21748
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.432Z - [REQUEST]: Responding to the client. handleContextFileData
21749
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.439Z - Closed a connection. Number of open connections: 3
21750
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.441Z - Done responding to the client handleContextFileData
21751
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:12.441Z - [Messenger] Received message, length: 87376
21752
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:12.441Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 6. Response time: 11.
21753
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
21754
+ DEBUG nx::native::watch::watcher: [create] tmp/libs/africanies-theme/build/tsconfig.generated.7057058a-28f6-48ae-a566-fe6a457ce582.json
21755
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.157Z - [WATCHER]: Processing file changes in outputs
21756
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
21757
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-theme/README.md
21758
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=6
21759
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-theme/tailwind-preset.cjs
21760
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs
21761
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-theme/types/africanies-africanies-theme.d.ts
21762
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-theme/package.json
21763
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-theme/README.md
21764
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs.map
21765
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.544Z - [WATCHER]: Processing file changes in outputs
21766
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.547Z - [WATCHER]: dist/libs/africanies-theme/README.md was deleted
21767
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.548Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 1 events: delete:dist/libs/africanies-theme/README.md
21768
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.548Z - [WATCHER]: File changes detected:
21769
+ Created:
21770
+ (none)
21771
+ Updated:
21772
+ (none)
21773
+ Deleted:
21774
+ - dist/libs/africanies-theme/README.md
21775
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.550Z - [SYNC]: clearing sync generators cache due to file changes
21776
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.551Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
21777
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.551Z - [REQUEST]:
21778
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.551Z - [REQUEST]: dist/libs/africanies-theme/README.md
21779
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
21780
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61875, socket: /private/tmp/plugin60459-21-96912.741.sock)
21781
+ [plugin-client] restarting worker for "nx/core/package-json"
21782
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61876, socket: /private/tmp/plugin60459-22-96915.530125.sock)
21783
+ [plugin-client] restarting worker for "nx/core/project-json"
21784
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61877, socket: /private/tmp/plugin60459-23-96916.959.sock)
21785
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.562Z - Time taken for 'hash changed files from watcher' 2.2952910000021802ms
21786
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:13.619Z - [ProjectGraphListener] Socket closed, triggering reconnection
21787
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.623Z - Closed a connection. Number of open connections: 2
21788
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:13.634Z - [Messenger] Setting up socket listeners
21789
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.635Z - Established a connection. Number of open connections: 3
21790
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.635Z - Established a connection. Number of open connections: 4
21791
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.635Z - Closed a connection. Number of open connections: 3
21792
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:13.635Z - [Messenger] listen() complete
21793
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:13.635Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
21794
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:13.635Z - [Messenger] Message sent
21795
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.636Z - Received raw message of length 42
21796
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:13.637Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
21797
+ [plugin-worker] "nx/core/project-json" (pid: 61877) listening on /private/tmp/plugin60459-23-96916.959.sock
21798
+ Time taken for 'plugin worker 61877 code loading' 475.68045900000004ms
21799
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61875) listening on /private/tmp/plugin60459-21-96912.741.sock
21800
+ Time taken for 'plugin worker 61875 code loading' 474.927833ms
21801
+ [plugin-worker] "nx/core/package-json" (pid: 61876) listening on /private/tmp/plugin60459-22-96915.530125.sock
21802
+ Time taken for 'plugin worker 61876 code loading' 476.043375ms
21803
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61876)
21804
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61877)
21805
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.143Z - Time taken for 'start-plugin-worker:nx/core/package-json' 586.3056250000081ms
21806
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.143Z - Time taken for 'start-plugin-worker:nx/core/project-json' 585.7209169999987ms
21807
+ [plugin-worker] "nx/core/project-json" (pid: 61877) connected
21808
+ [plugin-worker] "nx/core/package-json" (pid: 61876) connected
21809
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61875)
21810
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.153Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 599.625291999997ms
21811
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61875) connected
21812
+ [plugin-worker] "nx/core/project-json" (pid: 61877) loaded successfully
21813
+ [plugin-worker] "nx/core/package-json" (pid: 61876) loaded successfully
21814
+ Time taken for 'nx/core/project-json:createNodes' 2.879167000000052ms
21815
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
21816
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61875) loaded successfully
21817
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
21818
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 18.256666999999993ms
21819
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.264Z - Time taken for 'build-project-configs' 699.3492499999993ms
21820
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.264Z - Time taken for 'createNodes:merge' 6.833375000001979ms
21821
+ Time taken for 'build typescript dependencies' 0.09995899999989888ms
21822
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
21823
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.308Z - [SYNC]: collect registered sync generators
21824
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.308Z - [SYNC]: project graph hash is the same, not collecting task sync generators
21825
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.308Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
21826
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.321Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
21827
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.322Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
21828
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.324Z - Responding to PROJECT_GRAPH_UPDATED message
21829
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.324Z - [REQUEST]: Responding to the client. Project graph updated
21830
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.324Z - Time taken for 'total execution time for createProjectGraph()' 48.76504100000602ms
21831
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.324Z - Time taken for 'createDependencies' 42.06995800000732ms
21832
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.324Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 41.8308750000142ms
21833
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.324Z - Time taken for 'createMetadata' 0.027084000001195818ms
21834
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.324Z - Time taken for 'serialize graph' 3.5266669999982696ms
21835
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.324Z - Time taken for 'write cache' 13.607916999986628ms
21836
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.329Z - Done responding to the client Project graph updated
21837
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.329Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 14. Response time: 7.
21838
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:14.330Z - [Messenger] Received message, length: 895597
21839
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:14.611Z - [Messenger] Sending message type: RECORD_OUTPUTS_HASH_BATCH
21840
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:14.611Z - [Messenger] Message sent
21841
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.612Z - Received raw message of length 118
21842
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.612Z - Received json message of type RECORD_OUTPUTS_HASH_BATCH
21843
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.616Z - Serializing response for RECORD_OUTPUTS_HASH_BATCH message in json mode
21844
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.616Z - Responding to RECORD_OUTPUTS_HASH_BATCH message
21845
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.616Z - [REQUEST]: Responding to the client. recordOutputsHashBatch
21846
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.616Z - Done responding to the client recordOutputsHashBatch
21847
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.616Z - Handled json message RECORD_OUTPUTS_HASH_BATCH. Handling time: 4. Response time: 0.
21848
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:14.616Z - [Messenger] Received message, length: 2
21849
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=2
21850
+ DEBUG nx::native::watch::watcher: [update] .nx/cache/12276756491762927325/dist/libs/africanies-theme/README.md
21851
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-theme/README.md
21852
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.720Z - [WATCHER]: 0 file(s) created or restored, 2 file(s) modified, 0 file(s) deleted
21853
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.720Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 2 events: update:.nx/cache/12276756491762927325/dist/libs/africanies-theme/README.md, update:dist/libs/africanies-theme/README.md
21854
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.720Z - [WATCHER]: File changes detected:
21855
+ Created:
21856
+ (none)
21857
+ Updated:
21858
+ - .nx/cache/12276756491762927325/dist/libs/africanies-theme/README.md
21859
+ - dist/libs/africanies-theme/README.md
21860
+ Deleted:
21861
+ (none)
21862
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.721Z - [SYNC]: clearing sync generators cache due to file changes
21863
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.721Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
21864
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.721Z - [REQUEST]: .nx/cache/12276756491762927325/dist/libs/africanies-theme/README.md,dist/libs/africanies-theme/README.md
21865
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.721Z - [REQUEST]:
21866
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
21867
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61895, socket: /private/tmp/plugin60459-24-98081.540375.sock)
21868
+ [plugin-client] restarting worker for "nx/core/package-json"
21869
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=7
21870
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-theme/tailwind-preset.cjs
21871
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs
21872
+ DEBUG nx::native::watch::watcher: [delete] tmp/libs/africanies-theme/build/tsconfig.generated.7057058a-28f6-48ae-a566-fe6a457ce582.json
21873
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-theme/types/africanies-africanies-theme.d.ts
21874
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-theme/package.json
21875
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-theme/fesm2022/africanies-africanies-theme.mjs.map
21876
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-theme/README.md
21877
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61896, socket: /private/tmp/plugin60459-25-98082.142792.sock)
21878
+ [plugin-client] restarting worker for "nx/core/project-json"
21879
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61897, socket: /private/tmp/plugin60459-26-98083.064958.sock)
21880
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.726Z - Time taken for 'hash changed files from watcher' 0.9627089999994496ms
21881
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.727Z - [WATCHER]: Processing file changes in outputs
21882
+ [plugin-worker] "nx/core/package-json" (pid: 61896) listening on /private/tmp/plugin60459-25-98082.142792.sock
21883
+ [plugin-worker] "nx/core/project-json" (pid: 61897) listening on /private/tmp/plugin60459-26-98083.064958.sock
21884
+ Time taken for 'plugin worker 61897 code loading' 121.87812499999998ms
21885
+ Time taken for 'plugin worker 61896 code loading' 118.811375ms
21886
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61896)
21887
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61897)
21888
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.904Z - Time taken for 'start-plugin-worker:nx/core/package-json' 180.86895799999184ms
21889
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.904Z - Time taken for 'start-plugin-worker:nx/core/project-json' 180.17920800000138ms
21890
+ [plugin-worker] "nx/core/package-json" (pid: 61896) connected
21891
+ [plugin-worker] "nx/core/project-json" (pid: 61897) connected
21892
+ [plugin-worker] "nx/core/package-json" (pid: 61896) loaded successfully
21893
+ [plugin-worker] "nx/core/project-json" (pid: 61897) loaded successfully
21894
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61895) listening on /private/tmp/plugin60459-24-98081.540375.sock
21895
+ Time taken for 'plugin worker 61895 code loading' 128.14225ms
21896
+ Time taken for 'nx/core/project-json:createNodes' 0.9359579999999994ms
21897
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
21898
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61895)
21899
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.913Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 191.02654200000688ms
21900
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61895) connected
21901
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
21902
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61895) loaded successfully
21903
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 5.973667000000006ms
21904
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.941Z - Time taken for 'build-project-configs' 213.40620800000033ms
21905
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.941Z - Time taken for 'createNodes:merge' 2.3868340000044554ms
21906
+ Time taken for 'build typescript dependencies' 3.7976670000000183ms
21907
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
21908
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.959Z - [SYNC]: collect registered sync generators
21909
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.959Z - [SYNC]: project graph hash is the same, not collecting task sync generators
21910
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.959Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
21911
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.966Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
21912
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.966Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
21913
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.969Z - Responding to PROJECT_GRAPH_UPDATED message
21914
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.969Z - [REQUEST]: Responding to the client. Project graph updated
21915
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.969Z - Time taken for 'total execution time for createProjectGraph()' 19.398499999995693ms
21916
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.969Z - Time taken for 'createDependencies' 16.291124999988824ms
21917
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.969Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 16.209499999997206ms
21918
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.969Z - Time taken for 'createMetadata' 0.009624999991501682ms
21919
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.969Z - Time taken for 'serialize graph' 1.9642080000048736ms
21920
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.969Z - Time taken for 'write cache' 7.0783749999973224ms
21921
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.972Z - Done responding to the client Project graph updated
21922
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:14.972Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 7. Response time: 6.
21923
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:14.973Z - [Messenger] Received message, length: 895597
21924
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
21925
+ DEBUG nx::native::watch::watcher: [create] tmp/libs/africanies-ui/build/tsconfig.generated.26049b29-e408-431e-98d5-4d086a0c38ea.json
21926
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.715Z - [WATCHER]: Processing file changes in outputs
21927
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=9
21928
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/assets/brand/africanies-logo.svg
21929
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/types/africanies-africanies-ui.d.ts
21930
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs
21931
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/assets/brand/africanies-logo-mini.png
21932
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/package.json
21933
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/README.md
21934
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/assets/carriers/dhl.svg
21935
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/assets/brand/africanies-logo.png
21936
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs.map
21937
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.877Z - [WATCHER]: Processing file changes in outputs
21938
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
21939
+ DEBUG nx::native::watch::watcher: [delete] dist/libs/africanies-ui/README.md
21940
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.881Z - [WATCHER]: dist/libs/africanies-ui/README.md was deleted
21941
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.881Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 1 events: delete:dist/libs/africanies-ui/README.md
21942
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.881Z - [WATCHER]: File changes detected:
21943
+ Created:
21944
+ (none)
21945
+ Updated:
21946
+ (none)
21947
+ Deleted:
21948
+ - dist/libs/africanies-ui/README.md
21949
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.882Z - [SYNC]: clearing sync generators cache due to file changes
21950
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.883Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
21951
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.883Z - [REQUEST]:
21952
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.883Z - [REQUEST]: dist/libs/africanies-ui/README.md
21953
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
21954
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61898, socket: /private/tmp/plugin60459-27-99243.501583.sock)
21955
+ [plugin-client] restarting worker for "nx/core/package-json"
21956
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61899, socket: /private/tmp/plugin60459-28-99244.24325.sock)
21957
+ [plugin-client] restarting worker for "nx/core/project-json"
21958
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61900, socket: /private/tmp/plugin60459-29-99244.804292.sock)
21959
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:15.886Z - Time taken for 'hash changed files from watcher' 0.8578750000015134ms
21960
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.005Z - Established a connection. Number of open connections: 4
21961
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:16.005Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
21962
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:16.007Z - [Messenger] Message sent
21963
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.007Z - Closed a connection. Number of open connections: 3
21964
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.007Z - Received raw message of length 32
21965
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.007Z - Received json message of type GET_CONTEXT_FILE_DATA
21966
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.009Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
21967
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.009Z - Responding to GET_CONTEXT_FILE_DATA message
21968
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.009Z - [REQUEST]: Responding to the client. handleContextFileData
21969
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.011Z - Done responding to the client handleContextFileData
21970
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.011Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 2.
21971
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:16.011Z - [Messenger] Received message, length: 87563
21972
+ [plugin-worker] "nx/core/project-json" (pid: 61900) listening on /private/tmp/plugin60459-29-99244.804292.sock
21973
+ Time taken for 'plugin worker 61900 code loading' 228.44591699999998ms
21974
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61900)
21975
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.167Z - Time taken for 'start-plugin-worker:nx/core/project-json' 281.2670829999988ms
21976
+ [plugin-worker] "nx/core/project-json" (pid: 61900) connected
21977
+ [plugin-worker] "nx/core/project-json" (pid: 61900) loaded successfully
21978
+ Time taken for 'nx/core/project-json:createNodes' 1.0100000000000477ms
21979
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
21980
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61898) listening on /private/tmp/plugin60459-27-99243.501583.sock
21981
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61898)
21982
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.218Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 334.1934170000022ms
21983
+ Time taken for 'plugin worker 61898 code loading' 286.947458ms
21984
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61898) connected
21985
+ [plugin-worker] "nx/core/package-json" (pid: 61899) listening on /private/tmp/plugin60459-28-99244.24325.sock
21986
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61899)
21987
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.228Z - Time taken for 'start-plugin-worker:nx/core/package-json' 343.31445799999346ms
21988
+ Time taken for 'plugin worker 61899 code loading' 303.343292ms
21989
+ [plugin-worker] "nx/core/package-json" (pid: 61899) connected
21990
+ [plugin-worker] "nx/core/package-json" (pid: 61899) loaded successfully
21991
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61898) loaded successfully
21992
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 12.015375000000006ms
21993
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
21994
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.289Z - Time taken for 'build-project-configs' 389.1214590000018ms
21995
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.289Z - Time taken for 'createNodes:merge' 6.879249999998137ms
21996
+ Time taken for 'build typescript dependencies' 0.3640829999999937ms
21997
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
21998
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.355Z - [SYNC]: collect registered sync generators
21999
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.355Z - [SYNC]: project graph hash is the same, not collecting task sync generators
22000
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.355Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
22001
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.379Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
22002
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.379Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
22003
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.385Z - Responding to PROJECT_GRAPH_UPDATED message
22004
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.385Z - [REQUEST]: Responding to the client. Project graph updated
22005
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.386Z - Time taken for 'total execution time for createProjectGraph()' 70.73616600000241ms
22006
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.386Z - Time taken for 'createDependencies' 61.7833329999994ms
22007
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.386Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 61.676166999997804ms
22008
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.386Z - Time taken for 'createMetadata' 0.012000000002444722ms
22009
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.386Z - Time taken for 'serialize graph' 7.552874999993946ms
22010
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.386Z - Time taken for 'write cache' 23.494833999997354ms
22011
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:16.876Z - [ProjectGraphListener] Socket closed, triggering reconnection
22012
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.880Z - Socket write error (client likely disconnected): write EPIPE
22013
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.880Z - Done responding to the client Project graph updated
22014
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.881Z - Socket error: write EPIPE
22015
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.882Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 24. Response time: 503.
22016
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.883Z - Closed a connection. Number of open connections: 2
22017
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.887Z - Established a connection. Number of open connections: 3
22018
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:16.887Z - [Messenger] Setting up socket listeners
22019
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:16.887Z - [Messenger] listen() complete
22020
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:16.887Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
22021
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:16.887Z - [Messenger] Message sent
22022
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.890Z - Closed a connection. Number of open connections: 2
22023
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.892Z - Established a connection. Number of open connections: 3
22024
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.908Z - Received raw message of length 42
22025
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:16.908Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
22026
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=1
22027
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-ui/types/africanies-africanies-ui.d.ts
22028
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.134Z - [WATCHER]: Processing file changes in outputs
22029
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=2
22030
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs
22031
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs.map
22032
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.341Z - [WATCHER]: Processing file changes in outputs
22033
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.552Z - [Messenger] Sending message type: RECORD_OUTPUTS_HASH_BATCH
22034
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.552Z - [Messenger] Message sent
22035
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.553Z - Received raw message of length 114
22036
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.553Z - Received json message of type RECORD_OUTPUTS_HASH_BATCH
22037
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.558Z - Serializing response for RECORD_OUTPUTS_HASH_BATCH message in json mode
22038
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.558Z - Responding to RECORD_OUTPUTS_HASH_BATCH message
22039
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.558Z - [REQUEST]: Responding to the client. recordOutputsHashBatch
22040
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.558Z - Done responding to the client recordOutputsHashBatch
22041
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.558Z - Handled json message RECORD_OUTPUTS_HASH_BATCH. Handling time: 5. Response time: 0.
22042
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.558Z - [Messenger] Received message, length: 2
22043
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.567Z - [Messenger] Sending message type: RECORD_TASK_RUNS
22044
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.568Z - [Messenger] Message sent
22045
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.568Z - Received raw message of length 1279
22046
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.568Z - Received json message of type RECORD_TASK_RUNS
22047
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.573Z - Serializing response for RECORD_TASK_RUNS message in json mode
22048
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.573Z - Responding to RECORD_TASK_RUNS message
22049
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.573Z - [REQUEST]: Responding to the client. handleRecordTaskRuns
22050
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.573Z - Done responding to the client handleRecordTaskRuns
22051
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.573Z - [Messenger] Received message, length: 4
22052
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.573Z - Handled json message RECORD_TASK_RUNS. Handling time: 5. Response time: 0.
22053
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.573Z - [Messenger] Sending message type: GET_FLAKY_TASKS
22054
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.573Z - [Messenger] Message sent
22055
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.573Z - Received raw message of length 173
22056
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.573Z - Received json message of type GET_FLAKY_TASKS
22057
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.575Z - Serializing response for GET_FLAKY_TASKS message in json mode
22058
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.575Z - Responding to GET_FLAKY_TASKS message
22059
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.575Z - [REQUEST]: Responding to the client. handleGetFlakyTasks
22060
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.575Z - Done responding to the client handleGetFlakyTasks
22061
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.575Z - Handled json message GET_FLAKY_TASKS. Handling time: 1. Response time: 0.
22062
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:20.575Z - [Messenger] Received message, length: 2
22063
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=2
22064
+ DEBUG nx::native::watch::watcher: [update] .nx/cache/3314955264390318442/dist/libs/africanies-ui/README.md
22065
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-ui/README.md
22066
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.663Z - [WATCHER]: 0 file(s) created or restored, 2 file(s) modified, 0 file(s) deleted
22067
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.663Z - [WATCHER]: [watcher] routeWorkspaceChanges batch: 2 events: update:.nx/cache/3314955264390318442/dist/libs/africanies-ui/README.md, update:dist/libs/africanies-ui/README.md
22068
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.663Z - [WATCHER]: File changes detected:
22069
+ Created:
22070
+ (none)
22071
+ Updated:
22072
+ - .nx/cache/3314955264390318442/dist/libs/africanies-ui/README.md
22073
+ - dist/libs/africanies-ui/README.md
22074
+ Deleted:
22075
+ (none)
22076
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.665Z - [SYNC]: clearing sync generators cache due to file changes
22077
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.666Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
22078
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.667Z - [REQUEST]: dist/libs/africanies-ui/README.md,.nx/cache/3314955264390318442/dist/libs/africanies-ui/README.md
22079
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.667Z - [REQUEST]:
22080
+ [plugin-client] restarting worker for "nx/js/dependencies-and-lockfile"
22081
+ [isolated-plugin] spawned worker for "nx/js/dependencies-and-lockfile" (pid: 61945, socket: /private/tmp/plugin60459-30-104027.38325.sock)
22082
+ [plugin-client] restarting worker for "nx/core/package-json"
22083
+ [isolated-plugin] spawned worker for "nx/core/package-json" (pid: 61946, socket: /private/tmp/plugin60459-31-104028.64225.sock)
22084
+ [plugin-client] restarting worker for "nx/core/project-json"
22085
+ [isolated-plugin] spawned worker for "nx/core/project-json" (pid: 61947, socket: /private/tmp/plugin60459-32-104029.054208.sock)
22086
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.670Z - Time taken for 'hash changed files from watcher' 1.3585840000014286ms
22087
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=10
22088
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-ui/assets/brand/africanies-logo.svg
22089
+ DEBUG nx::native::watch::watcher: [delete] tmp/libs/africanies-ui/build/tsconfig.generated.26049b29-e408-431e-98d5-4d086a0c38ea.json
22090
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-ui/types/africanies-africanies-ui.d.ts
22091
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs
22092
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-ui/assets/brand/africanies-logo-mini.png
22093
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-ui/README.md
22094
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-ui/package.json
22095
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-ui/assets/brand/africanies-logo.png
22096
+ DEBUG nx::native::watch::watcher: [update] dist/libs/africanies-ui/assets/carriers/dhl.svg
22097
+ DEBUG nx::native::watch::watcher: [create] dist/libs/africanies-ui/fesm2022/africanies-africanies-ui.mjs.map
22098
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:20.676Z - [WATCHER]: Processing file changes in outputs
22099
+ [plugin-worker] "nx/core/project-json" (pid: 61947) listening on /private/tmp/plugin60459-32-104029.054208.sock
22100
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61945) listening on /private/tmp/plugin60459-30-104027.38325.sock
22101
+ Time taken for 'plugin worker 61947 code loading' 386.246084ms
22102
+ Time taken for 'plugin worker 61945 code loading' 386.891584ms
22103
+ [plugin-worker] "nx/core/package-json" (pid: 61946) listening on /private/tmp/plugin60459-31-104028.64225.sock
22104
+ Time taken for 'plugin worker 61946 code loading' 385.98558299999996ms
22105
+ [isolated-plugin] connected to worker for "nx/js/dependencies-and-lockfile" (pid: 61945)
22106
+ [isolated-plugin] connected to worker for "nx/core/package-json" (pid: 61946)
22107
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.113Z - Time taken for 'start-plugin-worker:nx/js/dependencies-and-lockfile' 444.695458999995ms
22108
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.113Z - Time taken for 'start-plugin-worker:nx/core/package-json' 443.7487919999985ms
22109
+ [isolated-plugin] connected to worker for "nx/core/project-json" (pid: 61947)
22110
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.113Z - Time taken for 'start-plugin-worker:nx/core/project-json' 443.7150830000028ms
22111
+ [plugin-worker] "nx/core/package-json" (pid: 61946) connected
22112
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61945) connected
22113
+ [plugin-worker] "nx/core/project-json" (pid: 61947) connected
22114
+ [plugin-worker] "nx/core/project-json" (pid: 61947) loaded successfully
22115
+ [plugin-worker] "nx/core/package-json" (pid: 61946) loaded successfully
22116
+ Time taken for 'nx/core/project-json:createNodes' 3.682083000000034ms
22117
+ [isolated-plugin] shutting down worker for "nx/core/project-json" after createNodes
22118
+ [plugin-worker] "nx/js/dependencies-and-lockfile" (pid: 61945) loaded successfully
22119
+ [isolated-plugin] shutting down worker for "nx/core/package-json" after createNodes
22120
+ Time taken for 'nx/js/dependencies-and-lockfile:createNodes' 10.301125000000013ms
22121
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.168Z - Time taken for 'build-project-configs' 493.3096249999944ms
22122
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.168Z - Time taken for 'createNodes:merge' 2.3952080000017304ms
22123
+ Time taken for 'build typescript dependencies' 4.018790999999965ms
22124
+ [isolated-plugin] shutting down worker for "nx/js/dependencies-and-lockfile" after createDependencies
22125
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.189Z - [SYNC]: collect registered sync generators
22126
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.190Z - [SYNC]: project graph hash is the same, not collecting task sync generators
22127
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.190Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
22128
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.203Z - Wrote project graph cache to /Applications/AngularJS/angular-web-sdk/.nx/workspace-data/project-graph.json
22129
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.203Z - Serializing response for PROJECT_GRAPH_UPDATED message in json mode
22130
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.206Z - Responding to PROJECT_GRAPH_UPDATED message
22131
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.206Z - [REQUEST]: Responding to the client. Project graph updated
22132
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.207Z - Time taken for 'total execution time for createProjectGraph()' 24.86699999999837ms
22133
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.207Z - Time taken for 'createDependencies' 20.231207999997423ms
22134
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.207Z - Time taken for 'nx/js/dependencies-and-lockfile:createDependencies' 20.134416000000783ms
22135
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.207Z - Time taken for 'createMetadata' 0.0050829999963752925ms
22136
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.207Z - Time taken for 'serialize graph' 2.1555420000076992ms
22137
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.207Z - Time taken for 'write cache' 13.769333999996888ms
22138
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.209Z - Done responding to the client Project graph updated
22139
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:21.209Z - [Messenger] Received message, length: 895597
22140
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:21.209Z - Handled json message PROJECT_GRAPH_UPDATED. Handling time: 13. Response time: 6.
22141
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:22.225Z - [Messenger] Sending message type: GET_CONTEXT_FILE_DATA
22142
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.225Z - Established a connection. Number of open connections: 4
22143
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:22.225Z - [Messenger] Message sent
22144
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.225Z - Closed a connection. Number of open connections: 3
22145
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.225Z - Received raw message of length 32
22146
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.225Z - Received json message of type GET_CONTEXT_FILE_DATA
22147
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.229Z - Serializing response for GET_CONTEXT_FILE_DATA message in json mode
22148
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.230Z - Responding to GET_CONTEXT_FILE_DATA message
22149
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.230Z - [REQUEST]: Responding to the client. handleContextFileData
22150
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.235Z - Done responding to the client handleContextFileData
22151
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:22.235Z - [Messenger] Received message, length: 87743
22152
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.235Z - Handled json message GET_CONTEXT_FILE_DATA. Handling time: 3. Response time: 6.
22153
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:22.975Z - [ProjectGraphListener] Socket closed, triggering reconnection
22154
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.975Z - Closed a connection. Number of open connections: 2
22155
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.976Z - Established a connection. Number of open connections: 3
22156
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:22.976Z - [Messenger] Setting up socket listeners
22157
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:22.976Z - [Messenger] listen() complete
22158
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.976Z - Closed a connection. Number of open connections: 2
22159
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:22.976Z - [Messenger] Sending message type: REGISTER_PROJECT_GRAPH_LISTENER
22160
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:22.976Z - [Messenger] Message sent
22161
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.976Z - Established a connection. Number of open connections: 3
22162
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.977Z - Received raw message of length 42
22163
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:22.977Z - Received json message of type REGISTER_PROJECT_GRAPH_LISTENER
22164
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.095Z - Established a connection. Number of open connections: 4
22165
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.096Z - Closed a connection. Number of open connections: 3
22166
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:24.096Z - [Messenger] Sending message type: GET_CONFIGURE_AI_AGENTS_STATUS
22167
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:24.096Z - [Messenger] Message sent
22168
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.098Z - Received raw message of length 41
22169
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.098Z - Received json message of type GET_CONFIGURE_AI_AGENTS_STATUS
22170
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.098Z - [AI-AGENTS]: Returning cached agent configuration status
22171
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.098Z - Serializing response for GET_CONFIGURE_AI_AGENTS_STATUS message in json mode
22172
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.098Z - Responding to GET_CONFIGURE_AI_AGENTS_STATUS message
22173
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.099Z - [REQUEST]: Responding to the client. handleGetConfigureAiAgentsStatus
22174
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.099Z - Done responding to the client handleGetConfigureAiAgentsStatus
22175
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.099Z - Handled json message GET_CONFIGURE_AI_AGENTS_STATUS. Handling time: 0. Response time: 1.
22176
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:24.100Z - [Messenger] Received message, length: 341
22177
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:24.111Z - [Messenger] Sending message type: POST_TASKS_EXECUTION
22178
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:24.123Z - [Messenger] Message sent
22179
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.124Z - Received raw message of length 481001
22180
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.127Z - Received json message of type POST_TASKS_EXECUTION
22181
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.127Z - Serializing response for POST_TASKS_EXECUTION message in json mode
22182
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.127Z - Responding to POST_TASKS_EXECUTION message
22183
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.127Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution
22184
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.127Z - Done responding to the client handleRunPostTasksExecution
22185
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.127Z - Handled json message POST_TASKS_EXECUTION. Handling time: 0. Response time: 0.
22186
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.127Z - Time taken for 'postTasksExecution' 0.20833300000231247ms
22187
+ [NX v23.1.1 Daemon Client] - 2026-08-27T08:54:24.127Z - [Messenger] Received message, length: 4
22188
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:54:24.142Z - Closed a connection. Number of open connections: 2
22189
+ DEBUG nx::native::watch::watcher: idle-window emitting events count=17
22190
+ DEBUG nx::native::watch::watcher: [update] .husky/_/h
22191
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-applypatch
22192
+ DEBUG nx::native::watch::watcher: [update] .husky/_/prepare-commit-msg
22193
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-merge-commit
22194
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-checkout
22195
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-commit
22196
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-rewrite
22197
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-push
22198
+ DEBUG nx::native::watch::watcher: [update] .husky/_/post-merge
22199
+ DEBUG nx::native::watch::watcher: [update] .husky/_/commit-msg
22200
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-commit
22201
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-auto-gc
22202
+ DEBUG nx::native::watch::watcher: [update] .husky/_/.gitignore
22203
+ DEBUG nx::native::watch::watcher: [update] .husky/_/applypatch-msg
22204
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-rebase
22205
+ DEBUG nx::native::watch::watcher: [update] .husky/_/pre-applypatch
22206
+ DEBUG nx::native::watch::watcher: [create] .husky/_/husky.sh
22207
+ [NX v23.1.1 Daemon Server] - 2026-08-27T08:55:01.118Z - [WATCHER]: Processing file changes in outputs