@testspectra/cli 1.1.8-rc.1 → 1.1.8-rc.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +47 -0
- package/dist/.tsbuildinfo +1 -1
- package/dist/commands/add.js +2 -1
- package/dist/commands/init.js +2 -1
- package/dist/commands/test.js +29 -1
- package/dist/generator/__tests__/type-generator.test.js +38 -0
- package/dist/generator/type-generator.d.ts +5 -2
- package/dist/generator/type-generator.js +14 -17
- package/dist/linter/__tests__/shared-lib-boundary.test.js +15 -15
- package/dist/linter/discovery.d.ts +3 -3
- package/dist/linter/discovery.js +5 -5
- package/dist/linter/schemas/spec.schema.d.ts +10 -10
- package/dist/linter/schemas/suite.schema.d.ts +8 -8
- package/dist/reporter/semantic-formatter.js +5 -0
- package/dist/runner/bridge.js +52 -4
- package/package.json +34 -29
- package/templates/default/package.json +2 -2
- package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-shm +0 -0
- package/templates/nx/.nx/workspace-data/70094CFD-E89B-57A1-9619-2FC5F4963C54.db-wal +0 -0
- package/templates/nx/.nx/workspace-data/d/daemon.log +415 -0
- package/templates/nx/.nx/workspace-data/file-map.json +88 -88
- package/templates/nx/.nx/workspace-data/project-graph.json +5 -6
- package/templates/nx/package.json +2 -2
- package/templates/nx/packages/matchers/e2e/project.json +2 -2
- package/templates/nx/packages/playground/e2e/project.json +2 -2
- package/templates/nx/shared/testing/project.json +1 -2
- package/bin/.testspectra-runner.hash +0 -1
- package/bin/testspectra-runner +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testspectra/cli",
|
|
3
|
-
"version": "1.1.8-rc.
|
|
3
|
+
"version": "1.1.8-rc.10",
|
|
4
4
|
"description": "TestSpectra Zero-Config Cross-Platform Test Runner CLI",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,15 +16,6 @@
|
|
|
16
16
|
"spectra": "./bin/spectra.js",
|
|
17
17
|
"testspectra": "./bin/spectra.js"
|
|
18
18
|
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build:rust": "node scripts/ensure-runner-binary.js",
|
|
21
|
-
"prebuild": "node scripts/ensure-runner-binary.js",
|
|
22
|
-
"build": "tsc && node scripts/copy-demo.js",
|
|
23
|
-
"watch": "tsc -w",
|
|
24
|
-
"test": "vitest run",
|
|
25
|
-
"test:watch": "vitest",
|
|
26
|
-
"prepublishOnly": "npm run build"
|
|
27
|
-
},
|
|
28
19
|
"files": [
|
|
29
20
|
"dist",
|
|
30
21
|
"bin",
|
|
@@ -34,26 +25,40 @@
|
|
|
34
25
|
"LICENSE.md"
|
|
35
26
|
],
|
|
36
27
|
"dependencies": {
|
|
37
|
-
"@clack/prompts": "
|
|
38
|
-
"@testspectra/matchers": "^1.1.8-rc.
|
|
39
|
-
"@testspectra/react": "
|
|
40
|
-
"@testspectra/skills": "^1.1.8-rc.
|
|
41
|
-
"chalk": "
|
|
42
|
-
"commander": "
|
|
43
|
-
"dotenv": "
|
|
44
|
-
"ora": "
|
|
45
|
-
"typescript": "
|
|
46
|
-
"yaml": "
|
|
47
|
-
"zod": "
|
|
28
|
+
"@clack/prompts": "^1.7.0",
|
|
29
|
+
"@testspectra/matchers": "^1.1.8-rc.10",
|
|
30
|
+
"@testspectra/react": "^1.1.8-rc.10",
|
|
31
|
+
"@testspectra/skills": "^1.1.8-rc.10",
|
|
32
|
+
"chalk": "^5.3.0",
|
|
33
|
+
"commander": "^12.1.0",
|
|
34
|
+
"dotenv": "^16.4.5",
|
|
35
|
+
"ora": "^8.0.1",
|
|
36
|
+
"typescript": "^5.6.3",
|
|
37
|
+
"yaml": "^2.7.0",
|
|
38
|
+
"zod": "^3.23.8"
|
|
39
|
+
},
|
|
40
|
+
"optionalDependencies": {
|
|
41
|
+
"@testspectra/cli-darwin-arm64": "1.1.8-rc.10",
|
|
42
|
+
"@testspectra/cli-linux-x64": "1.1.8-rc.10",
|
|
43
|
+
"@testspectra/cli-win32-arm64": "1.1.8-rc.10",
|
|
44
|
+
"@testspectra/cli-win32-x64": "1.1.8-rc.10"
|
|
48
45
|
},
|
|
49
46
|
"devDependencies": {
|
|
50
|
-
"@types/node": "
|
|
51
|
-
"@wdio/globals": "
|
|
52
|
-
"@wdio/mocha-framework": "
|
|
53
|
-
"@wdio/types": "
|
|
54
|
-
"esbuild": "
|
|
55
|
-
"vitest": "
|
|
47
|
+
"@types/node": "^20.14.0",
|
|
48
|
+
"@wdio/globals": "^9.24.0",
|
|
49
|
+
"@wdio/mocha-framework": "^9.24.0",
|
|
50
|
+
"@wdio/types": "^9.24.0",
|
|
51
|
+
"esbuild": "^0.28.2",
|
|
52
|
+
"vitest": "^2.1.8"
|
|
56
53
|
},
|
|
57
54
|
"type": "module",
|
|
58
|
-
"license": "SEE LICENSE IN LICENSE.md"
|
|
59
|
-
|
|
55
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build:rust": "node scripts/ensure-runner-binary.js",
|
|
58
|
+
"prebuild": "node scripts/ensure-runner-binary.js",
|
|
59
|
+
"build": "tsc && node scripts/copy-demo.js",
|
|
60
|
+
"watch": "tsc -w",
|
|
61
|
+
"test": "vitest run",
|
|
62
|
+
"test:watch": "vitest"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"postinstall": "spectra sync-types"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@testspectra/cli": "^1.1.8-rc.
|
|
21
|
-
"@testspectra/matchers": "^1.1.8-rc.
|
|
20
|
+
"@testspectra/cli": "^1.1.8-rc.10",
|
|
21
|
+
"@testspectra/matchers": "^1.1.8-rc.10",
|
|
22
22
|
"@types/node": "^20.14.0",
|
|
23
23
|
"@wdio/cli": "^9.2.8",
|
|
24
24
|
"@wdio/local-runner": "^9.2.8",
|
|
Binary file
|
|
Binary file
|
|
@@ -5386,3 +5386,418 @@
|
|
|
5386
5386
|
[NX Daemon Server] - 2026-09-16T04:39:37.911Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5387
5387
|
[NX Daemon Server] - 2026-09-16T04:39:37.911Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5388
5388
|
[NX Daemon Server] - 2026-09-16T04:39:37.911Z - Time taken for 'total execution time for createProjectGraph()' 7.441290999762714ms
|
|
5389
|
+
[NX Daemon Server] - 2026-09-16T04:39:59.682Z - [WATCHER]: package.json was modified
|
|
5390
|
+
[NX Daemon Server] - 2026-09-16T04:39:59.682Z - [WATCHER]: Processing file changes in outputs
|
|
5391
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.485Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5392
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.485Z - [REQUEST]: package.json
|
|
5393
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.485Z - [REQUEST]:
|
|
5394
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.507Z - Time taken for 'hash changed files from watcher' 0.4134580008685589ms
|
|
5395
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.523Z - Time taken for 'build-project-configs' 14.81045800074935ms
|
|
5396
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.548Z - [SYNC]: collect registered sync generators
|
|
5397
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.548Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5398
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.548Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5399
|
+
[NX Daemon Server] - 2026-09-16T04:40:00.549Z - Time taken for 'total execution time for createProjectGraph()' 24.893792000599205ms
|
|
5400
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.607Z - Established a connection. Number of open connections: 1
|
|
5401
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.609Z - Established a connection. Number of open connections: 2
|
|
5402
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.612Z - Closed a connection. Number of open connections: 1
|
|
5403
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.618Z - [REQUEST]: Client Request for Project Graph Received
|
|
5404
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.619Z - [REQUEST]: Responding to the client. project-graph
|
|
5405
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.620Z - Time taken for 'total for creating and serializing project graph' 1.0273339990526438ms
|
|
5406
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.621Z - Done responding to the client project-graph
|
|
5407
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.621Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2.
|
|
5408
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.682Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
5409
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.682Z - Done responding to the client handleHashTasks
|
|
5410
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.682Z - Handled HASH_TASKS. Handling time: 15. Response time: 0.
|
|
5411
|
+
[NX Daemon Server] - 2026-09-16T05:13:41.936Z - Closed a connection. Number of open connections: 0
|
|
5412
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.782Z - Established a connection. Number of open connections: 1
|
|
5413
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.783Z - Established a connection. Number of open connections: 2
|
|
5414
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.784Z - Closed a connection. Number of open connections: 1
|
|
5415
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.786Z - [REQUEST]: Client Request for Project Graph Received
|
|
5416
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.787Z - [REQUEST]: Responding to the client. project-graph
|
|
5417
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.787Z - Time taken for 'total for creating and serializing project graph' 0.5886250007897615ms
|
|
5418
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.788Z - Done responding to the client project-graph
|
|
5419
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.788Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1.
|
|
5420
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.827Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
5421
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.827Z - Done responding to the client handleHashTasks
|
|
5422
|
+
[NX Daemon Server] - 2026-09-16T05:17:48.827Z - Handled HASH_TASKS. Handling time: 1. Response time: 0.
|
|
5423
|
+
[NX Daemon Server] - 2026-09-16T05:17:49.116Z - Closed a connection. Number of open connections: 0
|
|
5424
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.087Z - [WATCHER]: package.json was modified
|
|
5425
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.094Z - [WATCHER]: Processing file changes in outputs
|
|
5426
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.207Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5427
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.208Z - [REQUEST]: package.json
|
|
5428
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.208Z - [REQUEST]:
|
|
5429
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.222Z - Time taken for 'hash changed files from watcher' 5.349207999184728ms
|
|
5430
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.280Z - Time taken for 'build-project-configs' 58.40237499959767ms
|
|
5431
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.315Z - [SYNC]: collect registered sync generators
|
|
5432
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.315Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5433
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.315Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5434
|
+
[NX Daemon Server] - 2026-09-16T06:36:15.315Z - Time taken for 'total execution time for createProjectGraph()' 24.37916700169444ms
|
|
5435
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.185Z - [WATCHER]: package.json was modified
|
|
5436
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.185Z - [WATCHER]: Processing file changes in outputs
|
|
5437
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.386Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5438
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.386Z - [REQUEST]: package.json
|
|
5439
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.386Z - [REQUEST]:
|
|
5440
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.387Z - Time taken for 'hash changed files from watcher' 0.07979200035333633ms
|
|
5441
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.391Z - Time taken for 'build-project-configs' 3.756791001185775ms
|
|
5442
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.405Z - [SYNC]: collect registered sync generators
|
|
5443
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.405Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5444
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.405Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5445
|
+
[NX Daemon Server] - 2026-09-16T06:36:40.405Z - Time taken for 'total execution time for createProjectGraph()' 10.28316600061953ms
|
|
5446
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.151Z - [WATCHER]: package.json was modified
|
|
5447
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.156Z - [WATCHER]: Processing file changes in outputs
|
|
5448
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.565Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5449
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.566Z - [REQUEST]: package.json
|
|
5450
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.566Z - [REQUEST]:
|
|
5451
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.575Z - Time taken for 'hash changed files from watcher' 2.151959002017975ms
|
|
5452
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.618Z - Time taken for 'build-project-configs' 40.18383399769664ms
|
|
5453
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.669Z - [SYNC]: collect registered sync generators
|
|
5454
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.669Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5455
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.669Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5456
|
+
[NX Daemon Server] - 2026-09-16T08:45:50.670Z - Time taken for 'total execution time for createProjectGraph()' 34.479583002626896ms
|
|
5457
|
+
[NX Daemon Server] - 2026-09-16T08:45:52.962Z - [WATCHER]: package.json was modified
|
|
5458
|
+
[NX Daemon Server] - 2026-09-16T08:45:52.962Z - [WATCHER]: Processing file changes in outputs
|
|
5459
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.764Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5460
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.764Z - [REQUEST]: package.json
|
|
5461
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.764Z - [REQUEST]:
|
|
5462
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.767Z - Time taken for 'hash changed files from watcher' 0.6852909997105598ms
|
|
5463
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.778Z - Time taken for 'build-project-configs' 10.601999998092651ms
|
|
5464
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.794Z - [SYNC]: collect registered sync generators
|
|
5465
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.795Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5466
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.795Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5467
|
+
[NX Daemon Server] - 2026-09-16T08:45:53.795Z - Time taken for 'total execution time for createProjectGraph()' 14.938833002001047ms
|
|
5468
|
+
[NX Daemon Server] - 2026-09-16T08:54:19.999Z - [WATCHER]: package.json was modified
|
|
5469
|
+
[NX Daemon Server] - 2026-09-16T08:54:20.000Z - [WATCHER]: Processing file changes in outputs
|
|
5470
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.603Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5471
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.603Z - [REQUEST]: package.json
|
|
5472
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.603Z - [REQUEST]:
|
|
5473
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.608Z - Time taken for 'hash changed files from watcher' 1.5020829997956753ms
|
|
5474
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.624Z - Time taken for 'build-project-configs' 15.715833000838757ms
|
|
5475
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.635Z - [SYNC]: collect registered sync generators
|
|
5476
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.635Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5477
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.635Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5478
|
+
[NX Daemon Server] - 2026-09-16T08:54:21.635Z - Time taken for 'total execution time for createProjectGraph()' 9.439167000353336ms
|
|
5479
|
+
[NX Daemon Server] - 2026-09-16T08:56:21.155Z - [WATCHER]: package.json was modified
|
|
5480
|
+
[NX Daemon Server] - 2026-09-16T08:56:21.155Z - [WATCHER]: Processing file changes in outputs
|
|
5481
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.356Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5482
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.356Z - [REQUEST]: package.json
|
|
5483
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.356Z - [REQUEST]:
|
|
5484
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.358Z - Time taken for 'hash changed files from watcher' 0.15341699868440628ms
|
|
5485
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.364Z - Time taken for 'build-project-configs' 5.9051249995827675ms
|
|
5486
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.374Z - [SYNC]: collect registered sync generators
|
|
5487
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.374Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5488
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.374Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5489
|
+
[NX Daemon Server] - 2026-09-16T08:56:24.374Z - Time taken for 'total execution time for createProjectGraph()' 9.385624997317791ms
|
|
5490
|
+
[NX Daemon Server] - 2026-09-16T08:57:08.672Z - [WATCHER]: Processing file changes in outputs
|
|
5491
|
+
[NX Daemon Server] - 2026-09-16T08:57:11.420Z - [WATCHER]: package.json was modified
|
|
5492
|
+
[NX Daemon Server] - 2026-09-16T08:57:11.420Z - [WATCHER]: Processing file changes in outputs
|
|
5493
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.821Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5494
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.821Z - [REQUEST]: package.json
|
|
5495
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.821Z - [REQUEST]:
|
|
5496
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.825Z - Time taken for 'hash changed files from watcher' 0.13729199767112732ms
|
|
5497
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.837Z - Time taken for 'build-project-configs' 10.805041998624802ms
|
|
5498
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.848Z - [SYNC]: collect registered sync generators
|
|
5499
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.848Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5500
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.848Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5501
|
+
[NX Daemon Server] - 2026-09-16T08:57:17.848Z - Time taken for 'total execution time for createProjectGraph()' 9.139541998505592ms
|
|
5502
|
+
[NX Daemon Server] - 2026-09-16T08:57:40.352Z - [WATCHER]: Processing file changes in outputs
|
|
5503
|
+
[NX Daemon Server] - 2026-09-16T08:57:40.358Z - [WATCHER]: tsconfig.json was modified
|
|
5504
|
+
[NX Daemon Server] - 2026-09-16T08:57:40.420Z - [WATCHER]: Processing file changes in outputs
|
|
5505
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.764Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5506
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.764Z - [REQUEST]: tsconfig.json
|
|
5507
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.765Z - [REQUEST]:
|
|
5508
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.770Z - Time taken for 'hash changed files from watcher' 0.4945000000298023ms
|
|
5509
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.783Z - Time taken for 'build-project-configs' 13.994750000536442ms
|
|
5510
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.794Z - [SYNC]: collect registered sync generators
|
|
5511
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.795Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5512
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.795Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5513
|
+
[NX Daemon Server] - 2026-09-16T08:57:46.795Z - Time taken for 'total execution time for createProjectGraph()' 11.832332998514175ms
|
|
5514
|
+
[NX Daemon Server] - 2026-09-16T09:06:38.223Z - [WATCHER]: package.json was modified
|
|
5515
|
+
[NX Daemon Server] - 2026-09-16T09:06:38.224Z - [WATCHER]: Processing file changes in outputs
|
|
5516
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.625Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5517
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.625Z - [REQUEST]: package.json
|
|
5518
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.626Z - [REQUEST]:
|
|
5519
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.629Z - Time taken for 'hash changed files from watcher' 0.20987499877810478ms
|
|
5520
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.634Z - Time taken for 'build-project-configs' 6.273541998118162ms
|
|
5521
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.654Z - [SYNC]: collect registered sync generators
|
|
5522
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.654Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5523
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.654Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5524
|
+
[NX Daemon Server] - 2026-09-16T09:06:44.654Z - Time taken for 'total execution time for createProjectGraph()' 16.565625000745058ms
|
|
5525
|
+
[NX Daemon Server] - 2026-09-16T09:07:16.118Z - [WATCHER]: package.json was modified
|
|
5526
|
+
[NX Daemon Server] - 2026-09-16T09:07:16.118Z - [WATCHER]: Processing file changes in outputs
|
|
5527
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.520Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5528
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.520Z - [REQUEST]: package.json
|
|
5529
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.520Z - [REQUEST]:
|
|
5530
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.521Z - Time taken for 'hash changed files from watcher' 0.22908300161361694ms
|
|
5531
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.529Z - Time taken for 'build-project-configs' 7.762083001434803ms
|
|
5532
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.541Z - [SYNC]: collect registered sync generators
|
|
5533
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.541Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5534
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.541Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5535
|
+
[NX Daemon Server] - 2026-09-16T09:07:22.541Z - Time taken for 'total execution time for createProjectGraph()' 6.686250001192093ms
|
|
5536
|
+
[NX Daemon Server] - 2026-09-16T09:55:42.557Z - [WATCHER]: package.json was modified
|
|
5537
|
+
[NX Daemon Server] - 2026-09-16T09:55:42.559Z - [WATCHER]: Processing file changes in outputs
|
|
5538
|
+
[NX Daemon Server] - 2026-09-16T09:55:48.970Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5539
|
+
[NX Daemon Server] - 2026-09-16T09:55:48.971Z - [REQUEST]: package.json
|
|
5540
|
+
[NX Daemon Server] - 2026-09-16T09:55:48.971Z - [REQUEST]:
|
|
5541
|
+
[NX Daemon Server] - 2026-09-16T09:55:48.987Z - Time taken for 'hash changed files from watcher' 5.242375001311302ms
|
|
5542
|
+
[NX Daemon Server] - 2026-09-16T09:55:49.027Z - Time taken for 'build-project-configs' 42.43829200044274ms
|
|
5543
|
+
[NX Daemon Server] - 2026-09-16T09:55:49.050Z - [SYNC]: collect registered sync generators
|
|
5544
|
+
[NX Daemon Server] - 2026-09-16T09:55:49.050Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5545
|
+
[NX Daemon Server] - 2026-09-16T09:55:49.050Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5546
|
+
[NX Daemon Server] - 2026-09-16T09:55:49.051Z - Time taken for 'total execution time for createProjectGraph()' 17.152458999305964ms
|
|
5547
|
+
[NX Daemon Server] - 2026-09-16T09:56:33.063Z - [WATCHER]: package.json was modified
|
|
5548
|
+
[NX Daemon Server] - 2026-09-16T09:56:33.063Z - [WATCHER]: Processing file changes in outputs
|
|
5549
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.465Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5550
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.465Z - [REQUEST]: package.json
|
|
5551
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.466Z - [REQUEST]:
|
|
5552
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.468Z - Time taken for 'hash changed files from watcher' 0.6755830012261868ms
|
|
5553
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.487Z - Time taken for 'build-project-configs' 17.070957999676466ms
|
|
5554
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.519Z - [SYNC]: collect registered sync generators
|
|
5555
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.519Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5556
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.519Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5557
|
+
[NX Daemon Server] - 2026-09-16T09:56:39.519Z - Time taken for 'total execution time for createProjectGraph()' 30.478624999523163ms
|
|
5558
|
+
[NX Daemon Server] - 2026-09-16T10:07:44.347Z - [WATCHER]: tsconfig.json was modified
|
|
5559
|
+
[NX Daemon Server] - 2026-09-16T10:07:44.350Z - [WATCHER]: Processing file changes in outputs
|
|
5560
|
+
[NX Daemon Server] - 2026-09-16T10:07:45.711Z - [WATCHER]: Processing file changes in outputs
|
|
5561
|
+
[NX Daemon Server] - 2026-09-16T10:07:45.714Z - [WATCHER]: tsconfig.json was modified
|
|
5562
|
+
[NX Daemon Server] - 2026-09-16T10:07:45.915Z - [WATCHER]: Processing file changes in outputs
|
|
5563
|
+
[NX Daemon Server] - 2026-09-16T10:07:46.677Z - [WATCHER]: Processing file changes in outputs
|
|
5564
|
+
[NX Daemon Server] - 2026-09-16T10:07:46.752Z - [WATCHER]: Processing file changes in outputs
|
|
5565
|
+
[NX Daemon Server] - 2026-09-16T10:07:46.804Z - [WATCHER]: Processing file changes in outputs
|
|
5566
|
+
[NX Daemon Server] - 2026-09-16T10:07:46.859Z - [WATCHER]: Processing file changes in outputs
|
|
5567
|
+
[NX Daemon Server] - 2026-09-16T10:07:46.938Z - [WATCHER]: Processing file changes in outputs
|
|
5568
|
+
[NX Daemon Server] - 2026-09-16T10:07:46.990Z - [WATCHER]: Processing file changes in outputs
|
|
5569
|
+
[NX Daemon Server] - 2026-09-16T10:07:47.054Z - [WATCHER]: Processing file changes in outputs
|
|
5570
|
+
[NX Daemon Server] - 2026-09-16T10:07:47.118Z - [WATCHER]: Processing file changes in outputs
|
|
5571
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.754Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5572
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.754Z - [REQUEST]: tsconfig.json
|
|
5573
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.754Z - [REQUEST]:
|
|
5574
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.764Z - Time taken for 'hash changed files from watcher' 2.54033400118351ms
|
|
5575
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.861Z - Time taken for 'build-project-configs' 97.12883299961686ms
|
|
5576
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.926Z - [SYNC]: collect registered sync generators
|
|
5577
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.926Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5578
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.926Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5579
|
+
[NX Daemon Server] - 2026-09-16T10:07:50.926Z - Time taken for 'total execution time for createProjectGraph()' 52.07654199749231ms
|
|
5580
|
+
[NX Daemon Server] - 2026-09-16T10:09:19.556Z - [WATCHER]: Processing file changes in outputs
|
|
5581
|
+
[NX Daemon Server] - 2026-09-16T10:09:19.559Z - [WATCHER]: tsconfig.json was modified
|
|
5582
|
+
[NX Daemon Server] - 2026-09-16T10:09:21.202Z - [WATCHER]: Processing file changes in outputs
|
|
5583
|
+
[NX Daemon Server] - 2026-09-16T10:09:21.212Z - [WATCHER]: tsconfig.json was modified
|
|
5584
|
+
[NX Daemon Server] - 2026-09-16T10:09:21.813Z - [WATCHER]: Processing file changes in outputs
|
|
5585
|
+
[NX Daemon Server] - 2026-09-16T10:09:25.967Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5586
|
+
[NX Daemon Server] - 2026-09-16T10:09:25.967Z - [REQUEST]: tsconfig.json
|
|
5587
|
+
[NX Daemon Server] - 2026-09-16T10:09:25.967Z - [REQUEST]:
|
|
5588
|
+
[NX Daemon Server] - 2026-09-16T10:09:25.970Z - Time taken for 'hash changed files from watcher' 0.8270410001277924ms
|
|
5589
|
+
[NX Daemon Server] - 2026-09-16T10:09:25.982Z - Time taken for 'build-project-configs' 11.506666999310255ms
|
|
5590
|
+
[NX Daemon Server] - 2026-09-16T10:09:26.005Z - [SYNC]: collect registered sync generators
|
|
5591
|
+
[NX Daemon Server] - 2026-09-16T10:09:26.005Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5592
|
+
[NX Daemon Server] - 2026-09-16T10:09:26.005Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5593
|
+
[NX Daemon Server] - 2026-09-16T10:09:26.005Z - Time taken for 'total execution time for createProjectGraph()' 18.350584000349045ms
|
|
5594
|
+
[NX Daemon Server] - 2026-09-16T10:10:09.190Z - [WATCHER]: Processing file changes in outputs
|
|
5595
|
+
[NX Daemon Server] - 2026-09-16T10:10:09.199Z - [WATCHER]: tsconfig.json was modified
|
|
5596
|
+
[NX Daemon Server] - 2026-09-16T10:10:10.562Z - [WATCHER]: Processing file changes in outputs
|
|
5597
|
+
[NX Daemon Server] - 2026-09-16T10:10:10.566Z - [WATCHER]: tsconfig.json was modified
|
|
5598
|
+
[NX Daemon Server] - 2026-09-16T10:10:10.771Z - [WATCHER]: Processing file changes in outputs
|
|
5599
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.601Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5600
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.601Z - [REQUEST]: tsconfig.json
|
|
5601
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.601Z - [REQUEST]:
|
|
5602
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.604Z - Time taken for 'hash changed files from watcher' 0.14674999937415123ms
|
|
5603
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.610Z - Time taken for 'build-project-configs' 7.416999999433756ms
|
|
5604
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.619Z - [SYNC]: collect registered sync generators
|
|
5605
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.619Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5606
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.619Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5607
|
+
[NX Daemon Server] - 2026-09-16T10:10:15.619Z - Time taken for 'total execution time for createProjectGraph()' 8.195165999233723ms
|
|
5608
|
+
[NX Daemon Server] - 2026-09-16T10:17:33.256Z - [WATCHER]: shared/testing/project.json was modified
|
|
5609
|
+
[NX Daemon Server] - 2026-09-16T10:17:33.262Z - [WATCHER]: Processing file changes in outputs
|
|
5610
|
+
[NX Daemon Server] - 2026-09-16T10:17:38.609Z - [WATCHER]: packages/matchers/e2e/project.json was modified
|
|
5611
|
+
[NX Daemon Server] - 2026-09-16T10:17:38.609Z - [WATCHER]: Processing file changes in outputs
|
|
5612
|
+
[NX Daemon Server] - 2026-09-16T10:17:39.669Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5613
|
+
[NX Daemon Server] - 2026-09-16T10:17:39.669Z - [REQUEST]: shared/testing/project.json,packages/matchers/e2e/project.json
|
|
5614
|
+
[NX Daemon Server] - 2026-09-16T10:17:39.669Z - [REQUEST]:
|
|
5615
|
+
[NX Daemon Server] - 2026-09-16T10:17:39.670Z - Time taken for 'hash changed files from watcher' 0.3737499974668026ms
|
|
5616
|
+
[NX Daemon Server] - 2026-09-16T10:17:39.687Z - Time taken for 'build-project-configs' 13.777458000928164ms
|
|
5617
|
+
[NX Daemon Server] - 2026-09-16T10:17:39.714Z - [SYNC]: collect registered sync generators
|
|
5618
|
+
[NX Daemon Server] - 2026-09-16T10:17:39.714Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5619
|
+
[NX Daemon Server] - 2026-09-16T10:17:39.714Z - Time taken for 'total execution time for createProjectGraph()' 21.413417000323534ms
|
|
5620
|
+
[NX Daemon Server] - 2026-09-16T10:17:43.875Z - [WATCHER]: packages/playground/e2e/project.json was modified
|
|
5621
|
+
[NX Daemon Server] - 2026-09-16T10:17:43.875Z - [WATCHER]: Processing file changes in outputs
|
|
5622
|
+
[NX Daemon Server] - 2026-09-16T10:17:50.281Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5623
|
+
[NX Daemon Server] - 2026-09-16T10:17:50.281Z - [REQUEST]: packages/playground/e2e/project.json
|
|
5624
|
+
[NX Daemon Server] - 2026-09-16T10:17:50.281Z - [REQUEST]:
|
|
5625
|
+
[NX Daemon Server] - 2026-09-16T10:17:50.286Z - Time taken for 'hash changed files from watcher' 0.3257500007748604ms
|
|
5626
|
+
[NX Daemon Server] - 2026-09-16T10:17:50.299Z - Time taken for 'build-project-configs' 12.452999997884035ms
|
|
5627
|
+
[NX Daemon Server] - 2026-09-16T10:17:50.311Z - [SYNC]: collect registered sync generators
|
|
5628
|
+
[NX Daemon Server] - 2026-09-16T10:17:50.311Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5629
|
+
[NX Daemon Server] - 2026-09-16T10:17:50.311Z - Time taken for 'total execution time for createProjectGraph()' 12.048207998275757ms
|
|
5630
|
+
[NX Daemon Server] - 2026-09-16T10:28:08.270Z - [WATCHER]: package.json was modified
|
|
5631
|
+
[NX Daemon Server] - 2026-09-16T10:28:08.277Z - [WATCHER]: Processing file changes in outputs
|
|
5632
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.682Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5633
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.682Z - [REQUEST]: package.json
|
|
5634
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.682Z - [REQUEST]:
|
|
5635
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.691Z - Time taken for 'hash changed files from watcher' 1.6733749993145466ms
|
|
5636
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.710Z - Time taken for 'build-project-configs' 14.943167001008987ms
|
|
5637
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.723Z - [SYNC]: collect registered sync generators
|
|
5638
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.724Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5639
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.724Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5640
|
+
[NX Daemon Server] - 2026-09-16T10:28:14.724Z - Time taken for 'total execution time for createProjectGraph()' 7.412624999880791ms
|
|
5641
|
+
[NX Daemon Server] - 2026-09-16T10:29:56.799Z - [WATCHER]: tsconfig.json was modified
|
|
5642
|
+
[NX Daemon Server] - 2026-09-16T10:29:56.800Z - [WATCHER]: Processing file changes in outputs
|
|
5643
|
+
[NX Daemon Server] - 2026-09-16T10:29:58.236Z - [WATCHER]: Processing file changes in outputs
|
|
5644
|
+
[NX Daemon Server] - 2026-09-16T10:29:58.240Z - [WATCHER]: tsconfig.json was modified
|
|
5645
|
+
[NX Daemon Server] - 2026-09-16T10:29:58.726Z - [WATCHER]: Processing file changes in outputs
|
|
5646
|
+
[NX Daemon Server] - 2026-09-16T10:29:59.694Z - [WATCHER]: Processing file changes in outputs
|
|
5647
|
+
[NX Daemon Server] - 2026-09-16T10:29:59.750Z - [WATCHER]: Processing file changes in outputs
|
|
5648
|
+
[NX Daemon Server] - 2026-09-16T10:29:59.832Z - [WATCHER]: Processing file changes in outputs
|
|
5649
|
+
[NX Daemon Server] - 2026-09-16T10:29:59.917Z - [WATCHER]: Processing file changes in outputs
|
|
5650
|
+
[NX Daemon Server] - 2026-09-16T10:29:59.974Z - [WATCHER]: Processing file changes in outputs
|
|
5651
|
+
[NX Daemon Server] - 2026-09-16T10:30:00.059Z - [WATCHER]: Processing file changes in outputs
|
|
5652
|
+
[NX Daemon Server] - 2026-09-16T10:30:00.150Z - [WATCHER]: Processing file changes in outputs
|
|
5653
|
+
[NX Daemon Server] - 2026-09-16T10:30:00.250Z - [WATCHER]: Processing file changes in outputs
|
|
5654
|
+
[NX Daemon Server] - 2026-09-16T10:30:00.328Z - [WATCHER]: Processing file changes in outputs
|
|
5655
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.204Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5656
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.204Z - [REQUEST]: tsconfig.json
|
|
5657
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.204Z - [REQUEST]:
|
|
5658
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.209Z - Time taken for 'hash changed files from watcher' 0.33445899933576584ms
|
|
5659
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.224Z - Time taken for 'build-project-configs' 12.786125000566244ms
|
|
5660
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.252Z - [SYNC]: collect registered sync generators
|
|
5661
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.252Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5662
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.252Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5663
|
+
[NX Daemon Server] - 2026-09-16T10:30:03.252Z - Time taken for 'total execution time for createProjectGraph()' 31.03508299961686ms
|
|
5664
|
+
[NX Daemon Server] - 2026-09-16T10:30:26.754Z - [WATCHER]: Processing file changes in outputs
|
|
5665
|
+
[NX Daemon Server] - 2026-09-16T10:30:26.759Z - [WATCHER]: tsconfig.json was modified
|
|
5666
|
+
[NX Daemon Server] - 2026-09-16T10:30:28.045Z - [WATCHER]: Processing file changes in outputs
|
|
5667
|
+
[NX Daemon Server] - 2026-09-16T10:30:28.048Z - [WATCHER]: tsconfig.json was modified
|
|
5668
|
+
[NX Daemon Server] - 2026-09-16T10:30:28.220Z - [WATCHER]: Processing file changes in outputs
|
|
5669
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.161Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5670
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.161Z - [REQUEST]: tsconfig.json
|
|
5671
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.161Z - [REQUEST]:
|
|
5672
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.164Z - Time taken for 'hash changed files from watcher' 0.22508300095796585ms
|
|
5673
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.177Z - Time taken for 'build-project-configs' 8.48216699808836ms
|
|
5674
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.185Z - [SYNC]: collect registered sync generators
|
|
5675
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.185Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5676
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.185Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5677
|
+
[NX Daemon Server] - 2026-09-16T10:30:33.185Z - Time taken for 'total execution time for createProjectGraph()' 8.57804200053215ms
|
|
5678
|
+
[NX Daemon Server] - 2026-09-16T10:30:58.809Z - [WATCHER]: Processing file changes in outputs
|
|
5679
|
+
[NX Daemon Server] - 2026-09-16T10:30:58.821Z - [WATCHER]: tsconfig.json was modified
|
|
5680
|
+
[NX Daemon Server] - 2026-09-16T10:31:00.301Z - [WATCHER]: Processing file changes in outputs
|
|
5681
|
+
[NX Daemon Server] - 2026-09-16T10:31:00.309Z - [WATCHER]: tsconfig.json was modified
|
|
5682
|
+
[NX Daemon Server] - 2026-09-16T10:31:00.488Z - [WATCHER]: Processing file changes in outputs
|
|
5683
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.224Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5684
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.224Z - [REQUEST]: tsconfig.json
|
|
5685
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.224Z - [REQUEST]:
|
|
5686
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.225Z - Time taken for 'hash changed files from watcher' 0.21883399784564972ms
|
|
5687
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.236Z - Time taken for 'build-project-configs' 8.323166999965906ms
|
|
5688
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.243Z - [SYNC]: collect registered sync generators
|
|
5689
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.243Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5690
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.243Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5691
|
+
[NX Daemon Server] - 2026-09-16T10:31:05.243Z - Time taken for 'total execution time for createProjectGraph()' 7.991584002971649ms
|
|
5692
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.115Z - Established a connection. Number of open connections: 1
|
|
5693
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.116Z - Established a connection. Number of open connections: 2
|
|
5694
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.117Z - Closed a connection. Number of open connections: 1
|
|
5695
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.120Z - [REQUEST]: Client Request for Project Graph Received
|
|
5696
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.120Z - [REQUEST]: Responding to the client. project-graph
|
|
5697
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.121Z - Time taken for 'total for creating and serializing project graph' 0.22070899978280067ms
|
|
5698
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.121Z - Done responding to the client project-graph
|
|
5699
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.121Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1.
|
|
5700
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.304Z - [REQUEST]: Responding to the client. handleHashTasks
|
|
5701
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.304Z - Done responding to the client handleHashTasks
|
|
5702
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.304Z - Handled HASH_TASKS. Handling time: 19. Response time: 1.
|
|
5703
|
+
[NX Daemon Server] - 2026-09-16T10:36:51.577Z - Closed a connection. Number of open connections: 0
|
|
5704
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.731Z - [WATCHER]: tsconfig.json was modified
|
|
5705
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.733Z - [WATCHER]: Processing file changes in outputs
|
|
5706
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.840Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5707
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.840Z - [REQUEST]: tsconfig.json
|
|
5708
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.840Z - [REQUEST]:
|
|
5709
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.851Z - Time taken for 'hash changed files from watcher' 3.805332999676466ms
|
|
5710
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.908Z - Time taken for 'build-project-configs' 55.31791700050235ms
|
|
5711
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.944Z - [SYNC]: collect registered sync generators
|
|
5712
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.944Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5713
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.944Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5714
|
+
[NX Daemon Server] - 2026-09-16T10:44:07.945Z - Time taken for 'total execution time for createProjectGraph()' 30.290292002260685ms
|
|
5715
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.369Z - [WATCHER]: Processing file changes in outputs
|
|
5716
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.382Z - [WATCHER]: tsconfig.json was modified
|
|
5717
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.581Z - [WATCHER]: Processing file changes in outputs
|
|
5718
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.584Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5719
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.584Z - [REQUEST]: tsconfig.json
|
|
5720
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.584Z - [REQUEST]:
|
|
5721
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.584Z - Time taken for 'hash changed files from watcher' 0.11187500134110451ms
|
|
5722
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.597Z - Time taken for 'build-project-configs' 11.694916002452374ms
|
|
5723
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.611Z - [SYNC]: collect registered sync generators
|
|
5724
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.611Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5725
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.611Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5726
|
+
[NX Daemon Server] - 2026-09-16T10:44:09.611Z - Time taken for 'total execution time for createProjectGraph()' 9.18979199975729ms
|
|
5727
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.122Z - [WATCHER]: package.json was modified
|
|
5728
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.123Z - [WATCHER]: Processing file changes in outputs
|
|
5729
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.530Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5730
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.530Z - [REQUEST]: package.json
|
|
5731
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.530Z - [REQUEST]:
|
|
5732
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.534Z - Time taken for 'hash changed files from watcher' 1.1732910014688969ms
|
|
5733
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.557Z - Time taken for 'build-project-configs' 21.112665999680758ms
|
|
5734
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.572Z - [SYNC]: collect registered sync generators
|
|
5735
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.572Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5736
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.572Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5737
|
+
[NX Daemon Server] - 2026-09-16T10:45:12.572Z - Time taken for 'total execution time for createProjectGraph()' 10.49525000154972ms
|
|
5738
|
+
[NX Daemon Server] - 2026-09-16T10:45:37.405Z - [WATCHER]: _tmp_67987_30dbdf8475be8f8049c41558b77189e8 was deleted
|
|
5739
|
+
[NX Daemon Server] - 2026-09-16T10:45:37.405Z - [WATCHER]: Processing file changes in outputs
|
|
5740
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.207Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5741
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.208Z - [REQUEST]:
|
|
5742
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.208Z - [REQUEST]: _tmp_67987_30dbdf8475be8f8049c41558b77189e8
|
|
5743
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.210Z - Time taken for 'hash changed files from watcher' 0.3403329998254776ms
|
|
5744
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.229Z - Time taken for 'build-project-configs' 16.210707999765873ms
|
|
5745
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.242Z - [SYNC]: collect registered sync generators
|
|
5746
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.243Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5747
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.243Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5748
|
+
[NX Daemon Server] - 2026-09-16T10:45:38.243Z - Time taken for 'total execution time for createProjectGraph()' 13.837250001728535ms
|
|
5749
|
+
[NX Daemon Server] - 2026-09-16T10:45:41.660Z - [WATCHER]: package.json was modified
|
|
5750
|
+
[NX Daemon Server] - 2026-09-16T10:45:41.660Z - [WATCHER]: Processing file changes in outputs
|
|
5751
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.262Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5752
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.263Z - [REQUEST]: package.json
|
|
5753
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.263Z - [REQUEST]:
|
|
5754
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.264Z - Time taken for 'hash changed files from watcher' 0.1698330007493496ms
|
|
5755
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.270Z - Time taken for 'build-project-configs' 4.134625002741814ms
|
|
5756
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.283Z - [SYNC]: collect registered sync generators
|
|
5757
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.283Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5758
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.283Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5759
|
+
[NX Daemon Server] - 2026-09-16T10:45:43.283Z - Time taken for 'total execution time for createProjectGraph()' 9.622250001877546ms
|
|
5760
|
+
[NX Daemon Server] - 2026-09-16T10:46:01.106Z - [WATCHER]: _tmp_68112_fc4c542f18edb3b70e302f87c1e1e429 was deleted
|
|
5761
|
+
[NX Daemon Server] - 2026-09-16T10:46:01.106Z - [WATCHER]: Processing file changes in outputs
|
|
5762
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.311Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5763
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.311Z - [REQUEST]:
|
|
5764
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.311Z - [REQUEST]: _tmp_68112_fc4c542f18edb3b70e302f87c1e1e429
|
|
5765
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.312Z - Time taken for 'hash changed files from watcher' 0.10079199820756912ms
|
|
5766
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.322Z - Time taken for 'build-project-configs' 9.922083001583815ms
|
|
5767
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.330Z - [SYNC]: collect registered sync generators
|
|
5768
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.330Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5769
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.330Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5770
|
+
[NX Daemon Server] - 2026-09-16T10:46:04.331Z - Time taken for 'total execution time for createProjectGraph()' 6.800041999667883ms
|
|
5771
|
+
[NX Daemon Server] - 2026-09-16T10:46:50.928Z - [WATCHER]: _tmp_68277_597b1ee9d859ceaa589fcc71838004c1 was deleted
|
|
5772
|
+
[NX Daemon Server] - 2026-09-16T10:46:50.929Z - [WATCHER]: Processing file changes in outputs
|
|
5773
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.334Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5774
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.334Z - [REQUEST]:
|
|
5775
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.334Z - [REQUEST]: _tmp_68277_597b1ee9d859ceaa589fcc71838004c1
|
|
5776
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.336Z - Time taken for 'hash changed files from watcher' 0.15029199793934822ms
|
|
5777
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.344Z - Time taken for 'build-project-configs' 7.1751669980585575ms
|
|
5778
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.353Z - [SYNC]: collect registered sync generators
|
|
5779
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.353Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5780
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.353Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5781
|
+
[NX Daemon Server] - 2026-09-16T10:46:57.353Z - Time taken for 'total execution time for createProjectGraph()' 9.367084000259638ms
|
|
5782
|
+
[NX Daemon Server] - 2026-09-16T10:47:13.552Z - [WATCHER]: _tmp_68374_8ac33b7bd75f612b2a354ed5108b8d8b was deleted
|
|
5783
|
+
[NX Daemon Server] - 2026-09-16T10:47:13.552Z - [WATCHER]: Processing file changes in outputs
|
|
5784
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.956Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5785
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.956Z - [REQUEST]:
|
|
5786
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.956Z - [REQUEST]: _tmp_68374_8ac33b7bd75f612b2a354ed5108b8d8b
|
|
5787
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.957Z - Time taken for 'hash changed files from watcher' 0.0894169993698597ms
|
|
5788
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.963Z - Time taken for 'build-project-configs' 5.043042000383139ms
|
|
5789
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.970Z - [SYNC]: collect registered sync generators
|
|
5790
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.970Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5791
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.970Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5792
|
+
[NX Daemon Server] - 2026-09-16T10:47:19.970Z - Time taken for 'total execution time for createProjectGraph()' 6.766499999910593ms
|
|
5793
|
+
[NX Daemon Server] - 2026-09-16T10:49:08.658Z - [WATCHER]: package.json was modified
|
|
5794
|
+
[NX Daemon Server] - 2026-09-16T10:49:08.659Z - [WATCHER]: Processing file changes in outputs
|
|
5795
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.061Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph...
|
|
5796
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.061Z - [REQUEST]: package.json
|
|
5797
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.061Z - [REQUEST]:
|
|
5798
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.063Z - Time taken for 'hash changed files from watcher' 0.4693330004811287ms
|
|
5799
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.078Z - Time taken for 'build-project-configs' 14.850666999816895ms
|
|
5800
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.091Z - [SYNC]: collect registered sync generators
|
|
5801
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.092Z - [SYNC]: project graph hash is the same, not collecting task sync generators
|
|
5802
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.092Z - [SYNC]: nx.json hash is the same, not collecting global sync generators
|
|
5803
|
+
[NX Daemon Server] - 2026-09-16T10:49:15.092Z - Time taken for 'total execution time for createProjectGraph()' 12.508542001247406ms
|