@testspectra/cli 1.1.7 → 1.1.8-rc.2
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.
- package/bin/.testspectra-runner.hash +1 -1
- package/bin/spectra.js +0 -0
- package/bin/testspectra-runner.exe +0 -0
- package/demo-app/assets/index-BhlW-eXG.css +1 -0
- package/demo-app/assets/index-DOtRypCa.js +154 -0
- package/demo-app/index.html +2 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/__tests__/run-e2e.test.js +270 -29
- package/dist/commands/__tests__/run.test.js +92 -16
- package/dist/commands/demo.js +17 -7
- package/dist/commands/init.d.ts +1 -1
- package/dist/commands/init.js +154 -149
- package/dist/commands/lint.d.ts +5 -0
- package/dist/commands/lint.js +55 -0
- package/dist/commands/refactor.d.ts +2 -1
- package/dist/commands/refactor.js +129 -35
- package/dist/commands/run.d.ts +2 -3
- package/dist/commands/run.js +93 -28
- package/dist/commands/skills.d.ts +9 -0
- package/dist/commands/skills.js +28 -0
- package/dist/commands/sync-types.js +1 -0
- package/dist/commands/test.d.ts +17 -0
- package/dist/commands/test.js +104 -0
- package/dist/commands/watch.js +9 -3
- package/dist/config/loader.js +1 -1
- package/dist/config/schema.d.ts +5 -114
- package/dist/config/schema.js +1 -17
- package/dist/generator/__tests__/tsconfig-isolation.test.js +6 -2
- package/dist/generator/__tests__/type-generator.test.js +1 -1
- package/dist/generator/tsconfig-generator.js +44 -16
- package/dist/generator/type-generator.d.ts +24 -1
- package/dist/generator/type-generator.js +104 -8
- package/dist/index.d.ts +1 -1
- package/dist/index.js +76 -40
- package/dist/linter/__tests__/anonymous-export.test.js +184 -0
- package/dist/linter/__tests__/component-test-imports.test.d.ts +1 -0
- package/dist/linter/__tests__/component-test-imports.test.js +115 -0
- package/dist/linter/__tests__/shared-lib-boundary.test.d.ts +1 -0
- package/dist/linter/__tests__/shared-lib-boundary.test.js +270 -0
- package/dist/linter/__tests__/spec-schema.test.d.ts +1 -0
- package/dist/linter/__tests__/spec-schema.test.js +369 -0
- package/dist/linter/__tests__/step-parity.test.d.ts +1 -0
- package/dist/linter/__tests__/step-parity.test.js +372 -0
- package/dist/linter/discovery.d.ts +30 -0
- package/dist/linter/discovery.js +249 -0
- package/dist/linter/extractor.d.ts +67 -0
- package/dist/linter/extractor.js +245 -0
- package/dist/linter/index.d.ts +7 -0
- package/dist/linter/index.js +7 -0
- package/dist/linter/parser.d.ts +24 -0
- package/dist/linter/parser.js +219 -0
- package/dist/linter/schemas/spec.schema.d.ts +83 -0
- package/dist/linter/schemas/spec.schema.js +150 -0
- package/dist/linter/schemas/suite.schema.d.ts +59 -0
- package/dist/linter/schemas/suite.schema.js +83 -0
- package/dist/linter/spec-linter.d.ts +23 -0
- package/dist/linter/spec-linter.js +630 -0
- package/dist/linter/types.d.ts +28 -0
- package/dist/linter/types.js +1 -0
- package/dist/refactor/__tests__/refactor-engine.test.js +698 -0
- package/dist/refactor/refactor-engine.d.ts +25 -0
- package/dist/refactor/refactor-engine.js +374 -42
- package/dist/reporter/semantic-formatter.js +22 -2
- package/dist/reporter/types.d.ts +1 -1
- package/dist/runner/bridge.d.ts +1 -1
- package/dist/runner/bridge.js +34 -21
- package/dist/runner/reporter.d.ts +2 -0
- package/dist/runner/reporter.js +11 -3
- package/dist/utils/__tests__/api-server.test.d.ts +1 -0
- package/dist/utils/__tests__/api-server.test.js +62 -0
- package/dist/utils/__tests__/demo-server.test.d.ts +1 -0
- package/dist/utils/__tests__/demo-server.test.js +35 -0
- package/dist/utils/api-server.d.ts +19 -0
- package/dist/utils/api-server.js +179 -0
- package/dist/utils/demo-server.d.ts +5 -0
- package/dist/utils/demo-server.js +8 -1
- package/package.json +29 -25
- package/templates/default/CLAUDE.md +16 -11
- package/templates/default/global-hooks/after/mobile.hook.ts +3 -3
- package/templates/default/global-hooks/after/web.hook.ts +3 -3
- package/templates/default/global-hooks/before/mobile.hook.ts +3 -3
- package/templates/default/global-hooks/before/web.hook.ts +3 -3
- package/templates/default/package.json +3 -3
- package/templates/default/page-objects/AuthPage/mobile.ts +5 -0
- package/templates/default/page-objects/AuthPage/web.ts +10 -0
- package/templates/default/page-objects/MatchersPage/mobile.ts +70 -46
- package/templates/default/page-objects/MatchersPage/web.ts +43 -37
- package/templates/default/page-objects/NavigationPage/mobile.ts +14 -14
- package/templates/default/page-objects/NavigationPage/web.ts +8 -8
- package/templates/default/page-objects/PlaygroundPage/mobile.ts +42 -36
- package/templates/default/page-objects/PlaygroundPage/web.ts +31 -31
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +53 -11
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +19 -12
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +31 -27
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/android.test.ts +3 -0
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/common.test.ts +3 -0
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +27 -16
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +19 -12
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +26 -24
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +30 -0
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/spec.md +22 -0
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/common.test.ts +27 -0
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/spec.md +20 -0
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/spec.md +24 -0
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/web.test.ts +26 -0
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/spec.md +37 -0
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/web.test.ts +21 -0
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/spec.md +29 -0
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/web.test.ts +16 -0
- package/templates/default/specs/ApiInterception/suite.md +10 -9
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/common.test.ts +30 -0
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/spec.md +23 -0
- package/templates/default/specs/ApiSeeding/hooks/after/common.hook.ts +16 -0
- package/templates/default/specs/ApiSeeding/hooks/before/common.hook.ts +28 -0
- package/templates/default/specs/ApiSeeding/suite.md +9 -0
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -0
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -0
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -0
- package/templates/default/specs/Authentication/suite.md +9 -0
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +9 -9
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/spec.md +17 -12
- package/templates/default/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/mobile.test.ts +17 -0
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -0
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -0
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/common.test.ts +26 -0
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/spec.md +19 -12
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +11 -11
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md +17 -12
- package/templates/default/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/common.test.ts +14 -0
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -0
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/mobile.test.ts +28 -0
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/spec.md +29 -0
- package/templates/default/specs/DeepLink/suite.md +9 -0
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +11 -11
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md +17 -12
- package/templates/default/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +29 -29
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md +19 -12
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
- package/templates/default/specs/ElementMatchers/suite.md +10 -9
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -0
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -0
- package/templates/default/specs/EnvironmentConfig/suite.md +9 -0
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/mobile.test.ts +26 -0
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/spec.md +22 -0
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/mobile.test.ts +13 -0
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/spec.md +20 -0
- package/templates/default/specs/PermissionRationale/suite.md +9 -0
- package/templates/default/specs/Playground/TC-0001-form-controls/mobile.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0001-form-controls/spec.md +18 -12
- package/templates/default/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +6 -6
- package/templates/default/specs/Playground/TC-0002-toggle-elements/spec.md +18 -12
- package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
- package/templates/default/spectra.config.ts +52 -68
- package/templates/default/support/actions/fillCredentials/mobile.action.ts +4 -4
- package/templates/default/support/actions/fillCredentials/web.action.ts +4 -4
- package/templates/default/support/actions/seedSession/mobile.action.ts +9 -0
- package/templates/default/support/actions/seedSession/web.action.ts +13 -0
- package/templates/default/support/steps/togglePlaygroundStates/mobile.step.ts +5 -5
- package/templates/default/support/steps/togglePlaygroundStates/web.step.ts +5 -5
- package/templates/default/support/steps/verifyPlaygroundState/mobile.step.ts +6 -6
- package/templates/default/support/steps/verifyPlaygroundState/web.step.ts +6 -6
- package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db +0 -0
- package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db-shm +0 -0
- package/templates/nx/.nx/workspace-data/59842386-c7c4-44ca-b2c2-20e1700bd13d.db-wal +0 -0
- package/templates/nx/.nx/workspace-data/d/daemon.log +1577 -168
- package/templates/nx/.nx/workspace-data/d/server-process.json +3 -0
- package/templates/nx/.nx/workspace-data/file-map.json +464 -0
- package/templates/nx/.nx/workspace-data/lockfile.hash +1 -0
- package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
- package/templates/nx/.nx/workspace-data/parsed-lock-file.json +13485 -0
- package/templates/nx/.nx/workspace-data/project-graph.json +14389 -0
- package/templates/nx/CLAUDE.md +10 -10
- package/templates/nx/package.json +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +27 -3
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +27 -27
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +24 -3
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +24 -24
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts +19 -19
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +17 -17
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts +11 -11
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts +11 -11
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts +3 -3
- package/templates/nx/packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -0
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -0
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -0
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts +3 -3
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts +6 -6
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts +3 -3
- package/templates/nx/packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
- package/templates/nx/pnpm-lock.yaml +6663 -6663
- package/templates/nx/pnpm-workspace.yaml +9 -9
- package/templates/nx/shared/testing/page-objects/MatchersPage/mobile.ts +33 -33
- package/templates/nx/shared/testing/page-objects/MatchersPage/web.ts +91 -37
- package/templates/nx/shared/testing/page-objects/NavigationPage/mobile.ts +5 -5
- package/templates/nx/shared/testing/page-objects/NavigationPage/web.ts +8 -8
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/mobile.ts +26 -26
- package/templates/nx/shared/testing/page-objects/PlaygroundPage/web.ts +31 -31
- package/templates/nx/shared/testing/project.json +19 -19
- package/templates/nx/shared/testing/support/actions/fillCredentials/mobile.action.ts +4 -4
- package/templates/nx/shared/testing/support/actions/fillCredentials/web.action.ts +4 -4
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts +3 -3
- package/templates/nx/shared/testing/support/steps/togglePlaygroundStates/web.step.ts +5 -5
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts +4 -4
- package/templates/nx/shared/testing/support/steps/verifyPlaygroundState/web.step.ts +6 -6
- package/templates/nx/spectra.config.ts +52 -68
- package/templates/react-component/.cursorrules +17 -0
- package/templates/react-component/.vscode/extensions.json +5 -0
- package/templates/react-component/CLAUDE.md +14 -0
- package/templates/react-component/README.md +69 -0
- package/templates/react-component/fixtures/component-mock.json +12 -0
- package/templates/react-component/global-hooks/after/web.hook.ts +3 -0
- package/templates/react-component/global-hooks/before/web.hook.ts +3 -0
- package/templates/react-component/package.json +27 -0
- package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -0
- package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -0
- package/templates/react-component/page-objects/InputComponent/web.ts +13 -0
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -0
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -0
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -0
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -0
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -0
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -0
- package/templates/react-component/specs/BadgeComponent/suite.md +12 -0
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -0
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +28 -0
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -0
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +22 -0
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -0
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -0
- package/templates/react-component/specs/ButtonComponent/suite.md +12 -0
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -0
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +28 -0
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -0
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -0
- package/templates/react-component/specs/InputComponent/suite.md +12 -0
- package/templates/react-component/spectra.config.ts +27 -0
- package/templates/react-component/src/components/Badge/Badge.tsx +60 -0
- package/templates/react-component/src/components/Button/Button.tsx +57 -0
- package/templates/react-component/src/components/Input/Input.tsx +41 -0
- package/templates/react-component/src/test-utils.tsx +23 -0
- package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -0
- package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -0
- package/templates/react-component/tsconfig.json +8 -0
- package/bin/testspectra-runner +0 -0
- package/demo-app/assets/index-DPfv5_EF.js +0 -116
- package/demo-app/assets/index-gIwu2EMV.css +0 -1
- package/dist/commands/__tests__/cloud-run.test.js +0 -93
- package/dist/commands/cloud-run.d.ts +0 -13
- package/dist/commands/cloud-run.js +0 -120
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts +0 -17
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts +0 -17
- /package/dist/{commands/__tests__/cloud-run.test.d.ts → linter/__tests__/anonymous-export.test.d.ts} +0 -0
|
@@ -1,168 +1,1577 @@
|
|
|
1
|
-
[NX Daemon Server] - 2026-09-
|
|
2
|
-
[NX Daemon Server] - 2026-09-
|
|
3
|
-
[NX Daemon Server] - 2026-09-
|
|
4
|
-
[NX Daemon Server] - 2026-09-
|
|
5
|
-
[NX Daemon Server] - 2026-09-
|
|
6
|
-
[NX Daemon Server] - 2026-09-
|
|
7
|
-
[NX Daemon Server] - 2026-09-
|
|
8
|
-
[NX Daemon Server] - 2026-09-
|
|
9
|
-
[NX Daemon Server] - 2026-09-
|
|
10
|
-
[NX Daemon Server] - 2026-09-
|
|
11
|
-
[NX Daemon Server] - 2026-09-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
[NX Daemon Server] - 2026-09-
|
|
33
|
-
[NX Daemon Server] - 2026-09-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
[NX Daemon Server] - 2026-09-
|
|
49
|
-
[NX Daemon Server] - 2026-09-
|
|
50
|
-
[NX Daemon Server] - 2026-09-
|
|
51
|
-
[NX Daemon Server] - 2026-09-
|
|
52
|
-
[NX Daemon Server] - 2026-09-
|
|
53
|
-
[NX Daemon Server] - 2026-09-
|
|
54
|
-
[NX Daemon Server] - 2026-09-
|
|
55
|
-
[NX Daemon Server] - 2026-09-
|
|
56
|
-
[NX Daemon Server] - 2026-09-
|
|
57
|
-
[NX Daemon Server] - 2026-09-
|
|
58
|
-
[NX Daemon Server] - 2026-09-
|
|
59
|
-
[NX Daemon Server] - 2026-09-
|
|
60
|
-
[NX Daemon Server] - 2026-09-
|
|
61
|
-
[NX Daemon Server] - 2026-09-
|
|
62
|
-
[NX Daemon Server] - 2026-09-
|
|
63
|
-
[NX Daemon Server] - 2026-09-
|
|
64
|
-
[NX Daemon Server] - 2026-09-
|
|
65
|
-
[NX Daemon Server] - 2026-09-
|
|
66
|
-
[NX Daemon Server] - 2026-09-
|
|
67
|
-
[NX Daemon Server] - 2026-09-
|
|
68
|
-
[NX Daemon Server] - 2026-09-
|
|
69
|
-
[NX Daemon Server] - 2026-09-
|
|
70
|
-
[NX Daemon Server] - 2026-09-
|
|
71
|
-
[NX Daemon Server] - 2026-09-
|
|
72
|
-
[NX Daemon Server] - 2026-09-
|
|
73
|
-
[NX Daemon Server] - 2026-09-
|
|
74
|
-
[NX Daemon Server] - 2026-09-
|
|
75
|
-
[NX Daemon Server] - 2026-09-
|
|
76
|
-
[NX Daemon Server] - 2026-09-
|
|
77
|
-
[NX Daemon Server] - 2026-09-
|
|
78
|
-
[NX Daemon Server] - 2026-09-
|
|
79
|
-
[NX Daemon Server] - 2026-09-
|
|
80
|
-
[NX Daemon Server] - 2026-09-
|
|
81
|
-
[NX Daemon Server] - 2026-09-
|
|
82
|
-
[NX Daemon Server] - 2026-09-
|
|
83
|
-
[NX Daemon Server] - 2026-09-
|
|
84
|
-
[NX Daemon Server] - 2026-09-
|
|
85
|
-
[NX Daemon Server] - 2026-09-
|
|
86
|
-
[NX Daemon Server] - 2026-09-
|
|
87
|
-
[NX Daemon Server] - 2026-09-
|
|
88
|
-
[NX Daemon Server] - 2026-09-
|
|
89
|
-
[NX Daemon Server] - 2026-09-
|
|
90
|
-
[NX Daemon Server] - 2026-09-
|
|
91
|
-
[NX Daemon Server] - 2026-09-
|
|
92
|
-
[NX Daemon Server] - 2026-09-
|
|
93
|
-
[NX Daemon Server] - 2026-09-
|
|
94
|
-
[NX Daemon Server] - 2026-09-
|
|
95
|
-
[NX Daemon Server] - 2026-09-
|
|
96
|
-
[NX Daemon Server] - 2026-09-
|
|
97
|
-
[NX Daemon Server] - 2026-09-
|
|
98
|
-
[NX Daemon Server] - 2026-09-
|
|
99
|
-
[NX Daemon Server] - 2026-09-
|
|
100
|
-
[NX Daemon Server] - 2026-09-
|
|
101
|
-
[NX Daemon Server] - 2026-09-
|
|
102
|
-
[NX Daemon Server] - 2026-09-
|
|
103
|
-
[NX Daemon Server] - 2026-09-
|
|
104
|
-
[NX Daemon Server] - 2026-09-
|
|
105
|
-
[NX Daemon Server] - 2026-09-
|
|
106
|
-
[NX Daemon Server] - 2026-09-
|
|
107
|
-
[NX Daemon Server] - 2026-09-
|
|
108
|
-
[NX Daemon Server] - 2026-09-
|
|
109
|
-
[NX Daemon Server] - 2026-09-
|
|
110
|
-
[NX Daemon Server] - 2026-09-
|
|
111
|
-
[NX Daemon Server] - 2026-09-
|
|
112
|
-
[NX Daemon Server] - 2026-09-
|
|
113
|
-
[NX Daemon Server] - 2026-09-
|
|
114
|
-
[NX Daemon Server] - 2026-09-
|
|
115
|
-
[NX Daemon Server] - 2026-09-
|
|
116
|
-
[NX Daemon Server] - 2026-09-
|
|
117
|
-
[NX Daemon Server] - 2026-09-
|
|
118
|
-
[NX Daemon Server] - 2026-09-
|
|
119
|
-
[NX Daemon Server] - 2026-09-
|
|
120
|
-
[NX Daemon Server] - 2026-09-
|
|
121
|
-
[NX Daemon Server] - 2026-09-
|
|
122
|
-
[NX Daemon Server] - 2026-09-
|
|
123
|
-
[NX Daemon Server] - 2026-09-
|
|
124
|
-
[NX Daemon Server] - 2026-09-
|
|
125
|
-
[NX Daemon Server] - 2026-09-
|
|
126
|
-
[NX Daemon Server] - 2026-09-
|
|
127
|
-
[NX Daemon Server] - 2026-09-
|
|
128
|
-
[NX Daemon Server] - 2026-09-
|
|
129
|
-
[NX Daemon Server] - 2026-09-
|
|
130
|
-
[NX Daemon Server] - 2026-09-
|
|
131
|
-
[NX Daemon Server] - 2026-09-
|
|
132
|
-
[NX Daemon Server] - 2026-09-
|
|
133
|
-
[NX Daemon Server] - 2026-09-
|
|
134
|
-
[NX Daemon Server] - 2026-09-
|
|
135
|
-
[NX Daemon Server] - 2026-09-
|
|
136
|
-
[NX Daemon Server] - 2026-09-
|
|
137
|
-
[NX Daemon Server] - 2026-09-
|
|
138
|
-
[NX Daemon Server] - 2026-09-
|
|
139
|
-
[NX Daemon Server] - 2026-09-
|
|
140
|
-
[NX Daemon Server] - 2026-09-
|
|
141
|
-
[NX Daemon Server] - 2026-09-
|
|
142
|
-
[NX Daemon Server] - 2026-09-
|
|
143
|
-
[NX Daemon Server] - 2026-09-
|
|
144
|
-
[NX Daemon Server] - 2026-09-
|
|
145
|
-
[NX Daemon Server] - 2026-09-
|
|
146
|
-
[NX Daemon Server] - 2026-09-
|
|
147
|
-
[NX Daemon Server] - 2026-09-
|
|
148
|
-
[NX Daemon Server] - 2026-09-
|
|
149
|
-
[NX Daemon Server] - 2026-09-
|
|
150
|
-
[NX Daemon Server] - 2026-09-
|
|
151
|
-
[NX Daemon Server] - 2026-09-
|
|
152
|
-
[NX Daemon Server] - 2026-09-
|
|
153
|
-
[NX Daemon Server] - 2026-09-
|
|
154
|
-
[NX Daemon Server] - 2026-09-
|
|
155
|
-
[NX Daemon Server] - 2026-09-
|
|
156
|
-
[NX Daemon Server] - 2026-09-
|
|
157
|
-
[NX Daemon Server] - 2026-09-
|
|
158
|
-
[NX Daemon Server] - 2026-09-
|
|
159
|
-
[NX Daemon Server] - 2026-09-
|
|
160
|
-
[NX Daemon Server] - 2026-09-
|
|
161
|
-
[NX Daemon Server] - 2026-09-
|
|
162
|
-
[NX Daemon Server] - 2026-09-
|
|
163
|
-
[NX Daemon Server] - 2026-09-
|
|
164
|
-
[NX Daemon Server] - 2026-09-
|
|
165
|
-
[NX Daemon Server] - 2026-09-
|
|
166
|
-
[NX Daemon Server] - 2026-09-
|
|
167
|
-
[NX Daemon Server] - 2026-09-
|
|
168
|
-
[NX Daemon Server] - 2026-09-
|
|
1
|
+
[NX Daemon Server] - 2026-09-04T10:34:58.791Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
2
|
+
[NX Daemon Server] - 2026-09-04T10:34:58.795Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
3
|
+
[NX Daemon Server] - 2026-09-04T10:34:58.806Z - Established a connection. Number of open connections: 1
|
|
4
|
+
[NX Daemon Server] - 2026-09-04T10:34:58.810Z - Closed a connection. Number of open connections: 0
|
|
5
|
+
[NX Daemon Server] - 2026-09-04T10:34:58.811Z - Established a connection. Number of open connections: 1
|
|
6
|
+
[NX Daemon Server] - 2026-09-04T10:34:58.813Z - [REQUEST]: Client Request for Project Graph Received
|
|
7
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.676Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
8
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.676Z - [REQUEST]:
|
|
9
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.677Z - [REQUEST]:
|
|
10
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.684Z - Time taken for 'loadNxPlugins' 861.6469000000001ms
|
|
11
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.751Z - Time taken for 'build-project-configs' 50.13979999999992ms
|
|
12
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.758Z - [SYNC]: collect registered sync generators
|
|
13
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.759Z - [REQUEST]: Responding to the client. project-graph
|
|
14
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.760Z - Time taken for 'total for creating and serializing project graph' 946.8539999999999ms
|
|
15
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.760Z - Done responding to the client project-graph
|
|
16
|
+
[NX Daemon Server] - 2026-09-04T10:34:59.760Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 947. Response time: 1.
|
|
17
|
+
[NX Daemon Server] - 2026-09-04T10:35:00.293Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
18
|
+
[NX Daemon Server] - 2026-09-04T10:35:00.293Z - Done responding to the client handleHashTasks
|
|
19
|
+
[NX Daemon Server] - 2026-09-04T10:35:00.293Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
20
|
+
[NX Daemon Server] - 2026-09-04T10:35:00.308Z - Closed a connection. Number of open connections: 0
|
|
21
|
+
[NX Daemon Server] - 2026-09-04T10:39:26.554Z - [WATCHER]: Processing file changes in outputs
|
|
22
|
+
[NX Daemon Server] - 2026-09-04T10:39:26.619Z - [WATCHER]: Processing file changes in outputs
|
|
23
|
+
[NX Daemon Server] - 2026-09-04T10:39:29.665Z - [WATCHER]: Processing file changes in outputs
|
|
24
|
+
[NX Daemon Server] - 2026-09-04T10:39:29.879Z - [WATCHER]: Processing file changes in outputs
|
|
25
|
+
[NX Daemon Server] - 2026-09-04T10:39:30.068Z - [WATCHER]: Processing file changes in outputs
|
|
26
|
+
[NX Daemon Server] - 2026-09-04T10:39:30.314Z - [WATCHER]: Processing file changes in outputs
|
|
27
|
+
[NX Daemon Server] - 2026-09-05T09:34:46.890Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
28
|
+
[NX Daemon Server] - 2026-09-05T09:34:46.895Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
29
|
+
[NX Daemon Server] - 2026-09-05T09:34:46.898Z - Established a connection. Number of open connections: 1
|
|
30
|
+
[NX Daemon Server] - 2026-09-05T09:34:46.899Z - Established a connection. Number of open connections: 2
|
|
31
|
+
[NX Daemon Server] - 2026-09-05T09:34:46.903Z - Closed a connection. Number of open connections: 1
|
|
32
|
+
[NX Daemon Server] - 2026-09-05T09:34:46.905Z - [REQUEST]: Client Request for Project Graph Received
|
|
33
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.662Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
34
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.662Z - [REQUEST]:
|
|
35
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.662Z - [REQUEST]:
|
|
36
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.669Z - Time taken for 'loadNxPlugins' 753.9609ms
|
|
37
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.732Z - Time taken for 'build-project-configs' 39.499000000000024ms
|
|
38
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.739Z - [SYNC]: collect registered sync generators
|
|
39
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.741Z - [REQUEST]: Responding to the client. project-graph
|
|
40
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.741Z - Time taken for 'total for creating and serializing project graph' 836.0146000000001ms
|
|
41
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.741Z - Done responding to the client project-graph
|
|
42
|
+
[NX Daemon Server] - 2026-09-05T09:34:47.741Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 837. Response time: 0.
|
|
43
|
+
[NX Daemon Server] - 2026-09-05T09:34:48.175Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
44
|
+
[NX Daemon Server] - 2026-09-05T09:34:48.176Z - Done responding to the client handleHashTasks
|
|
45
|
+
[NX Daemon Server] - 2026-09-05T09:34:48.176Z - Handled HASH_TASKS. Handling time: 3. Response time: 1.
|
|
46
|
+
[NX Daemon Server] - 2026-09-05T09:34:48.190Z - Closed a connection. Number of open connections: 0
|
|
47
|
+
[NX Daemon Server] - 2026-09-05T09:35:35.664Z - [WATCHER]: Processing file changes in outputs
|
|
48
|
+
[NX Daemon Server] - 2026-09-05T09:35:35.727Z - [WATCHER]: Processing file changes in outputs
|
|
49
|
+
[NX Daemon Server] - 2026-09-05T11:26:32.805Z - [WATCHER]: Processing file changes in outputs
|
|
50
|
+
[NX Daemon Server] - 2026-09-05T11:26:32.863Z - [WATCHER]: Processing file changes in outputs
|
|
51
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.083Z - Established a connection. Number of open connections: 1
|
|
52
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.083Z - Closed a connection. Number of open connections: 0
|
|
53
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.084Z - Established a connection. Number of open connections: 1
|
|
54
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.087Z - [REQUEST]: Client Request for Project Graph Received
|
|
55
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.088Z - [REQUEST]: Responding to the client. project-graph
|
|
56
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.088Z - Time taken for 'total for creating and serializing project graph' 0.616300000809133ms
|
|
57
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.088Z - Done responding to the client project-graph
|
|
58
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.089Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
|
|
59
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.142Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
60
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.142Z - Done responding to the client handleHashTasks
|
|
61
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.143Z - Handled HASH_TASKS. Handling time: 0. Response time: 1.
|
|
62
|
+
[NX Daemon Server] - 2026-09-05T11:28:11.155Z - Closed a connection. Number of open connections: 0
|
|
63
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.577Z - Established a connection. Number of open connections: 1
|
|
64
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.578Z - Closed a connection. Number of open connections: 0
|
|
65
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.579Z - Established a connection. Number of open connections: 1
|
|
66
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.584Z - [REQUEST]: Client Request for Project Graph Received
|
|
67
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.585Z - [REQUEST]: Responding to the client. project-graph
|
|
68
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.585Z - Time taken for 'total for creating and serializing project graph' 0.6617999998852611ms
|
|
69
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.585Z - Done responding to the client project-graph
|
|
70
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.585Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
|
|
71
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.663Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
72
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.664Z - Done responding to the client handleHashTasks
|
|
73
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.664Z - Handled HASH_TASKS. Handling time: 0. Response time: 1.
|
|
74
|
+
[NX Daemon Server] - 2026-09-05T11:40:18.685Z - Closed a connection. Number of open connections: 0
|
|
75
|
+
[NX Daemon Server] - 2026-09-05T13:04:33.950Z - [WATCHER]: Processing file changes in outputs
|
|
76
|
+
[NX Daemon Server] - 2026-09-05T13:04:34.016Z - [WATCHER]: Processing file changes in outputs
|
|
77
|
+
[NX Daemon Server] - 2026-09-05T13:04:34.080Z - [WATCHER]: Processing file changes in outputs
|
|
78
|
+
[NX Daemon Server] - 2026-09-05T13:05:28.728Z - [WATCHER]: Processing file changes in outputs
|
|
79
|
+
[NX Daemon Server] - 2026-09-05T13:05:28.803Z - [WATCHER]: Processing file changes in outputs
|
|
80
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.702Z - Established a connection. Number of open connections: 1
|
|
81
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.702Z - Closed a connection. Number of open connections: 0
|
|
82
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.703Z - Established a connection. Number of open connections: 1
|
|
83
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.707Z - [REQUEST]: Client Request for Project Graph Received
|
|
84
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.708Z - [REQUEST]: Responding to the client. project-graph
|
|
85
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.709Z - Time taken for 'total for creating and serializing project graph' 1.0465999990701675ms
|
|
86
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.709Z - Done responding to the client project-graph
|
|
87
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.709Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
|
|
88
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.798Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
89
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.798Z - Done responding to the client handleHashTasks
|
|
90
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.798Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
91
|
+
[NX Daemon Server] - 2026-09-05T13:10:42.819Z - Closed a connection. Number of open connections: 0
|
|
92
|
+
[NX Daemon Server] - 2026-09-05T13:11:24.123Z - [WATCHER]: Processing file changes in outputs
|
|
93
|
+
[NX Daemon Server] - 2026-09-05T13:11:24.183Z - [WATCHER]: Processing file changes in outputs
|
|
94
|
+
[NX Daemon Server] - 2026-09-05T13:27:56.872Z - [WATCHER]: Processing file changes in outputs
|
|
95
|
+
[NX Daemon Server] - 2026-09-05T13:27:56.935Z - [WATCHER]: Processing file changes in outputs
|
|
96
|
+
[NX Daemon Server] - 2026-09-05T13:29:09.064Z - [WATCHER]: Processing file changes in outputs
|
|
97
|
+
[NX Daemon Server] - 2026-09-05T13:29:09.126Z - [WATCHER]: Processing file changes in outputs
|
|
98
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.264Z - Established a connection. Number of open connections: 1
|
|
99
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.265Z - Closed a connection. Number of open connections: 0
|
|
100
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.266Z - Established a connection. Number of open connections: 1
|
|
101
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.270Z - [REQUEST]: Client Request for Project Graph Received
|
|
102
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.271Z - [REQUEST]: Responding to the client. project-graph
|
|
103
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.272Z - Time taken for 'total for creating and serializing project graph' 1.039300000295043ms
|
|
104
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.272Z - Done responding to the client project-graph
|
|
105
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.272Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
|
|
106
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.360Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
107
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.360Z - Done responding to the client handleHashTasks
|
|
108
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.360Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
|
|
109
|
+
[NX Daemon Server] - 2026-09-05T13:30:30.381Z - Closed a connection. Number of open connections: 0
|
|
110
|
+
[NX Daemon Server] - 2026-09-05T14:52:28.689Z - [WATCHER]: Processing file changes in outputs
|
|
111
|
+
[NX Daemon Server] - 2026-09-05T14:52:28.741Z - [WATCHER]: Processing file changes in outputs
|
|
112
|
+
[NX Daemon Server] - 2026-09-05T14:53:19.311Z - [WATCHER]: Processing file changes in outputs
|
|
113
|
+
[NX Daemon Server] - 2026-09-05T14:53:19.363Z - [WATCHER]: Processing file changes in outputs
|
|
114
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.554Z - Established a connection. Number of open connections: 1
|
|
115
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.555Z - Closed a connection. Number of open connections: 0
|
|
116
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.557Z - Established a connection. Number of open connections: 1
|
|
117
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.562Z - [REQUEST]: Client Request for Project Graph Received
|
|
118
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.563Z - [REQUEST]: Responding to the client. project-graph
|
|
119
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.564Z - Time taken for 'total for creating and serializing project graph' 0.7055999971926212ms
|
|
120
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.564Z - Done responding to the client project-graph
|
|
121
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.564Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
|
|
122
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.699Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
123
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.700Z - Done responding to the client handleHashTasks
|
|
124
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.700Z - Handled HASH_TASKS. Handling time: 1. Response time: 1.
|
|
125
|
+
[NX Daemon Server] - 2026-09-05T15:05:38.725Z - Closed a connection. Number of open connections: 0
|
|
126
|
+
[NX Daemon Server] - 2026-09-05T15:22:52.169Z - [WATCHER]: Processing file changes in outputs
|
|
127
|
+
[NX Daemon Server] - 2026-09-05T15:22:52.228Z - [WATCHER]: Processing file changes in outputs
|
|
128
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.476Z - Established a connection. Number of open connections: 1
|
|
129
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.477Z - Closed a connection. Number of open connections: 0
|
|
130
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.478Z - Established a connection. Number of open connections: 1
|
|
131
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.482Z - [REQUEST]: Client Request for Project Graph Received
|
|
132
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.483Z - [REQUEST]: Responding to the client. project-graph
|
|
133
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.483Z - Time taken for 'total for creating and serializing project graph' 0.7994000017642975ms
|
|
134
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.483Z - Done responding to the client project-graph
|
|
135
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.483Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
|
|
136
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.594Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
137
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.594Z - Done responding to the client handleHashTasks
|
|
138
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.595Z - Handled HASH_TASKS. Handling time: 2. Response time: 1.
|
|
139
|
+
[NX Daemon Server] - 2026-09-05T15:31:58.619Z - Closed a connection. Number of open connections: 0
|
|
140
|
+
[NX Daemon Server] - 2026-09-05T21:12:15.474Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (sources)
|
|
141
|
+
[NX Daemon Server] - 2026-09-05T21:12:15.474Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (outputs)
|
|
142
|
+
[NX Daemon Server] - 2026-09-05T21:12:15.545Z - Server stopped because: "10800000ms of inactivity"
|
|
143
|
+
[NX Daemon Server] - 2026-09-11T03:23:46.397Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
144
|
+
[NX Daemon Server] - 2026-09-11T03:23:46.404Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
145
|
+
[NX Daemon Server] - 2026-09-11T03:23:46.414Z - Established a connection. Number of open connections: 1
|
|
146
|
+
[NX Daemon Server] - 2026-09-11T03:23:46.420Z - Closed a connection. Number of open connections: 0
|
|
147
|
+
[NX Daemon Server] - 2026-09-11T03:23:46.420Z - Established a connection. Number of open connections: 1
|
|
148
|
+
[NX Daemon Server] - 2026-09-11T03:23:46.423Z - [REQUEST]: Client Request for Project Graph Received
|
|
149
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.370Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
150
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.370Z - [REQUEST]:
|
|
151
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.370Z - [REQUEST]:
|
|
152
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.383Z - Time taken for 'loadNxPlugins' 943.9000000000001ms
|
|
153
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.451Z - Time taken for 'build-project-configs' 55.348900000000185ms
|
|
154
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.458Z - [SYNC]: collect registered sync generators
|
|
155
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.459Z - [REQUEST]: Responding to the client. project-graph
|
|
156
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.459Z - Time taken for 'total for creating and serializing project graph' 1035.8108000000002ms
|
|
157
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.459Z - Done responding to the client project-graph
|
|
158
|
+
[NX Daemon Server] - 2026-09-11T03:23:47.459Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1036. Response time: 0.
|
|
159
|
+
[NX Daemon Server] - 2026-09-11T03:23:48.096Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
160
|
+
[NX Daemon Server] - 2026-09-11T03:23:48.096Z - Done responding to the client handleHashTasks
|
|
161
|
+
[NX Daemon Server] - 2026-09-11T03:23:48.097Z - Handled HASH_TASKS. Handling time: 4. Response time: 1.
|
|
162
|
+
[NX Daemon Server] - 2026-09-11T03:23:48.114Z - Closed a connection. Number of open connections: 0
|
|
163
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.333Z - Established a connection. Number of open connections: 1
|
|
164
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.333Z - Closed a connection. Number of open connections: 0
|
|
165
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.334Z - Established a connection. Number of open connections: 1
|
|
166
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.337Z - [REQUEST]: Client Request for Project Graph Received
|
|
167
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.338Z - [REQUEST]: Responding to the client. project-graph
|
|
168
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.338Z - Time taken for 'total for creating and serializing project graph' 0.6790000000037253ms
|
|
169
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.339Z - Done responding to the client project-graph
|
|
170
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.339Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
|
|
171
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.401Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
172
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.401Z - Done responding to the client handleHashTasks
|
|
173
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.401Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
|
|
174
|
+
[NX Daemon Server] - 2026-09-11T03:34:18.412Z - Closed a connection. Number of open connections: 0
|
|
175
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.038Z - [WATCHER]: Processing file changes in outputs
|
|
176
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.092Z - [WATCHER]: tsconfig.json was modified
|
|
177
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.093Z - [WATCHER]: Processing file changes in outputs
|
|
178
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.197Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
179
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.197Z - [REQUEST]: tsconfig.json
|
|
180
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.197Z - [REQUEST]:
|
|
181
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.200Z - Time taken for 'hash changed files from watcher' 1.1243999998550862ms
|
|
182
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.206Z - Time taken for 'build-project-configs' 5.34250000002794ms
|
|
183
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.211Z - [SYNC]: collect registered sync generators
|
|
184
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.212Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
185
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.212Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
186
|
+
[NX Daemon Server] - 2026-09-11T03:42:32.212Z - Time taken for 'total execution time for createProjectGraph()' 4.654500000178814ms
|
|
187
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.288Z - [WATCHER]: Processing file changes in outputs
|
|
188
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.321Z - [WATCHER]: tsconfig.json was modified
|
|
189
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.538Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
190
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.538Z - [REQUEST]: tsconfig.json
|
|
191
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.538Z - [REQUEST]:
|
|
192
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.541Z - Time taken for 'hash changed files from watcher' 0.943900000071153ms
|
|
193
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.545Z - Time taken for 'build-project-configs' 3.4995000001508743ms
|
|
194
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.549Z - [SYNC]: collect registered sync generators
|
|
195
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.550Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
196
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.550Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
197
|
+
[NX Daemon Server] - 2026-09-11T03:42:39.550Z - Time taken for 'total execution time for createProjectGraph()' 3.531500000040978ms
|
|
198
|
+
[NX Daemon Server] - 2026-09-11T03:42:43.066Z - [WATCHER]: Processing file changes in outputs
|
|
199
|
+
[NX Daemon Server] - 2026-09-11T03:42:43.264Z - [WATCHER]: Processing file changes in outputs
|
|
200
|
+
[NX Daemon Server] - 2026-09-11T03:42:43.435Z - [WATCHER]: Processing file changes in outputs
|
|
201
|
+
[NX Daemon Server] - 2026-09-11T03:42:43.583Z - [WATCHER]: Processing file changes in outputs
|
|
202
|
+
[NX Daemon Server] - 2026-09-11T03:42:43.668Z - [WATCHER]: Processing file changes in outputs
|
|
203
|
+
[NX Daemon Server] - 2026-09-11T03:42:43.826Z - [WATCHER]: Processing file changes in outputs
|
|
204
|
+
[NX Daemon Server] - 2026-09-11T03:42:43.968Z - [WATCHER]: Processing file changes in outputs
|
|
205
|
+
[NX Daemon Server] - 2026-09-11T03:42:44.118Z - [WATCHER]: Processing file changes in outputs
|
|
206
|
+
[NX Daemon Server] - 2026-09-11T03:42:44.252Z - [WATCHER]: Processing file changes in outputs
|
|
207
|
+
[NX Daemon Server] - 2026-09-11T03:42:44.326Z - [WATCHER]: Processing file changes in outputs
|
|
208
|
+
[NX Daemon Server] - 2026-09-11T03:42:44.483Z - [WATCHER]: Processing file changes in outputs
|
|
209
|
+
[NX Daemon Server] - 2026-09-11T03:42:44.619Z - [WATCHER]: Processing file changes in outputs
|
|
210
|
+
[NX Daemon Server] - 2026-09-11T03:42:44.750Z - [WATCHER]: Processing file changes in outputs
|
|
211
|
+
[NX Daemon Server] - 2026-09-11T03:42:44.884Z - [WATCHER]: Processing file changes in outputs
|
|
212
|
+
[NX Daemon Server] - 2026-09-11T03:42:44.951Z - [WATCHER]: Processing file changes in outputs
|
|
213
|
+
[NX Daemon Server] - 2026-09-11T03:42:45.098Z - [WATCHER]: Processing file changes in outputs
|
|
214
|
+
[NX Daemon Server] - 2026-09-11T03:42:45.246Z - [WATCHER]: Processing file changes in outputs
|
|
215
|
+
[NX Daemon Server] - 2026-09-11T03:42:45.395Z - [WATCHER]: Processing file changes in outputs
|
|
216
|
+
[NX Daemon Server] - 2026-09-11T03:42:45.527Z - [WATCHER]: Processing file changes in outputs
|
|
217
|
+
[NX Daemon Server] - 2026-09-11T03:42:45.652Z - [WATCHER]: Processing file changes in outputs
|
|
218
|
+
[NX Daemon Server] - 2026-09-11T03:44:19.674Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
|
|
219
|
+
[NX Daemon Server] - 2026-09-11T03:44:19.675Z - [WATCHER]: Processing file changes in outputs
|
|
220
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.077Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
221
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.078Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
|
|
222
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.078Z - [REQUEST]:
|
|
223
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.080Z - Time taken for 'hash changed files from watcher' 0.4146000000182539ms
|
|
224
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.083Z - Time taken for 'build-project-configs' 3.162000000011176ms
|
|
225
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.087Z - [SYNC]: collect registered sync generators
|
|
226
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.088Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
227
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.088Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
228
|
+
[NX Daemon Server] - 2026-09-11T03:44:20.088Z - Time taken for 'total execution time for createProjectGraph()' 2.502600000007078ms
|
|
229
|
+
[NX Daemon Server] - 2026-09-11T03:44:27.306Z - [WATCHER]: Processing file changes in outputs
|
|
230
|
+
[NX Daemon Server] - 2026-09-11T03:44:27.307Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
|
|
231
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.110Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
232
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.110Z - [REQUEST]: shared/testing/support/actions/fillCredentials/mobile.action.ts
|
|
233
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.110Z - [REQUEST]:
|
|
234
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.113Z - Time taken for 'hash changed files from watcher' 0.267299999948591ms
|
|
235
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.116Z - Time taken for 'build-project-configs' 2.884499999927357ms
|
|
236
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.121Z - [SYNC]: collect registered sync generators
|
|
237
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.122Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
238
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.122Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
239
|
+
[NX Daemon Server] - 2026-09-11T03:44:28.122Z - Time taken for 'total execution time for createProjectGraph()' 2.5893000001087785ms
|
|
240
|
+
[NX Daemon Server] - 2026-09-11T03:44:32.553Z - [WATCHER]: shared/testing/support/steps/verifyPlaygroundState/web.step.ts was modified
|
|
241
|
+
[NX Daemon Server] - 2026-09-11T03:44:32.554Z - [WATCHER]: Processing file changes in outputs
|
|
242
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.162Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
243
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.162Z - [REQUEST]: shared/testing/support/steps/verifyPlaygroundState/web.step.ts
|
|
244
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.162Z - [REQUEST]:
|
|
245
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.163Z - Time taken for 'hash changed files from watcher' 0.3253000001423061ms
|
|
246
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.166Z - Time taken for 'build-project-configs' 1.951399999903515ms
|
|
247
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.170Z - [SYNC]: collect registered sync generators
|
|
248
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.171Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
249
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.171Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
250
|
+
[NX Daemon Server] - 2026-09-11T03:44:34.171Z - Time taken for 'total execution time for createProjectGraph()' 2.0679999999701977ms
|
|
251
|
+
[NX Daemon Server] - 2026-09-11T03:44:37.688Z - [WATCHER]: shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts was modified
|
|
252
|
+
[NX Daemon Server] - 2026-09-11T03:44:37.688Z - [WATCHER]: Processing file changes in outputs
|
|
253
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.905Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
254
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.906Z - [REQUEST]: shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts
|
|
255
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.906Z - [REQUEST]:
|
|
256
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.911Z - Time taken for 'hash changed files from watcher' 0.44680000003427267ms
|
|
257
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.914Z - Time taken for 'build-project-configs' 3.6173000000417233ms
|
|
258
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.919Z - [SYNC]: collect registered sync generators
|
|
259
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.920Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
260
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.920Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
261
|
+
[NX Daemon Server] - 2026-09-11T03:44:40.920Z - Time taken for 'total execution time for createProjectGraph()' 2.884099999908358ms
|
|
262
|
+
[NX Daemon Server] - 2026-09-11T03:44:42.119Z - [WATCHER]: Processing file changes in outputs
|
|
263
|
+
[NX Daemon Server] - 2026-09-11T03:44:42.120Z - [WATCHER]: shared/testing/support/steps/togglePlaygroundStates/web.step.ts was modified
|
|
264
|
+
[NX Daemon Server] - 2026-09-11T03:44:46.605Z - [WATCHER]: Processing file changes in outputs
|
|
265
|
+
[NX Daemon Server] - 2026-09-11T03:44:46.605Z - [WATCHER]: shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts was modified
|
|
266
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.535Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
267
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.535Z - [REQUEST]: shared/testing/support/steps/togglePlaygroundStates/web.step.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts
|
|
268
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.535Z - [REQUEST]:
|
|
269
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.537Z - Time taken for 'hash changed files from watcher' 0.5150000001303852ms
|
|
270
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.541Z - Time taken for 'build-project-configs' 2.3126000000629574ms
|
|
271
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.546Z - [SYNC]: collect registered sync generators
|
|
272
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.546Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
273
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.547Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
274
|
+
[NX Daemon Server] - 2026-09-11T03:44:48.547Z - Time taken for 'total execution time for createProjectGraph()' 2.990100000053644ms
|
|
275
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.449Z - Established a connection. Number of open connections: 1
|
|
276
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.450Z - Closed a connection. Number of open connections: 0
|
|
277
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.451Z - Established a connection. Number of open connections: 1
|
|
278
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.455Z - [REQUEST]: Client Request for Project Graph Received
|
|
279
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.456Z - [REQUEST]: Responding to the client. project-graph
|
|
280
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.456Z - Time taken for 'total for creating and serializing project graph' 0.5239999999757856ms
|
|
281
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.456Z - Done responding to the client project-graph
|
|
282
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.456Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
|
|
283
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.509Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
284
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.509Z - Done responding to the client handleHashTasks
|
|
285
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.509Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
|
|
286
|
+
[NX Daemon Server] - 2026-09-11T03:48:52.520Z - Closed a connection. Number of open connections: 0
|
|
287
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.689Z - [WATCHER]: _tmp_4288_4f0e88df734a26030b39f1ad42b040bf was deleted
|
|
288
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.689Z - [WATCHER]: Processing file changes in outputs
|
|
289
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.799Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
290
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.799Z - [REQUEST]:
|
|
291
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.799Z - [REQUEST]: _tmp_4288_4f0e88df734a26030b39f1ad42b040bf
|
|
292
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.801Z - Time taken for 'hash changed files from watcher' 0.25260000000707805ms
|
|
293
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.805Z - Time taken for 'build-project-configs' 2.8660000001545995ms
|
|
294
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.809Z - [SYNC]: collect registered sync generators
|
|
295
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.810Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
296
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.810Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
297
|
+
[NX Daemon Server] - 2026-09-11T03:49:22.810Z - Time taken for 'total execution time for createProjectGraph()' 2.5722999998833984ms
|
|
298
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.415Z - [WATCHER]: _tmp_11632_acb7d9fd3ee3ab6222adca2054ccd01d was deleted
|
|
299
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.416Z - [WATCHER]: Processing file changes in outputs
|
|
300
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.626Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
301
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.626Z - [REQUEST]:
|
|
302
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.626Z - [REQUEST]: _tmp_11632_acb7d9fd3ee3ab6222adca2054ccd01d
|
|
303
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.629Z - Time taken for 'hash changed files from watcher' 0.28890000004321337ms
|
|
304
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.634Z - Time taken for 'build-project-configs' 3.072999999858439ms
|
|
305
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.639Z - [SYNC]: collect registered sync generators
|
|
306
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.640Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
307
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.640Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
308
|
+
[NX Daemon Server] - 2026-09-11T03:49:29.640Z - Time taken for 'total execution time for createProjectGraph()' 3.9649999998509884ms
|
|
309
|
+
[NX Daemon Server] - 2026-09-11T03:49:58.939Z - [WATCHER]: Processing file changes in outputs
|
|
310
|
+
[NX Daemon Server] - 2026-09-11T03:49:58.939Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (sources)
|
|
311
|
+
[NX Daemon Server] - 2026-09-11T03:49:58.939Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (outputs)
|
|
312
|
+
[NX Daemon Server] - 2026-09-11T03:49:58.946Z - Server stopped because: "LOCK_FILES_CHANGED"
|
|
313
|
+
[NX Daemon Server] - 2026-09-11T04:00:47.579Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
314
|
+
[NX Daemon Server] - 2026-09-11T04:00:47.587Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
315
|
+
[NX Daemon Server] - 2026-09-11T04:00:47.592Z - Established a connection. Number of open connections: 1
|
|
316
|
+
[NX Daemon Server] - 2026-09-11T04:00:47.598Z - Closed a connection. Number of open connections: 0
|
|
317
|
+
[NX Daemon Server] - 2026-09-11T04:00:47.598Z - Established a connection. Number of open connections: 1
|
|
318
|
+
[NX Daemon Server] - 2026-09-11T04:00:47.600Z - [REQUEST]: Client Request for Project Graph Received
|
|
319
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.239Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
320
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.239Z - [REQUEST]:
|
|
321
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.239Z - [REQUEST]:
|
|
322
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.250Z - Time taken for 'loadNxPlugins' 636.4875999999999ms
|
|
323
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.487Z - Time taken for 'build-project-configs' 193.28230000000008ms
|
|
324
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.525Z - [SYNC]: collect registered sync generators
|
|
325
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.527Z - [REQUEST]: Responding to the client. project-graph
|
|
326
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.528Z - Time taken for 'total for creating and serializing project graph' 926.4051ms
|
|
327
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.530Z - Done responding to the client project-graph
|
|
328
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.530Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 927. Response time: 3.
|
|
329
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.622Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
330
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.623Z - Done responding to the client handleHashTasks
|
|
331
|
+
[NX Daemon Server] - 2026-09-11T04:00:48.623Z - Handled HASH_TASKS. Handling time: 14. Response time: 1.
|
|
332
|
+
[NX Daemon Server] - 2026-09-11T04:00:49.961Z - Closed a connection. Number of open connections: 0
|
|
333
|
+
[NX Daemon Server] - 2026-09-11T04:01:28.828Z - [WATCHER]: Processing file changes in outputs
|
|
334
|
+
[NX Daemon Server] - 2026-09-11T04:01:28.885Z - [WATCHER]: tsconfig.json was modified
|
|
335
|
+
[NX Daemon Server] - 2026-09-11T04:01:28.885Z - [WATCHER]: Processing file changes in outputs
|
|
336
|
+
[NX Daemon Server] - 2026-09-11T04:01:28.991Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
337
|
+
[NX Daemon Server] - 2026-09-11T04:01:28.991Z - [REQUEST]: tsconfig.json
|
|
338
|
+
[NX Daemon Server] - 2026-09-11T04:01:28.991Z - [REQUEST]:
|
|
339
|
+
[NX Daemon Server] - 2026-09-11T04:01:28.993Z - Time taken for 'hash changed files from watcher' 0.9003999999986263ms
|
|
340
|
+
[NX Daemon Server] - 2026-09-11T04:01:29.010Z - Time taken for 'build-project-configs' 13.248699999996461ms
|
|
341
|
+
[NX Daemon Server] - 2026-09-11T04:01:29.032Z - [SYNC]: collect registered sync generators
|
|
342
|
+
[NX Daemon Server] - 2026-09-11T04:01:29.033Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
343
|
+
[NX Daemon Server] - 2026-09-11T04:01:29.033Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
344
|
+
[NX Daemon Server] - 2026-09-11T04:01:29.033Z - Time taken for 'total execution time for createProjectGraph()' 18.436700000005658ms
|
|
345
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.574Z - [WATCHER]: Processing file changes in outputs
|
|
346
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.626Z - [WATCHER]: tsconfig.json was modified
|
|
347
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.626Z - [WATCHER]: Processing file changes in outputs
|
|
348
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.837Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
349
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.837Z - [REQUEST]: tsconfig.json
|
|
350
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.837Z - [REQUEST]:
|
|
351
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.839Z - Time taken for 'hash changed files from watcher' 0.9093999999968219ms
|
|
352
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.850Z - Time taken for 'build-project-configs' 9.230799999997544ms
|
|
353
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.871Z - [SYNC]: collect registered sync generators
|
|
354
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.872Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
355
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.872Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
356
|
+
[NX Daemon Server] - 2026-09-11T04:01:38.873Z - Time taken for 'total execution time for createProjectGraph()' 16.900399999998626ms
|
|
357
|
+
[NX Daemon Server] - 2026-09-11T04:01:44.523Z - [WATCHER]: Processing file changes in outputs
|
|
358
|
+
[NX Daemon Server] - 2026-09-11T04:01:45.012Z - [WATCHER]: Processing file changes in outputs
|
|
359
|
+
[NX Daemon Server] - 2026-09-11T04:01:45.361Z - [WATCHER]: Processing file changes in outputs
|
|
360
|
+
[NX Daemon Server] - 2026-09-11T04:01:45.649Z - [WATCHER]: Processing file changes in outputs
|
|
361
|
+
[NX Daemon Server] - 2026-09-11T04:01:45.792Z - [WATCHER]: Processing file changes in outputs
|
|
362
|
+
[NX Daemon Server] - 2026-09-11T04:01:46.050Z - [WATCHER]: Processing file changes in outputs
|
|
363
|
+
[NX Daemon Server] - 2026-09-11T04:01:46.376Z - [WATCHER]: Processing file changes in outputs
|
|
364
|
+
[NX Daemon Server] - 2026-09-11T04:01:46.599Z - [WATCHER]: Processing file changes in outputs
|
|
365
|
+
[NX Daemon Server] - 2026-09-11T04:01:46.801Z - [WATCHER]: Processing file changes in outputs
|
|
366
|
+
[NX Daemon Server] - 2026-09-11T04:01:46.916Z - [WATCHER]: Processing file changes in outputs
|
|
367
|
+
[NX Daemon Server] - 2026-09-11T04:01:47.143Z - [WATCHER]: Processing file changes in outputs
|
|
368
|
+
[NX Daemon Server] - 2026-09-11T04:01:47.351Z - [WATCHER]: Processing file changes in outputs
|
|
369
|
+
[NX Daemon Server] - 2026-09-11T04:01:47.551Z - [WATCHER]: Processing file changes in outputs
|
|
370
|
+
[NX Daemon Server] - 2026-09-11T04:01:47.749Z - [WATCHER]: Processing file changes in outputs
|
|
371
|
+
[NX Daemon Server] - 2026-09-11T04:01:47.844Z - [WATCHER]: Processing file changes in outputs
|
|
372
|
+
[NX Daemon Server] - 2026-09-11T04:01:48.029Z - [WATCHER]: Processing file changes in outputs
|
|
373
|
+
[NX Daemon Server] - 2026-09-11T04:01:48.188Z - [WATCHER]: Processing file changes in outputs
|
|
374
|
+
[NX Daemon Server] - 2026-09-11T04:01:48.348Z - [WATCHER]: Processing file changes in outputs
|
|
375
|
+
[NX Daemon Server] - 2026-09-11T04:01:48.507Z - [WATCHER]: Processing file changes in outputs
|
|
376
|
+
[NX Daemon Server] - 2026-09-11T04:01:48.603Z - [WATCHER]: Processing file changes in outputs
|
|
377
|
+
[NX Daemon Server] - 2026-09-11T04:02:40.695Z - [WATCHER]: 0 file(s) created or restored, 15 file(s) modified, 0 file(s) deleted
|
|
378
|
+
[NX Daemon Server] - 2026-09-11T04:02:40.696Z - [WATCHER]: Processing file changes in outputs
|
|
379
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.101Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
380
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.101Z - [REQUEST]: shared/specs/Playground/TC-0001-form-controls/spec.md,shared/specs/Playground/hooks/before/web.hook.ts,shared/specs/Playground/hooks/beforeEach/web.hook.ts,shared/specs/Playground/hooks/after/mobile.hook.ts,shared/specs/Playground/hooks/afterEach/web.hook.ts,shared/specs/Playground/TC-0001-form-controls/web.test.ts,shared/specs/Playground/hooks/afterEach/mobile.hook.ts,shared/specs/Playground/hooks/beforeEach/mobile.hook.ts,shared/specs/Playground/hooks/after/web.hook.ts,shared/specs/Playground/hooks/before/mobile.hook.ts,shared/specs/Playground/TC-0002-toggle-elements/mobile.test.ts,shared/specs/Playground/TC-0002-toggle-elements/web.test.ts,shared/specs/Playground/TC-0002-toggle-elements/spec.md,shared/specs/Playground/TC-0001-form-controls/mobile.test.ts,shared/specs/Playground/suite.md
|
|
381
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.101Z - [REQUEST]:
|
|
382
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.103Z - Time taken for 'hash changed files from watcher' 1.4011000000027707ms
|
|
383
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.115Z - Time taken for 'build-project-configs' 9.002099999997881ms
|
|
384
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.131Z - [SYNC]: collect registered sync generators
|
|
385
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.132Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
386
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.132Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
387
|
+
[NX Daemon Server] - 2026-09-11T04:02:41.132Z - Time taken for 'total execution time for createProjectGraph()' 13.522499999991851ms
|
|
388
|
+
[NX Daemon Server] - 2026-09-11T04:03:24.774Z - [WATCHER]: Processing file changes in outputs
|
|
389
|
+
[NX Daemon Server] - 2026-09-11T04:03:24.775Z - [WATCHER]: shared/specs/Playground/TC-0001-form-controls/mobile.test.ts was deleted
|
|
390
|
+
[NX Daemon Server] - 2026-09-11T04:03:24.839Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 4 file(s) deleted
|
|
391
|
+
[NX Daemon Server] - 2026-09-11T04:03:24.839Z - [WATCHER]: Processing file changes in outputs
|
|
392
|
+
[NX Daemon Server] - 2026-09-11T04:03:24.892Z - [WATCHER]: Processing file changes in outputs
|
|
393
|
+
[NX Daemon Server] - 2026-09-11T04:03:24.893Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 4 file(s) deleted
|
|
394
|
+
[NX Daemon Server] - 2026-09-11T04:03:24.961Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 3 file(s) deleted
|
|
395
|
+
[NX Daemon Server] - 2026-09-11T04:03:24.961Z - [WATCHER]: Processing file changes in outputs
|
|
396
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.031Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 3 file(s) deleted
|
|
397
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.032Z - [WATCHER]: Processing file changes in outputs
|
|
398
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.577Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
399
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.577Z - [REQUEST]:
|
|
400
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.577Z - [REQUEST]: shared/specs/Playground/TC-0001-form-controls/mobile.test.ts,shared/specs/Playground/TC-0002-toggle-elements/spec.md,shared/specs/Playground/TC-0002-toggle-elements/web.test.ts,shared/specs/Playground/TC-0001-form-controls/web.test.ts,shared/specs/Playground/TC-0002-toggle-elements/mobile.test.ts,shared/specs/Playground/TC-0001-form-controls/spec.md,shared/specs/Playground/hooks/after/mobile.hook.ts,shared/specs/Playground/hooks/afterEach/mobile.hook.ts,shared/specs/Playground/hooks/after/web.hook.ts,shared/specs/Playground/hooks/before/mobile.hook.ts,shared/specs/Playground/hooks/before/web.hook.ts,shared/specs/Playground/hooks/afterEach/web.hook.ts,shared/specs/Playground/hooks/beforeEach/web.hook.ts,shared/specs/Playground/suite.md,shared/specs/Playground/hooks/beforeEach/mobile.hook.ts
|
|
401
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.579Z - Time taken for 'hash changed files from watcher' 0.3090000000083819ms
|
|
402
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.590Z - Time taken for 'build-project-configs' 8.086300000024494ms
|
|
403
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.607Z - [SYNC]: collect registered sync generators
|
|
404
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.607Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
405
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.607Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
406
|
+
[NX Daemon Server] - 2026-09-11T04:03:25.608Z - Time taken for 'total execution time for createProjectGraph()' 13.114800000010291ms
|
|
407
|
+
[NX Daemon Server] - 2026-09-11T04:03:41.720Z - [WATCHER]: shared/specs was deleted
|
|
408
|
+
[NX Daemon Server] - 2026-09-11T04:03:41.720Z - [WATCHER]: Processing file changes in outputs
|
|
409
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.331Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
410
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.331Z - [REQUEST]:
|
|
411
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.331Z - [REQUEST]: shared/specs
|
|
412
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.333Z - Time taken for 'hash changed files from watcher' 0.14650000000256114ms
|
|
413
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.343Z - Time taken for 'build-project-configs' 8.20449999999255ms
|
|
414
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.359Z - [SYNC]: collect registered sync generators
|
|
415
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.359Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
416
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.360Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
417
|
+
[NX Daemon Server] - 2026-09-11T04:03:43.360Z - Time taken for 'total execution time for createProjectGraph()' 12.431899999995949ms
|
|
418
|
+
[NX Daemon Server] - 2026-09-11T04:04:01.292Z - [WATCHER]: Processing file changes in outputs
|
|
419
|
+
[NX Daemon Server] - 2026-09-11T04:04:01.293Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
|
|
420
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.476Z - [WATCHER]: Processing file changes in outputs
|
|
421
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.477Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
|
|
422
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.498Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
423
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.498Z - [REQUEST]: shared/testing/support/actions/fillCredentials/mobile.action.ts
|
|
424
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.498Z - [REQUEST]:
|
|
425
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.500Z - Time taken for 'hash changed files from watcher' 0.4205999999830965ms
|
|
426
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.510Z - Time taken for 'build-project-configs' 8.677700000000186ms
|
|
427
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.531Z - [SYNC]: collect registered sync generators
|
|
428
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.532Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
429
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.532Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
430
|
+
[NX Daemon Server] - 2026-09-11T04:04:04.532Z - Time taken for 'total execution time for createProjectGraph()' 15.611600000003818ms
|
|
431
|
+
[NX Daemon Server] - 2026-09-11T04:04:06.825Z - [WATCHER]: Processing file changes in outputs
|
|
432
|
+
[NX Daemon Server] - 2026-09-11T04:04:06.826Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
|
|
433
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.240Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
434
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.240Z - [REQUEST]: shared/testing/support/actions/fillCredentials/mobile.action.ts
|
|
435
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.240Z - [REQUEST]:
|
|
436
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.242Z - Time taken for 'hash changed files from watcher' 0.33699999999953434ms
|
|
437
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.251Z - Time taken for 'build-project-configs' 7.694699999992736ms
|
|
438
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.266Z - [SYNC]: collect registered sync generators
|
|
439
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.266Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
440
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.266Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
441
|
+
[NX Daemon Server] - 2026-09-11T04:04:13.267Z - Time taken for 'total execution time for createProjectGraph()' 11.48389999999199ms
|
|
442
|
+
[NX Daemon Server] - 2026-09-11T04:04:32.999Z - [WATCHER]: Processing file changes in outputs
|
|
443
|
+
[NX Daemon Server] - 2026-09-11T04:04:33.000Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
|
|
444
|
+
[NX Daemon Server] - 2026-09-11T04:04:34.058Z - [WATCHER]: shared/testing/support/actions/fillCredentials/mobile.action.ts was modified
|
|
445
|
+
[NX Daemon Server] - 2026-09-11T04:04:34.058Z - [WATCHER]: Processing file changes in outputs
|
|
446
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.405Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
447
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.405Z - [REQUEST]: shared/testing/support/actions/fillCredentials/mobile.action.ts
|
|
448
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.405Z - [REQUEST]:
|
|
449
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.407Z - Time taken for 'hash changed files from watcher' 0.3152000000118278ms
|
|
450
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.417Z - Time taken for 'build-project-configs' 9.000800000008894ms
|
|
451
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.434Z - [SYNC]: collect registered sync generators
|
|
452
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.435Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
453
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.435Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
454
|
+
[NX Daemon Server] - 2026-09-11T04:04:39.436Z - Time taken for 'total execution time for createProjectGraph()' 12.138299999991432ms
|
|
455
|
+
[NX Daemon Server] - 2026-09-11T04:19:12.943Z - [WATCHER]: Processing file changes in outputs
|
|
456
|
+
[NX Daemon Server] - 2026-09-11T04:19:13.030Z - [WATCHER]: Processing file changes in outputs
|
|
457
|
+
[NX Daemon Server] - 2026-09-11T04:19:13.075Z - [WATCHER]: tsconfig.json was modified
|
|
458
|
+
[NX Daemon Server] - 2026-09-11T04:19:13.082Z - [WATCHER]: Processing file changes in outputs
|
|
459
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.501Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
460
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.502Z - [REQUEST]: tsconfig.json
|
|
461
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.502Z - [REQUEST]:
|
|
462
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.548Z - Time taken for 'hash changed files from watcher' 0.548600000096485ms
|
|
463
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.565Z - Time taken for 'build-project-configs' 22.59930000011809ms
|
|
464
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.608Z - [SYNC]: collect registered sync generators
|
|
465
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.609Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
466
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.610Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
467
|
+
[NX Daemon Server] - 2026-09-11T04:19:19.610Z - Time taken for 'total execution time for createProjectGraph()' 37.982099999906495ms
|
|
468
|
+
[NX Daemon Server] - 2026-09-11T04:20:18.102Z - [WATCHER]: Processing file changes in outputs
|
|
469
|
+
[NX Daemon Server] - 2026-09-11T04:20:18.186Z - [WATCHER]: Processing file changes in outputs
|
|
470
|
+
[NX Daemon Server] - 2026-09-11T04:20:18.252Z - [WATCHER]: Processing file changes in outputs
|
|
471
|
+
[NX Daemon Server] - 2026-09-11T04:20:18.324Z - [WATCHER]: Processing file changes in outputs
|
|
472
|
+
[NX Daemon Server] - 2026-09-11T04:20:18.362Z - [WATCHER]: tsconfig.json was modified
|
|
473
|
+
[NX Daemon Server] - 2026-09-11T04:20:18.386Z - [WATCHER]: Processing file changes in outputs
|
|
474
|
+
[NX Daemon Server] - 2026-09-11T04:20:24.851Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
475
|
+
[NX Daemon Server] - 2026-09-11T04:20:24.933Z - [REQUEST]: tsconfig.json
|
|
476
|
+
[NX Daemon Server] - 2026-09-11T04:20:24.933Z - [REQUEST]:
|
|
477
|
+
[NX Daemon Server] - 2026-09-11T04:20:25.382Z - Time taken for 'hash changed files from watcher' 1.0115000000223517ms
|
|
478
|
+
[NX Daemon Server] - 2026-09-11T04:20:26.855Z - Time taken for 'build-project-configs' 1375.2268000000622ms
|
|
479
|
+
[NX Daemon Server] - 2026-09-11T04:20:27.101Z - [SYNC]: collect registered sync generators
|
|
480
|
+
[NX Daemon Server] - 2026-09-11T04:20:27.102Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
481
|
+
[NX Daemon Server] - 2026-09-11T04:20:27.105Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
482
|
+
[NX Daemon Server] - 2026-09-11T04:20:27.105Z - Time taken for 'total execution time for createProjectGraph()' 345.90749999997206ms
|
|
483
|
+
[NX Daemon Server] - 2026-09-11T07:35:13.722Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
484
|
+
[NX Daemon Server] - 2026-09-11T07:35:13.730Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
485
|
+
[NX Daemon Server] - 2026-09-11T07:35:13.734Z - Established a connection. Number of open connections: 1
|
|
486
|
+
[NX Daemon Server] - 2026-09-11T07:35:13.746Z - Established a connection. Number of open connections: 2
|
|
487
|
+
[NX Daemon Server] - 2026-09-11T07:35:13.751Z - Closed a connection. Number of open connections: 1
|
|
488
|
+
[NX Daemon Server] - 2026-09-11T07:35:13.754Z - [REQUEST]: Client Request for Project Graph Received
|
|
489
|
+
[NX Daemon Server] - 2026-09-11T07:35:14.888Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
490
|
+
[NX Daemon Server] - 2026-09-11T07:35:14.889Z - [REQUEST]:
|
|
491
|
+
[NX Daemon Server] - 2026-09-11T07:35:14.889Z - [REQUEST]:
|
|
492
|
+
[NX Daemon Server] - 2026-09-11T07:35:14.907Z - Time taken for 'loadNxPlugins' 1130.557ms
|
|
493
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.038Z - Time taken for 'build-project-configs' 85.57529999999997ms
|
|
494
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.078Z - [SYNC]: collect registered sync generators
|
|
495
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.080Z - [REQUEST]: Responding to the client. project-graph
|
|
496
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.081Z - Time taken for 'total for creating and serializing project graph' 1325.8631ms
|
|
497
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.083Z - Done responding to the client project-graph
|
|
498
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.083Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1326. Response time: 3.
|
|
499
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.742Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
500
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.742Z - Done responding to the client handleHashTasks
|
|
501
|
+
[NX Daemon Server] - 2026-09-11T07:35:15.743Z - Handled HASH_TASKS. Handling time: 21. Response time: 1.
|
|
502
|
+
[NX Daemon Server] - 2026-09-11T07:35:16.912Z - Closed a connection. Number of open connections: 0
|
|
503
|
+
[NX Daemon Server] - 2026-09-11T07:47:29.211Z - [WATCHER]: Processing file changes in outputs
|
|
504
|
+
[NX Daemon Server] - 2026-09-11T07:47:29.212Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (sources)
|
|
505
|
+
[NX Daemon Server] - 2026-09-11T07:47:29.212Z - [WATCHER]: Stopping the watcher for D:\wangsitId\testspectra-source\cli\templates\nx (outputs)
|
|
506
|
+
[NX Daemon Server] - 2026-09-11T07:47:29.215Z - Server stopped because: "LOCK_FILES_CHANGED"
|
|
507
|
+
[NX Daemon Server] - 2026-09-11T08:12:18.599Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
508
|
+
[NX Daemon Server] - 2026-09-11T08:12:18.605Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
509
|
+
[NX Daemon Server] - 2026-09-11T08:12:18.611Z - Established a connection. Number of open connections: 1
|
|
510
|
+
[NX Daemon Server] - 2026-09-11T08:12:18.617Z - Closed a connection. Number of open connections: 0
|
|
511
|
+
[NX Daemon Server] - 2026-09-11T08:12:18.617Z - Established a connection. Number of open connections: 1
|
|
512
|
+
[NX Daemon Server] - 2026-09-11T08:12:18.620Z - [REQUEST]: Client Request for Project Graph Received
|
|
513
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.083Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
514
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.083Z - [REQUEST]:
|
|
515
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.083Z - [REQUEST]:
|
|
516
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.093Z - Time taken for 'loadNxPlugins' 460.7704ms
|
|
517
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.278Z - Time taken for 'build-project-configs' 158.1014ms
|
|
518
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.310Z - [SYNC]: collect registered sync generators
|
|
519
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.312Z - [REQUEST]: Responding to the client. project-graph
|
|
520
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.313Z - Time taken for 'total for creating and serializing project graph' 691.8238000000001ms
|
|
521
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.315Z - Done responding to the client project-graph
|
|
522
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.315Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 693. Response time: 3.
|
|
523
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.376Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
524
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.377Z - Done responding to the client handleHashTasks
|
|
525
|
+
[NX Daemon Server] - 2026-09-11T08:12:19.377Z - Handled HASH_TASKS. Handling time: 7. Response time: 1.
|
|
526
|
+
[NX Daemon Server] - 2026-09-11T08:12:20.235Z - Closed a connection. Number of open connections: 0
|
|
527
|
+
[NX Daemon Server] - 2026-09-11T08:13:17.932Z - [WATCHER]: Processing file changes in outputs
|
|
528
|
+
[NX Daemon Server] - 2026-09-11T08:13:17.989Z - [WATCHER]: tsconfig.json was modified
|
|
529
|
+
[NX Daemon Server] - 2026-09-11T08:13:17.990Z - [WATCHER]: Processing file changes in outputs
|
|
530
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.095Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
531
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.095Z - [REQUEST]: tsconfig.json
|
|
532
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.095Z - [REQUEST]:
|
|
533
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.099Z - Time taken for 'hash changed files from watcher' 1.9006999999983236ms
|
|
534
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.116Z - Time taken for 'build-project-configs' 14.0625ms
|
|
535
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.140Z - [SYNC]: collect registered sync generators
|
|
536
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.141Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
537
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.141Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
538
|
+
[NX Daemon Server] - 2026-09-11T08:13:18.141Z - Time taken for 'total execution time for createProjectGraph()' 20.46990000000369ms
|
|
539
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.236Z - [WATCHER]: Processing file changes in outputs
|
|
540
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.279Z - [WATCHER]: tsconfig.json was modified
|
|
541
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.290Z - [WATCHER]: Processing file changes in outputs
|
|
542
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.491Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
543
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.491Z - [REQUEST]: tsconfig.json
|
|
544
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.491Z - [REQUEST]:
|
|
545
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.495Z - Time taken for 'hash changed files from watcher' 1.1388000000006286ms
|
|
546
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.507Z - Time taken for 'build-project-configs' 10.547399999995832ms
|
|
547
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.526Z - [SYNC]: collect registered sync generators
|
|
548
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.527Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
549
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.527Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
550
|
+
[NX Daemon Server] - 2026-09-11T08:13:27.527Z - Time taken for 'total execution time for createProjectGraph()' 16.04120000000694ms
|
|
551
|
+
[NX Daemon Server] - 2026-09-11T08:13:31.488Z - [WATCHER]: Processing file changes in outputs
|
|
552
|
+
[NX Daemon Server] - 2026-09-11T08:13:31.687Z - [WATCHER]: Processing file changes in outputs
|
|
553
|
+
[NX Daemon Server] - 2026-09-11T08:13:31.846Z - [WATCHER]: Processing file changes in outputs
|
|
554
|
+
[NX Daemon Server] - 2026-09-11T08:13:32.004Z - [WATCHER]: Processing file changes in outputs
|
|
555
|
+
[NX Daemon Server] - 2026-09-11T08:13:32.100Z - [WATCHER]: Processing file changes in outputs
|
|
556
|
+
[NX Daemon Server] - 2026-09-11T08:13:32.298Z - [WATCHER]: Processing file changes in outputs
|
|
557
|
+
[NX Daemon Server] - 2026-09-11T08:13:32.441Z - [WATCHER]: Processing file changes in outputs
|
|
558
|
+
[NX Daemon Server] - 2026-09-11T08:13:32.600Z - [WATCHER]: Processing file changes in outputs
|
|
559
|
+
[NX Daemon Server] - 2026-09-11T08:13:32.737Z - [WATCHER]: Processing file changes in outputs
|
|
560
|
+
[NX Daemon Server] - 2026-09-11T08:13:32.826Z - [WATCHER]: Processing file changes in outputs
|
|
561
|
+
[NX Daemon Server] - 2026-09-11T08:13:32.985Z - [WATCHER]: Processing file changes in outputs
|
|
562
|
+
[NX Daemon Server] - 2026-09-11T08:13:33.112Z - [WATCHER]: Processing file changes in outputs
|
|
563
|
+
[NX Daemon Server] - 2026-09-11T08:13:33.254Z - [WATCHER]: Processing file changes in outputs
|
|
564
|
+
[NX Daemon Server] - 2026-09-11T08:13:33.414Z - [WATCHER]: Processing file changes in outputs
|
|
565
|
+
[NX Daemon Server] - 2026-09-11T08:13:33.493Z - [WATCHER]: Processing file changes in outputs
|
|
566
|
+
[NX Daemon Server] - 2026-09-11T08:16:00.960Z - [WATCHER]: Processing file changes in outputs
|
|
567
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.011Z - [WATCHER]: tsconfig.json was modified
|
|
568
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.012Z - [WATCHER]: Processing file changes in outputs
|
|
569
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.425Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
570
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.426Z - [REQUEST]: tsconfig.json
|
|
571
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.426Z - [REQUEST]:
|
|
572
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.430Z - Time taken for 'hash changed files from watcher' 1.8936999999859836ms
|
|
573
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.450Z - Time taken for 'build-project-configs' 17.331000000005588ms
|
|
574
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.479Z - [SYNC]: collect registered sync generators
|
|
575
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.480Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
576
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.480Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
577
|
+
[NX Daemon Server] - 2026-09-11T08:16:01.480Z - Time taken for 'total execution time for createProjectGraph()' 23.324099999997998ms
|
|
578
|
+
[NX Daemon Server] - 2026-09-11T08:16:10.665Z - [WATCHER]: Processing file changes in outputs
|
|
579
|
+
[NX Daemon Server] - 2026-09-11T08:16:10.697Z - [WATCHER]: tsconfig.json was modified
|
|
580
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.505Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
581
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.505Z - [REQUEST]: tsconfig.json
|
|
582
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.505Z - [REQUEST]:
|
|
583
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.511Z - Time taken for 'hash changed files from watcher' 0.47370000000228174ms
|
|
584
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.529Z - Time taken for 'build-project-configs' 17.233399999997346ms
|
|
585
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.554Z - [SYNC]: collect registered sync generators
|
|
586
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.555Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
587
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.556Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
588
|
+
[NX Daemon Server] - 2026-09-11T08:16:11.556Z - Time taken for 'total execution time for createProjectGraph()' 20.162799999990966ms
|
|
589
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.270Z - Established a connection. Number of open connections: 1
|
|
590
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.270Z - Closed a connection. Number of open connections: 0
|
|
591
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.271Z - Established a connection. Number of open connections: 1
|
|
592
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.275Z - [REQUEST]: Client Request for Project Graph Received
|
|
593
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.276Z - [REQUEST]: Responding to the client. project-graph
|
|
594
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.277Z - Time taken for 'total for creating and serializing project graph' 0.6385000000009313ms
|
|
595
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.278Z - Done responding to the client project-graph
|
|
596
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.278Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2.
|
|
597
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.344Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
598
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.344Z - Done responding to the client handleHashTasks
|
|
599
|
+
[NX Daemon Server] - 2026-09-11T08:28:43.344Z - Handled HASH_TASKS. Handling time: 8. Response time: 0.
|
|
600
|
+
[NX Daemon Server] - 2026-09-11T08:28:44.254Z - Closed a connection. Number of open connections: 0
|
|
601
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.808Z - Established a connection. Number of open connections: 1
|
|
602
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.808Z - Closed a connection. Number of open connections: 0
|
|
603
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.809Z - Established a connection. Number of open connections: 1
|
|
604
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.812Z - [REQUEST]: Client Request for Project Graph Received
|
|
605
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.812Z - [REQUEST]: Responding to the client. project-graph
|
|
606
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.813Z - Time taken for 'total for creating and serializing project graph' 0.4486999998334795ms
|
|
607
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.814Z - Done responding to the client project-graph
|
|
608
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.814Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2.
|
|
609
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.867Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
610
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.867Z - Done responding to the client handleHashTasks
|
|
611
|
+
[NX Daemon Server] - 2026-09-11T08:35:54.867Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
|
|
612
|
+
[NX Daemon Server] - 2026-09-11T08:35:55.616Z - Closed a connection. Number of open connections: 0
|
|
613
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.233Z - [WATCHER]: 0 file(s) created or restored, 15 file(s) modified, 0 file(s) deleted
|
|
614
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.234Z - [WATCHER]: Processing file changes in outputs
|
|
615
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.340Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
616
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.340Z - [REQUEST]: shared/specs/Playground/hooks/before/mobile.hook.ts,shared/specs/Playground/hooks/beforeEach/mobile.hook.ts,shared/specs/Playground/TC-0002-toggle-elements/mobile.test.ts,shared/specs/Playground/TC-0001-form-controls/spec.md,shared/specs/Playground/TC-0002-toggle-elements/spec.md,shared/specs/Playground/TC-0002-toggle-elements/web.test.ts,shared/specs/Playground/TC-0001-form-controls/mobile.test.ts,shared/specs/Playground/hooks/after/mobile.hook.ts,shared/specs/Playground/hooks/after/web.hook.ts,shared/specs/Playground/hooks/beforeEach/web.hook.ts,shared/specs/Playground/suite.md,shared/specs/Playground/TC-0001-form-controls/web.test.ts,shared/specs/Playground/hooks/afterEach/mobile.hook.ts,shared/specs/Playground/hooks/afterEach/web.hook.ts,shared/specs/Playground/hooks/before/web.hook.ts
|
|
617
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.340Z - [REQUEST]:
|
|
618
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.343Z - Time taken for 'hash changed files from watcher' 5.700100000016391ms
|
|
619
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.356Z - Time taken for 'build-project-configs' 10.887099999934435ms
|
|
620
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.377Z - [SYNC]: collect registered sync generators
|
|
621
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.377Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
622
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.377Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
623
|
+
[NX Daemon Server] - 2026-09-11T08:36:36.378Z - Time taken for 'total execution time for createProjectGraph()' 16.300800000084564ms
|
|
624
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.275Z - [WATCHER]: _tmp_6028_65ba53b4cd4d540cb83f9b74a25f2d61 was deleted
|
|
625
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.275Z - [WATCHER]: Processing file changes in outputs
|
|
626
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.487Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
627
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.487Z - [REQUEST]:
|
|
628
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.487Z - [REQUEST]: _tmp_6028_65ba53b4cd4d540cb83f9b74a25f2d61
|
|
629
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.504Z - Time taken for 'hash changed files from watcher' 0.39010000019334257ms
|
|
630
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.521Z - Time taken for 'build-project-configs' 15.501699999906123ms
|
|
631
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.547Z - [SYNC]: collect registered sync generators
|
|
632
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.548Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
633
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.548Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
634
|
+
[NX Daemon Server] - 2026-09-11T08:36:43.549Z - Time taken for 'total execution time for createProjectGraph()' 21.129100000020117ms
|
|
635
|
+
[NX Daemon Server] - 2026-09-11T08:36:46.829Z - [WATCHER]: Processing file changes in outputs
|
|
636
|
+
[NX Daemon Server] - 2026-09-11T08:36:46.893Z - [WATCHER]: tsconfig.json was modified
|
|
637
|
+
[NX Daemon Server] - 2026-09-11T08:36:46.894Z - [WATCHER]: Processing file changes in outputs
|
|
638
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.343Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
639
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.344Z - [REQUEST]: tsconfig.json
|
|
640
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.344Z - [REQUEST]:
|
|
641
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.356Z - Time taken for 'hash changed files from watcher' 34.82589999982156ms
|
|
642
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.379Z - Time taken for 'build-project-configs' 19.18779999995604ms
|
|
643
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.413Z - [SYNC]: collect registered sync generators
|
|
644
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.415Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
645
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.415Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
646
|
+
[NX Daemon Server] - 2026-09-11T08:36:47.416Z - Time taken for 'total execution time for createProjectGraph()' 28.099599999841303ms
|
|
647
|
+
[NX Daemon Server] - 2026-09-11T08:38:33.533Z - [WATCHER]: shared/specs was deleted
|
|
648
|
+
[NX Daemon Server] - 2026-09-11T08:38:33.533Z - [WATCHER]: Processing file changes in outputs
|
|
649
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.340Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
650
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.340Z - [REQUEST]:
|
|
651
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.340Z - [REQUEST]: shared/specs
|
|
652
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.343Z - Time taken for 'hash changed files from watcher' 0.2651999997906387ms
|
|
653
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.354Z - Time taken for 'build-project-configs' 9.821599999908358ms
|
|
654
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.375Z - [SYNC]: collect registered sync generators
|
|
655
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.376Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
656
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.376Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
657
|
+
[NX Daemon Server] - 2026-09-11T08:38:34.376Z - Time taken for 'total execution time for createProjectGraph()' 16.151199999963865ms
|
|
658
|
+
[NX Daemon Server] - 2026-09-11T08:39:10.679Z - [WATCHER]: Processing file changes in outputs
|
|
659
|
+
[NX Daemon Server] - 2026-09-11T08:39:10.681Z - [WATCHER]: shared/testing/specs was deleted
|
|
660
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.288Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
661
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.288Z - [REQUEST]:
|
|
662
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.288Z - [REQUEST]: shared/testing/specs
|
|
663
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.290Z - Time taken for 'hash changed files from watcher' 0.3551999998744577ms
|
|
664
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.308Z - Time taken for 'build-project-configs' 14.46999999997206ms
|
|
665
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.334Z - [SYNC]: collect registered sync generators
|
|
666
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.334Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
667
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.335Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
668
|
+
[NX Daemon Server] - 2026-09-11T08:39:12.335Z - Time taken for 'total execution time for createProjectGraph()' 21.359900000039488ms
|
|
669
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.419Z - Established a connection. Number of open connections: 1
|
|
670
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.420Z - Closed a connection. Number of open connections: 0
|
|
671
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.421Z - Established a connection. Number of open connections: 1
|
|
672
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.423Z - [REQUEST]: Client Request for Project Graph Received
|
|
673
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.424Z - [REQUEST]: Responding to the client. project-graph
|
|
674
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.424Z - Time taken for 'total for creating and serializing project graph' 0.4668999998830259ms
|
|
675
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.426Z - Done responding to the client project-graph
|
|
676
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.426Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2.
|
|
677
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.479Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
678
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.479Z - Done responding to the client handleHashTasks
|
|
679
|
+
[NX Daemon Server] - 2026-09-11T08:52:56.479Z - Handled HASH_TASKS. Handling time: 6. Response time: 0.
|
|
680
|
+
[NX Daemon Server] - 2026-09-11T08:52:57.164Z - Closed a connection. Number of open connections: 0
|
|
681
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.100Z - [WATCHER]: Processing file changes in outputs
|
|
682
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.102Z - [WATCHER]: 0 file(s) created or restored, 24 file(s) modified, 0 file(s) deleted
|
|
683
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.152Z - [WATCHER]: Processing file changes in outputs
|
|
684
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.153Z - [WATCHER]: 0 file(s) created or restored, 19 file(s) modified, 0 file(s) deleted
|
|
685
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.213Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
686
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.213Z - [REQUEST]: shared/testing/specs/ApiInterception/hooks/before/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/afterEach/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/before/web.hook.ts,shared/testing/specs/ApiInterception/hooks/afterEach/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/beforeEach/web.hook.ts,shared/testing/specs/BrowserContext/hooks/after/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/after/web.hook.ts,shared/testing/specs/BrowserContext/suite.md,shared/testing/specs/BrowserContext/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/specs/ApiInterception/hooks/afterEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/after/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/spec.md,shared/testing/specs/BrowserContext/hooks/before/mobile.hook.ts,shared/testing/specs/ApiInterception/hooks/after/web.hook.ts,shared/testing/specs/ApiInterception/suite.md,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/specs/ApiInterception/hooks/beforeEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/spec.md,shared/testing/specs/BrowserContext/hooks/afterEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/before/web.hook.ts,shared/testing/specs/ContentMatchers/hooks/afterEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts,shared/testing/specs/ContentMatchers/hooks/before/web.hook.ts,shared/testing/specs/ContentMatchers/suite.md,shared/testing/specs/ContentMatchers/hooks/before/mobile.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/spec.md,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/spec.md,shared/testing/specs/ElementMatchers/hooks/after/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/afterEach/web.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts,shared/testing/specs/ContentMatchers/hooks/after/mobile.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts,shared/testing/specs/ContentMatchers/hooks/after/web.hook.ts,shared/testing/specs/ContentMatchers/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/beforeEach/web.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts
|
|
687
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.213Z - [REQUEST]:
|
|
688
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.216Z - [WATCHER]: Processing file changes in outputs
|
|
689
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.217Z - [WATCHER]: 0 file(s) created or restored, 15 file(s) modified, 0 file(s) deleted
|
|
690
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.218Z - Time taken for 'hash changed files from watcher' 8.311999999918044ms
|
|
691
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.235Z - Time taken for 'build-project-configs' 10.816200000233948ms
|
|
692
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.256Z - [SYNC]: collect registered sync generators
|
|
693
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.256Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
694
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.256Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
695
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.256Z - Time taken for 'total execution time for createProjectGraph()' 16.847099999897182ms
|
|
696
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.422Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
697
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.422Z - [REQUEST]:
|
|
698
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.422Z - [REQUEST]:
|
|
699
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.424Z - Time taken for 'hash changed files from watcher' 0.23480000020936131ms
|
|
700
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.433Z - Time taken for 'build-project-configs' 7.172499999869615ms
|
|
701
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.446Z - [SYNC]: collect registered sync generators
|
|
702
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.447Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
703
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.447Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
704
|
+
[NX Daemon Server] - 2026-09-11T08:53:42.447Z - Time taken for 'total execution time for createProjectGraph()' 10.271500000264496ms
|
|
705
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.007Z - [WATCHER]: shared/testing/specs was deleted
|
|
706
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.008Z - [WATCHER]: Processing file changes in outputs
|
|
707
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.412Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
708
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.412Z - [REQUEST]:
|
|
709
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.412Z - [REQUEST]: shared/testing/specs
|
|
710
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.415Z - Time taken for 'hash changed files from watcher' 0.173099999781698ms
|
|
711
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.426Z - Time taken for 'build-project-configs' 10.694600000046194ms
|
|
712
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.440Z - [SYNC]: collect registered sync generators
|
|
713
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.441Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
714
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.441Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
715
|
+
[NX Daemon Server] - 2026-09-11T08:54:02.441Z - Time taken for 'total execution time for createProjectGraph()' 10.939499999862164ms
|
|
716
|
+
[NX Daemon Server] - 2026-09-11T09:20:20.613Z - [WATCHER]: Processing file changes in outputs
|
|
717
|
+
[NX Daemon Server] - 2026-09-11T09:20:20.661Z - [WATCHER]: tsconfig.json was modified
|
|
718
|
+
[NX Daemon Server] - 2026-09-11T09:20:20.676Z - [WATCHER]: Processing file changes in outputs
|
|
719
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.471Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
720
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.472Z - [REQUEST]: tsconfig.json
|
|
721
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.472Z - [REQUEST]:
|
|
722
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.476Z - Time taken for 'hash changed files from watcher' 0.4398999996483326ms
|
|
723
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.493Z - Time taken for 'build-project-configs' 13.767200000118464ms
|
|
724
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.518Z - [SYNC]: collect registered sync generators
|
|
725
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.518Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
726
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.519Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
727
|
+
[NX Daemon Server] - 2026-09-11T09:20:21.519Z - Time taken for 'total execution time for createProjectGraph()' 20.930399999953806ms
|
|
728
|
+
[NX Daemon Server] - 2026-09-11T09:20:30.888Z - [WATCHER]: Processing file changes in outputs
|
|
729
|
+
[NX Daemon Server] - 2026-09-11T09:20:30.921Z - [WATCHER]: tsconfig.json was modified
|
|
730
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.524Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
731
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.524Z - [REQUEST]: tsconfig.json
|
|
732
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.524Z - [REQUEST]:
|
|
733
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.529Z - Time taken for 'hash changed files from watcher' 0.4154000002890825ms
|
|
734
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.549Z - Time taken for 'build-project-configs' 16.04769999999553ms
|
|
735
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.583Z - [SYNC]: collect registered sync generators
|
|
736
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.583Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
737
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.584Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
738
|
+
[NX Daemon Server] - 2026-09-11T09:20:32.584Z - Time taken for 'total execution time for createProjectGraph()' 29.22649999987334ms
|
|
739
|
+
[NX Daemon Server] - 2026-09-11T09:20:35.566Z - [WATCHER]: Processing file changes in outputs
|
|
740
|
+
[NX Daemon Server] - 2026-09-11T09:20:35.913Z - [WATCHER]: Processing file changes in outputs
|
|
741
|
+
[NX Daemon Server] - 2026-09-11T09:20:36.134Z - [WATCHER]: Processing file changes in outputs
|
|
742
|
+
[NX Daemon Server] - 2026-09-11T09:20:36.338Z - [WATCHER]: Processing file changes in outputs
|
|
743
|
+
[NX Daemon Server] - 2026-09-11T09:20:36.484Z - [WATCHER]: Processing file changes in outputs
|
|
744
|
+
[NX Daemon Server] - 2026-09-11T09:20:36.786Z - [WATCHER]: Processing file changes in outputs
|
|
745
|
+
[NX Daemon Server] - 2026-09-11T09:20:36.977Z - [WATCHER]: Processing file changes in outputs
|
|
746
|
+
[NX Daemon Server] - 2026-09-11T09:20:37.152Z - [WATCHER]: Processing file changes in outputs
|
|
747
|
+
[NX Daemon Server] - 2026-09-11T09:20:37.327Z - [WATCHER]: Processing file changes in outputs
|
|
748
|
+
[NX Daemon Server] - 2026-09-11T09:20:37.422Z - [WATCHER]: Processing file changes in outputs
|
|
749
|
+
[NX Daemon Server] - 2026-09-11T09:20:37.598Z - [WATCHER]: Processing file changes in outputs
|
|
750
|
+
[NX Daemon Server] - 2026-09-11T09:20:37.756Z - [WATCHER]: Processing file changes in outputs
|
|
751
|
+
[NX Daemon Server] - 2026-09-11T09:20:37.900Z - [WATCHER]: Processing file changes in outputs
|
|
752
|
+
[NX Daemon Server] - 2026-09-11T09:20:38.043Z - [WATCHER]: Processing file changes in outputs
|
|
753
|
+
[NX Daemon Server] - 2026-09-11T09:20:38.123Z - [WATCHER]: Processing file changes in outputs
|
|
754
|
+
[NX Daemon Server] - 2026-09-11T09:26:55.603Z - [WATCHER]: Processing file changes in outputs
|
|
755
|
+
[NX Daemon Server] - 2026-09-11T09:26:55.736Z - [WATCHER]: Processing file changes in outputs
|
|
756
|
+
[NX Daemon Server] - 2026-09-11T09:27:19.584Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
|
|
757
|
+
[NX Daemon Server] - 2026-09-11T09:27:19.584Z - [WATCHER]: Processing file changes in outputs
|
|
758
|
+
[NX Daemon Server] - 2026-09-11T09:27:19.725Z - [WATCHER]: Processing file changes in outputs
|
|
759
|
+
[NX Daemon Server] - 2026-09-11T09:27:21.447Z - [WATCHER]: Processing file changes in outputs
|
|
760
|
+
[NX Daemon Server] - 2026-09-11T09:27:21.465Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
|
|
761
|
+
[NX Daemon Server] - 2026-09-11T09:27:21.613Z - [WATCHER]: Processing file changes in outputs
|
|
762
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.811Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
763
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.812Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts
|
|
764
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.812Z - [REQUEST]:
|
|
765
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.859Z - Time taken for 'hash changed files from watcher' 13.543999999761581ms
|
|
766
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.874Z - Time taken for 'build-project-configs' 53.83409999962896ms
|
|
767
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.913Z - [SYNC]: collect registered sync generators
|
|
768
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.915Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
769
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.915Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
770
|
+
[NX Daemon Server] - 2026-09-11T09:27:22.915Z - Time taken for 'total execution time for createProjectGraph()' 31.8335000006482ms
|
|
771
|
+
[NX Daemon Server] - 2026-09-11T09:27:32.468Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
|
|
772
|
+
[NX Daemon Server] - 2026-09-11T09:27:32.468Z - [WATCHER]: Processing file changes in outputs
|
|
773
|
+
[NX Daemon Server] - 2026-09-11T09:27:32.630Z - [WATCHER]: Processing file changes in outputs
|
|
774
|
+
[NX Daemon Server] - 2026-09-11T09:27:37.249Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
|
|
775
|
+
[NX Daemon Server] - 2026-09-11T09:27:37.249Z - [WATCHER]: Processing file changes in outputs
|
|
776
|
+
[NX Daemon Server] - 2026-09-11T09:27:37.410Z - [WATCHER]: Processing file changes in outputs
|
|
777
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.870Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
778
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.870Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts
|
|
779
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.870Z - [REQUEST]:
|
|
780
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.875Z - Time taken for 'hash changed files from watcher' 0.9177999999374151ms
|
|
781
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.889Z - Time taken for 'build-project-configs' 13.597000000067055ms
|
|
782
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.908Z - [SYNC]: collect registered sync generators
|
|
783
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.909Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
784
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.909Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
785
|
+
[NX Daemon Server] - 2026-09-11T09:27:38.910Z - Time taken for 'total execution time for createProjectGraph()' 14.512400000356138ms
|
|
786
|
+
[NX Daemon Server] - 2026-09-11T09:27:51.507Z - [WATCHER]: Processing file changes in outputs
|
|
787
|
+
[NX Daemon Server] - 2026-09-11T09:27:51.508Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts was modified
|
|
788
|
+
[NX Daemon Server] - 2026-09-11T09:27:51.656Z - [WATCHER]: Processing file changes in outputs
|
|
789
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.914Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
790
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.914Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts
|
|
791
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.914Z - [REQUEST]:
|
|
792
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.917Z - Time taken for 'hash changed files from watcher' 0.3262999998405576ms
|
|
793
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.930Z - Time taken for 'build-project-configs' 12.138999999500811ms
|
|
794
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.946Z - [SYNC]: collect registered sync generators
|
|
795
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.947Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
796
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.947Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
797
|
+
[NX Daemon Server] - 2026-09-11T09:27:57.947Z - Time taken for 'total execution time for createProjectGraph()' 12.74750000052154ms
|
|
798
|
+
[NX Daemon Server] - 2026-09-11T09:28:01.343Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
|
|
799
|
+
[NX Daemon Server] - 2026-09-11T09:28:01.344Z - [WATCHER]: Processing file changes in outputs
|
|
800
|
+
[NX Daemon Server] - 2026-09-11T09:28:01.517Z - [WATCHER]: Processing file changes in outputs
|
|
801
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.744Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
802
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.744Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
|
|
803
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.744Z - [REQUEST]:
|
|
804
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.746Z - Time taken for 'hash changed files from watcher' 0.2686999998986721ms
|
|
805
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.757Z - Time taken for 'build-project-configs' 8.835199999623ms
|
|
806
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.776Z - [SYNC]: collect registered sync generators
|
|
807
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.776Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
808
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.777Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
809
|
+
[NX Daemon Server] - 2026-09-11T09:28:07.777Z - Time taken for 'total execution time for createProjectGraph()' 14.802099999971688ms
|
|
810
|
+
[NX Daemon Server] - 2026-09-11T09:28:10.043Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
|
|
811
|
+
[NX Daemon Server] - 2026-09-11T09:28:10.044Z - [WATCHER]: Processing file changes in outputs
|
|
812
|
+
[NX Daemon Server] - 2026-09-11T09:28:10.981Z - [WATCHER]: Processing file changes in outputs
|
|
813
|
+
[NX Daemon Server] - 2026-09-11T09:28:11.029Z - [WATCHER]: Processing file changes in outputs
|
|
814
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.082Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
|
|
815
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.083Z - [WATCHER]: Processing file changes in outputs
|
|
816
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.247Z - [WATCHER]: Processing file changes in outputs
|
|
817
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.448Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
818
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.449Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
|
|
819
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.449Z - [REQUEST]:
|
|
820
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.450Z - Time taken for 'hash changed files from watcher' 0.323900000192225ms
|
|
821
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.461Z - Time taken for 'build-project-configs' 9.059600000269711ms
|
|
822
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.479Z - [SYNC]: collect registered sync generators
|
|
823
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.479Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
824
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.479Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
825
|
+
[NX Daemon Server] - 2026-09-11T09:28:16.480Z - Time taken for 'total execution time for createProjectGraph()' 13.233200000599027ms
|
|
826
|
+
[NX Daemon Server] - 2026-09-11T09:28:26.313Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
|
|
827
|
+
[NX Daemon Server] - 2026-09-11T09:28:26.313Z - [WATCHER]: Processing file changes in outputs
|
|
828
|
+
[NX Daemon Server] - 2026-09-11T09:28:26.451Z - [WATCHER]: Processing file changes in outputs
|
|
829
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.723Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
830
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.723Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
|
|
831
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.723Z - [REQUEST]:
|
|
832
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.724Z - Time taken for 'hash changed files from watcher' 0.316300000064075ms
|
|
833
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.737Z - Time taken for 'build-project-configs' 10.84389999974519ms
|
|
834
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.757Z - [SYNC]: collect registered sync generators
|
|
835
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.757Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
836
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.757Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
837
|
+
[NX Daemon Server] - 2026-09-11T09:28:32.757Z - Time taken for 'total execution time for createProjectGraph()' 13.932100000791252ms
|
|
838
|
+
[NX Daemon Server] - 2026-09-11T09:28:35.226Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
|
|
839
|
+
[NX Daemon Server] - 2026-09-11T09:28:35.226Z - [WATCHER]: Processing file changes in outputs
|
|
840
|
+
[NX Daemon Server] - 2026-09-11T09:28:35.403Z - [WATCHER]: Processing file changes in outputs
|
|
841
|
+
[NX Daemon Server] - 2026-09-11T09:28:35.466Z - [WATCHER]: Processing file changes in outputs
|
|
842
|
+
[NX Daemon Server] - 2026-09-11T09:28:38.909Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
|
|
843
|
+
[NX Daemon Server] - 2026-09-11T09:28:38.910Z - [WATCHER]: Processing file changes in outputs
|
|
844
|
+
[NX Daemon Server] - 2026-09-11T09:28:39.057Z - [WATCHER]: Processing file changes in outputs
|
|
845
|
+
[NX Daemon Server] - 2026-09-11T09:28:40.570Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
|
|
846
|
+
[NX Daemon Server] - 2026-09-11T09:28:40.570Z - [WATCHER]: Processing file changes in outputs
|
|
847
|
+
[NX Daemon Server] - 2026-09-11T09:28:40.704Z - [WATCHER]: Processing file changes in outputs
|
|
848
|
+
[NX Daemon Server] - 2026-09-11T09:28:40.774Z - [WATCHER]: Processing file changes in outputs
|
|
849
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.631Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
850
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.631Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
|
|
851
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.632Z - [REQUEST]:
|
|
852
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.635Z - Time taken for 'hash changed files from watcher' 0.4240000005811453ms
|
|
853
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.651Z - Time taken for 'build-project-configs' 14.071100000292063ms
|
|
854
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.678Z - [SYNC]: collect registered sync generators
|
|
855
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.679Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
856
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.679Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
857
|
+
[NX Daemon Server] - 2026-09-11T09:28:41.679Z - Time taken for 'total execution time for createProjectGraph()' 20.709400000050664ms
|
|
858
|
+
[NX Daemon Server] - 2026-09-11T09:28:42.208Z - [WATCHER]: Processing file changes in outputs
|
|
859
|
+
[NX Daemon Server] - 2026-09-11T09:28:42.209Z - [WATCHER]: shared/testing/page-objects/MatchersPage/web.ts was modified
|
|
860
|
+
[NX Daemon Server] - 2026-09-11T09:28:42.417Z - [WATCHER]: Processing file changes in outputs
|
|
861
|
+
[NX Daemon Server] - 2026-09-11T09:28:42.477Z - [WATCHER]: Processing file changes in outputs
|
|
862
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.620Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
863
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.621Z - [REQUEST]: shared/testing/page-objects/MatchersPage/web.ts
|
|
864
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.621Z - [REQUEST]:
|
|
865
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.622Z - Time taken for 'hash changed files from watcher' 0.3148999996483326ms
|
|
866
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.638Z - Time taken for 'build-project-configs' 12.65610000025481ms
|
|
867
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.661Z - [SYNC]: collect registered sync generators
|
|
868
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.662Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
869
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.662Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
870
|
+
[NX Daemon Server] - 2026-09-11T09:28:48.662Z - Time taken for 'total execution time for createProjectGraph()' 16.735599999316037ms
|
|
871
|
+
[NX Daemon Server] - 2026-09-11T09:28:51.985Z - [WATCHER]: 0 file(s) created or restored, 20 file(s) modified, 0 file(s) deleted
|
|
872
|
+
[NX Daemon Server] - 2026-09-11T09:28:51.986Z - [WATCHER]: Processing file changes in outputs
|
|
873
|
+
[NX Daemon Server] - 2026-09-11T09:28:52.036Z - [WATCHER]: Processing file changes in outputs
|
|
874
|
+
[NX Daemon Server] - 2026-09-11T09:28:52.040Z - [WATCHER]: 0 file(s) created or restored, 17 file(s) modified, 0 file(s) deleted
|
|
875
|
+
[NX Daemon Server] - 2026-09-11T09:28:52.092Z - [WATCHER]: 0 file(s) created or restored, 16 file(s) modified, 0 file(s) deleted
|
|
876
|
+
[NX Daemon Server] - 2026-09-11T09:28:52.094Z - [WATCHER]: Processing file changes in outputs
|
|
877
|
+
[NX Daemon Server] - 2026-09-11T09:28:52.148Z - [WATCHER]: 0 file(s) created or restored, 7 file(s) modified, 0 file(s) deleted
|
|
878
|
+
[NX Daemon Server] - 2026-09-11T09:28:52.149Z - [WATCHER]: Processing file changes in outputs
|
|
879
|
+
[NX Daemon Server] - 2026-09-11T09:28:52.396Z - [WATCHER]: Processing file changes in outputs
|
|
880
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.398Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
881
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.399Z - [REQUEST]: shared/testing/specs/ApiInterception/hooks/beforeEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/spec.md,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/spec.md,shared/testing/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,shared/testing/specs/ApiInterception/hooks/afterEach/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/after/mobile.hook.ts,shared/testing/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,shared/testing/specs/BrowserContext/hooks/afterEach/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/before/mobile.hook.ts,shared/testing/specs/BrowserContext/hooks/afterEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/before/web.hook.ts,shared/testing/specs/ApiInterception/hooks/before/mobile.hook.ts,shared/testing/specs/ApiInterception/suite.md,shared/testing/specs/ApiInterception/hooks/afterEach/web.hook.ts,shared/testing/specs/ApiInterception/hooks/after/mobile.hook.ts,shared/testing/specs/ApiInterception/hooks/after/web.hook.ts,shared/testing/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/specs/BrowserContext/hooks/after/web.hook.ts,shared/testing/specs/BrowserContext/hooks/before/web.hook.ts,shared/testing/specs/ContentMatchers/hooks/after/web.hook.ts,shared/testing/specs/BrowserContext/hooks/beforeEach/web.hook.ts,shared/testing/specs/ContentMatchers/hooks/before/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/afterEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts,shared/testing/specs/ContentMatchers/hooks/after/mobile.hook.ts,shared/testing/specs/ContentMatchers/hooks/afterEach/web.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/spec.md,shared/testing/specs/ContentMatchers/hooks/beforeEach/web.hook.ts,shared/testing/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts,shared/testing/specs/BrowserContext/suite.md,shared/testing/specs/ContentMatchers/hooks/before/web.hook.ts,shared/testing/specs/BrowserContext/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/suite.md,shared/testing/specs/ElementMatchers/suite.md,shared/testing/specs/ElementMatchers/hooks/before/mobile.hook.ts,shared/testing/specs/ElementMatchers/hooks/after/web.hook.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts,shared/testing/specs/ElementMatchers/hooks/afterEach/mobile.hook.ts,shared/testing/specs/ElementMatchers/hooks/afterEach/web.hook.ts,shared/testing/specs/ElementMatchers/hooks/before/web.hook.ts,shared/testing/specs/ElementMatchers/hooks/beforeEach/mobile.hook.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts,shared/testing/specs/ElementMatchers/hooks/beforeEach/web.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/spec.md,shared/testing/specs/ElementMatchers/hooks/after/mobile.hook.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts,shared/testing/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts,shared/testing/specs/ContentMatchers/TC-0006-collections-and-empty/spec.md,shared/testing/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts,shared/testing/specs/ElementMatchers/TC-0004-states-and-attributes/spec.md,shared/testing/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts,shared/testing/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md,shared/testing/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts,shared/testing/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts
|
|
882
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.399Z - [REQUEST]:
|
|
883
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.401Z - Time taken for 'hash changed files from watcher' 1.4682000000029802ms
|
|
884
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.413Z - Time taken for 'build-project-configs' 10.479000000283122ms
|
|
885
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.432Z - [SYNC]: collect registered sync generators
|
|
886
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.432Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
887
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.432Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
888
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.432Z - Time taken for 'total execution time for createProjectGraph()' 14.00029999949038ms
|
|
889
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.587Z - [WATCHER]: shared/testing/specs was deleted
|
|
890
|
+
[NX Daemon Server] - 2026-09-11T09:28:58.587Z - [WATCHER]: Processing file changes in outputs
|
|
891
|
+
[NX Daemon Server] - 2026-09-11T09:29:04.995Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
892
|
+
[NX Daemon Server] - 2026-09-11T09:29:04.995Z - [REQUEST]:
|
|
893
|
+
[NX Daemon Server] - 2026-09-11T09:29:04.995Z - [REQUEST]: shared/testing/specs
|
|
894
|
+
[NX Daemon Server] - 2026-09-11T09:29:04.998Z - Time taken for 'hash changed files from watcher' 0.2635999992489815ms
|
|
895
|
+
[NX Daemon Server] - 2026-09-11T09:29:05.011Z - Time taken for 'build-project-configs' 10.877199999988079ms
|
|
896
|
+
[NX Daemon Server] - 2026-09-11T09:29:05.028Z - [SYNC]: collect registered sync generators
|
|
897
|
+
[NX Daemon Server] - 2026-09-11T09:29:05.029Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
898
|
+
[NX Daemon Server] - 2026-09-11T09:29:05.029Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
899
|
+
[NX Daemon Server] - 2026-09-11T09:29:05.029Z - Time taken for 'total execution time for createProjectGraph()' 12.870000000111759ms
|
|
900
|
+
[NX Daemon Server] - 2026-09-11T09:29:32.746Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
|
|
901
|
+
[NX Daemon Server] - 2026-09-11T09:29:32.746Z - [WATCHER]: Processing file changes in outputs
|
|
902
|
+
[NX Daemon Server] - 2026-09-11T09:29:32.922Z - [WATCHER]: Processing file changes in outputs
|
|
903
|
+
[NX Daemon Server] - 2026-09-11T09:29:34.426Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
|
|
904
|
+
[NX Daemon Server] - 2026-09-11T09:29:34.434Z - [WATCHER]: Processing file changes in outputs
|
|
905
|
+
[NX Daemon Server] - 2026-09-11T09:29:34.538Z - [WATCHER]: Processing file changes in outputs
|
|
906
|
+
[NX Daemon Server] - 2026-09-11T09:29:34.600Z - [WATCHER]: Processing file changes in outputs
|
|
907
|
+
[NX Daemon Server] - 2026-09-11T09:29:34.686Z - [WATCHER]: Processing file changes in outputs
|
|
908
|
+
[NX Daemon Server] - 2026-09-11T09:29:34.744Z - [WATCHER]: Processing file changes in outputs
|
|
909
|
+
[NX Daemon Server] - 2026-09-11T09:29:35.376Z - [WATCHER]: Processing file changes in outputs
|
|
910
|
+
[NX Daemon Server] - 2026-09-11T09:29:35.378Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
|
|
911
|
+
[NX Daemon Server] - 2026-09-11T09:29:35.555Z - [WATCHER]: Processing file changes in outputs
|
|
912
|
+
[NX Daemon Server] - 2026-09-11T09:29:35.604Z - [WATCHER]: Processing file changes in outputs
|
|
913
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.147Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
914
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.147Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts
|
|
915
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.147Z - [REQUEST]:
|
|
916
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.149Z - Time taken for 'hash changed files from watcher' 0.2443000003695488ms
|
|
917
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.163Z - Time taken for 'build-project-configs' 11.465800000354648ms
|
|
918
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.181Z - [SYNC]: collect registered sync generators
|
|
919
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.181Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
920
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.182Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
921
|
+
[NX Daemon Server] - 2026-09-11T09:29:39.182Z - Time taken for 'total execution time for createProjectGraph()' 15.049899999983609ms
|
|
922
|
+
[NX Daemon Server] - 2026-09-11T09:30:51.434Z - [WATCHER]: Processing file changes in outputs
|
|
923
|
+
[NX Daemon Server] - 2026-09-11T09:30:51.435Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
|
|
924
|
+
[NX Daemon Server] - 2026-09-11T09:30:51.601Z - [WATCHER]: Processing file changes in outputs
|
|
925
|
+
[NX Daemon Server] - 2026-09-11T09:30:53.419Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
|
|
926
|
+
[NX Daemon Server] - 2026-09-11T09:30:53.420Z - [WATCHER]: Processing file changes in outputs
|
|
927
|
+
[NX Daemon Server] - 2026-09-11T09:30:53.554Z - [WATCHER]: Processing file changes in outputs
|
|
928
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.847Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
929
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.847Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts
|
|
930
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.847Z - [REQUEST]:
|
|
931
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.850Z - Time taken for 'hash changed files from watcher' 0.26549999974668026ms
|
|
932
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.866Z - Time taken for 'build-project-configs' 12.998699999414384ms
|
|
933
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.880Z - [SYNC]: collect registered sync generators
|
|
934
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.881Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
935
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.881Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
936
|
+
[NX Daemon Server] - 2026-09-11T09:30:57.882Z - Time taken for 'total execution time for createProjectGraph()' 12.151500000618398ms
|
|
937
|
+
[NX Daemon Server] - 2026-09-11T09:30:58.999Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts was modified
|
|
938
|
+
[NX Daemon Server] - 2026-09-11T09:30:58.999Z - [WATCHER]: Processing file changes in outputs
|
|
939
|
+
[NX Daemon Server] - 2026-09-11T09:30:59.153Z - [WATCHER]: Processing file changes in outputs
|
|
940
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.412Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
941
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.412Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/hooks/after/mobile.hook.ts
|
|
942
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.412Z - [REQUEST]:
|
|
943
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.414Z - Time taken for 'hash changed files from watcher' 0.28849999979138374ms
|
|
944
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.428Z - Time taken for 'build-project-configs' 10.925199999473989ms
|
|
945
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.450Z - [SYNC]: collect registered sync generators
|
|
946
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.451Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
947
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.451Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
948
|
+
[NX Daemon Server] - 2026-09-11T09:31:05.451Z - Time taken for 'total execution time for createProjectGraph()' 17.121499999426305ms
|
|
949
|
+
[NX Daemon Server] - 2026-09-11T09:31:17.926Z - [WATCHER]: Processing file changes in outputs
|
|
950
|
+
[NX Daemon Server] - 2026-09-11T09:31:17.927Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md was modified
|
|
951
|
+
[NX Daemon Server] - 2026-09-11T09:31:20.542Z - [WATCHER]: Processing file changes in outputs
|
|
952
|
+
[NX Daemon Server] - 2026-09-11T09:31:20.542Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md was modified
|
|
953
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.339Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
954
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.339Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md
|
|
955
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.340Z - [REQUEST]:
|
|
956
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.343Z - Time taken for 'hash changed files from watcher' 0.3697000006213784ms
|
|
957
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.360Z - Time taken for 'build-project-configs' 13.288900000043213ms
|
|
958
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.383Z - [SYNC]: collect registered sync generators
|
|
959
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.384Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
960
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.384Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
961
|
+
[NX Daemon Server] - 2026-09-11T09:31:24.384Z - Time taken for 'total execution time for createProjectGraph()' 20.02680000010878ms
|
|
962
|
+
[NX Daemon Server] - 2026-09-11T09:31:32.572Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts was modified
|
|
963
|
+
[NX Daemon Server] - 2026-09-11T09:31:32.572Z - [WATCHER]: Processing file changes in outputs
|
|
964
|
+
[NX Daemon Server] - 2026-09-11T09:31:32.722Z - [WATCHER]: Processing file changes in outputs
|
|
965
|
+
[NX Daemon Server] - 2026-09-11T09:31:38.984Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
966
|
+
[NX Daemon Server] - 2026-09-11T09:31:38.984Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts
|
|
967
|
+
[NX Daemon Server] - 2026-09-11T09:31:38.984Z - [REQUEST]:
|
|
968
|
+
[NX Daemon Server] - 2026-09-11T09:31:38.986Z - Time taken for 'hash changed files from watcher' 0.3157999999821186ms
|
|
969
|
+
[NX Daemon Server] - 2026-09-11T09:31:38.999Z - Time taken for 'build-project-configs' 10.693199999630451ms
|
|
970
|
+
[NX Daemon Server] - 2026-09-11T09:31:39.014Z - [SYNC]: collect registered sync generators
|
|
971
|
+
[NX Daemon Server] - 2026-09-11T09:31:39.015Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
972
|
+
[NX Daemon Server] - 2026-09-11T09:31:39.015Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
973
|
+
[NX Daemon Server] - 2026-09-11T09:31:39.015Z - Time taken for 'total execution time for createProjectGraph()' 12.977400000207126ms
|
|
974
|
+
[NX Daemon Server] - 2026-09-11T09:31:41.467Z - [WATCHER]: Processing file changes in outputs
|
|
975
|
+
[NX Daemon Server] - 2026-09-11T09:31:41.468Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md was modified
|
|
976
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.878Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
977
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.879Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/spec.md
|
|
978
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.879Z - [REQUEST]:
|
|
979
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.882Z - Time taken for 'hash changed files from watcher' 0.3427999997511506ms
|
|
980
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.899Z - Time taken for 'build-project-configs' 13.380499999970198ms
|
|
981
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.919Z - [SYNC]: collect registered sync generators
|
|
982
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.920Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
983
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.920Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
984
|
+
[NX Daemon Server] - 2026-09-11T09:31:47.920Z - Time taken for 'total execution time for createProjectGraph()' 18.040699999779463ms
|
|
985
|
+
[NX Daemon Server] - 2026-09-11T09:31:50.973Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts was modified
|
|
986
|
+
[NX Daemon Server] - 2026-09-11T09:31:50.973Z - [WATCHER]: Processing file changes in outputs
|
|
987
|
+
[NX Daemon Server] - 2026-09-11T09:31:51.152Z - [WATCHER]: Processing file changes in outputs
|
|
988
|
+
[NX Daemon Server] - 2026-09-11T09:31:51.203Z - [WATCHER]: Processing file changes in outputs
|
|
989
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.387Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
990
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.387Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts
|
|
991
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.387Z - [REQUEST]:
|
|
992
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.390Z - Time taken for 'hash changed files from watcher' 0.22550000064074993ms
|
|
993
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.402Z - Time taken for 'build-project-configs' 10.75109999999404ms
|
|
994
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.420Z - [SYNC]: collect registered sync generators
|
|
995
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.421Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
996
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.421Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
997
|
+
[NX Daemon Server] - 2026-09-11T09:31:57.421Z - Time taken for 'total execution time for createProjectGraph()' 14.5152000002563ms
|
|
998
|
+
[NX Daemon Server] - 2026-09-11T09:33:07.176Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md was modified
|
|
999
|
+
[NX Daemon Server] - 2026-09-11T09:33:07.176Z - [WATCHER]: Processing file changes in outputs
|
|
1000
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.588Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1001
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.589Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md
|
|
1002
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.589Z - [REQUEST]:
|
|
1003
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.591Z - Time taken for 'hash changed files from watcher' 0.3866000007838011ms
|
|
1004
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.612Z - Time taken for 'build-project-configs' 14.745300000533462ms
|
|
1005
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.638Z - [SYNC]: collect registered sync generators
|
|
1006
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.640Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1007
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.640Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1008
|
+
[NX Daemon Server] - 2026-09-11T09:33:13.640Z - Time taken for 'total execution time for createProjectGraph()' 22.004800000227988ms
|
|
1009
|
+
[NX Daemon Server] - 2026-09-11T09:33:15.860Z - [WATCHER]: packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md was modified
|
|
1010
|
+
[NX Daemon Server] - 2026-09-11T09:33:15.860Z - [WATCHER]: Processing file changes in outputs
|
|
1011
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.270Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1012
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.270Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/spec.md
|
|
1013
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.270Z - [REQUEST]:
|
|
1014
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.272Z - Time taken for 'hash changed files from watcher' 0.32659999933093786ms
|
|
1015
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.284Z - Time taken for 'build-project-configs' 9.488599999807775ms
|
|
1016
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.300Z - [SYNC]: collect registered sync generators
|
|
1017
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.301Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1018
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.302Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1019
|
+
[NX Daemon Server] - 2026-09-11T09:33:22.302Z - Time taken for 'total execution time for createProjectGraph()' 12.793800000101328ms
|
|
1020
|
+
[NX Daemon Server] - 2026-09-11T09:33:48.078Z - [WATCHER]: Processing file changes in outputs
|
|
1021
|
+
[NX Daemon Server] - 2026-09-11T09:33:48.079Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md was modified
|
|
1022
|
+
[NX Daemon Server] - 2026-09-11T09:33:49.768Z - [WATCHER]: Processing file changes in outputs
|
|
1023
|
+
[NX Daemon Server] - 2026-09-11T09:33:49.769Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md was modified
|
|
1024
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.493Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1025
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.493Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md
|
|
1026
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.493Z - [REQUEST]:
|
|
1027
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.495Z - Time taken for 'hash changed files from watcher' 0.26570000033825636ms
|
|
1028
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.508Z - Time taken for 'build-project-configs' 11.09539999999106ms
|
|
1029
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.526Z - [SYNC]: collect registered sync generators
|
|
1030
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.526Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1031
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.526Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1032
|
+
[NX Daemon Server] - 2026-09-11T09:33:54.527Z - Time taken for 'total execution time for createProjectGraph()' 14.220800000242889ms
|
|
1033
|
+
[NX Daemon Server] - 2026-09-11T09:34:03.740Z - [WATCHER]: Processing file changes in outputs
|
|
1034
|
+
[NX Daemon Server] - 2026-09-11T09:34:03.742Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md was modified
|
|
1035
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.156Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1036
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.156Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/spec.md
|
|
1037
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.156Z - [REQUEST]:
|
|
1038
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.158Z - Time taken for 'hash changed files from watcher' 0.3979000002145767ms
|
|
1039
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.173Z - Time taken for 'build-project-configs' 11.042499999515712ms
|
|
1040
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.189Z - [SYNC]: collect registered sync generators
|
|
1041
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.189Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1042
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.189Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1043
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.190Z - Time taken for 'total execution time for createProjectGraph()' 14.690200000070035ms
|
|
1044
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.927Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1045
|
+
[NX Daemon Server] - 2026-09-11T09:34:10.928Z - [WATCHER]: Processing file changes in outputs
|
|
1046
|
+
[NX Daemon Server] - 2026-09-11T09:34:13.404Z - [WATCHER]: Processing file changes in outputs
|
|
1047
|
+
[NX Daemon Server] - 2026-09-11T09:34:13.405Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1048
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.335Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1049
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.335Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
|
|
1050
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.335Z - [REQUEST]:
|
|
1051
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.341Z - Time taken for 'hash changed files from watcher' 0.9309999998658895ms
|
|
1052
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.359Z - Time taken for 'build-project-configs' 15.59320000000298ms
|
|
1053
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.389Z - [SYNC]: collect registered sync generators
|
|
1054
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.390Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1055
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.390Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1056
|
+
[NX Daemon Server] - 2026-09-11T09:34:17.390Z - Time taken for 'total execution time for createProjectGraph()' 23.874499999918044ms
|
|
1057
|
+
[NX Daemon Server] - 2026-09-11T09:34:26.400Z - [WATCHER]: Processing file changes in outputs
|
|
1058
|
+
[NX Daemon Server] - 2026-09-11T09:34:26.401Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1059
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.812Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1060
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.812Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
|
|
1061
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.812Z - [REQUEST]:
|
|
1062
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.814Z - Time taken for 'hash changed files from watcher' 0.3123000003397465ms
|
|
1063
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.829Z - Time taken for 'build-project-configs' 12.292100000195205ms
|
|
1064
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.849Z - [SYNC]: collect registered sync generators
|
|
1065
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.849Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1066
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.850Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1067
|
+
[NX Daemon Server] - 2026-09-11T09:34:32.850Z - Time taken for 'total execution time for createProjectGraph()' 16.533500000834465ms
|
|
1068
|
+
[NX Daemon Server] - 2026-09-11T09:34:36.180Z - [WATCHER]: Processing file changes in outputs
|
|
1069
|
+
[NX Daemon Server] - 2026-09-11T09:34:36.181Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1070
|
+
[NX Daemon Server] - 2026-09-11T09:34:37.895Z - [WATCHER]: Processing file changes in outputs
|
|
1071
|
+
[NX Daemon Server] - 2026-09-11T09:34:37.897Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1072
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.594Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1073
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.595Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
|
|
1074
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.595Z - [REQUEST]:
|
|
1075
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.596Z - Time taken for 'hash changed files from watcher' 0.288399999961257ms
|
|
1076
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.608Z - Time taken for 'build-project-configs' 8.740299999713898ms
|
|
1077
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.624Z - [SYNC]: collect registered sync generators
|
|
1078
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.625Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1079
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.625Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1080
|
+
[NX Daemon Server] - 2026-09-11T09:34:42.625Z - Time taken for 'total execution time for createProjectGraph()' 13.72039999999106ms
|
|
1081
|
+
[NX Daemon Server] - 2026-09-11T09:34:44.162Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1082
|
+
[NX Daemon Server] - 2026-09-11T09:34:44.162Z - [WATCHER]: Processing file changes in outputs
|
|
1083
|
+
[NX Daemon Server] - 2026-09-11T09:34:47.346Z - [WATCHER]: Processing file changes in outputs
|
|
1084
|
+
[NX Daemon Server] - 2026-09-11T09:34:47.347Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1085
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.570Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1086
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.570Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
|
|
1087
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.570Z - [REQUEST]:
|
|
1088
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.572Z - Time taken for 'hash changed files from watcher' 0.2907999996095896ms
|
|
1089
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.585Z - Time taken for 'build-project-configs' 9.27419999986887ms
|
|
1090
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.601Z - [SYNC]: collect registered sync generators
|
|
1091
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.602Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1092
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.602Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1093
|
+
[NX Daemon Server] - 2026-09-11T09:34:50.602Z - Time taken for 'total execution time for createProjectGraph()' 13.902099999599159ms
|
|
1094
|
+
[NX Daemon Server] - 2026-09-11T09:34:53.025Z - [WATCHER]: Processing file changes in outputs
|
|
1095
|
+
[NX Daemon Server] - 2026-09-11T09:34:53.027Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1096
|
+
[NX Daemon Server] - 2026-09-11T09:34:56.173Z - [WATCHER]: Processing file changes in outputs
|
|
1097
|
+
[NX Daemon Server] - 2026-09-11T09:34:56.174Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1098
|
+
[NX Daemon Server] - 2026-09-11T09:34:57.468Z - [WATCHER]: Processing file changes in outputs
|
|
1099
|
+
[NX Daemon Server] - 2026-09-11T09:34:57.470Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1100
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.438Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1101
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.438Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
|
|
1102
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.438Z - [REQUEST]:
|
|
1103
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.440Z - Time taken for 'hash changed files from watcher' 0.3378999996930361ms
|
|
1104
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.451Z - Time taken for 'build-project-configs' 9.541599999181926ms
|
|
1105
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.476Z - [SYNC]: collect registered sync generators
|
|
1106
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.477Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1107
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.477Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1108
|
+
[NX Daemon Server] - 2026-09-11T09:34:59.477Z - Time taken for 'total execution time for createProjectGraph()' 18.084800000302494ms
|
|
1109
|
+
[NX Daemon Server] - 2026-09-11T09:35:04.148Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1110
|
+
[NX Daemon Server] - 2026-09-11T09:35:04.148Z - [WATCHER]: Processing file changes in outputs
|
|
1111
|
+
[NX Daemon Server] - 2026-09-11T09:35:05.926Z - [WATCHER]: Processing file changes in outputs
|
|
1112
|
+
[NX Daemon Server] - 2026-09-11T09:35:05.928Z - [WATCHER]: packages/matchers/e2e/specs/ElementMatchers/suite.md was modified
|
|
1113
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.553Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1114
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.553Z - [REQUEST]: packages/matchers/e2e/specs/ElementMatchers/suite.md
|
|
1115
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.553Z - [REQUEST]:
|
|
1116
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.555Z - Time taken for 'hash changed files from watcher' 0.30310000013560057ms
|
|
1117
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.564Z - Time taken for 'build-project-configs' 8.294699999503791ms
|
|
1118
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.583Z - [SYNC]: collect registered sync generators
|
|
1119
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.583Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1120
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.583Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1121
|
+
[NX Daemon Server] - 2026-09-11T09:35:10.584Z - Time taken for 'total execution time for createProjectGraph()' 11.778300000354648ms
|
|
1122
|
+
[NX Daemon Server] - 2026-09-11T10:35:47.060Z - [WATCHER]: Processing file changes in outputs
|
|
1123
|
+
[NX Daemon Server] - 2026-09-11T10:35:47.132Z - [WATCHER]: Processing file changes in outputs
|
|
1124
|
+
[NX Daemon Server] - 2026-09-11T10:36:04.474Z - [WATCHER]: Processing file changes in outputs
|
|
1125
|
+
[NX Daemon Server] - 2026-09-11T10:36:04.477Z - [WATCHER]: shared/testing/page-objects/MatchersPages was deleted
|
|
1126
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.879Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1127
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.879Z - [REQUEST]:
|
|
1128
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.879Z - [REQUEST]: shared/testing/page-objects/MatchersPages
|
|
1129
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.881Z - Time taken for 'hash changed files from watcher' 0.1519000008702278ms
|
|
1130
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.892Z - Time taken for 'build-project-configs' 9.35300000011921ms
|
|
1131
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.909Z - [SYNC]: collect registered sync generators
|
|
1132
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.910Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1133
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.910Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1134
|
+
[NX Daemon Server] - 2026-09-11T10:36:10.910Z - Time taken for 'total execution time for createProjectGraph()' 12.190100001171231ms
|
|
1135
|
+
[NX Daemon Server] - 2026-09-11T10:36:19.592Z - [WATCHER]: Processing file changes in outputs
|
|
1136
|
+
[NX Daemon Server] - 2026-09-11T10:36:19.593Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
|
|
1137
|
+
[NX Daemon Server] - 2026-09-11T10:36:19.758Z - [WATCHER]: Processing file changes in outputs
|
|
1138
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.000Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1139
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.000Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
|
|
1140
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.000Z - [REQUEST]:
|
|
1141
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.001Z - Time taken for 'hash changed files from watcher' 0.25740000046789646ms
|
|
1142
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.011Z - Time taken for 'build-project-configs' 8.156399998813868ms
|
|
1143
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.030Z - [SYNC]: collect registered sync generators
|
|
1144
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.030Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1145
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.031Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1146
|
+
[NX Daemon Server] - 2026-09-11T10:36:26.031Z - Time taken for 'total execution time for createProjectGraph()' 13.578900000080466ms
|
|
1147
|
+
[NX Daemon Server] - 2026-09-11T10:36:31.988Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
|
|
1148
|
+
[NX Daemon Server] - 2026-09-11T10:36:31.989Z - [WATCHER]: Processing file changes in outputs
|
|
1149
|
+
[NX Daemon Server] - 2026-09-11T10:36:32.127Z - [WATCHER]: Processing file changes in outputs
|
|
1150
|
+
[NX Daemon Server] - 2026-09-11T10:36:33.592Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
|
|
1151
|
+
[NX Daemon Server] - 2026-09-11T10:36:33.592Z - [WATCHER]: Processing file changes in outputs
|
|
1152
|
+
[NX Daemon Server] - 2026-09-11T10:36:33.756Z - [WATCHER]: Processing file changes in outputs
|
|
1153
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.389Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1154
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.389Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
|
|
1155
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.389Z - [REQUEST]:
|
|
1156
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.390Z - Time taken for 'hash changed files from watcher' 0.2805000003427267ms
|
|
1157
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.400Z - Time taken for 'build-project-configs' 7.691700000315905ms
|
|
1158
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.419Z - [SYNC]: collect registered sync generators
|
|
1159
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.419Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1160
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.419Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1161
|
+
[NX Daemon Server] - 2026-09-11T10:36:38.419Z - Time taken for 'total execution time for createProjectGraph()' 14.401100000366569ms
|
|
1162
|
+
[NX Daemon Server] - 2026-09-11T10:36:43.662Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
|
|
1163
|
+
[NX Daemon Server] - 2026-09-11T10:36:43.662Z - [WATCHER]: Processing file changes in outputs
|
|
1164
|
+
[NX Daemon Server] - 2026-09-11T10:36:43.817Z - [WATCHER]: Processing file changes in outputs
|
|
1165
|
+
[NX Daemon Server] - 2026-09-11T10:36:46.033Z - [WATCHER]: Processing file changes in outputs
|
|
1166
|
+
[NX Daemon Server] - 2026-09-11T10:36:46.034Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
|
|
1167
|
+
[NX Daemon Server] - 2026-09-11T10:36:46.184Z - [WATCHER]: Processing file changes in outputs
|
|
1168
|
+
[NX Daemon Server] - 2026-09-11T10:36:47.185Z - [WATCHER]: Processing file changes in outputs
|
|
1169
|
+
[NX Daemon Server] - 2026-09-11T10:36:47.186Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
|
|
1170
|
+
[NX Daemon Server] - 2026-09-11T10:36:47.404Z - [WATCHER]: Processing file changes in outputs
|
|
1171
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.069Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1172
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.069Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
|
|
1173
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.069Z - [REQUEST]:
|
|
1174
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.072Z - Time taken for 'hash changed files from watcher' 0.30280000157654285ms
|
|
1175
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.081Z - Time taken for 'build-project-configs' 7.9078000001609325ms
|
|
1176
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.096Z - [SYNC]: collect registered sync generators
|
|
1177
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.096Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1178
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.097Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1179
|
+
[NX Daemon Server] - 2026-09-11T10:36:50.097Z - Time taken for 'total execution time for createProjectGraph()' 11.362500000745058ms
|
|
1180
|
+
[NX Daemon Server] - 2026-09-11T10:36:58.429Z - [WATCHER]: Processing file changes in outputs
|
|
1181
|
+
[NX Daemon Server] - 2026-09-11T10:36:58.430Z - [WATCHER]: shared/testing/support/actions/fillCredentials/web.action.ts was modified
|
|
1182
|
+
[NX Daemon Server] - 2026-09-11T10:36:58.596Z - [WATCHER]: Processing file changes in outputs
|
|
1183
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.831Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1184
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.831Z - [REQUEST]: shared/testing/support/actions/fillCredentials/web.action.ts
|
|
1185
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.831Z - [REQUEST]:
|
|
1186
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.832Z - Time taken for 'hash changed files from watcher' 0.3953999988734722ms
|
|
1187
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.848Z - Time taken for 'build-project-configs' 12.105299999937415ms
|
|
1188
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.867Z - [SYNC]: collect registered sync generators
|
|
1189
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.868Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1190
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.868Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1191
|
+
[NX Daemon Server] - 2026-09-11T10:37:04.868Z - Time taken for 'total execution time for createProjectGraph()' 15.996899999678135ms
|
|
1192
|
+
[NX Daemon Server] - 2026-09-11T10:49:18.560Z - [WATCHER]: Processing file changes in outputs
|
|
1193
|
+
[NX Daemon Server] - 2026-09-11T10:49:18.609Z - [WATCHER]: tsconfig.json was modified
|
|
1194
|
+
[NX Daemon Server] - 2026-09-11T10:49:18.624Z - [WATCHER]: Processing file changes in outputs
|
|
1195
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.012Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1196
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.013Z - [REQUEST]: tsconfig.json
|
|
1197
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.013Z - [REQUEST]:
|
|
1198
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.015Z - Time taken for 'hash changed files from watcher' 0.4276000000536442ms
|
|
1199
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.032Z - Time taken for 'build-project-configs' 13.775700001046062ms
|
|
1200
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.057Z - [SYNC]: collect registered sync generators
|
|
1201
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.058Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1202
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.058Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1203
|
+
[NX Daemon Server] - 2026-09-11T10:49:25.058Z - Time taken for 'total execution time for createProjectGraph()' 18.79530000127852ms
|
|
1204
|
+
[NX Daemon Server] - 2026-09-11T10:49:26.929Z - [WATCHER]: Processing file changes in outputs
|
|
1205
|
+
[NX Daemon Server] - 2026-09-11T10:49:26.962Z - [WATCHER]: tsconfig.json was modified
|
|
1206
|
+
[NX Daemon Server] - 2026-09-11T10:49:30.807Z - [WATCHER]: Processing file changes in outputs
|
|
1207
|
+
[NX Daemon Server] - 2026-09-11T10:49:31.297Z - [WATCHER]: Processing file changes in outputs
|
|
1208
|
+
[NX Daemon Server] - 2026-09-11T10:49:31.799Z - [WATCHER]: Processing file changes in outputs
|
|
1209
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.375Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1210
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.375Z - [REQUEST]: tsconfig.json
|
|
1211
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.375Z - [REQUEST]:
|
|
1212
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.377Z - Time taken for 'hash changed files from watcher' 0.2906999997794628ms
|
|
1213
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.393Z - Time taken for 'build-project-configs' 11.801200000569224ms
|
|
1214
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.414Z - [SYNC]: collect registered sync generators
|
|
1215
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.415Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1216
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.415Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1217
|
+
[NX Daemon Server] - 2026-09-11T10:49:33.415Z - Time taken for 'total execution time for createProjectGraph()' 16.393800001591444ms
|
|
1218
|
+
[NX Daemon Server] - 2026-09-12T17:52:58.618Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
1219
|
+
[NX Daemon Server] - 2026-09-12T17:52:58.626Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
1220
|
+
[NX Daemon Server] - 2026-09-12T17:52:58.629Z - Established a connection. Number of open connections: 1
|
|
1221
|
+
[NX Daemon Server] - 2026-09-12T17:52:58.631Z - Established a connection. Number of open connections: 2
|
|
1222
|
+
[NX Daemon Server] - 2026-09-12T17:52:58.635Z - Closed a connection. Number of open connections: 1
|
|
1223
|
+
[NX Daemon Server] - 2026-09-12T17:52:58.638Z - [REQUEST]: Client Request for Project Graph Received
|
|
1224
|
+
[NX Daemon Server] - 2026-09-12T17:52:59.885Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1225
|
+
[NX Daemon Server] - 2026-09-12T17:52:59.885Z - [REQUEST]:
|
|
1226
|
+
[NX Daemon Server] - 2026-09-12T17:52:59.885Z - [REQUEST]:
|
|
1227
|
+
[NX Daemon Server] - 2026-09-12T17:52:59.902Z - Time taken for 'loadNxPlugins' 1242.721ms
|
|
1228
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.032Z - Time taken for 'build-project-configs' 90.6863000000003ms
|
|
1229
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.074Z - [SYNC]: collect registered sync generators
|
|
1230
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.077Z - [REQUEST]: Responding to the client. project-graph
|
|
1231
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.078Z - Time taken for 'total for creating and serializing project graph' 1438.0722999999998ms
|
|
1232
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.080Z - Done responding to the client project-graph
|
|
1233
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.080Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1438. Response time: 4.
|
|
1234
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.677Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1235
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.677Z - Done responding to the client handleHashTasks
|
|
1236
|
+
[NX Daemon Server] - 2026-09-12T17:53:00.677Z - Handled HASH_TASKS. Handling time: 10. Response time: 0.
|
|
1237
|
+
[NX Daemon Server] - 2026-09-12T17:53:01.626Z - Closed a connection. Number of open connections: 0
|
|
1238
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.297Z - Established a connection. Number of open connections: 1
|
|
1239
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.297Z - Closed a connection. Number of open connections: 0
|
|
1240
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.298Z - Established a connection. Number of open connections: 1
|
|
1241
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.302Z - [REQUEST]: Client Request for Project Graph Received
|
|
1242
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.303Z - [REQUEST]: Responding to the client. project-graph
|
|
1243
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.304Z - Time taken for 'total for creating and serializing project graph' 0.9169999998994172ms
|
|
1244
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.306Z - Done responding to the client project-graph
|
|
1245
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.306Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
|
|
1246
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.367Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1247
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.368Z - Done responding to the client handleHashTasks
|
|
1248
|
+
[NX Daemon Server] - 2026-09-12T18:14:31.368Z - Handled HASH_TASKS. Handling time: 2. Response time: 1.
|
|
1249
|
+
[NX Daemon Server] - 2026-09-12T18:14:32.181Z - Closed a connection. Number of open connections: 0
|
|
1250
|
+
[NX Daemon Server] - 2026-09-12T18:18:28.971Z - [WATCHER]: Processing file changes in outputs
|
|
1251
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.033Z - [WATCHER]: Processing file changes in outputs
|
|
1252
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.047Z - [WATCHER]: tsconfig.json was modified
|
|
1253
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.156Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1254
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.156Z - [REQUEST]: tsconfig.json
|
|
1255
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.156Z - [REQUEST]:
|
|
1256
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.162Z - Time taken for 'hash changed files from watcher' 2.0808000001125038ms
|
|
1257
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.194Z - Time taken for 'build-project-configs' 25.62789999996312ms
|
|
1258
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.231Z - [SYNC]: collect registered sync generators
|
|
1259
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.232Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1260
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.232Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1261
|
+
[NX Daemon Server] - 2026-09-12T18:18:29.233Z - Time taken for 'total execution time for createProjectGraph()' 31.96889999997802ms
|
|
1262
|
+
[NX Daemon Server] - 2026-09-12T18:18:51.899Z - [WATCHER]: Processing file changes in outputs
|
|
1263
|
+
[NX Daemon Server] - 2026-09-12T18:18:51.940Z - [WATCHER]: Processing file changes in outputs
|
|
1264
|
+
[NX Daemon Server] - 2026-09-12T18:18:51.952Z - [WATCHER]: tsconfig.json was modified
|
|
1265
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.157Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1266
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.157Z - [REQUEST]: tsconfig.json
|
|
1267
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.157Z - [REQUEST]:
|
|
1268
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.164Z - Time taken for 'hash changed files from watcher' 2.1903999999631196ms
|
|
1269
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.186Z - Time taken for 'build-project-configs' 19.487800000002608ms
|
|
1270
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.223Z - [SYNC]: collect registered sync generators
|
|
1271
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.224Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1272
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.225Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1273
|
+
[NX Daemon Server] - 2026-09-12T18:18:52.225Z - Time taken for 'total execution time for createProjectGraph()' 30.777600000146776ms
|
|
1274
|
+
[NX Daemon Server] - 2026-09-12T18:18:58.989Z - [WATCHER]: Processing file changes in outputs
|
|
1275
|
+
[NX Daemon Server] - 2026-09-12T18:18:59.158Z - [WATCHER]: Processing file changes in outputs
|
|
1276
|
+
[NX Daemon Server] - 2026-09-12T18:18:59.273Z - [WATCHER]: Processing file changes in outputs
|
|
1277
|
+
[NX Daemon Server] - 2026-09-12T18:18:59.425Z - [WATCHER]: Processing file changes in outputs
|
|
1278
|
+
[NX Daemon Server] - 2026-09-12T18:18:59.580Z - [WATCHER]: Processing file changes in outputs
|
|
1279
|
+
[NX Daemon Server] - 2026-09-12T18:18:59.754Z - [WATCHER]: Processing file changes in outputs
|
|
1280
|
+
[NX Daemon Server] - 2026-09-12T18:18:59.901Z - [WATCHER]: Processing file changes in outputs
|
|
1281
|
+
[NX Daemon Server] - 2026-09-12T18:19:00.043Z - [WATCHER]: Processing file changes in outputs
|
|
1282
|
+
[NX Daemon Server] - 2026-09-12T18:19:00.190Z - [WATCHER]: Processing file changes in outputs
|
|
1283
|
+
[NX Daemon Server] - 2026-09-12T18:19:00.328Z - [WATCHER]: Processing file changes in outputs
|
|
1284
|
+
[NX Daemon Server] - 2026-09-12T18:19:00.533Z - [WATCHER]: Processing file changes in outputs
|
|
1285
|
+
[NX Daemon Server] - 2026-09-12T18:19:00.663Z - [WATCHER]: Processing file changes in outputs
|
|
1286
|
+
[NX Daemon Server] - 2026-09-12T18:19:00.789Z - [WATCHER]: Processing file changes in outputs
|
|
1287
|
+
[NX Daemon Server] - 2026-09-12T18:19:00.941Z - [WATCHER]: Processing file changes in outputs
|
|
1288
|
+
[NX Daemon Server] - 2026-09-12T18:19:01.083Z - [WATCHER]: Processing file changes in outputs
|
|
1289
|
+
[NX Daemon Server] - 2026-09-15T06:34:22.058Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
1290
|
+
[NX Daemon Server] - 2026-09-15T06:34:22.069Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
1291
|
+
[NX Daemon Server] - 2026-09-15T06:34:22.073Z - Established a connection. Number of open connections: 1
|
|
1292
|
+
[NX Daemon Server] - 2026-09-15T06:34:22.078Z - Established a connection. Number of open connections: 2
|
|
1293
|
+
[NX Daemon Server] - 2026-09-15T06:34:22.084Z - Closed a connection. Number of open connections: 1
|
|
1294
|
+
[NX Daemon Server] - 2026-09-15T06:34:22.093Z - [REQUEST]: Client Request for Project Graph Received
|
|
1295
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.374Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1296
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.374Z - [REQUEST]:
|
|
1297
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.374Z - [REQUEST]:
|
|
1298
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.393Z - Time taken for 'loadNxPlugins' 1275.5236ms
|
|
1299
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.537Z - Time taken for 'build-project-configs' 100.94979999999987ms
|
|
1300
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.588Z - [SYNC]: collect registered sync generators
|
|
1301
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.592Z - [REQUEST]: Responding to the client. project-graph
|
|
1302
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.594Z - Time taken for 'total for creating and serializing project graph' 1498.8001ms
|
|
1303
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.595Z - Done responding to the client project-graph
|
|
1304
|
+
[NX Daemon Server] - 2026-09-15T06:34:23.595Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1499. Response time: 3.
|
|
1305
|
+
[NX Daemon Server] - 2026-09-15T06:34:24.384Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1306
|
+
[NX Daemon Server] - 2026-09-15T06:34:24.385Z - Done responding to the client handleHashTasks
|
|
1307
|
+
[NX Daemon Server] - 2026-09-15T06:34:24.385Z - Handled HASH_TASKS. Handling time: 17. Response time: 1.
|
|
1308
|
+
[NX Daemon Server] - 2026-09-15T06:34:27.207Z - Closed a connection. Number of open connections: 0
|
|
1309
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.439Z - [WATCHER]: Processing file changes in outputs
|
|
1310
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.479Z - [WATCHER]: Processing file changes in outputs
|
|
1311
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.501Z - [WATCHER]: tsconfig.json was modified
|
|
1312
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.523Z - [WATCHER]: Processing file changes in outputs
|
|
1313
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.626Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1314
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.632Z - [REQUEST]: tsconfig.json
|
|
1315
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.632Z - [REQUEST]:
|
|
1316
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.685Z - Time taken for 'hash changed files from watcher' 8.769100001081824ms
|
|
1317
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.749Z - Time taken for 'build-project-configs' 61.77890000119805ms
|
|
1318
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.825Z - [SYNC]: collect registered sync generators
|
|
1319
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.827Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1320
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.827Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1321
|
+
[NX Daemon Server] - 2026-09-15T09:07:52.828Z - Time taken for 'total execution time for createProjectGraph()' 84.07980000041425ms
|
|
1322
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.396Z - [WATCHER]: Processing file changes in outputs
|
|
1323
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.443Z - [WATCHER]: tsconfig.json was modified
|
|
1324
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.458Z - [WATCHER]: Processing file changes in outputs
|
|
1325
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.646Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1326
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.647Z - [REQUEST]: tsconfig.json
|
|
1327
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.647Z - [REQUEST]:
|
|
1328
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.653Z - Time taken for 'hash changed files from watcher' 1.104900000616908ms
|
|
1329
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.672Z - Time taken for 'build-project-configs' 17.196500001475215ms
|
|
1330
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.697Z - [SYNC]: collect registered sync generators
|
|
1331
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.698Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1332
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.699Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1333
|
+
[NX Daemon Server] - 2026-09-15T09:08:11.699Z - Time taken for 'total execution time for createProjectGraph()' 22.678700000047684ms
|
|
1334
|
+
[NX Daemon Server] - 2026-09-15T09:08:15.236Z - [WATCHER]: Processing file changes in outputs
|
|
1335
|
+
[NX Daemon Server] - 2026-09-15T09:08:15.456Z - [WATCHER]: Processing file changes in outputs
|
|
1336
|
+
[NX Daemon Server] - 2026-09-15T09:08:15.629Z - [WATCHER]: Processing file changes in outputs
|
|
1337
|
+
[NX Daemon Server] - 2026-09-15T09:08:15.802Z - [WATCHER]: Processing file changes in outputs
|
|
1338
|
+
[NX Daemon Server] - 2026-09-15T09:08:15.904Z - [WATCHER]: Processing file changes in outputs
|
|
1339
|
+
[NX Daemon Server] - 2026-09-15T09:08:16.142Z - [WATCHER]: Processing file changes in outputs
|
|
1340
|
+
[NX Daemon Server] - 2026-09-15T09:08:16.322Z - [WATCHER]: Processing file changes in outputs
|
|
1341
|
+
[NX Daemon Server] - 2026-09-15T09:08:16.504Z - [WATCHER]: Processing file changes in outputs
|
|
1342
|
+
[NX Daemon Server] - 2026-09-15T09:08:16.668Z - [WATCHER]: Processing file changes in outputs
|
|
1343
|
+
[NX Daemon Server] - 2026-09-15T09:08:16.750Z - [WATCHER]: Processing file changes in outputs
|
|
1344
|
+
[NX Daemon Server] - 2026-09-15T09:08:16.915Z - [WATCHER]: Processing file changes in outputs
|
|
1345
|
+
[NX Daemon Server] - 2026-09-15T09:08:17.087Z - [WATCHER]: Processing file changes in outputs
|
|
1346
|
+
[NX Daemon Server] - 2026-09-15T09:08:17.227Z - [WATCHER]: Processing file changes in outputs
|
|
1347
|
+
[NX Daemon Server] - 2026-09-15T09:08:17.376Z - [WATCHER]: Processing file changes in outputs
|
|
1348
|
+
[NX Daemon Server] - 2026-09-15T09:08:17.473Z - [WATCHER]: Processing file changes in outputs
|
|
1349
|
+
[NX Daemon Server] - 2026-09-16T01:45:17.937Z - Started listening on: \\.\pipe\nx\C:\Users\User\AppData\Local\Temp\9f0a3cd96fbd76c01150\d.sock
|
|
1350
|
+
[NX Daemon Server] - 2026-09-16T01:45:17.943Z - [WATCHER]: Subscribed to changes within: D:\wangsitId\testspectra-source\cli\templates\nx (native)
|
|
1351
|
+
[NX Daemon Server] - 2026-09-16T01:45:17.950Z - Established a connection. Number of open connections: 1
|
|
1352
|
+
[NX Daemon Server] - 2026-09-16T01:45:17.955Z - Closed a connection. Number of open connections: 0
|
|
1353
|
+
[NX Daemon Server] - 2026-09-16T01:45:17.956Z - Established a connection. Number of open connections: 1
|
|
1354
|
+
[NX Daemon Server] - 2026-09-16T01:45:17.957Z - [REQUEST]: Client Request for Project Graph Received
|
|
1355
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.365Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1356
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.366Z - [REQUEST]:
|
|
1357
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.366Z - [REQUEST]:
|
|
1358
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.375Z - Time taken for 'loadNxPlugins' 404.98779999999994ms
|
|
1359
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.445Z - Time taken for 'build-project-configs' 48.53729999999996ms
|
|
1360
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.472Z - [SYNC]: collect registered sync generators
|
|
1361
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.473Z - [REQUEST]: Responding to the client. project-graph
|
|
1362
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.474Z - Time taken for 'total for creating and serializing project graph' 515.8249000000001ms
|
|
1363
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.476Z - Done responding to the client project-graph
|
|
1364
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.476Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 516. Response time: 3.
|
|
1365
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.734Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1366
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.734Z - Done responding to the client handleHashTasks
|
|
1367
|
+
[NX Daemon Server] - 2026-09-16T01:45:18.734Z - Handled HASH_TASKS. Handling time: 10. Response time: 0.
|
|
1368
|
+
[NX Daemon Server] - 2026-09-16T01:45:19.562Z - Closed a connection. Number of open connections: 0
|
|
1369
|
+
[NX Daemon Server] - 2026-09-16T02:38:19.996Z - Established a connection. Number of open connections: 1
|
|
1370
|
+
[NX Daemon Server] - 2026-09-16T02:38:19.996Z - Closed a connection. Number of open connections: 0
|
|
1371
|
+
[NX Daemon Server] - 2026-09-16T02:38:19.997Z - Established a connection. Number of open connections: 1
|
|
1372
|
+
[NX Daemon Server] - 2026-09-16T02:38:19.999Z - [REQUEST]: Client Request for Project Graph Received
|
|
1373
|
+
[NX Daemon Server] - 2026-09-16T02:38:20.000Z - [REQUEST]: Responding to the client. project-graph
|
|
1374
|
+
[NX Daemon Server] - 2026-09-16T02:38:20.001Z - Time taken for 'total for creating and serializing project graph' 0.5132999997586012ms
|
|
1375
|
+
[NX Daemon Server] - 2026-09-16T02:38:20.003Z - Done responding to the client project-graph
|
|
1376
|
+
[NX Daemon Server] - 2026-09-16T02:38:20.003Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
|
|
1377
|
+
[NX Daemon Server] - 2026-09-16T02:38:20.387Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1378
|
+
[NX Daemon Server] - 2026-09-16T02:38:20.387Z - Done responding to the client handleHashTasks
|
|
1379
|
+
[NX Daemon Server] - 2026-09-16T02:38:20.387Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
1380
|
+
[NX Daemon Server] - 2026-09-16T02:38:21.035Z - Closed a connection. Number of open connections: 0
|
|
1381
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.292Z - Established a connection. Number of open connections: 1
|
|
1382
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.292Z - Closed a connection. Number of open connections: 0
|
|
1383
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.293Z - Established a connection. Number of open connections: 1
|
|
1384
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.296Z - [REQUEST]: Client Request for Project Graph Received
|
|
1385
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.297Z - [REQUEST]: Responding to the client. project-graph
|
|
1386
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.298Z - Time taken for 'total for creating and serializing project graph' 0.43410000018775463ms
|
|
1387
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.300Z - Done responding to the client project-graph
|
|
1388
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.300Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
|
|
1389
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.336Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1390
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.336Z - Done responding to the client handleHashTasks
|
|
1391
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.336Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
1392
|
+
[NX Daemon Server] - 2026-09-16T02:45:04.997Z - Closed a connection. Number of open connections: 0
|
|
1393
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.765Z - Established a connection. Number of open connections: 1
|
|
1394
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.766Z - Closed a connection. Number of open connections: 0
|
|
1395
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.767Z - Established a connection. Number of open connections: 1
|
|
1396
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.770Z - [REQUEST]: Client Request for Project Graph Received
|
|
1397
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.771Z - [REQUEST]: Responding to the client. project-graph
|
|
1398
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.771Z - Time taken for 'total for creating and serializing project graph' 0.6277999999001622ms
|
|
1399
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.773Z - Done responding to the client project-graph
|
|
1400
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.773Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2.
|
|
1401
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.814Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1402
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.814Z - Done responding to the client handleHashTasks
|
|
1403
|
+
[NX Daemon Server] - 2026-09-16T03:18:31.814Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
1404
|
+
[NX Daemon Server] - 2026-09-16T03:18:32.448Z - Closed a connection. Number of open connections: 0
|
|
1405
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.578Z - Established a connection. Number of open connections: 1
|
|
1406
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.578Z - Closed a connection. Number of open connections: 0
|
|
1407
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.579Z - Established a connection. Number of open connections: 1
|
|
1408
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.581Z - [REQUEST]: Client Request for Project Graph Received
|
|
1409
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.582Z - [REQUEST]: Responding to the client. project-graph
|
|
1410
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.583Z - Time taken for 'total for creating and serializing project graph' 0.642400000244379ms
|
|
1411
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.585Z - Done responding to the client project-graph
|
|
1412
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.585Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3.
|
|
1413
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.624Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1414
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.624Z - Done responding to the client handleHashTasks
|
|
1415
|
+
[NX Daemon Server] - 2026-09-16T03:33:20.624Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
1416
|
+
[NX Daemon Server] - 2026-09-16T03:33:21.246Z - Closed a connection. Number of open connections: 0
|
|
1417
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.773Z - Established a connection. Number of open connections: 1
|
|
1418
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.774Z - Closed a connection. Number of open connections: 0
|
|
1419
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.775Z - Established a connection. Number of open connections: 1
|
|
1420
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.781Z - [REQUEST]: Client Request for Project Graph Received
|
|
1421
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.782Z - [REQUEST]: Responding to the client. project-graph
|
|
1422
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.784Z - Time taken for 'total for creating and serializing project graph' 0.7047000005841255ms
|
|
1423
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.787Z - Done responding to the client project-graph
|
|
1424
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.787Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5.
|
|
1425
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.869Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1426
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.869Z - Done responding to the client handleHashTasks
|
|
1427
|
+
[NX Daemon Server] - 2026-09-16T03:34:19.869Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
|
|
1428
|
+
[NX Daemon Server] - 2026-09-16T03:34:20.838Z - Closed a connection. Number of open connections: 0
|
|
1429
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.023Z - [WATCHER]: Processing file changes in outputs
|
|
1430
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.024Z - [WATCHER]: 0 file(s) created or restored, 4 file(s) modified, 0 file(s) deleted
|
|
1431
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.139Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1432
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.139Z - [REQUEST]: spectra.config.ts,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/EnvironmentConfig/suite.md,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts
|
|
1433
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.139Z - [REQUEST]:
|
|
1434
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.141Z - Time taken for 'hash changed files from watcher' 2.0879000006243587ms
|
|
1435
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.154Z - Time taken for 'build-project-configs' 9.820099999196827ms
|
|
1436
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.177Z - [SYNC]: collect registered sync generators
|
|
1437
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.178Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1438
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.178Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1439
|
+
[NX Daemon Server] - 2026-09-16T03:48:37.178Z - Time taken for 'total execution time for createProjectGraph()' 19.874699999578297ms
|
|
1440
|
+
[NX Daemon Server] - 2026-09-16T03:57:54.907Z - [WATCHER]: 0 file(s) created or restored, 1 file(s) modified, 5 file(s) deleted
|
|
1441
|
+
[NX Daemon Server] - 2026-09-16T03:57:54.908Z - [WATCHER]: Processing file changes in outputs
|
|
1442
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.111Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1443
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.111Z - [REQUEST]: spectra.config.ts
|
|
1444
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.111Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable,packages/matchers/e2e/specs/EnvironmentConfig,packages/matchers/e2e/specs/EnvironmentConfig/suite.md,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts
|
|
1445
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.113Z - Time taken for 'hash changed files from watcher' 0.8640000000596046ms
|
|
1446
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.125Z - Time taken for 'build-project-configs' 10.81900000013411ms
|
|
1447
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.141Z - [SYNC]: collect registered sync generators
|
|
1448
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.141Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1449
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.141Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1450
|
+
[NX Daemon Server] - 2026-09-16T03:57:55.142Z - Time taken for 'total execution time for createProjectGraph()' 12.106700000353158ms
|
|
1451
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.803Z - Established a connection. Number of open connections: 1
|
|
1452
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.804Z - Closed a connection. Number of open connections: 0
|
|
1453
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.807Z - Established a connection. Number of open connections: 1
|
|
1454
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.811Z - [REQUEST]: Client Request for Project Graph Received
|
|
1455
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.811Z - [REQUEST]: Responding to the client. project-graph
|
|
1456
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.813Z - Time taken for 'total for creating and serializing project graph' 0.6319000003859401ms
|
|
1457
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.817Z - Done responding to the client project-graph
|
|
1458
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.817Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6.
|
|
1459
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.912Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
1460
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.912Z - Done responding to the client handleHashTasks
|
|
1461
|
+
[NX Daemon Server] - 2026-09-16T03:59:26.912Z - Handled HASH_TASKS. Handling time: 9. Response time: 0.
|
|
1462
|
+
[NX Daemon Server] - 2026-09-16T03:59:28.163Z - Closed a connection. Number of open connections: 0
|
|
1463
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.412Z - [WATCHER]: 0 file(s) created or restored, 4 file(s) modified, 0 file(s) deleted
|
|
1464
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.413Z - [WATCHER]: Processing file changes in outputs
|
|
1465
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.524Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1466
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.525Z - [REQUEST]: packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts,spectra.config.ts,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/EnvironmentConfig/suite.md
|
|
1467
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.525Z - [REQUEST]:
|
|
1468
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.528Z - Time taken for 'hash changed files from watcher' 1.2573000006377697ms
|
|
1469
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.541Z - Time taken for 'build-project-configs' 9.942700000479817ms
|
|
1470
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.562Z - [SYNC]: collect registered sync generators
|
|
1471
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.563Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1472
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.563Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1473
|
+
[NX Daemon Server] - 2026-09-16T04:08:01.563Z - Time taken for 'total execution time for createProjectGraph()' 20.66550000011921ms
|
|
1474
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.350Z - [WATCHER]: spectra.config.ts was modified
|
|
1475
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.350Z - [WATCHER]: Processing file changes in outputs
|
|
1476
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.583Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1477
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.584Z - [REQUEST]: spectra.config.ts
|
|
1478
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.584Z - [REQUEST]:
|
|
1479
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.598Z - Time taken for 'hash changed files from watcher' 3.6319999992847443ms
|
|
1480
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.614Z - Time taken for 'build-project-configs' 14.667899999767542ms
|
|
1481
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.636Z - [SYNC]: collect registered sync generators
|
|
1482
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.637Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1483
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.637Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1484
|
+
[NX Daemon Server] - 2026-09-16T04:34:11.637Z - Time taken for 'total execution time for createProjectGraph()' 19.375199999660254ms
|
|
1485
|
+
[NX Daemon Server] - 2026-09-16T04:35:37.980Z - [WATCHER]: Processing file changes in outputs
|
|
1486
|
+
[NX Daemon Server] - 2026-09-16T04:35:37.981Z - [WATCHER]: spectra.config.ts was modified
|
|
1487
|
+
[NX Daemon Server] - 2026-09-16T04:35:38.486Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1488
|
+
[NX Daemon Server] - 2026-09-16T04:35:38.486Z - [REQUEST]: spectra.config.ts
|
|
1489
|
+
[NX Daemon Server] - 2026-09-16T04:35:38.486Z - [REQUEST]:
|
|
1490
|
+
[NX Daemon Server] - 2026-09-16T04:35:38.568Z - Time taken for 'hash changed files from watcher' 68.4129999987781ms
|
|
1491
|
+
[NX Daemon Server] - 2026-09-16T04:35:38.592Z - [SYNC]: collect registered sync generators
|
|
1492
|
+
[NX Daemon Server] - 2026-09-16T04:35:38.593Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1493
|
+
[NX Daemon Server] - 2026-09-16T04:35:38.593Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1494
|
+
[NX Daemon Server] - 2026-09-16T04:35:38.593Z - Time taken for 'total execution time for createProjectGraph()' 19.33409999869764ms
|
|
1495
|
+
[NX Daemon Server] - 2026-09-16T04:43:29.375Z - [WATCHER]: Processing file changes in outputs
|
|
1496
|
+
[NX Daemon Server] - 2026-09-16T04:43:29.446Z - [WATCHER]: tsconfig.json was modified
|
|
1497
|
+
[NX Daemon Server] - 2026-09-16T04:43:29.446Z - [WATCHER]: Processing file changes in outputs
|
|
1498
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.258Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1499
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.258Z - [REQUEST]: tsconfig.json
|
|
1500
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.259Z - [REQUEST]:
|
|
1501
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.264Z - Time taken for 'hash changed files from watcher' 2.442400000989437ms
|
|
1502
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.290Z - Time taken for 'build-project-configs' 20.646300001069903ms
|
|
1503
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.334Z - [SYNC]: collect registered sync generators
|
|
1504
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.336Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1505
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.337Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1506
|
+
[NX Daemon Server] - 2026-09-16T04:43:30.337Z - Time taken for 'total execution time for createProjectGraph()' 39.80870000086725ms
|
|
1507
|
+
[NX Daemon Server] - 2026-09-16T04:48:09.246Z - [WATCHER]: Processing file changes in outputs
|
|
1508
|
+
[NX Daemon Server] - 2026-09-16T04:48:09.277Z - [WATCHER]: tsconfig.json was modified
|
|
1509
|
+
[NX Daemon Server] - 2026-09-16T04:48:10.955Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1510
|
+
[NX Daemon Server] - 2026-09-16T04:48:10.955Z - [REQUEST]: tsconfig.json
|
|
1511
|
+
[NX Daemon Server] - 2026-09-16T04:48:10.956Z - [REQUEST]:
|
|
1512
|
+
[NX Daemon Server] - 2026-09-16T04:48:11.192Z - Time taken for 'hash changed files from watcher' 0.4665000010281801ms
|
|
1513
|
+
[NX Daemon Server] - 2026-09-16T04:48:11.215Z - Time taken for 'build-project-configs' 18.74089999869466ms
|
|
1514
|
+
[NX Daemon Server] - 2026-09-16T04:48:11.249Z - [SYNC]: collect registered sync generators
|
|
1515
|
+
[NX Daemon Server] - 2026-09-16T04:48:11.250Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1516
|
+
[NX Daemon Server] - 2026-09-16T04:48:11.250Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1517
|
+
[NX Daemon Server] - 2026-09-16T04:48:11.250Z - Time taken for 'total execution time for createProjectGraph()' 29.686300000175834ms
|
|
1518
|
+
[NX Daemon Server] - 2026-09-16T04:48:16.166Z - [WATCHER]: Processing file changes in outputs
|
|
1519
|
+
[NX Daemon Server] - 2026-09-16T04:48:16.213Z - [WATCHER]: tsconfig.json was modified
|
|
1520
|
+
[NX Daemon Server] - 2026-09-16T04:48:16.227Z - [WATCHER]: Processing file changes in outputs
|
|
1521
|
+
[NX Daemon Server] - 2026-09-16T04:48:17.224Z - [WATCHER]: Processing file changes in outputs
|
|
1522
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.429Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1523
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.430Z - [REQUEST]: tsconfig.json
|
|
1524
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.430Z - [REQUEST]:
|
|
1525
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.432Z - Time taken for 'hash changed files from watcher' 0.828099999576807ms
|
|
1526
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.445Z - Time taken for 'build-project-configs' 11.156600000336766ms
|
|
1527
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.470Z - [SYNC]: collect registered sync generators
|
|
1528
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.471Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1529
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.471Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1530
|
+
[NX Daemon Server] - 2026-09-16T04:48:19.471Z - Time taken for 'total execution time for createProjectGraph()' 19.581800000742078ms
|
|
1531
|
+
[NX Daemon Server] - 2026-09-16T04:48:20.791Z - [WATCHER]: Processing file changes in outputs
|
|
1532
|
+
[NX Daemon Server] - 2026-09-16T04:48:20.912Z - [WATCHER]: Processing file changes in outputs
|
|
1533
|
+
[NX Daemon Server] - 2026-09-16T04:48:21.023Z - [WATCHER]: Processing file changes in outputs
|
|
1534
|
+
[NX Daemon Server] - 2026-09-16T04:48:21.163Z - [WATCHER]: Processing file changes in outputs
|
|
1535
|
+
[NX Daemon Server] - 2026-09-16T04:48:21.243Z - [WATCHER]: Processing file changes in outputs
|
|
1536
|
+
[NX Daemon Server] - 2026-09-16T04:48:21.412Z - [WATCHER]: Processing file changes in outputs
|
|
1537
|
+
[NX Daemon Server] - 2026-09-16T04:48:21.562Z - [WATCHER]: Processing file changes in outputs
|
|
1538
|
+
[NX Daemon Server] - 2026-09-16T04:48:21.686Z - [WATCHER]: Processing file changes in outputs
|
|
1539
|
+
[NX Daemon Server] - 2026-09-16T04:48:21.804Z - [WATCHER]: Processing file changes in outputs
|
|
1540
|
+
[NX Daemon Server] - 2026-09-16T04:48:21.867Z - [WATCHER]: Processing file changes in outputs
|
|
1541
|
+
[NX Daemon Server] - 2026-09-16T04:48:22.039Z - [WATCHER]: Processing file changes in outputs
|
|
1542
|
+
[NX Daemon Server] - 2026-09-16T04:48:22.173Z - [WATCHER]: Processing file changes in outputs
|
|
1543
|
+
[NX Daemon Server] - 2026-09-16T04:48:22.275Z - [WATCHER]: Processing file changes in outputs
|
|
1544
|
+
[NX Daemon Server] - 2026-09-16T04:48:22.381Z - [WATCHER]: Processing file changes in outputs
|
|
1545
|
+
[NX Daemon Server] - 2026-09-16T05:11:40.341Z - [WATCHER]: Processing file changes in outputs
|
|
1546
|
+
[NX Daemon Server] - 2026-09-16T05:11:40.343Z - [WATCHER]: package.json was modified
|
|
1547
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.755Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1548
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.755Z - [REQUEST]: package.json
|
|
1549
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.755Z - [REQUEST]:
|
|
1550
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.758Z - Time taken for 'hash changed files from watcher' 0.38430000096559525ms
|
|
1551
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.768Z - Time taken for 'build-project-configs' 9.717699998989701ms
|
|
1552
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.784Z - [SYNC]: collect registered sync generators
|
|
1553
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.785Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1554
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.785Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1555
|
+
[NX Daemon Server] - 2026-09-16T05:11:46.785Z - Time taken for 'total execution time for createProjectGraph()' 13.529999999329448ms
|
|
1556
|
+
[NX Daemon Server] - 2026-09-16T05:42:13.571Z - [WATCHER]: Processing file changes in outputs
|
|
1557
|
+
[NX Daemon Server] - 2026-09-16T05:42:13.583Z - [WATCHER]: package.json was modified
|
|
1558
|
+
[NX Daemon Server] - 2026-09-16T05:42:19.996Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1559
|
+
[NX Daemon Server] - 2026-09-16T05:42:19.996Z - [REQUEST]: package.json
|
|
1560
|
+
[NX Daemon Server] - 2026-09-16T05:42:19.996Z - [REQUEST]:
|
|
1561
|
+
[NX Daemon Server] - 2026-09-16T05:42:19.999Z - Time taken for 'hash changed files from watcher' 0.22199999913573265ms
|
|
1562
|
+
[NX Daemon Server] - 2026-09-16T05:42:20.009Z - Time taken for 'build-project-configs' 8.771900000050664ms
|
|
1563
|
+
[NX Daemon Server] - 2026-09-16T05:42:20.026Z - [SYNC]: collect registered sync generators
|
|
1564
|
+
[NX Daemon Server] - 2026-09-16T05:42:20.027Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1565
|
+
[NX Daemon Server] - 2026-09-16T05:42:20.027Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1566
|
+
[NX Daemon Server] - 2026-09-16T05:42:20.027Z - Time taken for 'total execution time for createProjectGraph()' 14.452099999412894ms
|
|
1567
|
+
[NX Daemon Server] - 2026-09-16T05:43:22.548Z - [WATCHER]: Processing file changes in outputs
|
|
1568
|
+
[NX Daemon Server] - 2026-09-16T05:43:22.550Z - [WATCHER]: package.json was modified
|
|
1569
|
+
[NX Daemon Server] - 2026-09-16T05:43:28.964Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1570
|
+
[NX Daemon Server] - 2026-09-16T05:43:28.964Z - [REQUEST]: package.json
|
|
1571
|
+
[NX Daemon Server] - 2026-09-16T05:43:28.964Z - [REQUEST]:
|
|
1572
|
+
[NX Daemon Server] - 2026-09-16T05:43:28.968Z - Time taken for 'hash changed files from watcher' 0.42109999991953373ms
|
|
1573
|
+
[NX Daemon Server] - 2026-09-16T05:43:28.983Z - Time taken for 'build-project-configs' 11.90929999947548ms
|
|
1574
|
+
[NX Daemon Server] - 2026-09-16T05:43:29.001Z - [SYNC]: collect registered sync generators
|
|
1575
|
+
[NX Daemon Server] - 2026-09-16T05:43:29.002Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1576
|
+
[NX Daemon Server] - 2026-09-16T05:43:29.002Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1577
|
+
[NX Daemon Server] - 2026-09-16T05:43:29.003Z - Time taken for 'total execution time for createProjectGraph()' 16.250700000673532ms
|