@testspectra/cli 1.1.8-rc.2 → 1.1.8-rc.21
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/README.md +47 -0
- package/bin/.testspectra-runner.hash +1 -1
- package/bin/spectra.js +0 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/__tests__/cloud-run.test.d.ts +1 -0
- package/dist/commands/__tests__/cloud-run.test.js +93 -0
- package/dist/commands/__tests__/run-e2e.test.js +49 -49
- package/dist/commands/add.js +2 -1
- package/dist/commands/cloud-run.d.ts +13 -0
- package/dist/commands/cloud-run.js +120 -0
- package/dist/commands/devices.js +1 -0
- package/dist/commands/docs.d.ts +4 -0
- package/dist/commands/docs.js +17 -0
- package/dist/commands/doctor.js +1 -0
- package/dist/commands/init.js +7 -160
- package/dist/commands/install.js +2 -0
- package/dist/commands/license.js +1 -0
- package/dist/commands/test.js +5 -3
- package/dist/generator/__tests__/tsconfig-isolation.test.js +2 -1
- package/dist/generator/__tests__/type-generator.test.js +38 -0
- package/dist/generator/architecture-doc-generator.d.ts +14 -0
- package/dist/generator/architecture-doc-generator.js +82 -0
- package/dist/generator/index.d.ts +1 -0
- package/dist/generator/index.js +1 -0
- package/dist/generator/tsconfig-generator.js +1 -1
- package/dist/generator/type-generator.d.ts +5 -2
- package/dist/generator/type-generator.js +14 -17
- package/dist/index.js +18 -11
- package/dist/linter/__tests__/component-test-imports.test.js +51 -51
- package/dist/linter/__tests__/shared-lib-boundary.test.js +15 -15
- package/dist/linter/__tests__/spec-schema.test.js +167 -167
- package/dist/linter/discovery.d.ts +3 -3
- package/dist/linter/discovery.js +5 -5
- package/dist/linter/schemas/spec.schema.d.ts +2 -2
- package/dist/linter/schemas/suite.schema.d.ts +4 -4
- package/dist/runner/bridge.js +53 -4
- package/package.json +34 -29
- package/templates/default/CLAUDE.md +16 -16
- 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 +2 -2
- package/templates/default/page-objects/AuthPage/mobile.ts +5 -5
- package/templates/default/page-objects/AuthPage/web.ts +10 -10
- package/templates/default/page-objects/MatchersPage/mobile.ts +70 -70
- package/templates/default/page-objects/MatchersPage/web.ts +43 -43
- 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 -42
- package/templates/default/page-objects/PlaygroundPage/web.ts +31 -31
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +53 -53
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/spec.md +19 -19
- package/templates/default/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts +31 -31
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/android.test.ts +3 -3
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/common.test.ts +3 -3
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts +27 -27
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/spec.md +19 -19
- package/templates/default/specs/ApiInterception/TC-0009-post-mocking/web.test.ts +26 -26
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/common.test.ts +30 -30
- package/templates/default/specs/ApiInterception/TC-0012-direct-and-late-response/spec.md +22 -22
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/common.test.ts +27 -27
- package/templates/default/specs/ApiInterception/TC-0013-real-network-call-recorded/spec.md +20 -20
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/spec.md +24 -24
- package/templates/default/specs/ApiInterception/TC-0015-mock-server-sent-events/web.test.ts +26 -26
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/spec.md +37 -37
- package/templates/default/specs/ApiInterception/TC-0016-bypass-websocket-with-app-level-mock/web.test.ts +21 -21
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/spec.md +29 -29
- package/templates/default/specs/ApiInterception/TC-0017-bypass-captcha-with-test-mode-flag/web.test.ts +16 -16
- package/templates/default/specs/ApiInterception/suite.md +10 -10
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/common.test.ts +30 -30
- package/templates/default/specs/ApiSeeding/TC-0014-seed-and-cleanup-via-hooks/spec.md +23 -23
- package/templates/default/specs/ApiSeeding/hooks/after/common.hook.ts +16 -16
- package/templates/default/specs/ApiSeeding/hooks/before/common.hook.ts +28 -28
- package/templates/default/specs/ApiSeeding/suite.md +9 -9
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/mobile.test.ts +7 -7
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/spec.md +19 -19
- package/templates/default/specs/Authentication/TC-0021-seed-authenticated-session/web.test.ts +9 -9
- package/templates/default/specs/Authentication/suite.md +9 -9
- 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 -17
- 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 -17
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/spec.md +28 -28
- package/templates/default/specs/BrowserContext/TC-0022-history-navigation/web.test.ts +26 -26
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/common.test.ts +26 -26
- package/templates/default/specs/ContentMatchers/TC-0005-text-and-values/spec.md +19 -19
- 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 -17
- 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 -14
- package/templates/default/specs/ContentMatchers/TC-0020-scoped-element-access/spec.md +21 -21
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/mobile.test.ts +28 -28
- package/templates/default/specs/DeepLink/TC-0018-navigate-via-deep-link/spec.md +29 -29
- package/templates/default/specs/DeepLink/suite.md +9 -9
- 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 -17
- 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 -19
- package/templates/default/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts +29 -29
- package/templates/default/specs/ElementMatchers/suite.md +10 -10
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts +5 -5
- package/templates/default/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
- package/templates/default/specs/EnvironmentConfig/suite.md +9 -9
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/mobile.test.ts +26 -26
- package/templates/default/specs/PermissionRationale/TC-0010-camera-permission-allow/spec.md +22 -22
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/mobile.test.ts +13 -13
- package/templates/default/specs/PermissionRationale/TC-0011-camera-permission-deny/spec.md +20 -20
- package/templates/default/specs/PermissionRationale/suite.md +9 -9
- 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 -18
- 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 -18
- package/templates/default/specs/Playground/TC-0002-toggle-elements/web.test.ts +6 -6
- package/templates/default/spectra.config.ts +52 -52
- 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 -9
- package/templates/default/support/actions/seedSession/web.action.ts +13 -13
- 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/docs/ARCHITECTURE.default.md +26 -0
- package/templates/docs/ARCHITECTURE.nx.md +119 -0
- package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db-shm → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db-shm} +0 -0
- package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db-wal → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db-wal} +0 -0
- package/templates/nx/.nx/workspace-data/d/daemon.log +1090 -1577
- package/templates/nx/.nx/workspace-data/d/server-process.json +1 -1
- package/templates/nx/.nx/workspace-data/file-map.json +56 -56
- package/templates/nx/.nx/workspace-data/lockfile.hash +1 -1
- package/templates/nx/.nx/workspace-data/nx_files.nxt +0 -0
- package/templates/nx/.nx/workspace-data/parsed-lock-file.json +185 -6681
- package/templates/nx/.nx/workspace-data/project-graph.json +190 -7434
- package/templates/nx/CLAUDE.md +10 -10
- package/templates/nx/package.json +3 -3
- package/templates/nx/packages/matchers/e2e/project.json +2 -2
- package/templates/nx/packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts +27 -27
- 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 -24
- 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 -5
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md +16 -16
- package/templates/nx/packages/matchers/e2e/specs/EnvironmentConfig/suite.md +9 -9
- package/templates/nx/packages/playground/e2e/project.json +2 -2
- 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 -91
- 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 +18 -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 -52
- package/templates/react-component/.cursorrules +17 -17
- package/templates/react-component/.vscode/extensions.json +5 -5
- package/templates/react-component/CLAUDE.md +14 -14
- package/templates/react-component/README.md +69 -69
- package/templates/react-component/fixtures/component-mock.json +12 -12
- package/templates/react-component/global-hooks/after/web.hook.ts +3 -3
- package/templates/react-component/global-hooks/before/web.hook.ts +3 -3
- package/templates/react-component/package.json +27 -27
- package/templates/react-component/page-objects/BadgeComponent/web.ts +23 -23
- package/templates/react-component/page-objects/ButtonComponent/web.ts +23 -23
- package/templates/react-component/page-objects/InputComponent/web.ts +13 -13
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0002-badge-severities-and-dot/web.test.tsx +11 -11
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0006-badge-success-with-dot/web.test.tsx +10 -10
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/spec.md +18 -18
- package/templates/react-component/specs/BadgeComponent/TC-0007-badge-by-severity-lookup/web.test.tsx +16 -16
- package/templates/react-component/specs/BadgeComponent/suite.md +12 -12
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/spec.md +19 -19
- package/templates/react-component/specs/ButtonComponent/TC-0001-button-rendering-and-click/web.test.tsx +28 -28
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/spec.md +19 -19
- package/templates/react-component/specs/ButtonComponent/TC-0004-disabled-button-not-clickable/web.test.tsx +22 -22
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/spec.md +18 -18
- package/templates/react-component/specs/ButtonComponent/TC-0005-button-renders-icon/web.test.tsx +8 -8
- package/templates/react-component/specs/ButtonComponent/suite.md +12 -12
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/spec.md +20 -20
- package/templates/react-component/specs/InputComponent/TC-0003-input-typing-and-clear/web.test.tsx +28 -28
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/spec.md +18 -18
- package/templates/react-component/specs/InputComponent/TC-0008-disabled-input-not-editable/web.test.tsx +9 -9
- package/templates/react-component/specs/InputComponent/suite.md +12 -12
- package/templates/react-component/spectra.config.ts +27 -27
- package/templates/react-component/src/components/Badge/Badge.tsx +60 -60
- package/templates/react-component/src/components/Button/Button.tsx +57 -57
- package/templates/react-component/src/components/Input/Input.tsx +41 -41
- package/templates/react-component/src/test-utils.tsx +23 -23
- package/templates/react-component/support/actions/fillInputField/web.action.ts +9 -9
- package/templates/react-component/support/steps/verifyButtonState/web.step.ts +12 -12
- package/bin/testspectra-runner.exe +0 -0
- /package/templates/nx/.nx/workspace-data/{59842386-c7c4-44ca-b2c2-20e1700bd13d.db → 70094CFD-E89B-57A1-9619-2FC5F4963C54.db} +0 -0
|
@@ -1,1577 +1,1090 @@
|
|
|
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
|
-
[NX
|
|
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-
|
|
169
|
-
[NX Daemon Server] - 2026-09-
|
|
170
|
-
[NX Daemon Server] - 2026-09-
|
|
171
|
-
[NX Daemon Server] - 2026-09-
|
|
172
|
-
[NX Daemon Server] - 2026-09-
|
|
173
|
-
[NX Daemon Server] - 2026-09-
|
|
174
|
-
[NX Daemon Server] - 2026-09-
|
|
175
|
-
[NX Daemon Server] - 2026-09-
|
|
176
|
-
[NX Daemon Server] - 2026-09-
|
|
177
|
-
[NX Daemon Server] - 2026-09-
|
|
178
|
-
[NX Daemon Server] - 2026-09-
|
|
179
|
-
[NX Daemon Server] - 2026-09-
|
|
180
|
-
|
|
181
|
-
[NX
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
[NX Daemon Server] - 2026-09-
|
|
201
|
-
[NX Daemon Server] - 2026-09-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
[NX Daemon Server] - 2026-09-
|
|
217
|
-
[NX Daemon Server] - 2026-09-
|
|
218
|
-
[NX Daemon Server] - 2026-09-
|
|
219
|
-
[NX Daemon Server] - 2026-09-
|
|
220
|
-
[NX Daemon Server] - 2026-09-
|
|
221
|
-
[NX Daemon Server] - 2026-09-
|
|
222
|
-
[NX Daemon Server] - 2026-09-
|
|
223
|
-
[NX Daemon Server] - 2026-09-
|
|
224
|
-
[NX Daemon Server] - 2026-09-
|
|
225
|
-
[NX Daemon Server] - 2026-09-
|
|
226
|
-
[NX Daemon Server] - 2026-09-
|
|
227
|
-
[NX Daemon Server] - 2026-09-
|
|
228
|
-
|
|
229
|
-
[NX
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
[NX Daemon Server] - 2026-09-
|
|
249
|
-
[NX Daemon Server] - 2026-09-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
[NX Daemon Server] - 2026-09-
|
|
265
|
-
[NX Daemon Server] - 2026-09-
|
|
266
|
-
[NX Daemon Server] - 2026-09-
|
|
267
|
-
[NX Daemon Server] - 2026-09-
|
|
268
|
-
[NX Daemon Server] - 2026-09-
|
|
269
|
-
[NX Daemon Server] - 2026-09-
|
|
270
|
-
[NX Daemon Server] - 2026-09-
|
|
271
|
-
[NX Daemon Server] - 2026-09-
|
|
272
|
-
[NX Daemon Server] - 2026-09-
|
|
273
|
-
[NX Daemon Server] - 2026-09-
|
|
274
|
-
[NX Daemon Server] - 2026-09-
|
|
275
|
-
[NX Daemon Server] - 2026-09-
|
|
276
|
-
|
|
277
|
-
[NX
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
[NX Daemon Server] - 2026-09-
|
|
297
|
-
[NX Daemon Server] - 2026-09-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
[NX Daemon Server] - 2026-09-
|
|
313
|
-
[NX Daemon Server] - 2026-09-
|
|
314
|
-
[NX Daemon Server] - 2026-09-
|
|
315
|
-
[NX Daemon Server] - 2026-09-
|
|
316
|
-
[NX Daemon Server] - 2026-09-
|
|
317
|
-
[NX Daemon Server] - 2026-09-
|
|
318
|
-
[NX Daemon Server] - 2026-09-
|
|
319
|
-
[NX Daemon Server] - 2026-09-
|
|
320
|
-
[NX Daemon Server] - 2026-09-
|
|
321
|
-
[NX Daemon Server] - 2026-09-
|
|
322
|
-
[NX Daemon Server] - 2026-09-
|
|
323
|
-
[NX Daemon Server] - 2026-09-
|
|
324
|
-
|
|
325
|
-
[NX
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
[NX Daemon Server] - 2026-09-
|
|
345
|
-
[NX Daemon Server] - 2026-09-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
[NX Daemon Server] - 2026-09-
|
|
361
|
-
[NX Daemon Server] - 2026-09-
|
|
362
|
-
[NX Daemon Server] - 2026-09-
|
|
363
|
-
[NX Daemon Server] - 2026-09-
|
|
364
|
-
[NX Daemon Server] - 2026-09-
|
|
365
|
-
[NX Daemon Server] - 2026-09-
|
|
366
|
-
[NX Daemon Server] - 2026-09-
|
|
367
|
-
[NX Daemon Server] - 2026-09-
|
|
368
|
-
[NX Daemon Server] - 2026-09-
|
|
369
|
-
[NX Daemon Server] - 2026-09-
|
|
370
|
-
|
|
371
|
-
[NX
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
[NX Daemon Server] - 2026-09-
|
|
391
|
-
[NX Daemon Server] - 2026-09-
|
|
392
|
-
[NX Daemon Server] - 2026-09-
|
|
393
|
-
[NX Daemon Server] - 2026-09-
|
|
394
|
-
[NX Daemon Server] - 2026-09-
|
|
395
|
-
[NX Daemon Server] - 2026-09-
|
|
396
|
-
[NX Daemon Server] - 2026-09-
|
|
397
|
-
[NX Daemon Server] - 2026-09-
|
|
398
|
-
[NX Daemon Server] - 2026-09-
|
|
399
|
-
[NX Daemon Server] - 2026-09-
|
|
400
|
-
[NX Daemon Server] - 2026-09-
|
|
401
|
-
[NX Daemon Server] - 2026-09-
|
|
402
|
-
[NX Daemon Server] - 2026-09-
|
|
403
|
-
[NX Daemon Server] - 2026-09-
|
|
404
|
-
[NX Daemon Server] - 2026-09-
|
|
405
|
-
[NX Daemon Server] - 2026-09-
|
|
406
|
-
[NX Daemon Server] - 2026-09-
|
|
407
|
-
[NX Daemon Server] - 2026-09-
|
|
408
|
-
[NX Daemon Server] - 2026-09-
|
|
409
|
-
[NX Daemon Server] - 2026-09-
|
|
410
|
-
[NX Daemon Server] - 2026-09-
|
|
411
|
-
[NX Daemon Server] - 2026-09-
|
|
412
|
-
[NX Daemon Server] - 2026-09-
|
|
413
|
-
[NX Daemon Server] - 2026-09-
|
|
414
|
-
[NX Daemon Server] - 2026-09-
|
|
415
|
-
[NX Daemon Server] - 2026-09-
|
|
416
|
-
[NX Daemon Server] - 2026-09-
|
|
417
|
-
[NX Daemon Server] - 2026-09-
|
|
418
|
-
[NX Daemon Server] - 2026-09-
|
|
419
|
-
[NX Daemon Server] - 2026-09-
|
|
420
|
-
[NX Daemon Server] - 2026-09-
|
|
421
|
-
[NX Daemon Server] - 2026-09-
|
|
422
|
-
[NX Daemon Server] - 2026-09-
|
|
423
|
-
[NX Daemon Server] - 2026-09-
|
|
424
|
-
[NX Daemon Server] - 2026-09-
|
|
425
|
-
[NX Daemon Server] - 2026-09-
|
|
426
|
-
[NX Daemon Server] - 2026-09-
|
|
427
|
-
[NX Daemon Server] - 2026-09-
|
|
428
|
-
[NX Daemon Server] - 2026-09-
|
|
429
|
-
[NX Daemon Server] - 2026-09-
|
|
430
|
-
[NX Daemon Server] - 2026-09-
|
|
431
|
-
[NX Daemon Server] - 2026-09-
|
|
432
|
-
[NX Daemon Server] - 2026-09-
|
|
433
|
-
[NX Daemon Server] - 2026-09-
|
|
434
|
-
[NX Daemon Server] - 2026-09-
|
|
435
|
-
[NX Daemon Server] - 2026-09-
|
|
436
|
-
[NX Daemon Server] - 2026-09-
|
|
437
|
-
[NX Daemon Server] - 2026-09-
|
|
438
|
-
[NX Daemon Server] - 2026-09-
|
|
439
|
-
[NX Daemon Server] - 2026-09-
|
|
440
|
-
[NX Daemon Server] - 2026-09-
|
|
441
|
-
[NX Daemon Server] - 2026-09-
|
|
442
|
-
[NX Daemon Server] - 2026-09-
|
|
443
|
-
[NX Daemon Server] - 2026-09-
|
|
444
|
-
[NX Daemon Server] - 2026-09-
|
|
445
|
-
[NX Daemon Server] - 2026-09-
|
|
446
|
-
[NX Daemon Server] - 2026-09-
|
|
447
|
-
[NX Daemon Server] - 2026-09-
|
|
448
|
-
[NX Daemon Server] - 2026-09-
|
|
449
|
-
[NX Daemon Server] - 2026-09-
|
|
450
|
-
[NX Daemon Server] - 2026-09-
|
|
451
|
-
[NX Daemon Server] - 2026-09-
|
|
452
|
-
[NX Daemon Server] - 2026-09-
|
|
453
|
-
[NX Daemon Server] - 2026-09-
|
|
454
|
-
[NX Daemon Server] - 2026-09-
|
|
455
|
-
[NX Daemon Server] - 2026-09-
|
|
456
|
-
[NX Daemon Server] - 2026-09-
|
|
457
|
-
[NX Daemon Server] - 2026-09-
|
|
458
|
-
[NX Daemon Server] - 2026-09-
|
|
459
|
-
[NX Daemon Server] - 2026-09-
|
|
460
|
-
[NX Daemon Server] - 2026-09-
|
|
461
|
-
[NX Daemon Server] - 2026-09-
|
|
462
|
-
[NX Daemon Server] - 2026-09-
|
|
463
|
-
[NX Daemon Server] - 2026-09-
|
|
464
|
-
[NX Daemon Server] - 2026-09-
|
|
465
|
-
[NX Daemon Server] - 2026-09-
|
|
466
|
-
[NX Daemon Server] - 2026-09-
|
|
467
|
-
[NX Daemon Server] - 2026-09-
|
|
468
|
-
[NX Daemon Server] - 2026-09-
|
|
469
|
-
[NX Daemon Server] - 2026-09-
|
|
470
|
-
[NX Daemon Server] - 2026-09-
|
|
471
|
-
[NX Daemon Server] - 2026-09-
|
|
472
|
-
[NX Daemon Server] - 2026-09-
|
|
473
|
-
[NX Daemon Server] - 2026-09-
|
|
474
|
-
[NX Daemon Server] - 2026-09-
|
|
475
|
-
[NX Daemon Server] - 2026-09-
|
|
476
|
-
[NX Daemon Server] - 2026-09-
|
|
477
|
-
[NX Daemon Server] - 2026-09-
|
|
478
|
-
[NX Daemon Server] - 2026-09-
|
|
479
|
-
[NX Daemon Server] - 2026-09-
|
|
480
|
-
[NX Daemon Server] - 2026-09-
|
|
481
|
-
[NX Daemon Server] - 2026-09-
|
|
482
|
-
[NX Daemon Server] - 2026-09-
|
|
483
|
-
[NX Daemon Server] - 2026-09-
|
|
484
|
-
[NX Daemon Server] - 2026-09-
|
|
485
|
-
[NX Daemon Server] - 2026-09-
|
|
486
|
-
[NX Daemon Server] - 2026-09-
|
|
487
|
-
[NX Daemon Server] - 2026-09-
|
|
488
|
-
[NX Daemon Server] - 2026-09-
|
|
489
|
-
[NX Daemon Server] - 2026-09-
|
|
490
|
-
[NX Daemon Server] - 2026-09-
|
|
491
|
-
[NX Daemon Server] - 2026-09-
|
|
492
|
-
[NX Daemon Server] - 2026-09-
|
|
493
|
-
[NX Daemon Server] - 2026-09-
|
|
494
|
-
[NX Daemon Server] - 2026-09-
|
|
495
|
-
[NX Daemon Server] - 2026-09-
|
|
496
|
-
[NX Daemon Server] - 2026-09-
|
|
497
|
-
[NX Daemon Server] - 2026-09-
|
|
498
|
-
[NX Daemon Server] - 2026-09-
|
|
499
|
-
[NX Daemon Server] - 2026-09-
|
|
500
|
-
[NX Daemon Server] - 2026-09-
|
|
501
|
-
[NX Daemon Server] - 2026-09-
|
|
502
|
-
[NX Daemon Server] - 2026-09-
|
|
503
|
-
[NX Daemon Server] - 2026-09-
|
|
504
|
-
[NX Daemon Server] - 2026-09-
|
|
505
|
-
[NX Daemon Server] - 2026-09-
|
|
506
|
-
[NX Daemon Server] - 2026-09-
|
|
507
|
-
[NX Daemon Server] - 2026-09-
|
|
508
|
-
[NX Daemon Server] - 2026-09-
|
|
509
|
-
[NX Daemon Server] - 2026-09-
|
|
510
|
-
[NX Daemon Server] - 2026-09-
|
|
511
|
-
[NX Daemon Server] - 2026-09-
|
|
512
|
-
[NX Daemon Server] - 2026-09-
|
|
513
|
-
[NX Daemon Server] - 2026-09-
|
|
514
|
-
[NX Daemon Server] - 2026-09-
|
|
515
|
-
[NX Daemon Server] - 2026-09-
|
|
516
|
-
[NX Daemon Server] - 2026-09-
|
|
517
|
-
[NX Daemon Server] - 2026-09-
|
|
518
|
-
[NX Daemon Server] - 2026-09-
|
|
519
|
-
[NX Daemon Server] - 2026-09-
|
|
520
|
-
[NX Daemon Server] - 2026-09-
|
|
521
|
-
[NX Daemon Server] - 2026-09-
|
|
522
|
-
[NX Daemon Server] - 2026-09-
|
|
523
|
-
[NX Daemon Server] - 2026-09-
|
|
524
|
-
[NX Daemon Server] - 2026-09-
|
|
525
|
-
[NX Daemon Server] - 2026-09-
|
|
526
|
-
[NX Daemon Server] - 2026-09-
|
|
527
|
-
[NX Daemon Server] - 2026-09-
|
|
528
|
-
[NX Daemon Server] - 2026-09-
|
|
529
|
-
[NX Daemon Server] - 2026-09-
|
|
530
|
-
[NX Daemon Server] - 2026-09-
|
|
531
|
-
[NX Daemon Server] - 2026-09-
|
|
532
|
-
[NX Daemon Server] - 2026-09-
|
|
533
|
-
[NX Daemon Server] - 2026-09-
|
|
534
|
-
[NX Daemon Server] - 2026-09-
|
|
535
|
-
[NX Daemon Server] - 2026-09-
|
|
536
|
-
[NX Daemon Server] - 2026-09-
|
|
537
|
-
[NX Daemon Server] - 2026-09-
|
|
538
|
-
[NX Daemon Server] - 2026-09-
|
|
539
|
-
[NX Daemon Server] - 2026-09-
|
|
540
|
-
[NX Daemon Server] - 2026-09-
|
|
541
|
-
[NX Daemon Server] - 2026-09-
|
|
542
|
-
[NX Daemon Server] - 2026-09-
|
|
543
|
-
[NX Daemon Server] - 2026-09-
|
|
544
|
-
[NX Daemon Server] - 2026-09-
|
|
545
|
-
[NX Daemon Server] - 2026-09-
|
|
546
|
-
[NX Daemon Server] - 2026-09-
|
|
547
|
-
[NX Daemon Server] - 2026-09-
|
|
548
|
-
[NX Daemon Server] - 2026-09-
|
|
549
|
-
[NX Daemon Server] - 2026-09-
|
|
550
|
-
[NX Daemon Server] - 2026-09-
|
|
551
|
-
[NX Daemon Server] - 2026-09-
|
|
552
|
-
[NX Daemon Server] - 2026-09-
|
|
553
|
-
[NX Daemon Server] - 2026-09-
|
|
554
|
-
[NX Daemon Server] - 2026-09-
|
|
555
|
-
[NX Daemon Server] - 2026-09-
|
|
556
|
-
[NX Daemon Server] - 2026-09-
|
|
557
|
-
[NX Daemon Server] - 2026-09-
|
|
558
|
-
[NX Daemon Server] - 2026-09-
|
|
559
|
-
[NX Daemon Server] - 2026-09-
|
|
560
|
-
[NX Daemon Server] - 2026-09-
|
|
561
|
-
[NX Daemon Server] - 2026-09-
|
|
562
|
-
[NX Daemon Server] - 2026-09-
|
|
563
|
-
[NX Daemon Server] - 2026-09-
|
|
564
|
-
[NX Daemon Server] - 2026-09-
|
|
565
|
-
[NX Daemon Server] - 2026-09-
|
|
566
|
-
[NX Daemon Server] - 2026-09-
|
|
567
|
-
[NX Daemon Server] - 2026-09-
|
|
568
|
-
[NX Daemon Server] - 2026-09-
|
|
569
|
-
[NX Daemon Server] - 2026-09-
|
|
570
|
-
[NX Daemon Server] - 2026-09-
|
|
571
|
-
[NX Daemon Server] - 2026-09-
|
|
572
|
-
[NX Daemon Server] - 2026-09-
|
|
573
|
-
[NX Daemon Server] - 2026-09-
|
|
574
|
-
[NX Daemon Server] - 2026-09-
|
|
575
|
-
[NX Daemon Server] - 2026-09-
|
|
576
|
-
[NX Daemon Server] - 2026-09-
|
|
577
|
-
[NX Daemon Server] - 2026-09-
|
|
578
|
-
[NX Daemon Server] - 2026-09-
|
|
579
|
-
[NX Daemon Server] - 2026-09-
|
|
580
|
-
[NX Daemon Server] - 2026-09-
|
|
581
|
-
[NX Daemon Server] - 2026-09-
|
|
582
|
-
[NX Daemon Server] - 2026-09-
|
|
583
|
-
[NX Daemon Server] - 2026-09-
|
|
584
|
-
[NX Daemon Server] - 2026-09-
|
|
585
|
-
[NX Daemon Server] - 2026-09-
|
|
586
|
-
[NX Daemon Server] - 2026-09-
|
|
587
|
-
[NX Daemon Server] - 2026-09-
|
|
588
|
-
[NX Daemon Server] - 2026-09-
|
|
589
|
-
[NX Daemon Server] - 2026-09-
|
|
590
|
-
[NX Daemon Server] - 2026-09-
|
|
591
|
-
[NX Daemon Server] - 2026-09-
|
|
592
|
-
[NX Daemon Server] - 2026-09-
|
|
593
|
-
[NX Daemon Server] - 2026-09-
|
|
594
|
-
[NX Daemon Server] - 2026-09-
|
|
595
|
-
[NX Daemon Server] - 2026-09-
|
|
596
|
-
[NX Daemon Server] - 2026-09-
|
|
597
|
-
[NX Daemon Server] - 2026-09-
|
|
598
|
-
[NX Daemon Server] - 2026-09-
|
|
599
|
-
[NX Daemon Server] - 2026-09-
|
|
600
|
-
[NX Daemon Server] - 2026-09-
|
|
601
|
-
[NX Daemon Server] - 2026-09-
|
|
602
|
-
[NX Daemon Server] - 2026-09-
|
|
603
|
-
[NX Daemon Server] - 2026-09-
|
|
604
|
-
[NX Daemon Server] - 2026-09-
|
|
605
|
-
[NX Daemon Server] - 2026-09-
|
|
606
|
-
[NX Daemon Server] - 2026-09-
|
|
607
|
-
[NX Daemon Server] - 2026-09-
|
|
608
|
-
[NX Daemon Server] - 2026-09-
|
|
609
|
-
[NX Daemon Server] - 2026-09-
|
|
610
|
-
[NX Daemon Server] - 2026-09-
|
|
611
|
-
[NX Daemon Server] - 2026-09-
|
|
612
|
-
[NX Daemon Server] - 2026-09-
|
|
613
|
-
[NX Daemon Server] - 2026-09-
|
|
614
|
-
[NX Daemon Server] - 2026-09-
|
|
615
|
-
[NX Daemon Server] - 2026-09-
|
|
616
|
-
[NX Daemon Server] - 2026-09-
|
|
617
|
-
[NX Daemon Server] - 2026-09-
|
|
618
|
-
[NX Daemon Server] - 2026-09-
|
|
619
|
-
[NX Daemon Server] - 2026-09-
|
|
620
|
-
[NX Daemon Server] - 2026-09-
|
|
621
|
-
[NX Daemon Server] - 2026-09-
|
|
622
|
-
[NX Daemon Server] - 2026-09-
|
|
623
|
-
[NX Daemon Server] - 2026-09-
|
|
624
|
-
[NX Daemon Server] - 2026-09-
|
|
625
|
-
[NX Daemon Server] - 2026-09-
|
|
626
|
-
[NX Daemon Server] - 2026-09-
|
|
627
|
-
[NX Daemon Server] - 2026-09-
|
|
628
|
-
[NX Daemon Server] - 2026-09-
|
|
629
|
-
[NX Daemon Server] - 2026-09-
|
|
630
|
-
[NX Daemon Server] - 2026-09-
|
|
631
|
-
[NX Daemon Server] - 2026-09-
|
|
632
|
-
[NX Daemon Server] - 2026-09-
|
|
633
|
-
[NX Daemon Server] - 2026-09-
|
|
634
|
-
[NX Daemon Server] - 2026-09-
|
|
635
|
-
[NX Daemon Server] - 2026-09-
|
|
636
|
-
[NX Daemon Server] - 2026-09-
|
|
637
|
-
[NX Daemon Server] - 2026-09-
|
|
638
|
-
[NX Daemon Server] - 2026-09-
|
|
639
|
-
[NX Daemon Server] - 2026-09-
|
|
640
|
-
[NX Daemon Server] - 2026-09-
|
|
641
|
-
[NX Daemon Server] - 2026-09-
|
|
642
|
-
[NX Daemon Server] - 2026-09-
|
|
643
|
-
[NX Daemon Server] - 2026-09-
|
|
644
|
-
[NX Daemon Server] - 2026-09-
|
|
645
|
-
[NX Daemon Server] - 2026-09-
|
|
646
|
-
[NX Daemon Server] - 2026-09-
|
|
647
|
-
[NX Daemon Server] - 2026-09-
|
|
648
|
-
[NX Daemon Server] - 2026-09-
|
|
649
|
-
[NX Daemon Server] - 2026-09-
|
|
650
|
-
[NX Daemon Server] - 2026-09-
|
|
651
|
-
[NX Daemon Server] - 2026-09-
|
|
652
|
-
[NX Daemon Server] - 2026-09-
|
|
653
|
-
[NX Daemon Server] - 2026-09-
|
|
654
|
-
[NX Daemon Server] - 2026-09-
|
|
655
|
-
[NX Daemon Server] - 2026-09-
|
|
656
|
-
[NX Daemon Server] - 2026-09-
|
|
657
|
-
[NX Daemon Server] - 2026-09-
|
|
658
|
-
[NX Daemon Server] - 2026-09-
|
|
659
|
-
[NX Daemon Server] - 2026-09-
|
|
660
|
-
[NX Daemon Server] - 2026-09-
|
|
661
|
-
[NX Daemon Server] - 2026-09-
|
|
662
|
-
[NX Daemon Server] - 2026-09-
|
|
663
|
-
[NX Daemon Server] - 2026-09-
|
|
664
|
-
[NX Daemon Server] - 2026-09-
|
|
665
|
-
[NX Daemon Server] - 2026-09-
|
|
666
|
-
[NX Daemon Server] - 2026-09-
|
|
667
|
-
[NX Daemon Server] - 2026-09-
|
|
668
|
-
[NX Daemon Server] - 2026-09-
|
|
669
|
-
[NX Daemon Server] - 2026-09-
|
|
670
|
-
[NX Daemon Server] - 2026-09-
|
|
671
|
-
[NX Daemon Server] - 2026-09-
|
|
672
|
-
[NX Daemon Server] - 2026-09-
|
|
673
|
-
[NX Daemon Server] - 2026-09-
|
|
674
|
-
[NX Daemon Server] - 2026-09-
|
|
675
|
-
[NX Daemon Server] - 2026-09-
|
|
676
|
-
[NX Daemon Server] - 2026-09-
|
|
677
|
-
[NX Daemon Server] - 2026-09-
|
|
678
|
-
[NX Daemon Server] - 2026-09-
|
|
679
|
-
[NX Daemon Server] - 2026-09-
|
|
680
|
-
[NX Daemon Server] - 2026-09-
|
|
681
|
-
[NX Daemon Server] - 2026-09-
|
|
682
|
-
[NX Daemon Server] - 2026-09-
|
|
683
|
-
[NX Daemon Server] - 2026-09-
|
|
684
|
-
[NX Daemon Server] - 2026-09-
|
|
685
|
-
[NX Daemon Server] - 2026-09-
|
|
686
|
-
[NX Daemon Server] - 2026-09-
|
|
687
|
-
[NX Daemon Server] - 2026-09-
|
|
688
|
-
[NX Daemon Server] - 2026-09-
|
|
689
|
-
[NX Daemon Server] - 2026-09-
|
|
690
|
-
[NX Daemon Server] - 2026-09-
|
|
691
|
-
[NX Daemon Server] - 2026-09-
|
|
692
|
-
[NX Daemon Server] - 2026-09-
|
|
693
|
-
[NX Daemon Server] - 2026-09-
|
|
694
|
-
[NX Daemon Server] - 2026-09-
|
|
695
|
-
[NX Daemon Server] - 2026-09-
|
|
696
|
-
[NX Daemon Server] - 2026-09-
|
|
697
|
-
[NX Daemon Server] - 2026-09-
|
|
698
|
-
[NX Daemon Server] - 2026-09-
|
|
699
|
-
[NX Daemon Server] - 2026-09-
|
|
700
|
-
[NX Daemon Server] - 2026-09-
|
|
701
|
-
[NX Daemon Server] - 2026-09-
|
|
702
|
-
[NX Daemon Server] - 2026-09-
|
|
703
|
-
[NX Daemon Server] - 2026-09-
|
|
704
|
-
[NX Daemon Server] - 2026-09-
|
|
705
|
-
[NX Daemon Server] - 2026-09-
|
|
706
|
-
[NX Daemon Server] - 2026-09-
|
|
707
|
-
[NX Daemon Server] - 2026-09-
|
|
708
|
-
[NX Daemon Server] - 2026-09-
|
|
709
|
-
[NX Daemon Server] - 2026-09-
|
|
710
|
-
[NX Daemon Server] - 2026-09-
|
|
711
|
-
[NX Daemon Server] - 2026-09-
|
|
712
|
-
[NX Daemon Server] - 2026-09-
|
|
713
|
-
[NX Daemon Server] - 2026-09-
|
|
714
|
-
[NX Daemon Server] - 2026-09-
|
|
715
|
-
[NX Daemon Server] - 2026-09-
|
|
716
|
-
[NX Daemon Server] - 2026-09-
|
|
717
|
-
[NX Daemon Server] - 2026-09-
|
|
718
|
-
[NX Daemon Server] - 2026-09-
|
|
719
|
-
[NX Daemon Server] - 2026-09-
|
|
720
|
-
[NX Daemon Server] - 2026-09-
|
|
721
|
-
[NX Daemon Server] - 2026-09-
|
|
722
|
-
[NX Daemon Server] - 2026-09-
|
|
723
|
-
[NX Daemon Server] - 2026-09-
|
|
724
|
-
[NX Daemon Server] - 2026-09-
|
|
725
|
-
[NX Daemon Server] - 2026-09-
|
|
726
|
-
[NX Daemon Server] - 2026-09-
|
|
727
|
-
[NX Daemon Server] - 2026-09-
|
|
728
|
-
[NX Daemon Server] - 2026-09-
|
|
729
|
-
[NX Daemon Server] - 2026-09-
|
|
730
|
-
[NX Daemon Server] - 2026-09-
|
|
731
|
-
[NX Daemon Server] - 2026-09-
|
|
732
|
-
[NX Daemon Server] - 2026-09-
|
|
733
|
-
[NX Daemon Server] - 2026-09-
|
|
734
|
-
[NX Daemon Server] - 2026-09-
|
|
735
|
-
[NX Daemon Server] - 2026-09-
|
|
736
|
-
[NX Daemon Server] - 2026-09-
|
|
737
|
-
[NX Daemon Server] - 2026-09-
|
|
738
|
-
[NX Daemon Server] - 2026-09-
|
|
739
|
-
[NX Daemon Server] - 2026-09-
|
|
740
|
-
[NX Daemon Server] - 2026-09-
|
|
741
|
-
[NX Daemon Server] - 2026-09-
|
|
742
|
-
[NX Daemon Server] - 2026-09-
|
|
743
|
-
[NX Daemon Server] - 2026-09-
|
|
744
|
-
[NX Daemon Server] - 2026-09-
|
|
745
|
-
[NX Daemon Server] - 2026-09-
|
|
746
|
-
[NX Daemon Server] - 2026-09-
|
|
747
|
-
[NX Daemon Server] - 2026-09-
|
|
748
|
-
[NX Daemon Server] - 2026-09-
|
|
749
|
-
[NX Daemon Server] - 2026-09-
|
|
750
|
-
[NX Daemon Server] - 2026-09-
|
|
751
|
-
[NX Daemon Server] - 2026-09-
|
|
752
|
-
[NX Daemon Server] - 2026-09-
|
|
753
|
-
[NX Daemon Server] - 2026-09-
|
|
754
|
-
[NX Daemon Server] - 2026-09-
|
|
755
|
-
[NX Daemon Server] - 2026-09-
|
|
756
|
-
[NX Daemon Server] - 2026-09-
|
|
757
|
-
[NX Daemon Server] - 2026-09-
|
|
758
|
-
[NX Daemon Server] - 2026-09-
|
|
759
|
-
[NX Daemon Server] - 2026-09-
|
|
760
|
-
[NX Daemon Server] - 2026-09-
|
|
761
|
-
[NX Daemon Server] - 2026-09-
|
|
762
|
-
[NX Daemon Server] - 2026-09-
|
|
763
|
-
[NX Daemon Server] - 2026-09-
|
|
764
|
-
[NX Daemon Server] - 2026-09-
|
|
765
|
-
[NX Daemon Server] - 2026-09-
|
|
766
|
-
[NX Daemon Server] - 2026-09-
|
|
767
|
-
[NX Daemon Server] - 2026-09-
|
|
768
|
-
[NX Daemon Server] - 2026-09-
|
|
769
|
-
[NX Daemon Server] - 2026-09-
|
|
770
|
-
[NX Daemon Server] - 2026-09-
|
|
771
|
-
[NX Daemon Server] - 2026-09-
|
|
772
|
-
[NX Daemon Server] - 2026-09-
|
|
773
|
-
[NX Daemon Server] - 2026-09-
|
|
774
|
-
[NX Daemon Server] - 2026-09-
|
|
775
|
-
[NX Daemon Server] - 2026-09-
|
|
776
|
-
[NX Daemon Server] - 2026-09-
|
|
777
|
-
[NX Daemon Server] - 2026-09-
|
|
778
|
-
[NX Daemon Server] - 2026-09-
|
|
779
|
-
[NX Daemon Server] - 2026-09-
|
|
780
|
-
[NX Daemon Server] - 2026-09-
|
|
781
|
-
[NX Daemon Server] - 2026-09-
|
|
782
|
-
[NX Daemon Server] - 2026-09-
|
|
783
|
-
[NX Daemon Server] - 2026-09-
|
|
784
|
-
[NX Daemon Server] - 2026-09-
|
|
785
|
-
[NX Daemon Server] - 2026-09-
|
|
786
|
-
[NX Daemon Server] - 2026-09-
|
|
787
|
-
[NX Daemon Server] - 2026-09-
|
|
788
|
-
[NX Daemon Server] - 2026-09-
|
|
789
|
-
[NX Daemon Server] - 2026-09-
|
|
790
|
-
[NX Daemon Server] - 2026-09-
|
|
791
|
-
[NX Daemon Server] - 2026-09-
|
|
792
|
-
[NX Daemon Server] - 2026-09-
|
|
793
|
-
[NX Daemon Server] - 2026-09-
|
|
794
|
-
[NX Daemon Server] - 2026-09-
|
|
795
|
-
[NX Daemon Server] - 2026-09-
|
|
796
|
-
[NX Daemon Server] - 2026-09-
|
|
797
|
-
[NX Daemon Server] - 2026-09-
|
|
798
|
-
[NX Daemon Server] - 2026-09-
|
|
799
|
-
[NX Daemon Server] - 2026-09-
|
|
800
|
-
[NX Daemon Server] - 2026-09-
|
|
801
|
-
[NX Daemon Server] - 2026-09-
|
|
802
|
-
[NX Daemon Server] - 2026-09-
|
|
803
|
-
[NX Daemon Server] - 2026-09-
|
|
804
|
-
[NX Daemon Server] - 2026-09-
|
|
805
|
-
[NX Daemon Server] - 2026-09-
|
|
806
|
-
[NX Daemon Server] - 2026-09-
|
|
807
|
-
[NX Daemon Server] - 2026-09-
|
|
808
|
-
[NX Daemon Server] - 2026-09-
|
|
809
|
-
[NX Daemon Server] - 2026-09-
|
|
810
|
-
[NX Daemon Server] - 2026-09-
|
|
811
|
-
[NX Daemon Server] - 2026-09-
|
|
812
|
-
[NX Daemon Server] - 2026-09-
|
|
813
|
-
[NX Daemon Server] - 2026-09-
|
|
814
|
-
[NX Daemon Server] - 2026-09-
|
|
815
|
-
[NX Daemon Server] - 2026-09-
|
|
816
|
-
[NX Daemon Server] - 2026-09-
|
|
817
|
-
[NX Daemon Server] - 2026-09-
|
|
818
|
-
[NX Daemon Server] - 2026-09-
|
|
819
|
-
[NX Daemon Server] - 2026-09-
|
|
820
|
-
[NX Daemon Server] - 2026-09-
|
|
821
|
-
[NX Daemon Server] - 2026-09-
|
|
822
|
-
[NX Daemon Server] - 2026-09-
|
|
823
|
-
[NX Daemon Server] - 2026-09-
|
|
824
|
-
[NX Daemon Server] - 2026-09-
|
|
825
|
-
[NX Daemon Server] - 2026-09-
|
|
826
|
-
[NX Daemon Server] - 2026-09-
|
|
827
|
-
[NX Daemon Server] - 2026-09-
|
|
828
|
-
[NX Daemon Server] - 2026-09-
|
|
829
|
-
[NX Daemon Server] - 2026-09-
|
|
830
|
-
[NX Daemon Server] - 2026-09-
|
|
831
|
-
[NX Daemon Server] - 2026-09-
|
|
832
|
-
[NX Daemon Server] - 2026-09-
|
|
833
|
-
[NX Daemon Server] - 2026-09-
|
|
834
|
-
[NX Daemon Server] - 2026-09-
|
|
835
|
-
[NX Daemon Server] - 2026-09-
|
|
836
|
-
[NX Daemon Server] - 2026-09-
|
|
837
|
-
[NX Daemon Server] - 2026-09-
|
|
838
|
-
[NX Daemon Server] - 2026-09-
|
|
839
|
-
[NX Daemon Server] - 2026-09-
|
|
840
|
-
[NX Daemon Server] - 2026-09-
|
|
841
|
-
[NX Daemon Server] - 2026-09-
|
|
842
|
-
[NX Daemon Server] - 2026-09-
|
|
843
|
-
[NX Daemon Server] - 2026-09-
|
|
844
|
-
[NX Daemon Server] - 2026-09-
|
|
845
|
-
[NX Daemon Server] - 2026-09-
|
|
846
|
-
[NX Daemon Server] - 2026-09-
|
|
847
|
-
[NX Daemon Server] - 2026-09-
|
|
848
|
-
[NX Daemon Server] - 2026-09-
|
|
849
|
-
[NX Daemon Server] - 2026-09-
|
|
850
|
-
[NX Daemon Server] - 2026-09-
|
|
851
|
-
[NX Daemon Server] - 2026-09-
|
|
852
|
-
[NX Daemon Server] - 2026-09-
|
|
853
|
-
[NX Daemon Server] - 2026-09-
|
|
854
|
-
[NX Daemon Server] - 2026-09-
|
|
855
|
-
[NX Daemon Server] - 2026-09-
|
|
856
|
-
[NX Daemon Server] - 2026-09-
|
|
857
|
-
[NX Daemon Server] - 2026-09-
|
|
858
|
-
[NX Daemon Server] - 2026-09-
|
|
859
|
-
[NX Daemon Server] - 2026-09-
|
|
860
|
-
[NX Daemon Server] - 2026-09-
|
|
861
|
-
[NX Daemon Server] - 2026-09-
|
|
862
|
-
[NX Daemon Server] - 2026-09-
|
|
863
|
-
[NX Daemon Server] - 2026-09-
|
|
864
|
-
[NX Daemon Server] - 2026-09-
|
|
865
|
-
[NX Daemon Server] - 2026-09-
|
|
866
|
-
[NX Daemon Server] - 2026-09-
|
|
867
|
-
[NX Daemon Server] - 2026-09-
|
|
868
|
-
[NX Daemon Server] - 2026-09-
|
|
869
|
-
[NX Daemon Server] - 2026-09-
|
|
870
|
-
[NX Daemon Server] - 2026-09-
|
|
871
|
-
[NX Daemon Server] - 2026-09-
|
|
872
|
-
[NX Daemon Server] - 2026-09-
|
|
873
|
-
[NX Daemon Server] - 2026-09-
|
|
874
|
-
[NX Daemon Server] - 2026-09-
|
|
875
|
-
[NX Daemon Server] - 2026-09-
|
|
876
|
-
[NX Daemon Server] - 2026-09-
|
|
877
|
-
[NX Daemon Server] - 2026-09-
|
|
878
|
-
[NX Daemon Server] - 2026-09-
|
|
879
|
-
[NX Daemon Server] - 2026-09-
|
|
880
|
-
[NX Daemon Server] - 2026-09-
|
|
881
|
-
[NX Daemon Server] - 2026-09-
|
|
882
|
-
[NX Daemon Server] - 2026-09-
|
|
883
|
-
[NX Daemon Server] - 2026-09-
|
|
884
|
-
[NX Daemon Server] - 2026-09-
|
|
885
|
-
[NX Daemon Server] - 2026-09-
|
|
886
|
-
[NX Daemon Server] - 2026-09-
|
|
887
|
-
[NX Daemon Server] - 2026-09-
|
|
888
|
-
[NX Daemon Server] - 2026-09-
|
|
889
|
-
[NX Daemon Server] - 2026-09-
|
|
890
|
-
[NX Daemon Server] - 2026-09-
|
|
891
|
-
[NX Daemon Server] - 2026-09-
|
|
892
|
-
[NX Daemon Server] - 2026-09-
|
|
893
|
-
[NX Daemon Server] - 2026-09-
|
|
894
|
-
[NX Daemon Server] - 2026-09-
|
|
895
|
-
[NX Daemon Server] - 2026-09-
|
|
896
|
-
[NX Daemon Server] - 2026-09-
|
|
897
|
-
[NX Daemon Server] - 2026-09-
|
|
898
|
-
[NX Daemon Server] - 2026-09-
|
|
899
|
-
[NX Daemon Server] - 2026-09-
|
|
900
|
-
[NX Daemon Server] - 2026-09-
|
|
901
|
-
[NX Daemon Server] - 2026-09-
|
|
902
|
-
[NX Daemon Server] - 2026-09-
|
|
903
|
-
[NX Daemon Server] - 2026-09-
|
|
904
|
-
[NX Daemon Server] - 2026-09-
|
|
905
|
-
[NX Daemon Server] - 2026-09-
|
|
906
|
-
[NX Daemon Server] - 2026-09-
|
|
907
|
-
[NX Daemon Server] - 2026-09-
|
|
908
|
-
[NX Daemon Server] - 2026-09-
|
|
909
|
-
[NX Daemon Server] - 2026-09-
|
|
910
|
-
[NX Daemon Server] - 2026-09-
|
|
911
|
-
[NX Daemon Server] - 2026-09-
|
|
912
|
-
[NX Daemon Server] - 2026-09-
|
|
913
|
-
[NX Daemon Server] - 2026-09-
|
|
914
|
-
[NX Daemon Server] - 2026-09-
|
|
915
|
-
[NX Daemon Server] - 2026-09-
|
|
916
|
-
[NX Daemon Server] - 2026-09-
|
|
917
|
-
[NX Daemon Server] - 2026-09-
|
|
918
|
-
[NX Daemon Server] - 2026-09-
|
|
919
|
-
[NX Daemon Server] - 2026-09-
|
|
920
|
-
[NX Daemon Server] - 2026-09-
|
|
921
|
-
[NX Daemon Server] - 2026-09-
|
|
922
|
-
[NX Daemon Server] - 2026-09-
|
|
923
|
-
[NX Daemon Server] - 2026-09-
|
|
924
|
-
[NX Daemon Server] - 2026-09-
|
|
925
|
-
[NX Daemon Server] - 2026-09-
|
|
926
|
-
[NX Daemon Server] - 2026-09-
|
|
927
|
-
[NX Daemon Server] - 2026-09-
|
|
928
|
-
[NX Daemon Server] - 2026-09-
|
|
929
|
-
[NX Daemon Server] - 2026-09-
|
|
930
|
-
[NX Daemon Server] - 2026-09-
|
|
931
|
-
[NX Daemon Server] - 2026-09-
|
|
932
|
-
[NX Daemon Server] - 2026-09-
|
|
933
|
-
[NX Daemon Server] - 2026-09-
|
|
934
|
-
[NX Daemon Server] - 2026-09-
|
|
935
|
-
[NX Daemon Server] - 2026-09-
|
|
936
|
-
[NX Daemon Server] - 2026-09-
|
|
937
|
-
[NX Daemon Server] - 2026-09-
|
|
938
|
-
[NX Daemon Server] - 2026-09-
|
|
939
|
-
[NX Daemon Server] - 2026-09-
|
|
940
|
-
[NX Daemon Server] - 2026-09-
|
|
941
|
-
[NX Daemon Server] - 2026-09-
|
|
942
|
-
[NX Daemon Server] - 2026-09-
|
|
943
|
-
[NX Daemon Server] - 2026-09-
|
|
944
|
-
[NX Daemon Server] - 2026-09-
|
|
945
|
-
[NX Daemon Server] - 2026-09-
|
|
946
|
-
[NX Daemon Server] - 2026-09-
|
|
947
|
-
[NX Daemon Server] - 2026-09-
|
|
948
|
-
[NX Daemon Server] - 2026-09-
|
|
949
|
-
[NX Daemon Server] - 2026-09-
|
|
950
|
-
[NX Daemon Server] - 2026-09-
|
|
951
|
-
[NX Daemon Server] - 2026-09-
|
|
952
|
-
[NX Daemon Server] - 2026-09-
|
|
953
|
-
[NX Daemon Server] - 2026-09-
|
|
954
|
-
[NX Daemon Server] - 2026-09-
|
|
955
|
-
[NX Daemon Server] - 2026-09-
|
|
956
|
-
[NX Daemon Server] - 2026-09-
|
|
957
|
-
[NX Daemon Server] - 2026-09-
|
|
958
|
-
[NX Daemon Server] - 2026-09-
|
|
959
|
-
[NX Daemon Server] - 2026-09-
|
|
960
|
-
[NX Daemon Server] - 2026-09-
|
|
961
|
-
[NX Daemon Server] - 2026-09-
|
|
962
|
-
[NX Daemon Server] - 2026-09-
|
|
963
|
-
[NX Daemon Server] - 2026-09-
|
|
964
|
-
[NX Daemon Server] - 2026-09-
|
|
965
|
-
[NX Daemon Server] - 2026-09-
|
|
966
|
-
[NX Daemon Server] - 2026-09-
|
|
967
|
-
[NX Daemon Server] - 2026-09-
|
|
968
|
-
[NX Daemon Server] - 2026-09-
|
|
969
|
-
[NX Daemon Server] - 2026-09-
|
|
970
|
-
[NX Daemon Server] - 2026-09-
|
|
971
|
-
[NX Daemon Server] - 2026-09-
|
|
972
|
-
[NX Daemon Server] - 2026-09-
|
|
973
|
-
[NX Daemon Server] - 2026-09-
|
|
974
|
-
[NX Daemon Server] - 2026-09-
|
|
975
|
-
[NX Daemon Server] - 2026-09-
|
|
976
|
-
[NX Daemon Server] - 2026-09-
|
|
977
|
-
[NX Daemon Server] - 2026-09-
|
|
978
|
-
[NX Daemon Server] - 2026-09-
|
|
979
|
-
[NX Daemon Server] - 2026-09-
|
|
980
|
-
[NX Daemon Server] - 2026-09-
|
|
981
|
-
[NX Daemon Server] - 2026-09-
|
|
982
|
-
[NX Daemon Server] - 2026-09-
|
|
983
|
-
[NX Daemon Server] - 2026-09-
|
|
984
|
-
[NX Daemon Server] - 2026-09-
|
|
985
|
-
[NX Daemon Server] - 2026-09-
|
|
986
|
-
[NX Daemon Server] - 2026-09-
|
|
987
|
-
[NX Daemon Server] - 2026-09-
|
|
988
|
-
[NX Daemon Server] - 2026-09-
|
|
989
|
-
[NX Daemon Server] - 2026-09-
|
|
990
|
-
[NX Daemon Server] - 2026-09-
|
|
991
|
-
[NX Daemon Server] - 2026-09-
|
|
992
|
-
[NX Daemon Server] - 2026-09-
|
|
993
|
-
[NX Daemon Server] - 2026-09-
|
|
994
|
-
[NX Daemon Server] - 2026-09-
|
|
995
|
-
[NX Daemon Server] - 2026-09-
|
|
996
|
-
[NX Daemon Server] - 2026-09-
|
|
997
|
-
[NX Daemon Server] - 2026-09-
|
|
998
|
-
[NX Daemon Server] - 2026-09-
|
|
999
|
-
[NX Daemon Server] - 2026-09-
|
|
1000
|
-
[NX Daemon Server] - 2026-09-
|
|
1001
|
-
[NX Daemon Server] - 2026-09-
|
|
1002
|
-
[NX Daemon Server] - 2026-09-
|
|
1003
|
-
[NX Daemon Server] - 2026-09-
|
|
1004
|
-
[NX Daemon Server] - 2026-09-
|
|
1005
|
-
[NX Daemon Server] - 2026-09-
|
|
1006
|
-
[NX Daemon Server] - 2026-09-
|
|
1007
|
-
[NX Daemon Server] - 2026-09-
|
|
1008
|
-
[NX Daemon Server] - 2026-09-
|
|
1009
|
-
[NX Daemon Server] - 2026-09-
|
|
1010
|
-
[NX Daemon Server] - 2026-09-
|
|
1011
|
-
[NX Daemon Server] - 2026-09-
|
|
1012
|
-
[NX Daemon Server] - 2026-09-
|
|
1013
|
-
[NX Daemon Server] - 2026-09-
|
|
1014
|
-
[NX Daemon Server] - 2026-09-
|
|
1015
|
-
[NX Daemon Server] - 2026-09-
|
|
1016
|
-
[NX Daemon Server] - 2026-09-
|
|
1017
|
-
[NX Daemon Server] - 2026-09-
|
|
1018
|
-
[NX Daemon Server] - 2026-09-
|
|
1019
|
-
[NX Daemon Server] - 2026-09-
|
|
1020
|
-
[NX Daemon Server] - 2026-09-
|
|
1021
|
-
[NX Daemon Server] - 2026-09-
|
|
1022
|
-
[NX Daemon Server] - 2026-09-
|
|
1023
|
-
[NX Daemon Server] - 2026-09-
|
|
1024
|
-
[NX Daemon Server] - 2026-09-
|
|
1025
|
-
[NX Daemon Server] - 2026-09-
|
|
1026
|
-
[NX Daemon Server] - 2026-09-
|
|
1027
|
-
[NX Daemon Server] - 2026-09-
|
|
1028
|
-
[NX Daemon Server] - 2026-09-
|
|
1029
|
-
[NX Daemon Server] - 2026-09-
|
|
1030
|
-
[NX Daemon Server] - 2026-09-
|
|
1031
|
-
[NX Daemon Server] - 2026-09-
|
|
1032
|
-
[NX Daemon Server] - 2026-09-
|
|
1033
|
-
[NX Daemon Server] - 2026-09-
|
|
1034
|
-
[NX Daemon Server] - 2026-09-
|
|
1035
|
-
[NX Daemon Server] - 2026-09-
|
|
1036
|
-
[NX Daemon Server] - 2026-09-
|
|
1037
|
-
[NX Daemon Server] - 2026-09-
|
|
1038
|
-
[NX Daemon Server] - 2026-09-
|
|
1039
|
-
[NX Daemon Server] - 2026-09-
|
|
1040
|
-
[NX Daemon Server] - 2026-09-
|
|
1041
|
-
[NX Daemon Server] - 2026-09-
|
|
1042
|
-
[NX Daemon Server] - 2026-09-
|
|
1043
|
-
[NX Daemon Server] - 2026-09-
|
|
1044
|
-
[NX Daemon Server] - 2026-09-
|
|
1045
|
-
[NX Daemon Server] - 2026-09-
|
|
1046
|
-
[NX Daemon Server] - 2026-09-
|
|
1047
|
-
[NX Daemon Server] - 2026-09-
|
|
1048
|
-
[NX Daemon Server] - 2026-09-
|
|
1049
|
-
[NX Daemon Server] - 2026-09-
|
|
1050
|
-
[NX Daemon Server] - 2026-09-
|
|
1051
|
-
[NX Daemon Server] - 2026-09-
|
|
1052
|
-
[NX Daemon Server] - 2026-09-
|
|
1053
|
-
[NX Daemon Server] - 2026-09-
|
|
1054
|
-
[NX Daemon Server] - 2026-09-
|
|
1055
|
-
[NX Daemon Server] - 2026-09-
|
|
1056
|
-
[NX Daemon Server] - 2026-09-
|
|
1057
|
-
[NX Daemon Server] - 2026-09-
|
|
1058
|
-
[NX Daemon Server] - 2026-09-
|
|
1059
|
-
[NX Daemon Server] - 2026-09-
|
|
1060
|
-
[NX Daemon Server] - 2026-09-
|
|
1061
|
-
[NX Daemon Server] - 2026-09-
|
|
1062
|
-
[NX Daemon Server] - 2026-09-
|
|
1063
|
-
[NX Daemon Server] - 2026-09-
|
|
1064
|
-
[NX Daemon Server] - 2026-09-
|
|
1065
|
-
[NX Daemon Server] - 2026-09-
|
|
1066
|
-
[NX Daemon Server] - 2026-09-
|
|
1067
|
-
[NX Daemon Server] - 2026-09-
|
|
1068
|
-
[NX Daemon Server] - 2026-09-
|
|
1069
|
-
[NX Daemon Server] - 2026-09-
|
|
1070
|
-
[NX Daemon Server] - 2026-09-
|
|
1071
|
-
[NX Daemon Server] - 2026-09-
|
|
1072
|
-
[NX Daemon Server] - 2026-09-
|
|
1073
|
-
[NX Daemon Server] - 2026-09-
|
|
1074
|
-
[NX Daemon Server] - 2026-09-
|
|
1075
|
-
[NX Daemon Server] - 2026-09-
|
|
1076
|
-
[NX Daemon Server] - 2026-09-
|
|
1077
|
-
[NX Daemon Server] - 2026-09-
|
|
1078
|
-
[NX Daemon Server] - 2026-09-
|
|
1079
|
-
[NX Daemon Server] - 2026-09-
|
|
1080
|
-
[NX Daemon Server] - 2026-09-
|
|
1081
|
-
[NX Daemon Server] - 2026-09-
|
|
1082
|
-
[NX Daemon Server] - 2026-09-
|
|
1083
|
-
[NX Daemon Server] - 2026-09-
|
|
1084
|
-
[NX Daemon Server] - 2026-09-
|
|
1085
|
-
[NX Daemon Server] - 2026-09-
|
|
1086
|
-
[NX Daemon Server] - 2026-09-
|
|
1087
|
-
[NX Daemon Server] - 2026-09-
|
|
1088
|
-
[NX Daemon Server] - 2026-09-
|
|
1089
|
-
[NX Daemon Server] - 2026-09-
|
|
1090
|
-
[NX Daemon Server] - 2026-09-
|
|
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
|
|
1
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.664Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/091eddd6eaf287d577f0/d.sock
|
|
2
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.668Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (native)
|
|
3
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.671Z - Established a connection. Number of open connections: 1
|
|
4
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.671Z - Established a connection. Number of open connections: 2
|
|
5
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.672Z - Closed a connection. Number of open connections: 1
|
|
6
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.672Z - [REQUEST]: Client Request for Project Graph Received
|
|
7
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.724Z - [WATCHER]: Processing file changes in outputs
|
|
8
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.795Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
9
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.795Z - [REQUEST]:
|
|
10
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.795Z - [REQUEST]:
|
|
11
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.798Z - Time taken for 'loadNxPlugins' 122.02837499999998ms
|
|
12
|
+
|
|
13
|
+
[0m[7m[1m[31m NX [39m[22m[27m[0m [31mFailed to parse pnpm lockfile[39m
|
|
14
|
+
|
|
15
|
+
Please open an issue at `https://github.com/nrwl/nx/issues/new?template=1-bug.yml` and provide a reproduction.
|
|
16
|
+
|
|
17
|
+
Original error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
21
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
22
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
23
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
24
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
25
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
26
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
27
|
+
at Array.map (<anonymous>)
|
|
28
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
29
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
30
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
31
|
+
|
|
32
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.827Z - Time taken for 'build-project-configs' 24.701040999999975ms
|
|
33
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.830Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
34
|
+
Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
35
|
+
An error occurred while processing files for the nx/js/dependencies-and-lockfile plugin.
|
|
36
|
+
- pnpm-lock.yaml: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
37
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
38
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
39
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
40
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
41
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
42
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
43
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
44
|
+
at Array.map (<anonymous>)
|
|
45
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
46
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
47
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
48
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.830Z - Time taken for 'total execution time for createProjectGraph()' 3.836250000000007ms
|
|
49
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.830Z - Done responding to the client null
|
|
50
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.830Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 158. Response time: 0.
|
|
51
|
+
[NX Daemon Server] - 2026-09-10T02:42:46.833Z - Closed a connection. Number of open connections: 0
|
|
52
|
+
[NX Daemon Server] - 2026-09-10T02:43:41.011Z - [WATCHER]: Processing file changes in outputs
|
|
53
|
+
[NX Daemon Server] - 2026-09-10T02:43:41.012Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (sources)
|
|
54
|
+
[NX Daemon Server] - 2026-09-10T02:43:41.012Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (outputs)
|
|
55
|
+
[NX Daemon Server] - 2026-09-10T02:43:41.012Z - Server stopped because: "LOCK_FILES_CHANGED"
|
|
56
|
+
[NX Daemon Server] - 2026-09-10T07:06:59.991Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/091eddd6eaf287d577f0/d.sock
|
|
57
|
+
[NX Daemon Server] - 2026-09-10T07:06:59.992Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (native)
|
|
58
|
+
[NX Daemon Server] - 2026-09-10T07:06:59.997Z - Established a connection. Number of open connections: 1
|
|
59
|
+
[NX Daemon Server] - 2026-09-10T07:06:59.998Z - Established a connection. Number of open connections: 2
|
|
60
|
+
[NX Daemon Server] - 2026-09-10T07:06:59.998Z - Closed a connection. Number of open connections: 1
|
|
61
|
+
[NX Daemon Server] - 2026-09-10T07:06:59.999Z - [REQUEST]: Client Request for Project Graph Received
|
|
62
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.053Z - [WATCHER]: Processing file changes in outputs
|
|
63
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.132Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
64
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.132Z - [REQUEST]:
|
|
65
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.132Z - [REQUEST]:
|
|
66
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.136Z - Time taken for 'loadNxPlugins' 132.789375ms
|
|
67
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.159Z - Time taken for 'build-project-configs' 18.440375000000017ms
|
|
68
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.162Z - [SYNC]: collect registered sync generators
|
|
69
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.162Z - [REQUEST]: Responding to the client. project-graph
|
|
70
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.162Z - Done responding to the client project-graph
|
|
71
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.162Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 163. Response time: 0.
|
|
72
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.162Z - Time taken for 'total for creating and serializing project graph' 163.05229199999997ms
|
|
73
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.203Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
74
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.203Z - Done responding to the client handleHashTasks
|
|
75
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.203Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
|
|
76
|
+
[NX Daemon Server] - 2026-09-10T07:07:00.208Z - Closed a connection. Number of open connections: 0
|
|
77
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.071Z - [WATCHER]: Processing file changes in outputs
|
|
78
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.079Z - [WATCHER]: tsconfig.json was modified
|
|
79
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.181Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
80
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.181Z - [REQUEST]: tsconfig.json
|
|
81
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.182Z - [REQUEST]:
|
|
82
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.183Z - Time taken for 'hash changed files from watcher' 0.15591600000334438ms
|
|
83
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.187Z - Time taken for 'build-project-configs' 3.2793339999989257ms
|
|
84
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.190Z - [SYNC]: collect registered sync generators
|
|
85
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.190Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
86
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.190Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
87
|
+
[NX Daemon Server] - 2026-09-10T07:07:55.190Z - Time taken for 'total execution time for createProjectGraph()' 2.122083999995084ms
|
|
88
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.377Z - [WATCHER]: Processing file changes in outputs
|
|
89
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.382Z - [WATCHER]: tsconfig.json was modified
|
|
90
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.583Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
91
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.583Z - [REQUEST]: tsconfig.json
|
|
92
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.583Z - [REQUEST]:
|
|
93
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.584Z - Time taken for 'hash changed files from watcher' 0.17925000000104774ms
|
|
94
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.587Z - Time taken for 'build-project-configs' 2.9307499999995343ms
|
|
95
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.589Z - [SYNC]: collect registered sync generators
|
|
96
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.589Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
97
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.589Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
98
|
+
[NX Daemon Server] - 2026-09-10T07:07:57.589Z - Time taken for 'total execution time for createProjectGraph()' 1.1716249999954016ms
|
|
99
|
+
[NX Daemon Server] - 2026-09-10T07:13:48.609Z - [WATCHER]: Processing file changes in outputs
|
|
100
|
+
[NX Daemon Server] - 2026-09-10T07:13:48.612Z - [WATCHER]: tsconfig.json was modified
|
|
101
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.014Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
102
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.014Z - [REQUEST]: tsconfig.json
|
|
103
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.014Z - [REQUEST]:
|
|
104
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.017Z - Time taken for 'hash changed files from watcher' 0.21850000001722947ms
|
|
105
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.020Z - Time taken for 'build-project-configs' 4.080917000013869ms
|
|
106
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.024Z - [SYNC]: collect registered sync generators
|
|
107
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.024Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
108
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.024Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
109
|
+
[NX Daemon Server] - 2026-09-10T07:13:49.024Z - Time taken for 'total execution time for createProjectGraph()' 1.6456660000258125ms
|
|
110
|
+
[NX Daemon Server] - 2026-09-10T07:13:50.820Z - [WATCHER]: Processing file changes in outputs
|
|
111
|
+
[NX Daemon Server] - 2026-09-10T07:13:50.826Z - [WATCHER]: tsconfig.json was modified
|
|
112
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.627Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
113
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.627Z - [REQUEST]: tsconfig.json
|
|
114
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.627Z - [REQUEST]:
|
|
115
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.629Z - Time taken for 'hash changed files from watcher' 0.18895900005009025ms
|
|
116
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.631Z - Time taken for 'build-project-configs' 1.9125829999684356ms
|
|
117
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.632Z - [SYNC]: collect registered sync generators
|
|
118
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.632Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
119
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.632Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
120
|
+
[NX Daemon Server] - 2026-09-10T07:13:51.632Z - Time taken for 'total execution time for createProjectGraph()' 1.2112079999642447ms
|
|
121
|
+
[NX Daemon Server] - 2026-09-10T07:20:12.983Z - [WATCHER]: 31 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
|
|
122
|
+
[NX Daemon Server] - 2026-09-10T07:20:12.993Z - [WATCHER]: Processing file changes in outputs
|
|
123
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.111Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
124
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.111Z - [REQUEST]: packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/page-objects/NavigationPage/web.ts,shared/testing/page-objects/PlaygroundPage/mobile.ts,packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/mobile.test.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/web.test.ts,shared/testing/support/actions/fillCredentials/web.action.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,shared/testing/page-objects/PlaygroundPage/web.ts,shared/testing/page-objects/NavigationPage/mobile.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/mobile.test.ts,packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/web.test.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,packages/matchers/e2e/specs/ElementMatchers/TC-0004-states-and-attributes/mobile.test.ts,packages/playground/e2e/specs/Playground/TC-0001-form-controls/mobile.test.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,spectra.config.ts,packages/matchers/e2e/specs/ContentMatchers/TC-0005-text-and-values/mobile.test.ts,packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/web.test.ts,packages/matchers/e2e/specs/BrowserContext/TC-0007-title-and-navigation/web.test.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,packages/playground/e2e/specs/Playground/TC-0002-toggle-elements/mobile.test.ts,packages/matchers/e2e/specs/ContentMatchers/TC-0006-collections-and-empty/web.test.ts,packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/mobile.test.ts,packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts,shared/testing/page-objects/MatchersPage/mobile.ts,shared/testing/page-objects/MatchersPage/web.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,packages/matchers/e2e/specs/ElementMatchers/TC-0003-visibility-and-dom/web.test.ts
|
|
125
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.112Z - [REQUEST]:
|
|
126
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.120Z - Time taken for 'hash changed files from watcher' 16.316333000082523ms
|
|
127
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.128Z - Time taken for 'build-project-configs' 8.424375000060536ms
|
|
128
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.134Z - [SYNC]: collect registered sync generators
|
|
129
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.134Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
130
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.134Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
131
|
+
[NX Daemon Server] - 2026-09-10T07:20:13.134Z - Time taken for 'total execution time for createProjectGraph()' 5.674666999955662ms
|
|
132
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.411Z - [WATCHER]: Processing file changes in outputs
|
|
133
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.413Z - [WATCHER]: tsconfig.json was modified
|
|
134
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.615Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
135
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.615Z - [REQUEST]: tsconfig.json
|
|
136
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.615Z - [REQUEST]:
|
|
137
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.618Z - Time taken for 'hash changed files from watcher' 1.2455830001272261ms
|
|
138
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.622Z - Time taken for 'build-project-configs' 3.6960839999374ms
|
|
139
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.624Z - [SYNC]: collect registered sync generators
|
|
140
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.624Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
141
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.624Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
142
|
+
[NX Daemon Server] - 2026-09-10T07:40:15.624Z - Time taken for 'total execution time for createProjectGraph()' 0.9602909998502582ms
|
|
143
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.481Z - [WATCHER]: Processing file changes in outputs
|
|
144
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.487Z - [WATCHER]: tsconfig.json was modified
|
|
145
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.888Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
146
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.888Z - [REQUEST]: tsconfig.json
|
|
147
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.888Z - [REQUEST]:
|
|
148
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.890Z - Time taken for 'hash changed files from watcher' 0.16204200009815395ms
|
|
149
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.892Z - Time taken for 'build-project-configs' 1.915290999924764ms
|
|
150
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.894Z - [SYNC]: collect registered sync generators
|
|
151
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.894Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
152
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.894Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
153
|
+
[NX Daemon Server] - 2026-09-10T07:40:17.894Z - Time taken for 'total execution time for createProjectGraph()' 1.4514999999664724ms
|
|
154
|
+
[NX Daemon Server] - 2026-09-10T07:40:18.404Z - [WATCHER]: Processing file changes in outputs
|
|
155
|
+
[NX Daemon Server] - 2026-09-10T07:40:18.478Z - [WATCHER]: Processing file changes in outputs
|
|
156
|
+
[NX Daemon Server] - 2026-09-10T07:40:18.542Z - [WATCHER]: Processing file changes in outputs
|
|
157
|
+
[NX Daemon Server] - 2026-09-10T07:40:18.605Z - [WATCHER]: Processing file changes in outputs
|
|
158
|
+
[NX Daemon Server] - 2026-09-10T07:40:18.726Z - [WATCHER]: Processing file changes in outputs
|
|
159
|
+
[NX Daemon Server] - 2026-09-10T07:40:18.798Z - [WATCHER]: Processing file changes in outputs
|
|
160
|
+
[NX Daemon Server] - 2026-09-10T07:40:18.867Z - [WATCHER]: Processing file changes in outputs
|
|
161
|
+
[NX Daemon Server] - 2026-09-10T07:40:18.928Z - [WATCHER]: Processing file changes in outputs
|
|
162
|
+
[NX Daemon Server] - 2026-09-10T07:40:19.037Z - [WATCHER]: Processing file changes in outputs
|
|
163
|
+
[NX Daemon Server] - 2026-09-10T07:40:19.108Z - [WATCHER]: Processing file changes in outputs
|
|
164
|
+
[NX Daemon Server] - 2026-09-10T07:40:19.175Z - [WATCHER]: Processing file changes in outputs
|
|
165
|
+
[NX Daemon Server] - 2026-09-10T07:40:19.238Z - [WATCHER]: Processing file changes in outputs
|
|
166
|
+
[NX Daemon Server] - 2026-09-10T10:40:17.603Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (sources)
|
|
167
|
+
[NX Daemon Server] - 2026-09-10T10:40:17.609Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (outputs)
|
|
168
|
+
[NX Daemon Server] - 2026-09-10T10:40:17.618Z - Server stopped because: "10800000ms of inactivity"
|
|
169
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.281Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/091eddd6eaf287d577f0/d.sock
|
|
170
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.283Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (native)
|
|
171
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.285Z - Established a connection. Number of open connections: 1
|
|
172
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.285Z - Established a connection. Number of open connections: 2
|
|
173
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.286Z - Closed a connection. Number of open connections: 1
|
|
174
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.286Z - [REQUEST]: Client Request for Project Graph Received
|
|
175
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.342Z - [WATCHER]: Processing file changes in outputs
|
|
176
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.393Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
177
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.393Z - [REQUEST]:
|
|
178
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.393Z - [REQUEST]:
|
|
179
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.396Z - Time taken for 'loadNxPlugins' 106.108666ms
|
|
180
|
+
|
|
181
|
+
[0m[7m[1m[31m NX [39m[22m[27m[0m [31mFailed to parse pnpm lockfile[39m
|
|
182
|
+
|
|
183
|
+
Please open an issue at `https://github.com/nrwl/nx/issues/new?template=1-bug.yml` and provide a reproduction.
|
|
184
|
+
|
|
185
|
+
Original error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
189
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
190
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
191
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
192
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
193
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
194
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
195
|
+
at Array.map (<anonymous>)
|
|
196
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
197
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
198
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
199
|
+
|
|
200
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.423Z - Time taken for 'build-project-configs' 23.409667000000013ms
|
|
201
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.425Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
202
|
+
Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
203
|
+
An error occurred while processing files for the nx/js/dependencies-and-lockfile plugin.
|
|
204
|
+
- pnpm-lock.yaml: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
205
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
206
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
207
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
208
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
209
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
210
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
211
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
212
|
+
at Array.map (<anonymous>)
|
|
213
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
214
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
215
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
216
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.425Z - Time taken for 'total execution time for createProjectGraph()' 2.9632919999999956ms
|
|
217
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.425Z - Done responding to the client null
|
|
218
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.425Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 139. Response time: 0.
|
|
219
|
+
[NX Daemon Server] - 2026-09-16T04:00:08.428Z - Closed a connection. Number of open connections: 0
|
|
220
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.406Z - Established a connection. Number of open connections: 1
|
|
221
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.406Z - Closed a connection. Number of open connections: 0
|
|
222
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.406Z - Established a connection. Number of open connections: 1
|
|
223
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.411Z - [REQUEST]: Client Request for Project Graph Received
|
|
224
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.417Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
225
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.417Z - [REQUEST]:
|
|
226
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.417Z - [REQUEST]:
|
|
227
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.418Z - Time taken for 'hash changed files from watcher' 5.756458000003477ms
|
|
228
|
+
|
|
229
|
+
[0m[7m[1m[31m NX [39m[22m[27m[0m [31mFailed to parse pnpm lockfile[39m
|
|
230
|
+
|
|
231
|
+
Please open an issue at `https://github.com/nrwl/nx/issues/new?template=1-bug.yml` and provide a reproduction.
|
|
232
|
+
|
|
233
|
+
Original error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
237
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
238
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
239
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
240
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
241
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
242
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
243
|
+
at Array.map (<anonymous>)
|
|
244
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
245
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
246
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
247
|
+
|
|
248
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.426Z - Time taken for 'build-project-configs' 6.862958999998227ms
|
|
249
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.426Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
250
|
+
Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
251
|
+
An error occurred while processing files for the nx/js/dependencies-and-lockfile plugin.
|
|
252
|
+
- pnpm-lock.yaml: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
253
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
254
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
255
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
256
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
257
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
258
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
259
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
260
|
+
at Array.map (<anonymous>)
|
|
261
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
262
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
263
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
264
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.427Z - Time taken for 'total execution time for createProjectGraph()' 1.801791999998386ms
|
|
265
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.427Z - Done responding to the client null
|
|
266
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.427Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 15. Response time: 1.
|
|
267
|
+
[NX Daemon Server] - 2026-09-16T04:00:47.430Z - Closed a connection. Number of open connections: 0
|
|
268
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.700Z - Established a connection. Number of open connections: 1
|
|
269
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.701Z - Closed a connection. Number of open connections: 0
|
|
270
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.701Z - Established a connection. Number of open connections: 1
|
|
271
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.703Z - [REQUEST]: Client Request for Project Graph Received
|
|
272
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.707Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
273
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.707Z - [REQUEST]:
|
|
274
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.707Z - [REQUEST]:
|
|
275
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.708Z - Time taken for 'hash changed files from watcher' 4.153582999992068ms
|
|
276
|
+
|
|
277
|
+
[0m[7m[1m[31m NX [39m[22m[27m[0m [31mFailed to parse pnpm lockfile[39m
|
|
278
|
+
|
|
279
|
+
Please open an issue at `https://github.com/nrwl/nx/issues/new?template=1-bug.yml` and provide a reproduction.
|
|
280
|
+
|
|
281
|
+
Original error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
285
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
286
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
287
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
288
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
289
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
290
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
291
|
+
at Array.map (<anonymous>)
|
|
292
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
293
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
294
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
295
|
+
|
|
296
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.713Z - Time taken for 'build-project-configs' 4.314249999995809ms
|
|
297
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.714Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
298
|
+
Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
299
|
+
An error occurred while processing files for the nx/js/dependencies-and-lockfile plugin.
|
|
300
|
+
- pnpm-lock.yaml: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
301
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
302
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
303
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
304
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
305
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
306
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
307
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
308
|
+
at Array.map (<anonymous>)
|
|
309
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
310
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
311
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
312
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.714Z - Time taken for 'total execution time for createProjectGraph()' 2.10295899999619ms
|
|
313
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.714Z - Done responding to the client null
|
|
314
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.714Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 11. Response time: 0.
|
|
315
|
+
[NX Daemon Server] - 2026-09-16T04:01:48.717Z - Closed a connection. Number of open connections: 0
|
|
316
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.161Z - Established a connection. Number of open connections: 1
|
|
317
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.162Z - Closed a connection. Number of open connections: 0
|
|
318
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.162Z - Established a connection. Number of open connections: 1
|
|
319
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.164Z - [REQUEST]: Client Request for Project Graph Received
|
|
320
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.168Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
321
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.168Z - [REQUEST]:
|
|
322
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.168Z - [REQUEST]:
|
|
323
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.169Z - Time taken for 'hash changed files from watcher' 4.098749999990105ms
|
|
324
|
+
|
|
325
|
+
[0m[7m[1m[31m NX [39m[22m[27m[0m [31mFailed to parse pnpm lockfile[39m
|
|
326
|
+
|
|
327
|
+
Please open an issue at `https://github.com/nrwl/nx/issues/new?template=1-bug.yml` and provide a reproduction.
|
|
328
|
+
|
|
329
|
+
Original error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
333
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
334
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
335
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
336
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
337
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
338
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
339
|
+
at Array.map (<anonymous>)
|
|
340
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
341
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
342
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
343
|
+
|
|
344
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.172Z - Time taken for 'build-project-configs' 3.16325000001234ms
|
|
345
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.173Z - [REQUEST]: Responding to the client with an error. Error when preparing serialized project graph. Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
346
|
+
Failed to process project graph. Run "nx reset" to fix this. Please report the issue if you keep seeing it.
|
|
347
|
+
An error occurred while processing files for the nx/js/dependencies-and-lockfile plugin.
|
|
348
|
+
- pnpm-lock.yaml: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
349
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
350
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
351
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
352
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
353
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
354
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
355
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
356
|
+
at Array.map (<anonymous>)
|
|
357
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
358
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
359
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
360
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.173Z - Time taken for 'total execution time for createProjectGraph()' 1.1041250000125729ms
|
|
361
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.173Z - Done responding to the client null
|
|
362
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.173Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 9. Response time: 0.
|
|
363
|
+
[NX Daemon Server] - 2026-09-16T04:02:04.176Z - Closed a connection. Number of open connections: 0
|
|
364
|
+
[NX Daemon Server] - 2026-09-16T04:02:17.162Z - [WATCHER]: _tmp_7347_c88c6d8a4491b3ec61d8b19cb7ad7a61 was deleted
|
|
365
|
+
[NX Daemon Server] - 2026-09-16T04:02:17.163Z - [WATCHER]: Processing file changes in outputs
|
|
366
|
+
[NX Daemon Server] - 2026-09-16T04:02:17.264Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
367
|
+
[NX Daemon Server] - 2026-09-16T04:02:17.264Z - [REQUEST]:
|
|
368
|
+
[NX Daemon Server] - 2026-09-16T04:02:17.264Z - [REQUEST]: _tmp_7347_c88c6d8a4491b3ec61d8b19cb7ad7a61
|
|
369
|
+
[NX Daemon Server] - 2026-09-16T04:02:17.265Z - Time taken for 'hash changed files from watcher' 0.08116699999663979ms
|
|
370
|
+
|
|
371
|
+
[0m[7m[1m[31m NX [39m[22m[27m[0m [31mFailed to parse pnpm lockfile[39m
|
|
372
|
+
|
|
373
|
+
Please open an issue at `https://github.com/nrwl/nx/issues/new?template=1-bug.yml` and provide a reproduction.
|
|
374
|
+
|
|
375
|
+
Original error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
Error: Could not find ".modules.yaml" at "/Volumes/Home/Documents/TestSpectra/source/cli/templates/nx/node_modules/.modules.yaml"
|
|
379
|
+
at loadPnpmHoistedDepsDefinition (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/utils/pnpm-normalizer.js:40:15)
|
|
380
|
+
at getNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:213:77)
|
|
381
|
+
at getPnpmLockfileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/pnpm-parser.js:32:12)
|
|
382
|
+
at getLockFileNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/lock-file/lock-file.js:48:59)
|
|
383
|
+
at exports.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/plugins/js/index.js:47:64)
|
|
384
|
+
at /Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:47:33
|
|
385
|
+
at Array.map (<anonymous>)
|
|
386
|
+
at createNodesFromFiles (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/utils.js:45:35)
|
|
387
|
+
at LoadedNxPlugin.createNodes (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:27:76)
|
|
388
|
+
at LoadedNxPlugin.createNodes.<computed> (/Volumes/Home/Documents/TestSpectra/source/node_modules/.pnpm/nx@19.8.4_@swc+core@1.16.2/node_modules/nx/src/project-graph/plugins/internal-api.js:44:34)
|
|
389
|
+
|
|
390
|
+
[NX Daemon Server] - 2026-09-16T04:02:17.269Z - Time taken for 'build-project-configs' 3.657500000001164ms
|
|
391
|
+
[NX Daemon Server] - 2026-09-16T04:02:17.269Z - Time taken for 'total execution time for createProjectGraph()' 0.8637909999961266ms
|
|
392
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.681Z - Established a connection. Number of open connections: 1
|
|
393
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.681Z - Closed a connection. Number of open connections: 0
|
|
394
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.681Z - Established a connection. Number of open connections: 1
|
|
395
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.682Z - [REQUEST]: Client Request for Project Graph Received
|
|
396
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.687Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
397
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.687Z - [REQUEST]:
|
|
398
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.687Z - [REQUEST]:
|
|
399
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.687Z - Time taken for 'hash changed files from watcher' 4.160792000009678ms
|
|
400
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.697Z - Time taken for 'build-project-configs' 10.140291999996407ms
|
|
401
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.708Z - [REQUEST]: Responding to the client. project-graph
|
|
402
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.708Z - Time taken for 'total for creating and serializing project graph' 25.661083999992115ms
|
|
403
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.708Z - Done responding to the client project-graph
|
|
404
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.708Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 26. Response time: 0.
|
|
405
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.747Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
406
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.747Z - Done responding to the client handleHashTasks
|
|
407
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.747Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
|
|
408
|
+
[NX Daemon Server] - 2026-09-16T04:02:20.997Z - Closed a connection. Number of open connections: 0
|
|
409
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.950Z - Established a connection. Number of open connections: 1
|
|
410
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.950Z - Closed a connection. Number of open connections: 0
|
|
411
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.950Z - Established a connection. Number of open connections: 1
|
|
412
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.952Z - [REQUEST]: Client Request for Project Graph Received
|
|
413
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.952Z - [REQUEST]: Responding to the client. project-graph
|
|
414
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.952Z - Time taken for 'total for creating and serializing project graph' 0.14279099999112077ms
|
|
415
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.952Z - Done responding to the client project-graph
|
|
416
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.952Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 0.
|
|
417
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.985Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
418
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.985Z - Done responding to the client handleHashTasks
|
|
419
|
+
[NX Daemon Server] - 2026-09-16T04:02:43.985Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
|
|
420
|
+
[NX Daemon Server] - 2026-09-16T04:02:44.247Z - Closed a connection. Number of open connections: 0
|
|
421
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.739Z - [WATCHER]: Processing file changes in outputs
|
|
422
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.744Z - [WATCHER]: tsconfig.json was modified
|
|
423
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.846Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
424
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.846Z - [REQUEST]: tsconfig.json
|
|
425
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.846Z - [REQUEST]:
|
|
426
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.849Z - Time taken for 'hash changed files from watcher' 0.5419579999870621ms
|
|
427
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.859Z - Time taken for 'build-project-configs' 10.09816699998919ms
|
|
428
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.864Z - [SYNC]: collect registered sync generators
|
|
429
|
+
[NX Daemon Server] - 2026-09-16T04:08:38.865Z - Time taken for 'total execution time for createProjectGraph()' 4.296458000026178ms
|
|
430
|
+
[NX Daemon Server] - 2026-09-16T04:08:40.973Z - [WATCHER]: Processing file changes in outputs
|
|
431
|
+
[NX Daemon Server] - 2026-09-16T04:08:40.979Z - [WATCHER]: tsconfig.json was modified
|
|
432
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.180Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
433
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.181Z - [REQUEST]: tsconfig.json
|
|
434
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.181Z - [REQUEST]:
|
|
435
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.182Z - Time taken for 'hash changed files from watcher' 0.15079200000036508ms
|
|
436
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.186Z - Time taken for 'build-project-configs' 4.773041999957059ms
|
|
437
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.189Z - [SYNC]: collect registered sync generators
|
|
438
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.189Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
439
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.189Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
440
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.189Z - Time taken for 'total execution time for createProjectGraph()' 2.6013749999692664ms
|
|
441
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.777Z - [WATCHER]: Processing file changes in outputs
|
|
442
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.851Z - [WATCHER]: Processing file changes in outputs
|
|
443
|
+
[NX Daemon Server] - 2026-09-16T04:08:41.964Z - [WATCHER]: Processing file changes in outputs
|
|
444
|
+
[NX Daemon Server] - 2026-09-16T04:08:42.064Z - [WATCHER]: Processing file changes in outputs
|
|
445
|
+
[NX Daemon Server] - 2026-09-16T04:08:42.126Z - [WATCHER]: Processing file changes in outputs
|
|
446
|
+
[NX Daemon Server] - 2026-09-16T04:08:42.191Z - [WATCHER]: Processing file changes in outputs
|
|
447
|
+
[NX Daemon Server] - 2026-09-16T04:08:42.268Z - [WATCHER]: Processing file changes in outputs
|
|
448
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.669Z - Established a connection. Number of open connections: 1
|
|
449
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.670Z - Closed a connection. Number of open connections: 0
|
|
450
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.670Z - Established a connection. Number of open connections: 1
|
|
451
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.672Z - [REQUEST]: Client Request for Project Graph Received
|
|
452
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.673Z - [REQUEST]: Responding to the client. project-graph
|
|
453
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.673Z - Time taken for 'total for creating and serializing project graph' 0.15520800009835511ms
|
|
454
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.673Z - Done responding to the client project-graph
|
|
455
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.673Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 0.
|
|
456
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.716Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
457
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.716Z - Done responding to the client handleHashTasks
|
|
458
|
+
[NX Daemon Server] - 2026-09-16T04:09:23.716Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
459
|
+
[NX Daemon Server] - 2026-09-16T04:09:24.033Z - Closed a connection. Number of open connections: 0
|
|
460
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.425Z - [WATCHER]: 4 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
|
|
461
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.426Z - [WATCHER]: Processing file changes in outputs
|
|
462
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.529Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
463
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.529Z - [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
|
|
464
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.529Z - [REQUEST]:
|
|
465
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.532Z - Time taken for 'hash changed files from watcher' 0.8309159999480471ms
|
|
466
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.540Z - Time taken for 'build-project-configs' 7.068291999981739ms
|
|
467
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.543Z - [SYNC]: collect registered sync generators
|
|
468
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.543Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
469
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.543Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
470
|
+
[NX Daemon Server] - 2026-09-16T04:12:59.543Z - Time taken for 'total execution time for createProjectGraph()' 2.1946250000037253ms
|
|
471
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.497Z - [WATCHER]: tsconfig.json was modified
|
|
472
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.501Z - [WATCHER]: Processing file changes in outputs
|
|
473
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.705Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
474
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.705Z - [REQUEST]: tsconfig.json
|
|
475
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.705Z - [REQUEST]:
|
|
476
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.716Z - Time taken for 'hash changed files from watcher' 1.8971250001341105ms
|
|
477
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.764Z - Time taken for 'build-project-configs' 55.77491699997336ms
|
|
478
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.771Z - [SYNC]: collect registered sync generators
|
|
479
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.771Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
480
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.771Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
481
|
+
[NX Daemon Server] - 2026-09-16T04:44:31.771Z - Time taken for 'total execution time for createProjectGraph()' 6.093374999705702ms
|
|
482
|
+
[NX Daemon Server] - 2026-09-16T04:44:32.935Z - [WATCHER]: Processing file changes in outputs
|
|
483
|
+
[NX Daemon Server] - 2026-09-16T04:44:32.943Z - [WATCHER]: tsconfig.json was modified
|
|
484
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.126Z - [WATCHER]: Processing file changes in outputs
|
|
485
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.345Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
486
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.345Z - [REQUEST]: tsconfig.json
|
|
487
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.345Z - [REQUEST]:
|
|
488
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.348Z - Time taken for 'hash changed files from watcher' 0.16929199965670705ms
|
|
489
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.354Z - Time taken for 'build-project-configs' 6.795124999713153ms
|
|
490
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.359Z - [SYNC]: collect registered sync generators
|
|
491
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.359Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
492
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.359Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
493
|
+
[NX Daemon Server] - 2026-09-16T04:44:33.359Z - Time taken for 'total execution time for createProjectGraph()' 5.016291999723762ms
|
|
494
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.020Z - [WATCHER]: Processing file changes in outputs
|
|
495
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.119Z - [WATCHER]: Processing file changes in outputs
|
|
496
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.176Z - [WATCHER]: Processing file changes in outputs
|
|
497
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.246Z - [WATCHER]: Processing file changes in outputs
|
|
498
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.299Z - [WATCHER]: Processing file changes in outputs
|
|
499
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.378Z - [WATCHER]: Processing file changes in outputs
|
|
500
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.437Z - [WATCHER]: Processing file changes in outputs
|
|
501
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.512Z - [WATCHER]: Processing file changes in outputs
|
|
502
|
+
[NX Daemon Server] - 2026-09-16T04:44:34.569Z - [WATCHER]: Processing file changes in outputs
|
|
503
|
+
[NX Daemon Server] - 2026-09-16T04:45:16.302Z - [WATCHER]: Processing file changes in outputs
|
|
504
|
+
[NX Daemon Server] - 2026-09-16T04:45:16.309Z - [WATCHER]: tsconfig.json was modified
|
|
505
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.110Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
506
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.110Z - [REQUEST]: tsconfig.json
|
|
507
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.110Z - [REQUEST]:
|
|
508
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.111Z - Time taken for 'hash changed files from watcher' 0.14258400024846196ms
|
|
509
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.120Z - Time taken for 'build-project-configs' 6.803000000305474ms
|
|
510
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.122Z - [SYNC]: collect registered sync generators
|
|
511
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.122Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
512
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.122Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
513
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.122Z - Time taken for 'total execution time for createProjectGraph()' 1.6932500000111759ms
|
|
514
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.798Z - [WATCHER]: Processing file changes in outputs
|
|
515
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.804Z - [WATCHER]: tsconfig.json was modified
|
|
516
|
+
[NX Daemon Server] - 2026-09-16T04:45:17.994Z - [WATCHER]: Processing file changes in outputs
|
|
517
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.405Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
518
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.405Z - [REQUEST]: tsconfig.json
|
|
519
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.405Z - [REQUEST]:
|
|
520
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.406Z - Time taken for 'hash changed files from watcher' 0.14337499998509884ms
|
|
521
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.414Z - Time taken for 'build-project-configs' 7.292208000086248ms
|
|
522
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.416Z - [SYNC]: collect registered sync generators
|
|
523
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.416Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
524
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.416Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
525
|
+
[NX Daemon Server] - 2026-09-16T04:45:19.416Z - Time taken for 'total execution time for createProjectGraph()' 2.1699589998461306ms
|
|
526
|
+
[NX Daemon Server] - 2026-09-16T07:45:17.939Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (sources)
|
|
527
|
+
[NX Daemon Server] - 2026-09-16T07:45:17.945Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (outputs)
|
|
528
|
+
[NX Daemon Server] - 2026-09-16T07:45:17.952Z - Server stopped because: "10800000ms of inactivity"
|
|
529
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.388Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/091eddd6eaf287d577f0/d.sock
|
|
530
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.390Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (native)
|
|
531
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.395Z - Established a connection. Number of open connections: 1
|
|
532
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.396Z - Established a connection. Number of open connections: 2
|
|
533
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.396Z - Closed a connection. Number of open connections: 1
|
|
534
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.396Z - [REQUEST]: Client Request for Project Graph Received
|
|
535
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.448Z - [WATCHER]: Processing file changes in outputs
|
|
536
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.508Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
537
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.508Z - [REQUEST]:
|
|
538
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.508Z - [REQUEST]:
|
|
539
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.510Z - Time taken for 'loadNxPlugins' 110.578333ms
|
|
540
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.532Z - Time taken for 'build-project-configs' 15.870666999999997ms
|
|
541
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.537Z - [SYNC]: collect registered sync generators
|
|
542
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.537Z - [REQUEST]: Responding to the client. project-graph
|
|
543
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.537Z - Time taken for 'total for creating and serializing project graph' 140.463416ms
|
|
544
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.538Z - Done responding to the client project-graph
|
|
545
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.538Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 141. Response time: 1.
|
|
546
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.587Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
547
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.587Z - Done responding to the client handleHashTasks
|
|
548
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.587Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
549
|
+
[NX Daemon Server] - 2026-09-16T10:35:42.908Z - Closed a connection. Number of open connections: 0
|
|
550
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.697Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/091eddd6eaf287d577f0/d.sock
|
|
551
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.699Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (native)
|
|
552
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.700Z - Established a connection. Number of open connections: 1
|
|
553
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.700Z - Established a connection. Number of open connections: 2
|
|
554
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.701Z - Closed a connection. Number of open connections: 1
|
|
555
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.701Z - [REQUEST]: Client Request for Project Graph Received
|
|
556
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.758Z - [WATCHER]: Processing file changes in outputs
|
|
557
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.813Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
558
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.813Z - [REQUEST]:
|
|
559
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.813Z - [REQUEST]:
|
|
560
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.815Z - Time taken for 'loadNxPlugins' 111.196417ms
|
|
561
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.841Z - Time taken for 'build-project-configs' 18.085167000000013ms
|
|
562
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.848Z - [SYNC]: collect registered sync generators
|
|
563
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.848Z - [REQUEST]: Responding to the client. project-graph
|
|
564
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.848Z - Time taken for 'total for creating and serializing project graph' 146.84300000000002ms
|
|
565
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.849Z - Done responding to the client project-graph
|
|
566
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.849Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 147. Response time: 1.
|
|
567
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.895Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
568
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.895Z - Done responding to the client handleHashTasks
|
|
569
|
+
[NX Daemon Server] - 2026-09-17T02:09:16.895Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
570
|
+
[NX Daemon Server] - 2026-09-17T02:09:17.187Z - Closed a connection. Number of open connections: 0
|
|
571
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.316Z - [WATCHER]: 24 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted
|
|
572
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.320Z - [WATCHER]: Processing file changes in outputs
|
|
573
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.420Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
574
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.420Z - [REQUEST]: shared/testing/page-objects/MatchersPage/mobile.ts,shared/testing/page-objects/MatchersPage/web.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/mobile.test.ts,shared/testing/page-objects/PlaygroundPage/web.ts,shared/testing/support/steps/togglePlaygroundStates/mobile.step.ts,shared/testing/support/actions/fillCredentials/mobile.action.ts,packages/matchers/e2e/project.json,shared/testing/page-objects/PlaygroundPage/mobile.ts,shared/testing/support/steps/togglePlaygroundStates/web.step.ts,packages/matchers/e2e/specs/EnvironmentConfig/suite.md,shared/testing/support/actions/fillCredentials/web.action.ts,shared/testing/project.json,spectra.config.ts,shared/testing/support/steps/verifyPlaygroundState/mobile.step.ts,shared/testing/page-objects/NavigationPage/web.ts,shared/testing/support/steps/verifyPlaygroundState/web.step.ts,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/mobile.test.ts,package.json,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/common.test.ts,shared/testing/page-objects/NavigationPage/mobile.ts,packages/matchers/e2e/specs/ApiInterception/TC-0009-post-mocking/web.test.ts,packages/matchers/e2e/specs/EnvironmentConfig/TC-0019-read-custom-environment-variable/spec.md,packages/matchers/e2e/specs/ApiInterception/TC-0008-fetch-mocking/web.test.ts,packages/playground/e2e/project.json
|
|
575
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.421Z - [REQUEST]:
|
|
576
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.422Z - Time taken for 'hash changed files from watcher' 0.5908330000238493ms
|
|
577
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.431Z - Time taken for 'build-project-configs' 8.620833999942988ms
|
|
578
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.440Z - [SYNC]: collect registered sync generators
|
|
579
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.440Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
580
|
+
[NX Daemon Server] - 2026-09-17T02:25:12.440Z - Time taken for 'total execution time for createProjectGraph()' 6.857166000059806ms
|
|
581
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.048Z - [WATCHER]: Processing file changes in outputs
|
|
582
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.065Z - [WATCHER]: tsconfig.json was modified
|
|
583
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.267Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
584
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.267Z - [REQUEST]: tsconfig.json
|
|
585
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.267Z - [REQUEST]:
|
|
586
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.268Z - Time taken for 'hash changed files from watcher' 0.15320899989455938ms
|
|
587
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.276Z - Time taken for 'build-project-configs' 6.353499999968335ms
|
|
588
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.283Z - [SYNC]: collect registered sync generators
|
|
589
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.283Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
590
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.283Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
591
|
+
[NX Daemon Server] - 2026-09-17T02:27:14.283Z - Time taken for 'total execution time for createProjectGraph()' 2.8981250000651926ms
|
|
592
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.485Z - [WATCHER]: Processing file changes in outputs
|
|
593
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.496Z - [WATCHER]: tsconfig.json was modified
|
|
594
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.673Z - [WATCHER]: Processing file changes in outputs
|
|
595
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.898Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
596
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.898Z - [REQUEST]: tsconfig.json
|
|
597
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.898Z - [REQUEST]:
|
|
598
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.900Z - Time taken for 'hash changed files from watcher' 0.20862499997019768ms
|
|
599
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.907Z - Time taken for 'build-project-configs' 7.008708999957889ms
|
|
600
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.914Z - [SYNC]: collect registered sync generators
|
|
601
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.915Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
602
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.915Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
603
|
+
[NX Daemon Server] - 2026-09-17T02:27:15.915Z - Time taken for 'total execution time for createProjectGraph()' 5.113957999972627ms
|
|
604
|
+
[NX Daemon Server] - 2026-09-17T02:27:16.454Z - [WATCHER]: Processing file changes in outputs
|
|
605
|
+
[NX Daemon Server] - 2026-09-17T02:27:16.507Z - [WATCHER]: Processing file changes in outputs
|
|
606
|
+
[NX Daemon Server] - 2026-09-17T02:27:16.602Z - [WATCHER]: Processing file changes in outputs
|
|
607
|
+
[NX Daemon Server] - 2026-09-17T02:27:16.693Z - [WATCHER]: Processing file changes in outputs
|
|
608
|
+
[NX Daemon Server] - 2026-09-17T02:27:16.750Z - [WATCHER]: Processing file changes in outputs
|
|
609
|
+
[NX Daemon Server] - 2026-09-17T02:27:16.835Z - [WATCHER]: Processing file changes in outputs
|
|
610
|
+
[NX Daemon Server] - 2026-09-17T02:27:16.899Z - [WATCHER]: Processing file changes in outputs
|
|
611
|
+
[NX Daemon Server] - 2026-09-17T02:27:16.985Z - [WATCHER]: Processing file changes in outputs
|
|
612
|
+
[NX Daemon Server] - 2026-09-17T02:28:17.509Z - [WATCHER]: Processing file changes in outputs
|
|
613
|
+
[NX Daemon Server] - 2026-09-17T02:28:17.519Z - [WATCHER]: tsconfig.json was modified
|
|
614
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.321Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
615
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.321Z - [REQUEST]: tsconfig.json
|
|
616
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.321Z - [REQUEST]:
|
|
617
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.321Z - Time taken for 'hash changed files from watcher' 0.08312499988824129ms
|
|
618
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.326Z - Time taken for 'build-project-configs' 4.163249999983236ms
|
|
619
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.329Z - [SYNC]: collect registered sync generators
|
|
620
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.329Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
621
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.329Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
622
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.329Z - Time taken for 'total execution time for createProjectGraph()' 2.6761249999981374ms
|
|
623
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.892Z - [WATCHER]: Processing file changes in outputs
|
|
624
|
+
[NX Daemon Server] - 2026-09-17T02:28:18.898Z - [WATCHER]: tsconfig.json was modified
|
|
625
|
+
[NX Daemon Server] - 2026-09-17T02:28:19.074Z - [WATCHER]: Processing file changes in outputs
|
|
626
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.500Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
627
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.500Z - [REQUEST]: tsconfig.json
|
|
628
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.501Z - [REQUEST]:
|
|
629
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.503Z - Time taken for 'hash changed files from watcher' 0.1955409999936819ms
|
|
630
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.509Z - Time taken for 'build-project-configs' 6.26195800001733ms
|
|
631
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.517Z - [SYNC]: collect registered sync generators
|
|
632
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.517Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
633
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.517Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
634
|
+
[NX Daemon Server] - 2026-09-17T02:28:20.517Z - Time taken for 'total execution time for createProjectGraph()' 4.4291670001111925ms
|
|
635
|
+
[NX Daemon Server] - 2026-09-17T02:30:35.788Z - [WATCHER]: Processing file changes in outputs
|
|
636
|
+
[NX Daemon Server] - 2026-09-17T02:30:35.794Z - [WATCHER]: tsconfig.json was modified
|
|
637
|
+
[NX Daemon Server] - 2026-09-17T02:30:37.240Z - [WATCHER]: Processing file changes in outputs
|
|
638
|
+
[NX Daemon Server] - 2026-09-17T02:30:37.241Z - [WATCHER]: tsconfig.json was modified
|
|
639
|
+
[NX Daemon Server] - 2026-09-17T02:30:37.434Z - [WATCHER]: Processing file changes in outputs
|
|
640
|
+
[NX Daemon Server] - 2026-09-17T02:30:38.996Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
641
|
+
[NX Daemon Server] - 2026-09-17T02:30:38.996Z - [REQUEST]: tsconfig.json
|
|
642
|
+
[NX Daemon Server] - 2026-09-17T02:30:38.996Z - [REQUEST]:
|
|
643
|
+
[NX Daemon Server] - 2026-09-17T02:30:38.998Z - Time taken for 'hash changed files from watcher' 0.13812500005587935ms
|
|
644
|
+
[NX Daemon Server] - 2026-09-17T02:30:39.008Z - Time taken for 'build-project-configs' 9.439208999974653ms
|
|
645
|
+
[NX Daemon Server] - 2026-09-17T02:30:39.016Z - [SYNC]: collect registered sync generators
|
|
646
|
+
[NX Daemon Server] - 2026-09-17T02:30:39.016Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
647
|
+
[NX Daemon Server] - 2026-09-17T02:30:39.016Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
648
|
+
[NX Daemon Server] - 2026-09-17T02:30:39.016Z - Time taken for 'total execution time for createProjectGraph()' 6.075458999956027ms
|
|
649
|
+
[NX Daemon Server] - 2026-09-17T02:33:18.694Z - [WATCHER]: Processing file changes in outputs
|
|
650
|
+
[NX Daemon Server] - 2026-09-17T02:33:18.706Z - [WATCHER]: tsconfig.json was modified
|
|
651
|
+
[NX Daemon Server] - 2026-09-17T02:33:20.078Z - [WATCHER]: Processing file changes in outputs
|
|
652
|
+
[NX Daemon Server] - 2026-09-17T02:33:20.093Z - [WATCHER]: tsconfig.json was modified
|
|
653
|
+
[NX Daemon Server] - 2026-09-17T02:33:20.323Z - [WATCHER]: Processing file changes in outputs
|
|
654
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.109Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
655
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.109Z - [REQUEST]: tsconfig.json
|
|
656
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.109Z - [REQUEST]:
|
|
657
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.111Z - Time taken for 'hash changed files from watcher' 0.18424999993294477ms
|
|
658
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.119Z - Time taken for 'build-project-configs' 7.8975419998168945ms
|
|
659
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.124Z - [SYNC]: collect registered sync generators
|
|
660
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.124Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
661
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.124Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
662
|
+
[NX Daemon Server] - 2026-09-17T02:33:25.125Z - Time taken for 'total execution time for createProjectGraph()' 3.2339999999385327ms
|
|
663
|
+
[NX Daemon Server] - 2026-09-17T02:34:35.308Z - [WATCHER]: Processing file changes in outputs
|
|
664
|
+
[NX Daemon Server] - 2026-09-17T02:34:35.314Z - [WATCHER]: tsconfig.json was modified
|
|
665
|
+
[NX Daemon Server] - 2026-09-17T02:34:37.571Z - [WATCHER]: Processing file changes in outputs
|
|
666
|
+
[NX Daemon Server] - 2026-09-17T02:34:37.578Z - [WATCHER]: tsconfig.json was modified
|
|
667
|
+
[NX Daemon Server] - 2026-09-17T02:34:37.882Z - [WATCHER]: Processing file changes in outputs
|
|
668
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.716Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
669
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.716Z - [REQUEST]: tsconfig.json
|
|
670
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.716Z - [REQUEST]:
|
|
671
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.717Z - Time taken for 'hash changed files from watcher' 0.2502079999540001ms
|
|
672
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.740Z - Time taken for 'build-project-configs' 22.08545899996534ms
|
|
673
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.752Z - [SYNC]: collect registered sync generators
|
|
674
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.752Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
675
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.752Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
676
|
+
[NX Daemon Server] - 2026-09-17T02:34:41.752Z - Time taken for 'total execution time for createProjectGraph()' 2.94641700014472ms
|
|
677
|
+
[NX Daemon Server] - 2026-09-17T02:36:29.376Z - [WATCHER]: Processing file changes in outputs
|
|
678
|
+
[NX Daemon Server] - 2026-09-17T02:36:29.383Z - [WATCHER]: tsconfig.json was modified
|
|
679
|
+
[NX Daemon Server] - 2026-09-17T02:36:30.708Z - [WATCHER]: Processing file changes in outputs
|
|
680
|
+
[NX Daemon Server] - 2026-09-17T02:36:30.716Z - [WATCHER]: tsconfig.json was modified
|
|
681
|
+
[NX Daemon Server] - 2026-09-17T02:36:30.892Z - [WATCHER]: Processing file changes in outputs
|
|
682
|
+
[NX Daemon Server] - 2026-09-17T02:36:31.689Z - [WATCHER]: Processing file changes in outputs
|
|
683
|
+
[NX Daemon Server] - 2026-09-17T02:36:31.754Z - [WATCHER]: Processing file changes in outputs
|
|
684
|
+
[NX Daemon Server] - 2026-09-17T02:36:31.821Z - [WATCHER]: Processing file changes in outputs
|
|
685
|
+
[NX Daemon Server] - 2026-09-17T02:36:31.875Z - [WATCHER]: Processing file changes in outputs
|
|
686
|
+
[NX Daemon Server] - 2026-09-17T02:36:31.945Z - [WATCHER]: Processing file changes in outputs
|
|
687
|
+
[NX Daemon Server] - 2026-09-17T02:36:31.996Z - [WATCHER]: Processing file changes in outputs
|
|
688
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.785Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
689
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.785Z - [REQUEST]: tsconfig.json
|
|
690
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.785Z - [REQUEST]:
|
|
691
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.787Z - Time taken for 'hash changed files from watcher' 0.3092089998535812ms
|
|
692
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.803Z - Time taken for 'build-project-configs' 14.712749999947846ms
|
|
693
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.810Z - [SYNC]: collect registered sync generators
|
|
694
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.811Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
695
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.811Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
696
|
+
[NX Daemon Server] - 2026-09-17T02:36:35.811Z - Time taken for 'total execution time for createProjectGraph()' 6.642375000054017ms
|
|
697
|
+
[NX Daemon Server] - 2026-09-17T02:39:13.327Z - [WATCHER]: Processing file changes in outputs
|
|
698
|
+
[NX Daemon Server] - 2026-09-17T02:39:13.439Z - [WATCHER]: Processing file changes in outputs
|
|
699
|
+
[NX Daemon Server] - 2026-09-17T02:39:13.494Z - [WATCHER]: Processing file changes in outputs
|
|
700
|
+
[NX Daemon Server] - 2026-09-17T02:39:55.621Z - [WATCHER]: Processing file changes in outputs
|
|
701
|
+
[NX Daemon Server] - 2026-09-17T02:39:55.626Z - [WATCHER]: tsconfig.json was modified
|
|
702
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.030Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
703
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.030Z - [REQUEST]: tsconfig.json
|
|
704
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.030Z - [REQUEST]:
|
|
705
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.036Z - Time taken for 'hash changed files from watcher' 0.2607500001322478ms
|
|
706
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.052Z - Time taken for 'build-project-configs' 15.801042000064626ms
|
|
707
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.062Z - [SYNC]: collect registered sync generators
|
|
708
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.062Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
709
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.062Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
710
|
+
[NX Daemon Server] - 2026-09-17T02:40:02.062Z - Time taken for 'total execution time for createProjectGraph()' 9.2228330001235ms
|
|
711
|
+
[NX Daemon Server] - 2026-09-17T02:40:04.297Z - [WATCHER]: Processing file changes in outputs
|
|
712
|
+
[NX Daemon Server] - 2026-09-17T02:40:04.355Z - [WATCHER]: Processing file changes in outputs
|
|
713
|
+
[NX Daemon Server] - 2026-09-17T02:40:04.361Z - [WATCHER]: tsconfig.json was modified
|
|
714
|
+
[NX Daemon Server] - 2026-09-17T02:40:06.383Z - [WATCHER]: Processing file changes in outputs
|
|
715
|
+
[NX Daemon Server] - 2026-09-17T02:40:09.487Z - [WATCHER]: Processing file changes in outputs
|
|
716
|
+
[NX Daemon Server] - 2026-09-17T02:40:09.603Z - [WATCHER]: Processing file changes in outputs
|
|
717
|
+
[NX Daemon Server] - 2026-09-17T02:40:09.747Z - [WATCHER]: Processing file changes in outputs
|
|
718
|
+
[NX Daemon Server] - 2026-09-17T02:40:09.834Z - [WATCHER]: Processing file changes in outputs
|
|
719
|
+
[NX Daemon Server] - 2026-09-17T02:40:09.887Z - [WATCHER]: Processing file changes in outputs
|
|
720
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.258Z - [WATCHER]: Processing file changes in outputs
|
|
721
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.330Z - [WATCHER]: Processing file changes in outputs
|
|
722
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.447Z - [WATCHER]: Processing file changes in outputs
|
|
723
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.521Z - [WATCHER]: Processing file changes in outputs
|
|
724
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.601Z - [WATCHER]: Processing file changes in outputs
|
|
725
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.763Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
726
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.763Z - [REQUEST]: tsconfig.json
|
|
727
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.763Z - [REQUEST]:
|
|
728
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.765Z - Time taken for 'hash changed files from watcher' 0.2028749999590218ms
|
|
729
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.779Z - Time taken for 'build-project-configs' 11.933541999896988ms
|
|
730
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.787Z - [SYNC]: collect registered sync generators
|
|
731
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.787Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
732
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.788Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
733
|
+
[NX Daemon Server] - 2026-09-17T02:40:10.788Z - Time taken for 'total execution time for createProjectGraph()' 5.453500000061467ms
|
|
734
|
+
[NX Daemon Server] - 2026-09-17T02:43:44.868Z - [WATCHER]: Processing file changes in outputs
|
|
735
|
+
[NX Daemon Server] - 2026-09-17T02:43:44.882Z - [WATCHER]: tsconfig.json was modified
|
|
736
|
+
[NX Daemon Server] - 2026-09-17T02:43:46.214Z - [WATCHER]: Processing file changes in outputs
|
|
737
|
+
[NX Daemon Server] - 2026-09-17T02:43:46.221Z - [WATCHER]: tsconfig.json was modified
|
|
738
|
+
[NX Daemon Server] - 2026-09-17T02:43:46.414Z - [WATCHER]: Processing file changes in outputs
|
|
739
|
+
[NX Daemon Server] - 2026-09-17T02:43:47.332Z - [WATCHER]: Processing file changes in outputs
|
|
740
|
+
[NX Daemon Server] - 2026-09-17T02:43:47.383Z - [WATCHER]: Processing file changes in outputs
|
|
741
|
+
[NX Daemon Server] - 2026-09-17T02:43:47.482Z - [WATCHER]: Processing file changes in outputs
|
|
742
|
+
[NX Daemon Server] - 2026-09-17T02:43:47.562Z - [WATCHER]: Processing file changes in outputs
|
|
743
|
+
[NX Daemon Server] - 2026-09-17T02:43:47.631Z - [WATCHER]: Processing file changes in outputs
|
|
744
|
+
[NX Daemon Server] - 2026-09-17T02:43:47.686Z - [WATCHER]: Processing file changes in outputs
|
|
745
|
+
[NX Daemon Server] - 2026-09-17T02:43:47.749Z - [WATCHER]: Processing file changes in outputs
|
|
746
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.288Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
747
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.288Z - [REQUEST]: tsconfig.json
|
|
748
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.288Z - [REQUEST]:
|
|
749
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.297Z - Time taken for 'hash changed files from watcher' 2.6751669999212027ms
|
|
750
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.334Z - Time taken for 'build-project-configs' 34.98004100006074ms
|
|
751
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.346Z - [SYNC]: collect registered sync generators
|
|
752
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.346Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
753
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.346Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
754
|
+
[NX Daemon Server] - 2026-09-17T02:43:51.346Z - Time taken for 'total execution time for createProjectGraph()' 11.666042000055313ms
|
|
755
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.305Z - Established a connection. Number of open connections: 1
|
|
756
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.306Z - Established a connection. Number of open connections: 2
|
|
757
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.307Z - Closed a connection. Number of open connections: 1
|
|
758
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.312Z - [REQUEST]: Client Request for Project Graph Received
|
|
759
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.313Z - [REQUEST]: Responding to the client. project-graph
|
|
760
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.313Z - Time taken for 'total for creating and serializing project graph' 1.4756670002825558ms
|
|
761
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.314Z - Done responding to the client project-graph
|
|
762
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.314Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
|
|
763
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.377Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
764
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.377Z - Done responding to the client handleHashTasks
|
|
765
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.377Z - Handled HASH_TASKS. Handling time: 12. Response time: 0.
|
|
766
|
+
[NX Daemon Server] - 2026-09-17T02:45:48.661Z - Closed a connection. Number of open connections: 0
|
|
767
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.307Z - [WATCHER]: Processing file changes in outputs
|
|
768
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.312Z - [WATCHER]: tsconfig.json was modified
|
|
769
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.414Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
770
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.414Z - [REQUEST]: tsconfig.json
|
|
771
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.414Z - [REQUEST]:
|
|
772
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.421Z - Time taken for 'hash changed files from watcher' 0.7082919999957085ms
|
|
773
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.434Z - Time taken for 'build-project-configs' 13.947249999735504ms
|
|
774
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.442Z - [SYNC]: collect registered sync generators
|
|
775
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.442Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
776
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.442Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
777
|
+
[NX Daemon Server] - 2026-09-17T02:46:05.442Z - Time taken for 'total execution time for createProjectGraph()' 8.445415999740362ms
|
|
778
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.707Z - [WATCHER]: Processing file changes in outputs
|
|
779
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.711Z - [WATCHER]: tsconfig.json was modified
|
|
780
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.902Z - [WATCHER]: Processing file changes in outputs
|
|
781
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.912Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
782
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.912Z - [REQUEST]: tsconfig.json
|
|
783
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.912Z - [REQUEST]:
|
|
784
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.917Z - Time taken for 'hash changed files from watcher' 0.1581659996882081ms
|
|
785
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.923Z - Time taken for 'build-project-configs' 7.50891700014472ms
|
|
786
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.929Z - [SYNC]: collect registered sync generators
|
|
787
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.929Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
788
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.929Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
789
|
+
[NX Daemon Server] - 2026-09-17T02:46:06.929Z - Time taken for 'total execution time for createProjectGraph()' 6.948917000088841ms
|
|
790
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.656Z - [WATCHER]: package.json was created or restored
|
|
791
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.657Z - [WATCHER]: Processing file changes in outputs
|
|
792
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.758Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
793
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.759Z - [REQUEST]: package.json
|
|
794
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.759Z - [REQUEST]:
|
|
795
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.762Z - Time taken for 'hash changed files from watcher' 0.8158330000005662ms
|
|
796
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.771Z - Time taken for 'build-project-configs' 7.226249999832362ms
|
|
797
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.784Z - [SYNC]: collect registered sync generators
|
|
798
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.784Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
799
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.784Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
800
|
+
[NX Daemon Server] - 2026-09-17T02:53:30.784Z - Time taken for 'total execution time for createProjectGraph()' 5.666958999820054ms
|
|
801
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.705Z - [WATCHER]: Processing file changes in outputs
|
|
802
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.706Z - [WATCHER]: package.json was created or restored
|
|
803
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.808Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
804
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.808Z - [REQUEST]: package.json
|
|
805
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.808Z - [REQUEST]:
|
|
806
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.810Z - Time taken for 'hash changed files from watcher' 0.46020800014957786ms
|
|
807
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.816Z - Time taken for 'build-project-configs' 5.930833000224084ms
|
|
808
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.827Z - [SYNC]: collect registered sync generators
|
|
809
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.827Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
810
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.827Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
811
|
+
[NX Daemon Server] - 2026-09-17T02:53:33.827Z - Time taken for 'total execution time for createProjectGraph()' 8.574000000022352ms
|
|
812
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.314Z - [WATCHER]: package.json was modified
|
|
813
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.318Z - [WATCHER]: Processing file changes in outputs
|
|
814
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.524Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
815
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.524Z - [REQUEST]: package.json
|
|
816
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.524Z - [REQUEST]:
|
|
817
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.532Z - Time taken for 'hash changed files from watcher' 1.2255830001085997ms
|
|
818
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.559Z - Time taken for 'build-project-configs' 27.617541000247ms
|
|
819
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.570Z - [SYNC]: collect registered sync generators
|
|
820
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.570Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
821
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.570Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
822
|
+
[NX Daemon Server] - 2026-09-17T04:17:39.571Z - Time taken for 'total execution time for createProjectGraph()' 10.16170800011605ms
|
|
823
|
+
[NX Daemon Server] - 2026-09-17T04:22:30.860Z - [WATCHER]: Processing file changes in outputs
|
|
824
|
+
[NX Daemon Server] - 2026-09-17T04:22:30.862Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (sources)
|
|
825
|
+
[NX Daemon Server] - 2026-09-17T04:22:30.863Z - [WATCHER]: Stopping the watcher for /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (outputs)
|
|
826
|
+
[NX Daemon Server] - 2026-09-17T04:22:30.871Z - Server stopped because: "NX_VERSION_CHANGED"
|
|
827
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.062Z - Started listening on: /private/var/folders/hw/dvsryrl10t59sqh3rht8j_pr0000gn/T/091eddd6eaf287d577f0/d.sock
|
|
828
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.065Z - [WATCHER]: Subscribed to changes within: /Volumes/Home/Documents/TestSpectra/source/cli/templates/nx (native)
|
|
829
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.067Z - Established a connection. Number of open connections: 1
|
|
830
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.068Z - Established a connection. Number of open connections: 2
|
|
831
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.068Z - Closed a connection. Number of open connections: 1
|
|
832
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.069Z - [REQUEST]: Client Request for Project Graph Received
|
|
833
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.122Z - [WATCHER]: Processing file changes in outputs
|
|
834
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.189Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
835
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.189Z - [REQUEST]:
|
|
836
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.189Z - [REQUEST]:
|
|
837
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.191Z - Time taken for 'loadNxPlugins' 119.58895899999999ms
|
|
838
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.219Z - Time taken for 'build-project-configs' 22.100375000000042ms
|
|
839
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.224Z - [SYNC]: collect registered sync generators
|
|
840
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.224Z - [REQUEST]: Responding to the client. project-graph
|
|
841
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.225Z - Time taken for 'total for creating and serializing project graph' 155.816167ms
|
|
842
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.225Z - Done responding to the client project-graph
|
|
843
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.225Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 155. Response time: 1.
|
|
844
|
+
[NX Daemon Server] - 2026-09-17T05:12:50.262Z - Closed a connection. Number of open connections: 0
|
|
845
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.604Z - Established a connection. Number of open connections: 1
|
|
846
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.605Z - Closed a connection. Number of open connections: 0
|
|
847
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.605Z - Established a connection. Number of open connections: 1
|
|
848
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.607Z - [REQUEST]: Client Request for Project Graph Received
|
|
849
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.607Z - [REQUEST]: Responding to the client. project-graph
|
|
850
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.607Z - Time taken for 'total for creating and serializing project graph' 0.15379199999915727ms
|
|
851
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.608Z - Done responding to the client project-graph
|
|
852
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.608Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
|
|
853
|
+
[NX Daemon Server] - 2026-09-17T05:13:01.610Z - Closed a connection. Number of open connections: 0
|
|
854
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.652Z - Established a connection. Number of open connections: 1
|
|
855
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.653Z - Closed a connection. Number of open connections: 0
|
|
856
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.653Z - Established a connection. Number of open connections: 1
|
|
857
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.655Z - [REQUEST]: Client Request for Project Graph Received
|
|
858
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.655Z - [REQUEST]: Responding to the client. project-graph
|
|
859
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.655Z - Time taken for 'total for creating and serializing project graph' 0.13400000000183354ms
|
|
860
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.655Z - Done responding to the client project-graph
|
|
861
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.655Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 0.
|
|
862
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.708Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
863
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.708Z - Done responding to the client handleHashTasks
|
|
864
|
+
[NX Daemon Server] - 2026-09-17T05:13:20.708Z - Handled HASH_TASKS. Handling time: 3. Response time: 0.
|
|
865
|
+
[NX Daemon Server] - 2026-09-17T05:13:21.828Z - [REQUEST]: Responding to the client. recordOutputsHash
|
|
866
|
+
[NX Daemon Server] - 2026-09-17T05:13:21.828Z - Done responding to the client recordOutputsHash
|
|
867
|
+
[NX Daemon Server] - 2026-09-17T05:13:21.828Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0.
|
|
868
|
+
[NX Daemon Server] - 2026-09-17T05:13:22.137Z - Closed a connection. Number of open connections: 0
|
|
869
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.687Z - Established a connection. Number of open connections: 1
|
|
870
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.687Z - Closed a connection. Number of open connections: 0
|
|
871
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.688Z - Established a connection. Number of open connections: 1
|
|
872
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.689Z - [REQUEST]: Client Request for Project Graph Received
|
|
873
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.689Z - [REQUEST]: Responding to the client. project-graph
|
|
874
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.689Z - Time taken for 'total for creating and serializing project graph' 0.18641699999716366ms
|
|
875
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.690Z - Done responding to the client project-graph
|
|
876
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.690Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
|
|
877
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.724Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
878
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.724Z - Done responding to the client handleHashTasks
|
|
879
|
+
[NX Daemon Server] - 2026-09-17T05:13:31.724Z - Handled HASH_TASKS. Handling time: 0. Response time: 0.
|
|
880
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.048Z - [REQUEST]: Responding to the client. recordOutputsHash
|
|
881
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.049Z - Done responding to the client recordOutputsHash
|
|
882
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.049Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1.
|
|
883
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.400Z - Closed a connection. Number of open connections: 0
|
|
884
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.692Z - Established a connection. Number of open connections: 1
|
|
885
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.693Z - Closed a connection. Number of open connections: 0
|
|
886
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.693Z - Established a connection. Number of open connections: 1
|
|
887
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.694Z - [REQUEST]: Client Request for Project Graph Received
|
|
888
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.694Z - [REQUEST]: Responding to the client. project-graph
|
|
889
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.694Z - Time taken for 'total for creating and serializing project graph' 0.15012500000011642ms
|
|
890
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.695Z - Done responding to the client project-graph
|
|
891
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.695Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
|
|
892
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.716Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
893
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.716Z - Done responding to the client handleHashTasks
|
|
894
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.717Z - Handled HASH_TASKS. Handling time: 0. Response time: 1.
|
|
895
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.950Z - [REQUEST]: Responding to the client. recordOutputsHash
|
|
896
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.950Z - Done responding to the client recordOutputsHash
|
|
897
|
+
[NX Daemon Server] - 2026-09-17T05:13:32.950Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0.
|
|
898
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.210Z - Closed a connection. Number of open connections: 0
|
|
899
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.573Z - Established a connection. Number of open connections: 1
|
|
900
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.575Z - Closed a connection. Number of open connections: 0
|
|
901
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.575Z - Established a connection. Number of open connections: 1
|
|
902
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.576Z - [REQUEST]: Client Request for Project Graph Received
|
|
903
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.576Z - [REQUEST]: Responding to the client. project-graph
|
|
904
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.576Z - Time taken for 'total for creating and serializing project graph' 0.07766600000468316ms
|
|
905
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.577Z - Done responding to the client project-graph
|
|
906
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.577Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
|
|
907
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.600Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
908
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.600Z - Done responding to the client handleHashTasks
|
|
909
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.600Z - Handled HASH_TASKS. Handling time: 0. Response time: 0.
|
|
910
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.840Z - [REQUEST]: Responding to the client. recordOutputsHash
|
|
911
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.840Z - Done responding to the client recordOutputsHash
|
|
912
|
+
[NX Daemon Server] - 2026-09-17T05:13:33.840Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0.
|
|
913
|
+
[NX Daemon Server] - 2026-09-17T05:13:34.173Z - Closed a connection. Number of open connections: 0
|
|
914
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.622Z - Established a connection. Number of open connections: 1
|
|
915
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.623Z - Closed a connection. Number of open connections: 0
|
|
916
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.623Z - Established a connection. Number of open connections: 1
|
|
917
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.624Z - [REQUEST]: Client Request for Project Graph Received
|
|
918
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.624Z - [REQUEST]: Responding to the client. project-graph
|
|
919
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.625Z - Time taken for 'total for creating and serializing project graph' 0.1077919999952428ms
|
|
920
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.625Z - Done responding to the client project-graph
|
|
921
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.625Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
|
|
922
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.659Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
923
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.659Z - Done responding to the client handleHashTasks
|
|
924
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.659Z - Handled HASH_TASKS. Handling time: 0. Response time: 0.
|
|
925
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.685Z - [REQUEST]: Responding to the client. recordOutputsHash
|
|
926
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.685Z - Done responding to the client recordOutputsHash
|
|
927
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.685Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0.
|
|
928
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.980Z - [REQUEST]: Responding to the client. recordOutputsHash
|
|
929
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.980Z - Done responding to the client recordOutputsHash
|
|
930
|
+
[NX Daemon Server] - 2026-09-17T05:13:45.980Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0.
|
|
931
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.282Z - Closed a connection. Number of open connections: 0
|
|
932
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.597Z - Established a connection. Number of open connections: 1
|
|
933
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.598Z - Closed a connection. Number of open connections: 0
|
|
934
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.598Z - Established a connection. Number of open connections: 1
|
|
935
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.600Z - [REQUEST]: Client Request for Project Graph Received
|
|
936
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.600Z - [REQUEST]: Responding to the client. project-graph
|
|
937
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.600Z - Time taken for 'total for creating and serializing project graph' 0.09720800000650343ms
|
|
938
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.601Z - Done responding to the client project-graph
|
|
939
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.601Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
|
|
940
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.642Z - [REQUEST]: Responding to the client. handleContextFileData
|
|
941
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.642Z - Done responding to the client handleContextFileData
|
|
942
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.642Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0.
|
|
943
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.772Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
944
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.772Z - Done responding to the client handleHashTasks
|
|
945
|
+
[NX Daemon Server] - 2026-09-17T05:13:46.772Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
|
|
946
|
+
[NX Daemon Server] - 2026-09-17T05:13:47.047Z - Closed a connection. Number of open connections: 0
|
|
947
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.117Z - [WATCHER]: packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts was modified
|
|
948
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.118Z - [WATCHER]: Processing file changes in outputs
|
|
949
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.219Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
950
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.219Z - [REQUEST]: packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts
|
|
951
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.219Z - [REQUEST]:
|
|
952
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.220Z - Time taken for 'hash changed files from watcher' 0.10662500000034925ms
|
|
953
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.230Z - Time taken for 'build-project-configs' 8.07166600000346ms
|
|
954
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.238Z - [SYNC]: collect registered sync generators
|
|
955
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.238Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
956
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.238Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
957
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.238Z - Time taken for 'total execution time for createProjectGraph()' 5.605582999996841ms
|
|
958
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.627Z - Established a connection. Number of open connections: 1
|
|
959
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.628Z - Closed a connection. Number of open connections: 0
|
|
960
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.628Z - Established a connection. Number of open connections: 1
|
|
961
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.629Z - [REQUEST]: Client Request for Project Graph Received
|
|
962
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.629Z - [REQUEST]: Responding to the client. project-graph
|
|
963
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.629Z - Time taken for 'total for creating and serializing project graph' 0.09449999999196734ms
|
|
964
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.630Z - Done responding to the client project-graph
|
|
965
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.630Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
|
|
966
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.675Z - [REQUEST]: Responding to the client. handleContextFileData
|
|
967
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.675Z - Done responding to the client handleContextFileData
|
|
968
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.675Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0.
|
|
969
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.848Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
970
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.848Z - Done responding to the client handleHashTasks
|
|
971
|
+
[NX Daemon Server] - 2026-09-17T05:13:59.848Z - Handled HASH_TASKS. Handling time: 2. Response time: 0.
|
|
972
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.161Z - [REQUEST]: Responding to the client. recordOutputsHash
|
|
973
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.161Z - Done responding to the client recordOutputsHash
|
|
974
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.161Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0.
|
|
975
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.457Z - Closed a connection. Number of open connections: 0
|
|
976
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.533Z - [WATCHER]: packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts was created or restored
|
|
977
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.533Z - [WATCHER]: Processing file changes in outputs
|
|
978
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.635Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
979
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.635Z - [REQUEST]: packages/playground/e2e/specs/Playground/TC-0001-form-controls/web.test.ts
|
|
980
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.635Z - [REQUEST]:
|
|
981
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.636Z - Time taken for 'hash changed files from watcher' 0.10304200000246055ms
|
|
982
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.640Z - Time taken for 'build-project-configs' 3.9562500000029104ms
|
|
983
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.647Z - [SYNC]: collect registered sync generators
|
|
984
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.647Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
985
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.647Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
986
|
+
[NX Daemon Server] - 2026-09-17T05:14:00.647Z - Time taken for 'total execution time for createProjectGraph()' 3.533833000008599ms
|
|
987
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.098Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted
|
|
988
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.099Z - [WATCHER]: Processing file changes in outputs
|
|
989
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.202Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
990
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.202Z - [REQUEST]: package.json
|
|
991
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.202Z - [REQUEST]: package.json.tmp.37934.f49486b11f60
|
|
992
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.203Z - Time taken for 'hash changed files from watcher' 0.1638329999987036ms
|
|
993
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.211Z - Time taken for 'build-project-configs' 5.695791999998619ms
|
|
994
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.215Z - [SYNC]: collect registered sync generators
|
|
995
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.215Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
996
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.215Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
997
|
+
[NX Daemon Server] - 2026-09-17T05:14:21.215Z - Time taken for 'total execution time for createProjectGraph()' 4.8237499999959255ms
|
|
998
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.533Z - [WATCHER]: Processing file changes in outputs
|
|
999
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.552Z - [WATCHER]: tsconfig.json was modified
|
|
1000
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.754Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1001
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.754Z - [REQUEST]: tsconfig.json
|
|
1002
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.754Z - [REQUEST]:
|
|
1003
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.755Z - Time taken for 'hash changed files from watcher' 0.11620899999979883ms
|
|
1004
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.761Z - Time taken for 'build-project-configs' 5.96608300000662ms
|
|
1005
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.765Z - [SYNC]: collect registered sync generators
|
|
1006
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.765Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1007
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.765Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1008
|
+
[NX Daemon Server] - 2026-09-17T05:14:32.766Z - Time taken for 'total execution time for createProjectGraph()' 3.3585840000014286ms
|
|
1009
|
+
[NX Daemon Server] - 2026-09-17T05:14:33.966Z - [WATCHER]: Processing file changes in outputs
|
|
1010
|
+
[NX Daemon Server] - 2026-09-17T05:14:33.970Z - [WATCHER]: tsconfig.json was modified
|
|
1011
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.372Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1012
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.372Z - [REQUEST]: tsconfig.json
|
|
1013
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.372Z - [REQUEST]:
|
|
1014
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.374Z - Time taken for 'hash changed files from watcher' 0.1789159999898402ms
|
|
1015
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.374Z - [WATCHER]: Processing file changes in outputs
|
|
1016
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.379Z - Time taken for 'build-project-configs' 5.848167000003741ms
|
|
1017
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.386Z - [SYNC]: collect registered sync generators
|
|
1018
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.386Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1019
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.386Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1020
|
+
[NX Daemon Server] - 2026-09-17T05:14:34.386Z - Time taken for 'total execution time for createProjectGraph()' 3.396374999996624ms
|
|
1021
|
+
[NX Daemon Server] - 2026-09-17T06:45:41.961Z - [WATCHER]: Processing file changes in outputs
|
|
1022
|
+
[NX Daemon Server] - 2026-09-17T06:45:41.970Z - [WATCHER]: tsconfig.json was modified
|
|
1023
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.773Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1024
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.773Z - [REQUEST]: tsconfig.json
|
|
1025
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.773Z - [REQUEST]:
|
|
1026
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.777Z - Time taken for 'hash changed files from watcher' 1.497542000375688ms
|
|
1027
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.814Z - Time taken for 'build-project-configs' 37.16791700012982ms
|
|
1028
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.819Z - [SYNC]: collect registered sync generators
|
|
1029
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.819Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1030
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.819Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1031
|
+
[NX Daemon Server] - 2026-09-17T06:45:42.819Z - Time taken for 'total execution time for createProjectGraph()' 3.554333000443876ms
|
|
1032
|
+
[NX Daemon Server] - 2026-09-17T06:45:43.527Z - [WATCHER]: Processing file changes in outputs
|
|
1033
|
+
[NX Daemon Server] - 2026-09-17T06:45:43.533Z - [WATCHER]: tsconfig.json was modified
|
|
1034
|
+
[NX Daemon Server] - 2026-09-17T06:45:43.943Z - [WATCHER]: Processing file changes in outputs
|
|
1035
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.135Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1036
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.135Z - [REQUEST]: tsconfig.json
|
|
1037
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.135Z - [REQUEST]:
|
|
1038
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.136Z - Time taken for 'hash changed files from watcher' 0.15079099964350462ms
|
|
1039
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.143Z - Time taken for 'build-project-configs' 5.87833399977535ms
|
|
1040
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.147Z - [SYNC]: collect registered sync generators
|
|
1041
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.147Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1042
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.147Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1043
|
+
[NX Daemon Server] - 2026-09-17T06:45:45.147Z - Time taken for 'total execution time for createProjectGraph()' 3.3414579993113875ms
|
|
1044
|
+
[NX Daemon Server] - 2026-09-17T06:46:48.592Z - [WATCHER]: Processing file changes in outputs
|
|
1045
|
+
[NX Daemon Server] - 2026-09-17T06:46:48.596Z - [WATCHER]: tsconfig.json was modified
|
|
1046
|
+
[NX Daemon Server] - 2026-09-17T06:46:50.964Z - [WATCHER]: Processing file changes in outputs
|
|
1047
|
+
[NX Daemon Server] - 2026-09-17T06:46:50.968Z - [WATCHER]: tsconfig.json was modified
|
|
1048
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.150Z - [WATCHER]: Processing file changes in outputs
|
|
1049
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.798Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1050
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.798Z - [REQUEST]: tsconfig.json
|
|
1051
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.798Z - [REQUEST]:
|
|
1052
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.799Z - Time taken for 'hash changed files from watcher' 0.17512500006705523ms
|
|
1053
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.811Z - Time taken for 'build-project-configs' 9.800042000599205ms
|
|
1054
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.818Z - [SYNC]: collect registered sync generators
|
|
1055
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.818Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1056
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.818Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1057
|
+
[NX Daemon Server] - 2026-09-17T06:46:51.818Z - Time taken for 'total execution time for createProjectGraph()' 5.4457499999552965ms
|
|
1058
|
+
[NX Daemon Server] - 2026-09-17T07:21:11.944Z - [WATCHER]: package.json was modified
|
|
1059
|
+
[NX Daemon Server] - 2026-09-17T07:21:11.945Z - [WATCHER]: Processing file changes in outputs
|
|
1060
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.350Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1061
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.350Z - [REQUEST]: package.json
|
|
1062
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.350Z - [REQUEST]:
|
|
1063
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.356Z - Time taken for 'hash changed files from watcher' 2.567459000274539ms
|
|
1064
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.376Z - Time taken for 'build-project-configs' 17.7752080000937ms
|
|
1065
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.385Z - [SYNC]: collect registered sync generators
|
|
1066
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.385Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1067
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.385Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1068
|
+
[NX Daemon Server] - 2026-09-17T07:21:18.385Z - Time taken for 'total execution time for createProjectGraph()' 7.215334000065923ms
|
|
1069
|
+
[NX Daemon Server] - 2026-09-17T07:22:45.696Z - [WATCHER]: package.json was modified
|
|
1070
|
+
[NX Daemon Server] - 2026-09-17T07:22:45.697Z - [WATCHER]: Processing file changes in outputs
|
|
1071
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.100Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1072
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.100Z - [REQUEST]: package.json
|
|
1073
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.100Z - [REQUEST]:
|
|
1074
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.101Z - Time taken for 'hash changed files from watcher' 1.0442499993368983ms
|
|
1075
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.114Z - Time taken for 'build-project-configs' 11.387875000014901ms
|
|
1076
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.120Z - [SYNC]: collect registered sync generators
|
|
1077
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.120Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1078
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.120Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1079
|
+
[NX Daemon Server] - 2026-09-17T07:22:52.120Z - Time taken for 'total execution time for createProjectGraph()' 5.400291999801993ms
|
|
1080
|
+
[NX Daemon Server] - 2026-09-17T07:24:04.287Z - [WATCHER]: package.json was modified
|
|
1081
|
+
[NX Daemon Server] - 2026-09-17T07:24:04.288Z - [WATCHER]: Processing file changes in outputs
|
|
1082
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.692Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
1083
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.692Z - [REQUEST]: package.json
|
|
1084
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.692Z - [REQUEST]:
|
|
1085
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.698Z - Time taken for 'hash changed files from watcher' 2.1984999999403954ms
|
|
1086
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.709Z - Time taken for 'build-project-configs' 11.051667000167072ms
|
|
1087
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.716Z - [SYNC]: collect registered sync generators
|
|
1088
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.716Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
1089
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.716Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
1090
|
+
[NX Daemon Server] - 2026-09-17T07:24:10.716Z - Time taken for 'total execution time for createProjectGraph()' 5.545666999183595ms
|