From 8a9ff97bf4ca99e1e4b67ac2eba8d19a4f42e9de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Paucot?= Date: Tue, 17 Sep 2024 14:53:08 +0200 Subject: [PATCH 1/5] feat(nf): implement singleton & requiredVersion compatibility checks --- .../src/lib/init-federation-cache.ts | 26 ++ .../src/lib/init-federation.ts | 27 ++- .../src/lib/process-remote-shared.spec.ts | 225 ++++++++++++++++++ .../src/lib/process-remote-shared.ts | 94 ++++++++ package-lock.json | 56 ++++- package.json | 3 +- 6 files changed, 419 insertions(+), 12 deletions(-) create mode 100644 libs/native-federation-runtime/src/lib/init-federation-cache.ts create mode 100644 libs/native-federation-runtime/src/lib/process-remote-shared.spec.ts create mode 100644 libs/native-federation-runtime/src/lib/process-remote-shared.ts diff --git a/libs/native-federation-runtime/src/lib/init-federation-cache.ts b/libs/native-federation-runtime/src/lib/init-federation-cache.ts new file mode 100644 index 00000000..df60de0c --- /dev/null +++ b/libs/native-federation-runtime/src/lib/init-federation-cache.ts @@ -0,0 +1,26 @@ +import { FederationInfo } from './model/federation-info'; + +let _hostInfo: FederationInfo | undefined = undefined; + +/** + * Keeps in cache the last host info loaded + * @param hostInfo + */ +export function setHostInfo(hostInfo: FederationInfo) { + _hostInfo = hostInfo; +} + +/** + * Returns the last host info loaded + */ +export function getHostInfo(): FederationInfo | undefined { + return _hostInfo; +} + +/** + * Returns the last host info loaded or throws an error if not loaded + */ +export function getHostInfoOrThrow(): FederationInfo { + if (!_hostInfo) throw new Error('Host info not loaded'); + return _hostInfo; +} diff --git a/libs/native-federation-runtime/src/lib/init-federation.ts b/libs/native-federation-runtime/src/lib/init-federation.ts index cbcc8f99..211b708b 100644 --- a/libs/native-federation-runtime/src/lib/init-federation.ts +++ b/libs/native-federation-runtime/src/lib/init-federation.ts @@ -9,6 +9,8 @@ import { joinPaths, getDirectory } from './utils/path-utils'; import { addRemote } from './model/remotes'; import { appendImportMap } from './utils/add-import-map'; import { FederationInfo } from './model/federation-info'; +import { setHostInfo } from './init-federation-cache'; +import { processRemoteShared } from './process-remote-shared'; export async function initFederation( remotesOrManifestUrl: Record | string = {} @@ -19,6 +21,8 @@ export async function initFederation( : remotesOrManifestUrl; const hostInfo = await loadFederationInfo('./remoteEntry.json'); + setHostInfo(hostInfo); + const hostImportMap = await processHostInfo(hostInfo); const remotesImportMap = await processRemoteInfos(remotes); @@ -33,13 +37,14 @@ async function loadManifest(remotes: string): Promise> { } export async function processRemoteInfos( - remotes: Record + remotes: Record, + relBundlePath = './' ): Promise { const processRemoteInfoPromises = Object.keys(remotes).map( async (remoteName) => { try { const url = remotes[remoteName]; - return await processRemoteInfo(url, remoteName); + return await processRemoteInfo(url, remoteName, relBundlePath); } catch (e) { console.error( `Error loading remote entry for ${remoteName} from file ${remotes[remoteName]}` @@ -62,7 +67,8 @@ export async function processRemoteInfos( export async function processRemoteInfo( federationInfoUrl: string, - remoteName?: string + remoteName?: string, + relBundlePath = './' ): Promise { const baseUrl = getDirectory(federationInfoUrl); const remoteInfo = await loadFederationInfo(federationInfoUrl); @@ -71,7 +77,7 @@ export async function processRemoteInfo( remoteName = remoteInfo.name; } - const importMap = createRemoteImportMap(remoteInfo, remoteName, baseUrl); + const importMap = createRemoteImportMap(remoteInfo, remoteName, baseUrl ,relBundlePath); addRemote(remoteName, { ...remoteInfo, baseUrl }); return importMap; @@ -80,10 +86,11 @@ export async function processRemoteInfo( function createRemoteImportMap( remoteInfo: FederationInfo, remoteName: string, - baseUrl: string + baseUrl: string, + relBundlePath = './' ): ImportMap { const imports = processExposed(remoteInfo, remoteName, baseUrl); - const scopes = processRemoteImports(remoteInfo, baseUrl); + const scopes = processRemoteImports(remoteInfo, baseUrl, relBundlePath); return { imports, scopes }; } @@ -94,7 +101,8 @@ async function loadFederationInfo(url: string): Promise { function processRemoteImports( remoteInfo: FederationInfo, - baseUrl: string + baseUrl: string, + relBundlePath = './' ): Scopes { const scopes: Scopes = {}; const scopedImports: Imports = {}; @@ -103,7 +111,12 @@ function processRemoteImports( const outFileName = getExternalUrl(shared) ?? joinPaths(baseUrl, shared.outFileName); setExternalUrl(shared, outFileName); + + // By default, we use the remote's version of the package scopedImports[shared.packageName] = outFileName; + + // If the host has a compatible version of the package, use it instead + processRemoteShared(scopedImports, shared, relBundlePath); } scopes[baseUrl + '/'] = scopedImports; diff --git a/libs/native-federation-runtime/src/lib/process-remote-shared.spec.ts b/libs/native-federation-runtime/src/lib/process-remote-shared.spec.ts new file mode 100644 index 00000000..7ea5685f --- /dev/null +++ b/libs/native-federation-runtime/src/lib/process-remote-shared.spec.ts @@ -0,0 +1,225 @@ +import { processRemoteShared } from './process-remote-shared'; +import { getHostInfoOrThrow } from './init-federation-cache'; +import { FederationInfo, SharedInfo } from './model/federation-info'; +import { Imports } from './model/import-map'; + +// Mock the getHostInfoOrThrow function +jest.mock('./init-federation-cache', () => ({ + getHostInfoOrThrow: jest.fn(), +})); + +const mockGetHostInfoOrThrow = getHostInfoOrThrow as jest.MockedFunction< + typeof getHostInfoOrThrow +>; + +describe('processRemoteShared', () => { + const hostFederationInfo: FederationInfo = { + name: 'host', + exposes: [], + shared: [ + { + packageName: '@angular/core', + singleton: true, + requiredVersion: '^18.0.0', + version: '18.0.0', + outFileName: 'angular-core.js', + strictVersion: true, + }, + ], + }; + + beforeEach(() => { + jest.resetAllMocks(); + mockGetHostInfoOrThrow.mockReturnValue(hostFederationInfo); + }); + + it('should use host version when remote requires singleton and versions are compatible', () => { + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: true, + requiredVersion: '^18.0.0', + version: '18.1.0', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + processRemoteShared(scope, remoteShared); + + expect(scope['@angular/core']).toBe('./angular-core.js'); + }); + + it('should throw error when remote requires singleton and versions are incompatible', () => { + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: true, + requiredVersion: '^19.0.0', + version: '19.0.0', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + expect(() => { + processRemoteShared(scope, remoteShared); + }).toThrowError( + 'Host has version 18.0.0 of @angular/core but remote requires ^19.0.0 and we are in singleton mode' + ); + }); + + it('should do nothing when remote requires singleton and host does not share the module', () => { + mockGetHostInfoOrThrow.mockReturnValue({ + name: 'host', + exposes: [], + shared: [], + }); + + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: true, + requiredVersion: '^18.0.0', + version: '18.0.0', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + processRemoteShared(scope, remoteShared); + + expect(scope).toEqual({}); + }); + + it('should use host version when remote does not require singleton and versions are compatible', () => { + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: false, + requiredVersion: '^18.0.0', + version: '18.1.0', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + processRemoteShared(scope, remoteShared); + + expect(scope['@angular/core']).toBe('./angular-core.js'); + }); + + it('should not use host version when remote does not require singleton and versions are incompatible', () => { + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: false, + requiredVersion: '^19.0.0', + version: '19.0.0', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + processRemoteShared(scope, remoteShared); + + expect(scope).toEqual({}); + }); + + it('should do nothing when remote does not require singleton and host does not share the module', () => { + mockGetHostInfoOrThrow.mockReturnValue({ + name: 'host', + exposes: [], + shared: [], + }); + + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: false, + requiredVersion: '^18.0.0', + version: '18.0.0', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + processRemoteShared(scope, remoteShared); + + expect(scope).toEqual({}); + }); + + it('should use host version when singleton is true and neither host nor remote have version info', () => { + const hostSharedWithoutVersion: SharedInfo = { + packageName: '@angular/core', + singleton: true, + requiredVersion: '', + version: '', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + mockGetHostInfoOrThrow.mockReturnValue({ + name: 'host', + exposes: [], + shared: [hostSharedWithoutVersion], + }); + + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: true, + requiredVersion: '', + version: '', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + processRemoteShared(scope, remoteShared); + + expect(scope['@angular/core']).toBe('./angular-core.js'); + }); + + it('should use host version when singleton is false and neither host nor remote have version info', () => { + const hostSharedWithoutVersion: SharedInfo = { + packageName: '@angular/core', + singleton: false, + requiredVersion: '', + version: '', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + mockGetHostInfoOrThrow.mockReturnValue({ + name: 'host', + exposes: [], + shared: [hostSharedWithoutVersion], + }); + + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: false, + requiredVersion: '', + version: '', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + processRemoteShared(scope, remoteShared); + + expect(scope['@angular/core']).toBe('./angular-core.js'); + }); + + it('should use custom relative host bundle path when provided', () => { + const scope: Imports = {}; + const remoteShared: SharedInfo = { + packageName: '@angular/core', + singleton: true, + requiredVersion: '^18.0.0', + version: '18.1.0', + outFileName: 'angular-core.js', + strictVersion: true, + }; + + const relHostBundlesPath = '../bundles/'; + + processRemoteShared(scope, remoteShared, relHostBundlesPath); + + expect(scope['@angular/core']).toBe('../bundles/angular-core.js'); + }); +}); diff --git a/libs/native-federation-runtime/src/lib/process-remote-shared.ts b/libs/native-federation-runtime/src/lib/process-remote-shared.ts new file mode 100644 index 00000000..7ab1a094 --- /dev/null +++ b/libs/native-federation-runtime/src/lib/process-remote-shared.ts @@ -0,0 +1,94 @@ +import { Imports } from './model/import-map'; +import { SharedInfo } from './model/federation-info'; +import { satisfies } from 'semver'; +import { getHostInfoOrThrow } from './init-federation-cache'; + +/** + * Processes a remote shared module and determines if the host's version can be used, + * updating the import scope accordingly. + * + * This function resolves shared module dependencies between the host and a remote module. + * It checks whether the host's version of a shared module can be used by the remote, + * considering singleton mode and version compatibility. + * + * **Singleton Mode**: + * - When `singleton` is `true`, the remote expects only one instance of the module in the application. + * - If the host does not share the module, the remote cannot use the host's version. + * - If both host and remote have version information: + * - The host's version must satisfy the remote's `requiredVersion` (checked via `semver.satisfies`). + * - If compatible, the host's version is used. + * - If incompatible, an error is thrown since singleton mode requires a single compatible version. + * - If neither host nor remote have version information (e.g., for shared mappings), the host's version is used. + * + * **Non-Singleton Mode**: + * - If the host does not share the module, the remote must provide its own version. + * - If both host and remote have version information: + * - If the host's version satisfies the remote's `requiredVersion`, the host's version is used. + * - If not, the remote must provide its own version. + * - If neither host nor remote have version information, the host's version is used. + * + * **Version Compatibility**: + * - The `requiredVersion` specifies the version range the remote expects for the shared module. + * - Version compatibility is checked using semantic versioning (`semver.satisfies`). + * + * + * Note: In this implementation, **strictVersion** is not used (or considered true). Therefore, the function + * will use the host's version of a package if it satisfies the remote's required version, regardless of + * whether the host's version is an exact match. This is because a well-written **requiredVersion** range expression + * handles all version constraints' cases. + * + * @param {Imports} scope - The import map to be updated with the resolved module paths. + * @param {SharedInfo} remoteShared - The shared module information from the remote container. + * @param {string} [relHostBundlesPath='./'] - The relative path to the host's bundle directory. + * + * @throws {Error} If the host's version is incompatible with the remote's required version in singleton mode. + */ +export function processRemoteShared( + scope: Imports, + remoteShared: SharedInfo, + relHostBundlesPath = './' +) { + const hostInfo = getHostInfoOrThrow(); + + const packageName = remoteShared.packageName; + const hostShared = hostInfo.shared.find((s) => s.packageName === packageName); + + // Check if the remote requires a singleton instance of the package + if (remoteShared.singleton) { + // If the host does not share the package, we cannot use it + if (!hostShared) return; + + if (!hostShared.version && !remoteShared.version) { + // The host and remote do not have version info, they are sharedMappings + scope[packageName] = relHostBundlesPath + hostShared.outFileName; + return; + } + + if (hostShared.version && remoteShared.version) { + if (satisfies(hostShared.version, remoteShared.requiredVersion)) { + // Use the host's version of the package + scope[packageName] = relHostBundlesPath + hostShared.outFileName; + return; + } + } + + // The host's version is incompatible with the remote's requirements in singleton mode + throw new Error( + `Host has version ${hostShared.version} of ${packageName} but remote requires ${remoteShared.requiredVersion} and we are in singleton mode` + ); + } + + // If the host does not share the package and singleton is false, there's nothing to do + if (!hostShared) return; + + // Determine if the host's version of the package can be used + if ( + (!hostShared.version && !remoteShared.version) || // Neither host nor remote has version info, it is a shared mapping + (hostShared.version && + remoteShared.version && + satisfies(hostShared.version, remoteShared.requiredVersion)) // Host's version is compatible + ) { + // Use the host's version of the package + scope[packageName] = relHostBundlesPath + hostShared.outFileName; + } +} diff --git a/package-lock.json b/package-lock.json index dba06091..7521e9b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -58,6 +58,7 @@ "@types/jest": "29.5.11", "@types/node": "^18.19.50", "@types/npmlog": "^4.1.4", + "@types/semver": "^7.5.8", "@typescript-eslint/eslint-plugin": "7.18.0", "@typescript-eslint/parser": "7.18.0", "@typescript-eslint/utils": "^7.16.0", @@ -95,7 +96,7 @@ "rollup": "^3.27.0", "rollup-plugin-esbuild": "^5.0.0", "rollup-plugin-node-externals": "^6.1.1", - "semver": "^7.3.5", + "semver": "^7.6.3", "ts-jest": "29.1.1", "ts-node": "10.9.1", "tslib": "^2.3.0", @@ -819,6 +820,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@angular-devkit/build-angular/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@angular-devkit/build-angular/node_modules/terser": { "version": "5.29.2", "resolved": "https://registry.npmjs.org/terser/-/terser-5.29.2.tgz", @@ -1634,6 +1648,19 @@ "fsevents": "~2.3.2" } }, + "node_modules/@angular/build/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@angular/cli": { "version": "18.1.3", "resolved": "https://registry.npmjs.org/@angular/cli/-/cli-18.1.3.tgz", @@ -1905,6 +1932,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@angular/cli/node_modules/semver": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", + "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@angular/cli/node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", @@ -10793,6 +10833,13 @@ "dev": true, "license": "MIT" }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/send": { "version": "0.17.4", "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", @@ -27269,10 +27316,11 @@ } }, "node_modules/semver": { - "version": "7.6.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz", - "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" }, diff --git a/package.json b/package.json index fcb4fce2..c86d4a74 100644 --- a/package.json +++ b/package.json @@ -84,6 +84,7 @@ "@types/jest": "29.5.11", "@types/node": "^18.19.50", "@types/npmlog": "^4.1.4", + "@types/semver": "^7.5.8", "@typescript-eslint/eslint-plugin": "7.18.0", "@typescript-eslint/parser": "7.18.0", "@typescript-eslint/utils": "^7.16.0", @@ -121,7 +122,7 @@ "rollup": "^3.27.0", "rollup-plugin-esbuild": "^5.0.0", "rollup-plugin-node-externals": "^6.1.1", - "semver": "^7.3.5", + "semver": "^7.6.3", "ts-jest": "29.1.1", "ts-node": "10.9.1", "tslib": "^2.3.0", From 435c5f26d9842714de200b1d30089dcb5afda971 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Paucot?= Date: Tue, 25 Feb 2025 19:43:30 +0100 Subject: [PATCH 2/5] feat(runtime): add support for prereleases in shared --- .../src/lib/process-remote-shared.ts | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/libs/native-federation-runtime/src/lib/process-remote-shared.ts b/libs/native-federation-runtime/src/lib/process-remote-shared.ts index 7ab1a094..33f05571 100644 --- a/libs/native-federation-runtime/src/lib/process-remote-shared.ts +++ b/libs/native-federation-runtime/src/lib/process-remote-shared.ts @@ -1,6 +1,6 @@ import { Imports } from './model/import-map'; import { SharedInfo } from './model/federation-info'; -import { satisfies } from 'semver'; +import { satisfies, coerce, parse } from 'semver'; import { getHostInfoOrThrow } from './init-federation-cache'; /** @@ -65,7 +65,7 @@ export function processRemoteShared( } if (hostShared.version && remoteShared.version) { - if (satisfies(hostShared.version, remoteShared.requiredVersion)) { + if (satisfiesWithPrerelease(hostShared.version, remoteShared.requiredVersion)) { // Use the host's version of the package scope[packageName] = relHostBundlesPath + hostShared.outFileName; return; @@ -86,9 +86,16 @@ export function processRemoteShared( (!hostShared.version && !remoteShared.version) || // Neither host nor remote has version info, it is a shared mapping (hostShared.version && remoteShared.version && - satisfies(hostShared.version, remoteShared.requiredVersion)) // Host's version is compatible + satisfiesWithPrerelease(hostShared.version, remoteShared.requiredVersion)) // Host's version is compatible ) { // Use the host's version of the package scope[packageName] = relHostBundlesPath + hostShared.outFileName; } } + +function satisfiesWithPrerelease(version: string, requiredVersion: string) { + const parsed = parse(version); + if (!parsed) throw new Error(`Invalid version: ${version}`); + + return satisfies(parsed.version, requiredVersion); +} From 763213245d7031a790a9e471c1ee05b9a2c4f02f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Paucot?= Date: Tue, 25 Feb 2025 20:07:54 +0100 Subject: [PATCH 3/5] feat(runtime): add support for prereleases in shared --- .../src/lib/process-remote-shared.ts | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/libs/native-federation-runtime/src/lib/process-remote-shared.ts b/libs/native-federation-runtime/src/lib/process-remote-shared.ts index 33f05571..e0ed86d8 100644 --- a/libs/native-federation-runtime/src/lib/process-remote-shared.ts +++ b/libs/native-federation-runtime/src/lib/process-remote-shared.ts @@ -65,7 +65,7 @@ export function processRemoteShared( } if (hostShared.version && remoteShared.version) { - if (satisfiesWithPrerelease(hostShared.version, remoteShared.requiredVersion)) { + if (satisfies(hostShared.version, remoteShared.requiredVersion, { includePrerelease: true })) { // Use the host's version of the package scope[packageName] = relHostBundlesPath + hostShared.outFileName; return; @@ -86,16 +86,10 @@ export function processRemoteShared( (!hostShared.version && !remoteShared.version) || // Neither host nor remote has version info, it is a shared mapping (hostShared.version && remoteShared.version && - satisfiesWithPrerelease(hostShared.version, remoteShared.requiredVersion)) // Host's version is compatible + satisfies(hostShared.version, remoteShared.requiredVersion, { includePrerelease: true })) // Host's version is compatible ) { // Use the host's version of the package scope[packageName] = relHostBundlesPath + hostShared.outFileName; } } -function satisfiesWithPrerelease(version: string, requiredVersion: string) { - const parsed = parse(version); - if (!parsed) throw new Error(`Invalid version: ${version}`); - - return satisfies(parsed.version, requiredVersion); -} From 1dedea2b0f7aecc483bdd9daca8b12c7ef20153d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Paucot?= Date: Mon, 31 Mar 2025 10:18:39 +0200 Subject: [PATCH 4/5] feat(runtime): add support for prereleases in shared --- .../src/lib/process-remote-shared.ts | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/libs/native-federation-runtime/src/lib/process-remote-shared.ts b/libs/native-federation-runtime/src/lib/process-remote-shared.ts index e0ed86d8..18d32ec1 100644 --- a/libs/native-federation-runtime/src/lib/process-remote-shared.ts +++ b/libs/native-federation-runtime/src/lib/process-remote-shared.ts @@ -65,7 +65,16 @@ export function processRemoteShared( } if (hostShared.version && remoteShared.version) { - if (satisfies(hostShared.version, remoteShared.requiredVersion, { includePrerelease: true })) { + console.log( + 'SINGLETON', + remoteShared.packageName, + hostShared, + remoteShared, + satisfies(onlyMajorMinorPatch(hostShared.version), remoteShared.requiredVersion) + ); + if ( + satisfies(onlyMajorMinorPatch(hostShared.version), remoteShared.requiredVersion) + ) { // Use the host's version of the package scope[packageName] = relHostBundlesPath + hostShared.outFileName; return; @@ -86,10 +95,16 @@ export function processRemoteShared( (!hostShared.version && !remoteShared.version) || // Neither host nor remote has version info, it is a shared mapping (hostShared.version && remoteShared.version && - satisfies(hostShared.version, remoteShared.requiredVersion, { includePrerelease: true })) // Host's version is compatible + satisfies(onlyMajorMinorPatch(hostShared.version), remoteShared.requiredVersion)) // Host's version is compatible ) { // Use the host's version of the package scope[packageName] = relHostBundlesPath + hostShared.outFileName; } } + +function onlyMajorMinorPatch(version: string) { + const o = parse(version); + if(!o) throw new Error('Cannot parse version ' + version); + return o.major + '.' + o.minor + '.' + o.patch; +} From 46866b8a282af16de3f53410f7aea4d7d92e737b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Paucot?= Date: Mon, 31 Mar 2025 10:26:27 +0200 Subject: [PATCH 5/5] feat(runtime): add support for prereleases in shared --- .gitignore | 3 + .../cypress-631302850695604935.hash | 1 - .nx/workspace-data/d/daemon.log | 26575 ---------- .nx/workspace-data/d/server-process.json | 1 - .../eslint-4393011795395336301.hash | 5795 --- .nx/workspace-data/file-map.json | 2399 - .../jest-7930610538513362720.hash | 9569 ---- .nx/workspace-data/lockfile.hash | 1 - .nx/workspace-data/parsed-lock-file.json | 40122 --------------- .nx/workspace-data/project-graph.json | 42088 ---------------- .nx/workspace-data/task-history.csv | 163 - libs/native-federation-runtime/package.json | 2 +- .../src/lib/process-remote-shared.ts | 20 +- 13 files changed, 13 insertions(+), 126726 deletions(-) delete mode 100644 .nx/workspace-data/cypress-631302850695604935.hash delete mode 100644 .nx/workspace-data/d/daemon.log delete mode 100644 .nx/workspace-data/d/server-process.json delete mode 100644 .nx/workspace-data/eslint-4393011795395336301.hash delete mode 100644 .nx/workspace-data/file-map.json delete mode 100644 .nx/workspace-data/jest-7930610538513362720.hash delete mode 100644 .nx/workspace-data/lockfile.hash delete mode 100644 .nx/workspace-data/parsed-lock-file.json delete mode 100644 .nx/workspace-data/project-graph.json delete mode 100644 .nx/workspace-data/task-history.csv diff --git a/.gitignore b/.gitignore index b34e923a..c3cc4c25 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,8 @@ # See http://help.github.com/ignore-files/ for more about ignoring files. +/.npmrc +/.nx + # compiled output dist tmp diff --git a/.nx/workspace-data/cypress-631302850695604935.hash b/.nx/workspace-data/cypress-631302850695604935.hash deleted file mode 100644 index 9e26dfee..00000000 --- a/.nx/workspace-data/cypress-631302850695604935.hash +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/.nx/workspace-data/d/daemon.log b/.nx/workspace-data/d/daemon.log deleted file mode 100644 index 1f51c63e..00000000 --- a/.nx/workspace-data/d/daemon.log +++ /dev/null @@ -1,26575 +0,0 @@ -[NX Daemon Server] - 2024-09-13T19:36:09.943Z - Started listening on: /var/folders/90/xlgjf5ms3ql9v9y8n8m3vgjh0000gn/T/c37ffd5160b7e2b0cae7/d.sock -[NX Daemon Server] - 2024-09-13T19:36:09.944Z - [WATCHER]: Subscribed to changes within: /Users/manfredsteyer/projects/public/module-federation-plugin (native) -[NX Daemon Server] - 2024-09-13T19:36:09.950Z - Established a connection. Number of open connections: 1 -[NX Daemon Server] - 2024-09-13T19:36:09.951Z - Established a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:36:09.951Z - Closed a connection. Number of open connections: 1 -[NX Daemon Server] - 2024-09-13T19:36:09.952Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:36:10.119Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:36:10.119Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:36:10.119Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:36:10.129Z - Time taken for 'loadNxPlugins' 166.09583299999997ms -[NX Daemon Server] - 2024-09-13T19:36:10.130Z - Established a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:36:10.130Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:36:10.130Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:36:10.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.131Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.132Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.232Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:36:10.233Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:36:10.233Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:36:10.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.234Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.235Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:36:10.235Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.235Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.235Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.236Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.236Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.236Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.236Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.236Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.236Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.237Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.237Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.237Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.237Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.238Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.238Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:36:10.238Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.238Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.238Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.239Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.239Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.239Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.239Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.239Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.239Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.240Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.240Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.240Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.240Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.240Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.240Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.241Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.241Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.241Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.241Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.241Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.241Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.242Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.242Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.242Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.242Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.243Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.243Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.243Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.243Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:36:10.243Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:36:10.243Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.346Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.346Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.346Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.349Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.349Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.351Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.351Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.351Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.354Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.354Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.354Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.401Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.401Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.401Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.404Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.407Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.407Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.407Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.410Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.410Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.410Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.411Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.412Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.412Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:36:10.414Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.414Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.414Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.415Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.415Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.415Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.417Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.417Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:36:10.417Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:10.724Z - Time taken for 'build-project-configs' 595.780417ms -[NX Daemon Server] - 2024-09-13T19:36:10.869Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:36:10.870Z - Time taken for 'total for creating and serializing project graph' 916.7211669999999ms -[NX Daemon Server] - 2024-09-13T19:36:10.870Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:36:10.870Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 917. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:36:10.873Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:36:10.873Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:36:10.874Z - Time taken for 'total for creating and serializing project graph' 0.17170899999996436ms -[NX Daemon Server] - 2024-09-13T19:36:10.877Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:36:10.877Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:36:10.879Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:36:11.353Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:36:11.353Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:36:11.353Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:36:11.355Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:36:11.355Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:36:11.357Z - Time taken for 'total for creating and serializing project graph' 0.3453750000001037ms -[NX Daemon Server] - 2024-09-13T19:36:11.359Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:36:11.359Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:36:11.399Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T19:36:11.400Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T19:36:11.400Z - Handled HASH_TASKS. Handling time: 31. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:36:11.831Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:36:11.955Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:36:12.141Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:36:12.141Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:36:12.142Z - Handled RECORD_OUTPUTS_HASH. Handling time: 13. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:36:12.144Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:36:12.144Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:36:12.144Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:12.145Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:36:12.145Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:36:12.145Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:36:12.147Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:36:12.183Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:36:13.047Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:36:13.048Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:36:13.051Z - Time taken for 'total for creating and serializing project graph' 0.688083000000006ms -[NX Daemon Server] - 2024-09-13T19:36:13.054Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:36:13.054Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-13T19:36:13.062Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:36:13.063Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:36:13.063Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:36:13.064Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:36:13.105Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:36:13.105Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:36:13.105Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:36:13.105Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:36:13.105Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:36:13.106Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:36:13.107Z - Time taken for 'total for creating and serializing project graph' 0.10633400000006077ms -[NX Daemon Server] - 2024-09-13T19:36:13.108Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:36:13.108Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:36:13.110Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:36:13.110Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:36:13.112Z - Time taken for 'total for creating and serializing project graph' 0.08645799999976589ms -[NX Daemon Server] - 2024-09-13T19:36:13.113Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:36:13.113Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:36:13.115Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:38:00.327Z - [WATCHER]: libs/native-federation-runtime/src/lib/init-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:38:00.328Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:38:00.328Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:38:00.328Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.329Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:38:00.329Z - Time taken for 'changed-projects' 0.34037499999976717ms -[NX Daemon Server] - 2024-09-13T19:38:00.430Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:38:00.430Z - [REQUEST]: libs/native-federation-runtime/src/lib/init-federation.ts -[NX Daemon Server] - 2024-09-13T19:38:00.430Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:38:00.453Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.453Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.453Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.454Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.454Z - Time taken for 'hash changed files from watcher' 0.6503749999974389ms -[NX Daemon Server] - 2024-09-13T19:38:00.455Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.455Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.455Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.456Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.456Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.456Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.457Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.457Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.457Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.458Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.458Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.458Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.459Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.459Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.459Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.459Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.459Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.459Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.460Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.460Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.460Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.461Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.461Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.461Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.461Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.462Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.462Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:00.462Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.462Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.462Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.463Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.463Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.463Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.464Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.464Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.464Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.464Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.464Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.464Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.465Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.465Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.465Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.466Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.466Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.466Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.466Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.466Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.466Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.467Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.467Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.467Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.468Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.468Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.468Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.469Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.469Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.470Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.470Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.470Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.471Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:38:00.471Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:38:00.471Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.480Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.480Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.481Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.482Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.484Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.492Z - Time taken for 'build-project-configs' 56.43308399998932ms -[NX Daemon Server] - 2024-09-13T19:38:00.498Z - [WATCHER]: libs/native-federation-runtime/src/lib/init-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:38:00.498Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:38:00.498Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:38:00.498Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.498Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:38:00.498Z - Time taken for 'changed-projects' 0.05374999999185093ms -[NX Daemon Server] - 2024-09-13T19:38:00.519Z - Time taken for 'total execution time for createProjectGraph()' 24.964540999993915ms -[NX Daemon Server] - 2024-09-13T19:38:00.700Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:38:00.700Z - [REQUEST]: libs/native-federation-runtime/src/lib/init-federation.ts -[NX Daemon Server] - 2024-09-13T19:38:00.700Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:38:00.719Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.719Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.719Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.720Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.720Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.720Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.720Z - Time taken for 'hash changed files from watcher' 0.6315410000097472ms -[NX Daemon Server] - 2024-09-13T19:38:00.721Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.721Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.721Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.722Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.722Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.722Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.723Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.723Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.724Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.725Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.725Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.725Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.726Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.727Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.727Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.728Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.728Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.728Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.729Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.730Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:00.730Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.730Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.730Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.731Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.731Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.731Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.731Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.731Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.731Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.732Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.732Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.732Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.733Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.733Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.733Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.733Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.734Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.734Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:00.734Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.734Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.734Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.735Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.735Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.735Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.735Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.736Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.736Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:00.736Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.736Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.736Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.737Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.737Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.737Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.738Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.738Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.738Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.738Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.738Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.738Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.739Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.739Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.739Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.739Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.739Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.739Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.740Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.740Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.740Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.741Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.741Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:00.741Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:00.747Z - Time taken for 'build-project-configs' 41.86662499999511ms -[NX Daemon Server] - 2024-09-13T19:38:00.763Z - Time taken for 'total execution time for createProjectGraph()' 13.632792000003974ms -[NX Daemon Server] - 2024-09-13T19:38:01.507Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:38:01.508Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:38:01.511Z - Time taken for 'total for creating and serializing project graph' 0.8282499999913853ms -[NX Daemon Server] - 2024-09-13T19:38:01.516Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:38:01.517Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 9. -[NX Daemon Server] - 2024-09-13T19:38:01.523Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:38:01.524Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:38:01.524Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:01.524Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:38:01.567Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:38:01.567Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:38:01.567Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:38:01.567Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:38:01.567Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:38:01.567Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:38:01.569Z - Time taken for 'total for creating and serializing project graph' 0.09166700000059791ms -[NX Daemon Server] - 2024-09-13T19:38:01.570Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:38:01.570Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:38:01.572Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:38:01.572Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:38:01.574Z - Time taken for 'total for creating and serializing project graph' 0.07054199998674449ms -[NX Daemon Server] - 2024-09-13T19:38:01.581Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:38:01.581Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. -[NX Daemon Server] - 2024-09-13T19:38:01.583Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:38:06.317Z - [WATCHER]: libs/native-federation-runtime/src/lib/init-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:38:06.318Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:38:06.318Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:38:06.319Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:06.319Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:38:06.319Z - Time taken for 'changed-projects' 0.22504200000548735ms -[NX Daemon Server] - 2024-09-13T19:38:06.421Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:38:06.421Z - [REQUEST]: libs/native-federation-runtime/src/lib/init-federation.ts -[NX Daemon Server] - 2024-09-13T19:38:06.421Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:38:06.441Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.441Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.441Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.442Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.442Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.442Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.442Z - Time taken for 'hash changed files from watcher' 1.5146669999958249ms -[NX Daemon Server] - 2024-09-13T19:38:06.443Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.443Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.443Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.444Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.444Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.444Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.445Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.445Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.445Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.446Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.446Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.446Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.447Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.447Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.447Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.447Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.447Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.447Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.448Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.448Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.448Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.449Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.449Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.449Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.450Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.450Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.450Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.451Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.451Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.452Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.452Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.452Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.452Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.452Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.452Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.453Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.453Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.453Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.454Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.455Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:06.455Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.455Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.455Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.456Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.456Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.456Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.457Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.457Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.457Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.458Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.458Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.458Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.458Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.458Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.458Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.459Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.459Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.459Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.460Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.460Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.460Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.460Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.460Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.460Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.461Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.461Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.461Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.462Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.462Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.462Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.462Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.462Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.462Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.463Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.463Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.463Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.464Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.464Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.464Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.464Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.464Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:38:06.464Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:06.471Z - Time taken for 'build-project-configs' 44.096374999993714ms -[NX Daemon Server] - 2024-09-13T19:38:06.492Z - Time taken for 'total execution time for createProjectGraph()' 18.624082999987877ms -[NX Daemon Server] - 2024-09-13T19:38:07.328Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:38:07.329Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:38:07.332Z - Time taken for 'total for creating and serializing project graph' 0.6359579999989364ms -[NX Daemon Server] - 2024-09-13T19:38:07.336Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:38:07.336Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-13T19:38:07.343Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:38:07.344Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:38:07.344Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:07.345Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:38:07.386Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:38:07.387Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:38:07.387Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:38:07.387Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:38:07.387Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:38:07.387Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:38:07.389Z - Time taken for 'total for creating and serializing project graph' 0.0866669999959413ms -[NX Daemon Server] - 2024-09-13T19:38:07.390Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:38:07.390Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:38:07.393Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:38:07.393Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:38:07.394Z - Time taken for 'total for creating and serializing project graph' 0.08866700000362471ms -[NX Daemon Server] - 2024-09-13T19:38:07.395Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:38:07.395Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:38:07.397Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:38:09.368Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:38:09.368Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:38:09.369Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:38:09.371Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:38:09.371Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:38:09.374Z - Time taken for 'total for creating and serializing project graph' 0.3316670000058366ms -[NX Daemon Server] - 2024-09-13T19:38:09.376Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:38:09.376Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:38:09.412Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T19:38:09.412Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T19:38:09.413Z - Handled HASH_TASKS. Handling time: 29. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:38:09.714Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:38:10.059Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:38:10.153Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:38:10.153Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:38:10.153Z - Handled RECORD_OUTPUTS_HASH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:10.195Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:38:10.444Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:38:10.762Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:38:10.762Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:38:10.762Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:10.767Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:38:10.767Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:38:10.767Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:10.767Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:38:10.767Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:38:10.767Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:38:10.769Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:38:10.799Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:39:47.123Z - [WATCHER]: libs/native-federation-node/tsconfig.json was modified -[NX Daemon Server] - 2024-09-13T19:39:47.124Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:39:47.124Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:39:47.124Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.124Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:39:47.124Z - Time taken for 'changed-projects' 0.15937499998835847ms -[NX Daemon Server] - 2024-09-13T19:39:47.226Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:39:47.226Z - [REQUEST]: libs/native-federation-node/tsconfig.json -[NX Daemon Server] - 2024-09-13T19:39:47.226Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:39:47.249Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.249Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.249Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.250Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.250Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.250Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.250Z - Time taken for 'hash changed files from watcher' 0.903667000005953ms -[NX Daemon Server] - 2024-09-13T19:39:47.251Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.251Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.251Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.252Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.252Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.252Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.253Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.253Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.253Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.254Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.254Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.254Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.255Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.255Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.255Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.256Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.256Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.256Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.257Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.257Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.257Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.258Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.258Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.258Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.258Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.258Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.258Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.259Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.259Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.259Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.260Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.260Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.260Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.261Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.261Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.261Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.262Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.262Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.262Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.263Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.263Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.263Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.263Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.263Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.264Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:39:47.264Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.264Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.264Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.265Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.265Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.265Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.266Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.266Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.266Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.267Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.267Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.267Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.267Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.267Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.267Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.268Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.268Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.268Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.269Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:39:47.269Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:39:47.269Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.274Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.275Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.275Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:39:47.275Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.275Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.275Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.276Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.276Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.276Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.277Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.277Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.277Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.277Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.277Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.277Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.278Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.278Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.278Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.279Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.279Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.279Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.281Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.281Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.281Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.286Z - Time taken for 'build-project-configs' 54.59174999999232ms -[NX Daemon Server] - 2024-09-13T19:39:47.299Z - [WATCHER]: libs/native-federation-node/tsconfig.json was modified -[NX Daemon Server] - 2024-09-13T19:39:47.299Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:39:47.299Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:39:47.299Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.299Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:39:47.299Z - Time taken for 'changed-projects' 0.043791000003693625ms -[NX Daemon Server] - 2024-09-13T19:39:47.313Z - Time taken for 'total execution time for createProjectGraph()' 24.73237500002142ms -[NX Daemon Server] - 2024-09-13T19:39:47.501Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:39:47.501Z - [REQUEST]: libs/native-federation-node/tsconfig.json -[NX Daemon Server] - 2024-09-13T19:39:47.501Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:39:47.513Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.513Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.513Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.514Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.514Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.514Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.514Z - Time taken for 'hash changed files from watcher' 0.4314170000143349ms -[NX Daemon Server] - 2024-09-13T19:39:47.515Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.515Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.515Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.516Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.516Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.516Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.517Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.517Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.517Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.518Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.518Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.518Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.519Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.519Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.519Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.519Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.519Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.519Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.520Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.520Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.520Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.521Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.521Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.521Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.522Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.522Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.522Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.522Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.522Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.522Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.523Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.523Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.523Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.524Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.524Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.524Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.525Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.525Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.525Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.526Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.526Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.526Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.526Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.526Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.526Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.527Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.527Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.527Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.528Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.528Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.528Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.529Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.529Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.529Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.529Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.529Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.529Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.530Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.530Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.530Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.531Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.531Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.531Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.532Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.532Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.532Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.533Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.533Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.533Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.533Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.533Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.533Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.534Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.534Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.534Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.535Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.535Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.535Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.535Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.535Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.535Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.536Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.536Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.536Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.537Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.537Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:39:47.537Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:47.543Z - Time taken for 'build-project-configs' 37.96404099999927ms -[NX Daemon Server] - 2024-09-13T19:39:47.565Z - Time taken for 'total execution time for createProjectGraph()' 19.44620799997938ms -[NX Daemon Server] - 2024-09-13T19:39:48.306Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:39:48.307Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:39:48.311Z - Time taken for 'total for creating and serializing project graph' 0.6295840000093449ms -[NX Daemon Server] - 2024-09-13T19:39:48.321Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:39:48.321Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 14. -[NX Daemon Server] - 2024-09-13T19:39:48.325Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:39:48.325Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:39:48.325Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:48.326Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:39:48.368Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:39:48.369Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:39:48.369Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:39:48.369Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:39:48.370Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:39:48.370Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:39:48.372Z - Time taken for 'total for creating and serializing project graph' 0.14174999998067506ms -[NX Daemon Server] - 2024-09-13T19:39:48.373Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:39:48.373Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:39:48.377Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:39:48.377Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:39:48.379Z - Time taken for 'total for creating and serializing project graph' 0.1824170000036247ms -[NX Daemon Server] - 2024-09-13T19:39:48.380Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:39:48.380Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:39:48.383Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:39:50.333Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:39:50.334Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:39:50.334Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:39:50.335Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:39:50.335Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:39:50.336Z - Time taken for 'total for creating and serializing project graph' 0.19383299999753945ms -[NX Daemon Server] - 2024-09-13T19:39:50.338Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:39:50.338Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:39:50.355Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T19:39:50.356Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T19:39:50.356Z - Handled HASH_TASKS. Handling time: 10. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:39:50.379Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T19:39:50.379Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T19:39:50.379Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:50.379Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:39:50.379Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:39:50.379Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:50.687Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:39:51.000Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:39:51.001Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:39:51.001Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:39:51.006Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:39:51.006Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:39:51.006Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:51.007Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:39:51.007Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:39:51.007Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:39:51.009Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:39:51.037Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:40:22.635Z - [WATCHER]: libs/native-federation-node/tsconfig.lib.json was modified -[NX Daemon Server] - 2024-09-13T19:40:22.636Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:40:22.636Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:40:22.636Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:40:22.636Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:40:22.636Z - Time taken for 'changed-projects' 0.12525000001187436ms -[NX Daemon Server] - 2024-09-13T19:40:22.737Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:40:22.738Z - [REQUEST]: libs/native-federation-node/tsconfig.lib.json -[NX Daemon Server] - 2024-09-13T19:40:22.738Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:40:22.762Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.762Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.762Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.763Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.763Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.763Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.763Z - Time taken for 'hash changed files from watcher' 0.9119170000194572ms -[NX Daemon Server] - 2024-09-13T19:40:22.764Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.764Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.764Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.765Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.766Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.767Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.768Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.769Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:40:22.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.776Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.777Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:40:22.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.777Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.778Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.779Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.780Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.780Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.782Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.782Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.783Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.784Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.784Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.784Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.785Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.785Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.785Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.785Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.785Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.785Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.786Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:40:22.786Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:40:22.786Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.793Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:40:22.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.793Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.794Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.795Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.795Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.796Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.796Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.796Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.797Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.797Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.799Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.799Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:22.799Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.804Z - Time taken for 'build-project-configs' 60.211542000004556ms -[NX Daemon Server] - 2024-09-13T19:40:22.832Z - Time taken for 'total execution time for createProjectGraph()' 25.842875000002095ms -[NX Daemon Server] - 2024-09-13T19:40:22.832Z - [WATCHER]: libs/native-federation-node/tsconfig.lib.json was modified -[NX Daemon Server] - 2024-09-13T19:40:22.832Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:40:22.832Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:40:22.832Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:22.832Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:40:22.832Z - Time taken for 'changed-projects' 0.03416699997615069ms -[NX Daemon Server] - 2024-09-13T19:40:23.034Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:40:23.034Z - [REQUEST]: libs/native-federation-node/tsconfig.lib.json -[NX Daemon Server] - 2024-09-13T19:40:23.034Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:40:23.047Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.047Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.047Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.048Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.048Z - Time taken for 'hash changed files from watcher' 0.5162909999780823ms -[NX Daemon Server] - 2024-09-13T19:40:23.049Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.049Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.049Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.050Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.051Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.051Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.052Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.052Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.052Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.053Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.053Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.054Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.055Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.055Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.055Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.055Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.056Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.056Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.056Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.057Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.057Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.057Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.057Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.057Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.057Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.058Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.059Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.059Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.059Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.059Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.059Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.059Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.060Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.060Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.060Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.061Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.061Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.061Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.062Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.062Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.063Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.063Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.063Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:40:23.064Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.065Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.066Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.066Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.067Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.067Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:23.068Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.074Z - Time taken for 'build-project-configs' 35.899499999999534ms -[NX Daemon Server] - 2024-09-13T19:40:23.092Z - Time taken for 'total execution time for createProjectGraph()' 15.920000000012806ms -[NX Daemon Server] - 2024-09-13T19:40:23.837Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:40:23.837Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:40:23.841Z - Time taken for 'total for creating and serializing project graph' 0.32479199999943376ms -[NX Daemon Server] - 2024-09-13T19:40:23.843Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:40:23.843Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T19:40:23.849Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:40:23.849Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:40:23.849Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.849Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:40:23.890Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:40:23.891Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:40:23.891Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:40:23.891Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:40:23.891Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:40:23.891Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:40:23.892Z - Time taken for 'total for creating and serializing project graph' 0.0787080000154674ms -[NX Daemon Server] - 2024-09-13T19:40:23.893Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:40:23.893Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:40:23.896Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:40:23.896Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:40:23.897Z - Time taken for 'total for creating and serializing project graph' 0.09508400000049733ms -[NX Daemon Server] - 2024-09-13T19:40:23.900Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:40:23.900Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:40:23.902Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:40:23.943Z - [WATCHER]: libs/native-federation-node/tsconfig.lib.json was modified -[NX Daemon Server] - 2024-09-13T19:40:23.943Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:40:23.943Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:40:23.943Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:23.943Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:40:23.943Z - Time taken for 'changed-projects' 0.055709000007482246ms -[NX Daemon Server] - 2024-09-13T19:40:24.044Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:40:24.044Z - [REQUEST]: libs/native-federation-node/tsconfig.lib.json -[NX Daemon Server] - 2024-09-13T19:40:24.044Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:40:24.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.058Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.059Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.059Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.059Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.059Z - Time taken for 'hash changed files from watcher' 0.6024170000164304ms -[NX Daemon Server] - 2024-09-13T19:40:24.060Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.060Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.060Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.061Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.061Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.061Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.062Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.062Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.063Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.063Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.064Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.066Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.066Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.066Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.066Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.067Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.068Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.069Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.069Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.069Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.069Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.069Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.069Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.070Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.070Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.070Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.071Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.071Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.072Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.073Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.073Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.073Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.073Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.073Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.073Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.074Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.074Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.074Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.074Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.074Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.074Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.075Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.075Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.075Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.076Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.076Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.076Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.076Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.076Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.076Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.077Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.077Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.077Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.078Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.078Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.078Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.078Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.078Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.078Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.079Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.079Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.079Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.079Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.079Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:40:24.079Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.085Z - Time taken for 'build-project-configs' 36.6461249999993ms -[NX Daemon Server] - 2024-09-13T19:40:24.103Z - Time taken for 'total execution time for createProjectGraph()' 15.336707999987993ms -[NX Daemon Server] - 2024-09-13T19:40:24.951Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:40:24.951Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:40:24.955Z - Time taken for 'total for creating and serializing project graph' 0.6141250000218861ms -[NX Daemon Server] - 2024-09-13T19:40:24.957Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:40:24.957Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T19:40:24.965Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:40:24.965Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:40:24.965Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:24.966Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:40:25.007Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:40:25.007Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:40:25.007Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:40:25.007Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:40:25.008Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:40:25.008Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:40:25.010Z - Time taken for 'total for creating and serializing project graph' 0.08008399998652749ms -[NX Daemon Server] - 2024-09-13T19:40:25.010Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:40:25.010Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:40:25.013Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:40:25.013Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:40:25.014Z - Time taken for 'total for creating and serializing project graph' 0.09283300000242889ms -[NX Daemon Server] - 2024-09-13T19:40:25.015Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:40:25.015Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:40:25.017Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:40:25.699Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:40:25.699Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:40:25.700Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:40:25.702Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:40:25.702Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:40:25.705Z - Time taken for 'total for creating and serializing project graph' 0.48866699999780394ms -[NX Daemon Server] - 2024-09-13T19:40:25.708Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:40:25.708Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T19:40:25.742Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T19:40:25.743Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T19:40:25.743Z - Handled HASH_TASKS. Handling time: 28. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:40:25.764Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T19:40:25.764Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T19:40:25.764Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:25.765Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:40:25.765Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:40:25.765Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:26.034Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:40:26.341Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:40:26.341Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:40:26.341Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:26.347Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:40:26.347Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:40:26.347Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:26.348Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:40:26.348Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:40:26.348Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:40:26.350Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:40:26.378Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:42:07.905Z - [WATCHER]: libs/native-federation-node/tsconfig.json was modified -[NX Daemon Server] - 2024-09-13T19:42:07.906Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:42:07.906Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:42:07.906Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:07.906Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:42:07.906Z - Time taken for 'changed-projects' 0.13729199999943376ms -[NX Daemon Server] - 2024-09-13T19:42:08.008Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:42:08.008Z - [REQUEST]: libs/native-federation-node/tsconfig.json -[NX Daemon Server] - 2024-09-13T19:42:08.008Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:42:08.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.027Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.028Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.028Z - Time taken for 'hash changed files from watcher' 0.770790999988094ms -[NX Daemon Server] - 2024-09-13T19:42:08.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.029Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.030Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.031Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:42:08.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.033Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.033Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.033Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.034Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.035Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.036Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.037Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.037Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.038Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.038Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.038Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.039Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.040Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.040Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.041Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.041Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.041Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.042Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.042Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.042Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.043Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.043Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.043Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.043Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.043Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.043Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.044Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.045Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.045Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.045Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.046Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:42:08.046Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:42:08.046Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.052Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.052Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.052Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.053Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.053Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.054Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.055Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.055Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.056Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.056Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.056Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.057Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.057Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.057Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:08.058Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.063Z - Time taken for 'build-project-configs' 49.99916700000176ms -[NX Daemon Server] - 2024-09-13T19:42:08.089Z - Time taken for 'total execution time for createProjectGraph()' 23.853667000017595ms -[NX Daemon Server] - 2024-09-13T19:42:08.910Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:42:08.910Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:42:08.913Z - Time taken for 'total for creating and serializing project graph' 0.2293749999953434ms -[NX Daemon Server] - 2024-09-13T19:42:08.914Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:42:08.914Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:42:08.920Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:42:08.920Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:42:08.920Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:08.920Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:42:08.959Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:42:08.959Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:42:08.959Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:42:08.959Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:42:08.960Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:42:08.960Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:42:08.961Z - Time taken for 'total for creating and serializing project graph' 0.07979099999647588ms -[NX Daemon Server] - 2024-09-13T19:42:08.962Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:42:08.962Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:42:08.965Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:42:08.965Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:42:08.966Z - Time taken for 'total for creating and serializing project graph' 0.07962500001303852ms -[NX Daemon Server] - 2024-09-13T19:42:08.969Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:42:08.969Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:42:08.971Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:42:15.850Z - [WATCHER]: libs/native-federation-node/tsconfig.lib.json was modified -[NX Daemon Server] - 2024-09-13T19:42:15.850Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:42:15.850Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:42:15.850Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.850Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:42:15.850Z - Time taken for 'changed-projects' 0.10770900000352412ms -[NX Daemon Server] - 2024-09-13T19:42:15.952Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:42:15.952Z - [REQUEST]: libs/native-federation-node/tsconfig.lib.json -[NX Daemon Server] - 2024-09-13T19:42:15.952Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:42:15.966Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.966Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.966Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.967Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.967Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.967Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.967Z - Time taken for 'hash changed files from watcher' 0.5453330000163987ms -[NX Daemon Server] - 2024-09-13T19:42:15.968Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.968Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.968Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.969Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.969Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.969Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.969Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.969Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.969Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.970Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.970Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.970Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.971Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.971Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.972Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.972Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.972Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.973Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.973Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.973Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.973Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.973Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.973Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.974Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.974Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.974Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.975Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.975Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.975Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.976Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.976Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.976Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.976Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.976Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.976Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.977Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.977Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.977Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.978Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.978Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.978Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.979Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.979Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.979Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.979Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.979Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.979Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.980Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.981Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.981Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.981Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.981Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.981Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.982Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:42:15.982Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.982Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.982Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.983Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:42:15.983Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:42:15.983Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.989Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.989Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.990Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.991Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.991Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.992Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.993Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.993Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:15.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:15.995Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.000Z - Time taken for 'build-project-configs' 43.48241699999198ms -[NX Daemon Server] - 2024-09-13T19:42:16.007Z - [WATCHER]: libs/native-federation-node/tsconfig.lib.json was modified -[NX Daemon Server] - 2024-09-13T19:42:16.007Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:42:16.007Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:42:16.007Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.007Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:42:16.007Z - Time taken for 'changed-projects' 0.03983300004620105ms -[NX Daemon Server] - 2024-09-13T19:42:16.025Z - Time taken for 'total execution time for createProjectGraph()' 22.708582999999635ms -[NX Daemon Server] - 2024-09-13T19:42:16.209Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:42:16.209Z - [REQUEST]: libs/native-federation-node/tsconfig.lib.json -[NX Daemon Server] - 2024-09-13T19:42:16.209Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:42:16.221Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.221Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.221Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.222Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.222Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.222Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.222Z - Time taken for 'hash changed files from watcher' 0.4510840000002645ms -[NX Daemon Server] - 2024-09-13T19:42:16.223Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.223Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.223Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.224Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.224Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.224Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.226Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.226Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.226Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.226Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.226Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.226Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.227Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.227Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.227Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.228Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.228Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.228Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.229Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.229Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.229Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.230Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.230Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.230Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.230Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.230Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.230Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.231Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.231Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.231Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.232Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.232Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.232Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.232Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.233Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.233Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.233Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.234Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.234Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.235Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.235Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.235Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.235Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.235Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.235Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.236Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.236Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.236Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.237Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.237Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.237Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.237Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.237Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.237Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.238Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.238Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.238Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.238Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.238Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.238Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.239Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.239Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.239Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.240Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.240Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.240Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.240Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.240Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.240Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.241Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.241Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.241Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.241Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.241Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.241Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.242Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.242Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.242Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:42:16.242Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:16.248Z - Time taken for 'build-project-configs' 35.13650000002235ms -[NX Daemon Server] - 2024-09-13T19:42:16.264Z - Time taken for 'total execution time for createProjectGraph()' 13.59674999996787ms -[NX Daemon Server] - 2024-09-13T19:42:17.009Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:42:17.009Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:42:17.010Z - Time taken for 'total for creating and serializing project graph' 0.1114159999997355ms -[NX Daemon Server] - 2024-09-13T19:42:17.011Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:42:17.011Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:42:17.014Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:42:17.014Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:42:17.014Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:17.014Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:42:17.045Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:42:17.045Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:42:17.045Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:42:17.045Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:42:17.045Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:42:17.045Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:42:17.047Z - Time taken for 'total for creating and serializing project graph' 0.08283300005132332ms -[NX Daemon Server] - 2024-09-13T19:42:17.048Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:42:17.048Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:42:17.050Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:42:17.050Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:42:17.051Z - Time taken for 'total for creating and serializing project graph' 0.07587499998044223ms -[NX Daemon Server] - 2024-09-13T19:42:17.052Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:42:17.052Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:42:17.054Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:42:18.289Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:42:18.290Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:42:18.290Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:42:18.292Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:42:18.292Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:42:18.295Z - Time taken for 'total for creating and serializing project graph' 0.29712499998277053ms -[NX Daemon Server] - 2024-09-13T19:42:18.297Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:42:18.297Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:42:18.331Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T19:42:18.331Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T19:42:18.331Z - Handled HASH_TASKS. Handling time: 27. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:18.354Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T19:42:18.354Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T19:42:18.354Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:18.355Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:42:18.355Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:42:18.355Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:18.600Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:42:18.877Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:42:18.877Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:42:18.877Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:18.884Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:42:18.884Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:42:18.884Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:18.885Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:42:18.885Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:42:18.885Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:42:18.886Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:42:18.917Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:44:36.234Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was created or restored -[NX Daemon Server] - 2024-09-13T19:44:36.234Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:44:36.336Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:44:36.336Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:44:36.336Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:44:36.343Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.343Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.343Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.344Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.344Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.344Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.344Z - Time taken for 'hash changed files from watcher' 0.22716700000455603ms -[NX Daemon Server] - 2024-09-13T19:44:36.345Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.345Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.345Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.345Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.345Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.345Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.346Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.346Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.346Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.346Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.346Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.346Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.347Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.347Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.347Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.347Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.348Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.348Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:36.348Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.348Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.348Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.349Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.349Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.349Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.349Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.350Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.350Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.350Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.350Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.350Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.350Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.351Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.351Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.351Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.351Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.351Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.351Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.352Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.352Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.352Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.352Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.352Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.352Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.353Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.353Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.353Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.353Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.353Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.354Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:36.354Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.354Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.354Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.355Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.355Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.355Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.355Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.355Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.355Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.356Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.356Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.356Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.356Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:44:36.356Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:44:36.356Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.361Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.361Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.361Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.362Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.362Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.362Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.363Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.363Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.363Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.364Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.364Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.364Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.365Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.365Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.365Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.366Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.366Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.366Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.367Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.367Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.367Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.369Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.369Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:36.369Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.373Z - Time taken for 'build-project-configs' 33.974915999977384ms -[NX Daemon Server] - 2024-09-13T19:44:36.398Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:44:36.398Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:44:36.398Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:36.398Z - Time taken for 'total execution time for createProjectGraph()' 22.279834000044502ms -[NX Daemon Server] - 2024-09-13T19:44:37.151Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-13T19:44:37.151Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:44:37.151Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:44:37.151Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.151Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:44:37.151Z - Time taken for 'changed-projects' 0.06187500001396984ms -[NX Daemon Server] - 2024-09-13T19:44:37.352Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:44:37.352Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:44:37.352Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:44:37.366Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.366Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.366Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.367Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.367Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.368Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:37.368Z - Time taken for 'hash changed files from watcher' 0.5991250000079162ms -[NX Daemon Server] - 2024-09-13T19:44:37.369Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.369Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.369Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.370Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.370Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.370Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.371Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.371Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.371Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.372Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.372Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.372Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.373Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.373Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.373Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.374Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.374Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.374Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.375Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.375Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.375Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.376Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.376Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.376Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.377Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.377Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.377Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.378Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.378Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.378Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.379Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.379Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.379Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.380Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.380Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.380Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.380Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.380Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.380Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.381Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.381Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.381Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.382Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.382Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.382Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.383Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.383Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.383Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.383Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.383Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.383Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.384Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.384Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.384Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.385Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.385Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.385Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.386Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.386Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.386Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.387Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.387Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.387Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.387Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:44:37.387Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:44:37.387Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.392Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.393Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.393Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:37.394Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.394Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.394Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.394Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.394Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.394Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.395Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.395Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.395Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.396Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.396Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.397Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.400Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.400Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:37.400Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:37.404Z - Time taken for 'build-project-configs' 48.11137499997858ms -[NX Daemon Server] - 2024-09-13T19:44:37.429Z - Time taken for 'total execution time for createProjectGraph()' 21.897624999983236ms -[NX Daemon Server] - 2024-09-13T19:44:38.156Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:38.156Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:38.160Z - Time taken for 'total for creating and serializing project graph' 0.25037500000325963ms -[NX Daemon Server] - 2024-09-13T19:44:38.161Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:38.161Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:44:38.167Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:44:38.167Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:44:38.167Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.168Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:38.206Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:44:38.206Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:38.206Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:44:38.206Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:38.206Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:38.207Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:38.208Z - Time taken for 'total for creating and serializing project graph' 0.07708300004014745ms -[NX Daemon Server] - 2024-09-13T19:44:38.209Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:38.209Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:44:38.212Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:38.212Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:38.213Z - Time taken for 'total for creating and serializing project graph' 0.09000000002561137ms -[NX Daemon Server] - 2024-09-13T19:44:38.214Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:38.214Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:44:38.216Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:44:38.541Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-13T19:44:38.541Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:44:38.541Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:44:38.541Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.541Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:44:38.541Z - Time taken for 'changed-projects' 0.061708000022917986ms -[NX Daemon Server] - 2024-09-13T19:44:38.643Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:44:38.643Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:44:38.643Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:44:38.653Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.653Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.653Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.653Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.653Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.654Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:38.654Z - Time taken for 'hash changed files from watcher' 0.37008299998706207ms -[NX Daemon Server] - 2024-09-13T19:44:38.654Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.654Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.654Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.655Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.655Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.655Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.656Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.656Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.656Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.656Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.656Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.656Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.657Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.657Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.657Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.658Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.658Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.658Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.658Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.658Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.658Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.659Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.659Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.659Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.660Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.660Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.660Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.660Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.660Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.660Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.661Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.661Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.661Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.663Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.663Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.663Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.663Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.664Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.664Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:38.664Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.664Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.664Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.665Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.665Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.665Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.665Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.665Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.665Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.666Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.666Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.666Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.667Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.667Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.667Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.667Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.667Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.667Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.668Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.668Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.668Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.669Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.669Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.669Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.669Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:44:38.669Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:44:38.669Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.673Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.673Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.673Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.674Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.674Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.674Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.674Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.674Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.674Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.675Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.675Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.675Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.675Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.675Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.675Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.676Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.676Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.676Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.676Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.677Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.677Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:38.679Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.679Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:38.679Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:38.683Z - Time taken for 'build-project-configs' 36.2208329999703ms -[NX Daemon Server] - 2024-09-13T19:44:38.709Z - Time taken for 'total execution time for createProjectGraph()' 23.380292000016198ms -[NX Daemon Server] - 2024-09-13T19:44:39.544Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:39.545Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:39.547Z - Time taken for 'total for creating and serializing project graph' 0.25070799997774884ms -[NX Daemon Server] - 2024-09-13T19:44:39.549Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:39.549Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:44:39.555Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:44:39.555Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:44:39.555Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:39.556Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:39.597Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:44:39.597Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:39.598Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:44:39.598Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:39.598Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:39.598Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:39.599Z - Time taken for 'total for creating and serializing project graph' 0.08316700003342703ms -[NX Daemon Server] - 2024-09-13T19:44:39.600Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:39.600Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:44:39.602Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:39.602Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:39.604Z - Time taken for 'total for creating and serializing project graph' 0.07737499999348074ms -[NX Daemon Server] - 2024-09-13T19:44:39.605Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:39.605Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:44:39.607Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:44:47.873Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T19:44:47.874Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:44:47.874Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:44:47.874Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:47.874Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:44:47.874Z - Time taken for 'changed-projects' 0.11204099998576567ms -[NX Daemon Server] - 2024-09-13T19:44:47.977Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:44:47.978Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T19:44:47.978Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:44:47.999Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:47.999Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:47.999Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.000Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.000Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.000Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.000Z - Time taken for 'hash changed files from watcher' 1.567125000001397ms -[NX Daemon Server] - 2024-09-13T19:44:48.001Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.002Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.002Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:48.003Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.003Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.003Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.003Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.004Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.004Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:44:48.004Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.004Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.004Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.005Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.005Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.005Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.006Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.006Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.006Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.007Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.007Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.007Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.008Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.008Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.008Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.009Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.010Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.011Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.011Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.011Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.012Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.013Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.013Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.014Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.014Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.014Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.015Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.015Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.015Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.016Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.016Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.016Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.016Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.016Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.016Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.017Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.017Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.017Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.018Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.018Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.018Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.019Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:44:48.019Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:44:48.019Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.025Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.025Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.025Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.026Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.026Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.026Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.027Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.027Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.028Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.028Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.029Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:44:48.031Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.036Z - Time taken for 'build-project-configs' 53.008250000013504ms -[NX Daemon Server] - 2024-09-13T19:44:48.059Z - Time taken for 'total execution time for createProjectGraph()' 20.40716699999757ms -[NX Daemon Server] - 2024-09-13T19:44:48.876Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:48.877Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:48.878Z - Time taken for 'total for creating and serializing project graph' 0.1330409999936819ms -[NX Daemon Server] - 2024-09-13T19:44:48.880Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:48.880Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:44:48.883Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:44:48.883Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:44:48.883Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:44:48.884Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:48.917Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:44:48.919Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:48.919Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:44:48.919Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:44:48.919Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:48.919Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:48.921Z - Time taken for 'total for creating and serializing project graph' 0.09191699995426461ms -[NX Daemon Server] - 2024-09-13T19:44:48.923Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:48.923Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:44:48.926Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:44:48.926Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:44:48.927Z - Time taken for 'total for creating and serializing project graph' 0.24012500001117587ms -[NX Daemon Server] - 2024-09-13T19:44:48.928Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:44:48.928Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:44:48.931Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:08.146Z - [WATCHER]: libs/native-federation-node/tsconfig.json was modified -[NX Daemon Server] - 2024-09-13T19:45:08.147Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:45:08.147Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:45:08.147Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.147Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:08.147Z - Time taken for 'changed-projects' 0.10295800003223121ms -[NX Daemon Server] - 2024-09-13T19:45:08.249Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:45:08.250Z - [REQUEST]: libs/native-federation-node/tsconfig.json -[NX Daemon Server] - 2024-09-13T19:45:08.250Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:45:08.268Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.268Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.268Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.269Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.269Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.269Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.269Z - Time taken for 'hash changed files from watcher' 1.2356670000590384ms -[NX Daemon Server] - 2024-09-13T19:45:08.270Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.270Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.270Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.271Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.271Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.271Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.272Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.272Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.272Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.273Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.273Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.273Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.274Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.274Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.274Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.274Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.274Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.274Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.275Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.275Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.275Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.276Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.276Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.276Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.277Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.277Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.277Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.278Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.278Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.278Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.279Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.279Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.279Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.279Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.279Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.279Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.280Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.280Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.280Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.281Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.281Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.281Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.282Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.282Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.282Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.282Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.283Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.283Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:08.283Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.283Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.283Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.284Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.284Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.284Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.285Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.285Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.285Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.286Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.286Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.286Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.286Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.286Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.286Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.287Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:45:08.287Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:45:08.287Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.293Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.293Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.293Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.294Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.294Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.294Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.295Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.295Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.295Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.296Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.296Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.296Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.296Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.296Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.296Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.297Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.297Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.297Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.298Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.298Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.298Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.300Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.300Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.300Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.304Z - Time taken for 'build-project-configs' 48.84429099992849ms -[NX Daemon Server] - 2024-09-13T19:45:08.315Z - [WATCHER]: libs/native-federation-node/tsconfig.json was modified -[NX Daemon Server] - 2024-09-13T19:45:08.315Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:45:08.315Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:45:08.315Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.315Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:08.315Z - Time taken for 'changed-projects' 0.04658299998845905ms -[NX Daemon Server] - 2024-09-13T19:45:08.328Z - Time taken for 'total execution time for createProjectGraph()' 20.92220799997449ms -[NX Daemon Server] - 2024-09-13T19:45:08.517Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:45:08.517Z - [REQUEST]: libs/native-federation-node/tsconfig.json -[NX Daemon Server] - 2024-09-13T19:45:08.517Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:45:08.531Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.531Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.531Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.532Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.532Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.532Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.532Z - Time taken for 'hash changed files from watcher' 0.6218749999534339ms -[NX Daemon Server] - 2024-09-13T19:45:08.533Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.533Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.533Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.534Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.534Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.534Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.535Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.535Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.535Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.536Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.536Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.536Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.536Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.536Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.536Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.537Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.537Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.537Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.538Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.538Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.538Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.539Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.539Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.539Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.539Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.539Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.539Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.540Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.540Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.540Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.541Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.541Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.541Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.542Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.542Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.542Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.542Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.542Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.542Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.543Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.543Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.543Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.544Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.544Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.544Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.544Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.544Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.544Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.545Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.545Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.545Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.546Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.546Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.546Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.546Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.546Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.546Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.547Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.547Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.547Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.548Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.548Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.548Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.548Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.548Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.548Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.549Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.549Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.549Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.550Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.550Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.550Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.550Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.550Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.550Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.551Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.551Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.551Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.552Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.552Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.552Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.552Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.552Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.552Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.553Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.553Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:08.553Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:08.559Z - Time taken for 'build-project-configs' 37.49566600006074ms -[NX Daemon Server] - 2024-09-13T19:45:08.575Z - Time taken for 'total execution time for createProjectGraph()' 13.97124999994412ms -[NX Daemon Server] - 2024-09-13T19:45:09.323Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:09.323Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:09.326Z - Time taken for 'total for creating and serializing project graph' 0.5619169999845326ms -[NX Daemon Server] - 2024-09-13T19:45:09.329Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:09.330Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-13T19:45:09.336Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:45:09.338Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:45:09.338Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:45:09.339Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:09.380Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:45:09.381Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:09.381Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:09.381Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:09.381Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:09.381Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:09.383Z - Time taken for 'total for creating and serializing project graph' 0.08595900004729629ms -[NX Daemon Server] - 2024-09-13T19:45:09.384Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:09.384Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:45:09.386Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:09.386Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:09.388Z - Time taken for 'total for creating and serializing project graph' 0.06633299996610731ms -[NX Daemon Server] - 2024-09-13T19:45:09.392Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:09.392Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T19:45:09.394Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:09.396Z - [WATCHER]: libs/native-federation-node/tsconfig.json was modified -[NX Daemon Server] - 2024-09-13T19:45:09.396Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:45:09.396Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:45:09.396Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.396Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:09.396Z - Time taken for 'changed-projects' 0.049584000022150576ms -[NX Daemon Server] - 2024-09-13T19:45:09.498Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:45:09.498Z - [REQUEST]: libs/native-federation-node/tsconfig.json -[NX Daemon Server] - 2024-09-13T19:45:09.498Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:45:09.508Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.508Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.508Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.509Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.509Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.509Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.509Z - Time taken for 'hash changed files from watcher' 0.4173329999903217ms -[NX Daemon Server] - 2024-09-13T19:45:09.510Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.510Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.510Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.510Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.510Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.510Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.511Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.511Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.511Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.512Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.512Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.512Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.512Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.512Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.512Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.513Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.513Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.513Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.514Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.514Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.514Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.515Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.515Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.515Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.515Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.515Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.515Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.516Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.516Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.516Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.517Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.517Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.517Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.518Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.518Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.518Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.518Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.518Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.518Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.519Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.519Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.519Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.520Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.520Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.520Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.520Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.520Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.520Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.521Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.521Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.521Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.521Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.521Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.521Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.522Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.522Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.522Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.523Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.523Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.523Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.523Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.523Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.523Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.524Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.524Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.524Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.524Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.524Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.524Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.525Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.525Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.525Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.526Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.526Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.526Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.526Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.526Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.526Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.527Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.527Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.527Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.527Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.527Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.527Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.528Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.528Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:09.528Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:09.533Z - Time taken for 'build-project-configs' 31.928874999983236ms -[NX Daemon Server] - 2024-09-13T19:45:09.549Z - Time taken for 'total execution time for createProjectGraph()' 12.796041999943554ms -[NX Daemon Server] - 2024-09-13T19:45:10.402Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:10.402Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:10.405Z - Time taken for 'total for creating and serializing project graph' 0.2904169999528676ms -[NX Daemon Server] - 2024-09-13T19:45:10.407Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:10.407Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:45:10.412Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:45:10.413Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:45:10.413Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:10.413Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:10.451Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:45:10.452Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:10.452Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:10.452Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:10.452Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:10.452Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:10.454Z - Time taken for 'total for creating and serializing project graph' 0.08370800002012402ms -[NX Daemon Server] - 2024-09-13T19:45:10.455Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:10.455Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:45:10.457Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:10.457Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:10.459Z - Time taken for 'total for creating and serializing project graph' 0.06504200003109872ms -[NX Daemon Server] - 2024-09-13T19:45:10.459Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:10.459Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:45:10.462Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:13.775Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T19:45:13.775Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:45:13.775Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:45:13.775Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.775Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:13.775Z - Time taken for 'changed-projects' 0.11233299993909895ms -[NX Daemon Server] - 2024-09-13T19:45:13.877Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:45:13.877Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T19:45:13.877Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:45:13.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.899Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.900Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.900Z - Time taken for 'hash changed files from watcher' 0.8979999999282882ms -[NX Daemon Server] - 2024-09-13T19:45:13.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.901Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.902Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.903Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.903Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.903Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.904Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.904Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.904Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.905Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.905Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.906Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.907Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:13.907Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.907Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.907Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.908Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.908Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.908Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.909Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.909Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.909Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.910Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.910Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.911Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.911Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.911Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.912Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.912Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.912Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.913Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.913Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.913Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.914Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.914Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.914Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.915Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.916Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.916Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.916Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.917Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.917Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.918Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.919Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:45:13.919Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:45:13.919Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.926Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.926Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.926Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.927Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.927Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.927Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.928Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.928Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.928Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.928Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.928Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.928Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.929Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.929Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.929Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.930Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.930Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.933Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.933Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:13.933Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:13.937Z - Time taken for 'build-project-configs' 54.98945799993817ms -[NX Daemon Server] - 2024-09-13T19:45:13.964Z - Time taken for 'total execution time for createProjectGraph()' 24.193708000006154ms -[NX Daemon Server] - 2024-09-13T19:45:14.595Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T19:45:14.595Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:45:14.596Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:45:14.596Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:14.596Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:14.596Z - Time taken for 'changed-projects' 0.11712500010617077ms -[NX Daemon Server] - 2024-09-13T19:45:14.798Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:45:14.798Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T19:45:14.798Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:45:14.815Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.815Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.815Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.816Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.816Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.816Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.817Z - Time taken for 'hash changed files from watcher' 0.6984170000068843ms -[NX Daemon Server] - 2024-09-13T19:45:14.818Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.818Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.818Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.819Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.819Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.819Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.820Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.820Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.820Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.821Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.821Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.821Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.822Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.822Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.823Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.823Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.823Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.824Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.825Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.825Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.825Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.825Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.825Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.825Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.826Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.826Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.826Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.827Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.827Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.827Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.828Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.828Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.828Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.829Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.829Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.830Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.830Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.831Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.832Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.832Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.832Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.833Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.833Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.834Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.834Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.834Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.835Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:45:14.835Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:45:14.835Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.839Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.839Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.839Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.840Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.840Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.840Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.841Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.842Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.843Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.845Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.846Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:14.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:14.849Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:14.853Z - Time taken for 'build-project-configs' 50.164250000030734ms -[NX Daemon Server] - 2024-09-13T19:45:14.876Z - Time taken for 'total execution time for createProjectGraph()' 20.65408300003037ms -[NX Daemon Server] - 2024-09-13T19:45:15.603Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:15.603Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:15.606Z - Time taken for 'total for creating and serializing project graph' 0.5465839999960735ms -[NX Daemon Server] - 2024-09-13T19:45:15.611Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:15.611Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2024-09-13T19:45:15.619Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:45:15.619Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:45:15.619Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:15.620Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:15.661Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:45:15.661Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:15.661Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:15.661Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:15.661Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:15.662Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:15.663Z - Time taken for 'total for creating and serializing project graph' 0.0823330000275746ms -[NX Daemon Server] - 2024-09-13T19:45:15.664Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:15.664Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:45:15.666Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:15.667Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:15.668Z - Time taken for 'total for creating and serializing project graph' 0.08266600000206381ms -[NX Daemon Server] - 2024-09-13T19:45:15.669Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:15.669Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:45:15.671Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:33.730Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T19:45:33.730Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:45:33.730Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:45:33.730Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.730Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:33.730Z - Time taken for 'changed-projects' 0.10550000006332994ms -[NX Daemon Server] - 2024-09-13T19:45:33.832Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:45:33.832Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T19:45:33.832Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:45:33.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.849Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.850Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:33.850Z - Time taken for 'hash changed files from watcher' 0.49179100000765175ms -[NX Daemon Server] - 2024-09-13T19:45:33.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:33.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.852Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.853Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.854Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.855Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.856Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.856Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.857Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.858Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.858Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.859Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.860Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.861Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.862Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.862Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.862Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.863Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.863Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.863Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.864Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.865Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.865Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.865Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.865Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.865Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.865Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.866Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.867Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:45:33.867Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:45:33.867Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.874Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.874Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.874Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.875Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.875Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.875Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.876Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.876Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.876Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.876Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.876Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.876Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.877Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.877Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.877Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.878Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.878Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.878Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.878Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.878Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.878Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.880Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.880Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:33.880Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:33.885Z - Time taken for 'build-project-configs' 48.28937500005122ms -[NX Daemon Server] - 2024-09-13T19:45:33.913Z - Time taken for 'total execution time for createProjectGraph()' 25.443500000052154ms -[NX Daemon Server] - 2024-09-13T19:45:34.368Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T19:45:34.368Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:45:34.368Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:45:34.368Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.368Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:34.368Z - Time taken for 'changed-projects' 0.10458400007337332ms -[NX Daemon Server] - 2024-09-13T19:45:34.533Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T19:45:34.534Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:45:34.534Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:45:34.534Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.535Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:34.535Z - Time taken for 'changed-projects' 0.15912500000558794ms -[NX Daemon Server] - 2024-09-13T19:45:34.570Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:45:34.570Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T19:45:34.571Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:45:34.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.588Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.589Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.589Z - Time taken for 'hash changed files from watcher' 0.7096659999806434ms -[NX Daemon Server] - 2024-09-13T19:45:34.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.590Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.591Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.592Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.592Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.592Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.593Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.593Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.593Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.594Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.594Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.594Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.595Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.595Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.595Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.595Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.595Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.595Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.596Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.596Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.596Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.597Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.597Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.597Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.598Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.598Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.598Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.598Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.598Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.598Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.599Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.599Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.599Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.600Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.600Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.600Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.601Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.601Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.601Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.602Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.602Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.603Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.604Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.604Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.604Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.604Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.604Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.604Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.605Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.605Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.605Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.606Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.606Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.606Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.607Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:45:34.607Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:45:34.607Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.612Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.612Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.612Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.613Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.614Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.614Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.615Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.615Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.615Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.616Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.616Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.619Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.619Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:45:34.619Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:34.623Z - Time taken for 'build-project-configs' 48.073624999960884ms -[NX Daemon Server] - 2024-09-13T19:45:34.647Z - Time taken for 'total execution time for createProjectGraph()' 21.76320799998939ms -[NX Daemon Server] - 2024-09-13T19:45:35.542Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:35.543Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:35.547Z - Time taken for 'total for creating and serializing project graph' 0.6807499999413267ms -[NX Daemon Server] - 2024-09-13T19:45:35.556Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:35.556Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 13. -[NX Daemon Server] - 2024-09-13T19:45:35.563Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:45:35.563Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:45:35.563Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:35.564Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:35.604Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:45:35.604Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:35.604Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:35.604Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:45:35.604Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:35.604Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:35.606Z - Time taken for 'total for creating and serializing project graph' 0.09395800007041544ms -[NX Daemon Server] - 2024-09-13T19:45:35.606Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:35.607Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:45:35.609Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:35.609Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:35.611Z - Time taken for 'total for creating and serializing project graph' 0.08070799999404699ms -[NX Daemon Server] - 2024-09-13T19:45:35.614Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:35.614Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:45:35.616Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:42.284Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:45:42.285Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:42.285Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:45:42.286Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:45:42.287Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:45:42.289Z - Time taken for 'total for creating and serializing project graph' 0.27837499999441206ms -[NX Daemon Server] - 2024-09-13T19:45:42.291Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:45:42.291Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. -[NX Daemon Server] - 2024-09-13T19:45:42.327Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T19:45:42.328Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T19:45:42.328Z - Handled HASH_TASKS. Handling time: 27. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:42.354Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T19:45:42.354Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T19:45:42.354Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:42.354Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:45:42.354Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:45:42.355Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:42.632Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:45:42.983Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:45:42.983Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T19:45:42.983Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:45:42.988Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:45:42.989Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T19:45:42.989Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:42.989Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:45:42.990Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T19:45:42.990Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:45:42.992Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:45:43.014Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:46:09.722Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-13T19:46:09.722Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:46:09.722Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:46:09.723Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.723Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:46:09.723Z - Time taken for 'changed-projects' 0.13262499996926636ms -[NX Daemon Server] - 2024-09-13T19:46:09.826Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:46:09.826Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:46:09.826Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:46:09.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.848Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.849Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.849Z - Time taken for 'hash changed files from watcher' 0.924457999994047ms -[NX Daemon Server] - 2024-09-13T19:46:09.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.850Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.851Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.852Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.853Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.854Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.855Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.856Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.857Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.857Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.858Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.859Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.860Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.861Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.863Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.863Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.863Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.864Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.864Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.865Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.865Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.865Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.866Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.867Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.867Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.867Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.867Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.867Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.867Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.869Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:46:09.869Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:46:09.869Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.874Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.874Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.874Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.875Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.875Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.875Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.876Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.876Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.876Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.876Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.876Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.876Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.877Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.877Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.877Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.878Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.878Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.878Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.878Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.879Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.879Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:46:09.881Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.881Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:09.881Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:09.886Z - Time taken for 'build-project-configs' 55.27416599995922ms -[NX Daemon Server] - 2024-09-13T19:46:09.916Z - Time taken for 'total execution time for createProjectGraph()' 26.797874999931082ms -[NX Daemon Server] - 2024-09-13T19:46:10.728Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:10.728Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:10.731Z - Time taken for 'total for creating and serializing project graph' 0.3847079999977723ms -[NX Daemon Server] - 2024-09-13T19:46:10.734Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:10.734Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T19:46:10.742Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:46:10.742Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:46:10.742Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:10.743Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:10.791Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:46:10.791Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:10.791Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:46:10.791Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:10.792Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:10.792Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:10.793Z - Time taken for 'total for creating and serializing project graph' 0.09237500000745058ms -[NX Daemon Server] - 2024-09-13T19:46:10.794Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:10.794Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:46:10.797Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:10.798Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:10.799Z - Time taken for 'total for creating and serializing project graph' 0.1086669999640435ms -[NX Daemon Server] - 2024-09-13T19:46:10.800Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:10.800Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:46:10.803Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:46:26.845Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-13T19:46:26.846Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:46:26.846Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:46:26.846Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.846Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:46:26.846Z - Time taken for 'changed-projects' 0.08783400000538677ms -[NX Daemon Server] - 2024-09-13T19:46:26.947Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:46:26.948Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:46:26.948Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:46:26.965Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.965Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.965Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.966Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.966Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.966Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.966Z - Time taken for 'hash changed files from watcher' 0.734375ms -[NX Daemon Server] - 2024-09-13T19:46:26.967Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.967Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.967Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.968Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.968Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.968Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.969Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.969Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.969Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.970Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.970Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.970Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.971Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.971Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.972Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.972Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.972Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.973Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.973Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.973Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.974Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.974Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.974Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.974Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.975Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.975Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:46:26.975Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.975Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.975Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.976Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.976Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.976Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.977Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.977Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.977Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.977Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.977Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.977Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.978Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.978Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.978Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.979Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.979Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.979Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.980Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.980Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.981Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.981Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.981Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.982Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.982Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.982Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.983Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.983Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.983Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.984Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:46:26.984Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:46:26.984Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.990Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.990Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.991Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.992Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.992Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.993Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.994Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.994Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.994Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:26.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:26.996Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:27.000Z - Time taken for 'build-project-configs' 48.32983299996704ms -[NX Daemon Server] - 2024-09-13T19:46:27.026Z - Time taken for 'total execution time for createProjectGraph()' 22.727083000005223ms -[NX Daemon Server] - 2024-09-13T19:46:27.854Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:27.855Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:27.858Z - Time taken for 'total for creating and serializing project graph' 0.8045840000268072ms -[NX Daemon Server] - 2024-09-13T19:46:27.860Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:27.860Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:46:27.868Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:46:27.868Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:46:27.868Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:27.869Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:27.913Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:46:27.914Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:27.914Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:46:27.914Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:27.914Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:27.914Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:27.916Z - Time taken for 'total for creating and serializing project graph' 0.07991600001696497ms -[NX Daemon Server] - 2024-09-13T19:46:27.916Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:27.916Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:46:27.919Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:27.919Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:27.920Z - Time taken for 'total for creating and serializing project graph' 0.04987500002607703ms -[NX Daemon Server] - 2024-09-13T19:46:27.921Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:27.921Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:46:27.923Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:46:40.992Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-13T19:46:40.993Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:46:40.993Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:46:40.993Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:40.993Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:46:40.993Z - Time taken for 'changed-projects' 0.08679099997971207ms -[NX Daemon Server] - 2024-09-13T19:46:41.094Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:46:41.095Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:46:41.095Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:46:41.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.114Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.115Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.115Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.115Z - Time taken for 'hash changed files from watcher' 0.9156250000232831ms -[NX Daemon Server] - 2024-09-13T19:46:41.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.117Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.118Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.119Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.121Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.123Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.124Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.124Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.125Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.125Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.125Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.126Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.127Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.127Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.127Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.128Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.128Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.129Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.130Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.131Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.132Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.132Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.133Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.133Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.134Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:46:41.134Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:46:41.134Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.139Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.139Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.139Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.140Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.140Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.141Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.141Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.141Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.142Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.142Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.142Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.142Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.142Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.142Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.143Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.143Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.143Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.145Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.145Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:46:41.145Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:41.150Z - Time taken for 'build-project-configs' 50.083915999974124ms -[NX Daemon Server] - 2024-09-13T19:46:41.178Z - Time taken for 'total execution time for createProjectGraph()' 25.340416999999434ms -[NX Daemon Server] - 2024-09-13T19:46:42.000Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:42.001Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:42.004Z - Time taken for 'total for creating and serializing project graph' 0.6325840000063181ms -[NX Daemon Server] - 2024-09-13T19:46:42.008Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:42.008Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-13T19:46:42.017Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:46:42.017Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:46:42.017Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:46:42.018Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:42.065Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:46:42.066Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:42.066Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:46:42.066Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:46:42.066Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:42.066Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:42.068Z - Time taken for 'total for creating and serializing project graph' 0.10945799993351102ms -[NX Daemon Server] - 2024-09-13T19:46:42.068Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:42.068Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:46:42.071Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:46:42.071Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:46:42.072Z - Time taken for 'total for creating and serializing project graph' 0.05916599999181926ms -[NX Daemon Server] - 2024-09-13T19:46:42.073Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:46:42.073Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:46:42.075Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:47:24.449Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-13T19:47:24.449Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:47:24.450Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:47:24.450Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:47:24.450Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:47:24.450Z - Time taken for 'changed-projects' 0.12025000003632158ms -[NX Daemon Server] - 2024-09-13T19:47:24.551Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:47:24.552Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:47:24.552Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:47:24.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.574Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.575Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.575Z - Time taken for 'hash changed files from watcher' 0.8826249999692664ms -[NX Daemon Server] - 2024-09-13T19:47:24.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.576Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.577Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.578Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.579Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.581Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.582Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.583Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:47:24.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.586Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.586Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.587Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.589Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.590Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.591Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.591Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.592Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.592Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.592Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.593Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.593Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.593Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.594Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:47:24.594Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:47:24.594Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.600Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.600Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.600Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.600Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.600Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.600Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.601Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.601Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.601Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.602Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.602Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.603Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.604Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.604Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.604Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.606Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.606Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:24.606Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:24.611Z - Time taken for 'build-project-configs' 54.1418330000015ms -[NX Daemon Server] - 2024-09-13T19:47:24.637Z - Time taken for 'total execution time for createProjectGraph()' 23.986000000033528ms -[NX Daemon Server] - 2024-09-13T19:47:25.458Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:47:25.459Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:47:25.463Z - Time taken for 'total for creating and serializing project graph' 0.7482079999754205ms -[NX Daemon Server] - 2024-09-13T19:47:25.466Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:47:25.466Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-13T19:47:25.475Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:47:25.475Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:47:25.475Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:25.476Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:47:25.523Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:47:25.523Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:47:25.523Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:47:25.523Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:47:25.523Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:47:25.523Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:47:25.525Z - Time taken for 'total for creating and serializing project graph' 0.08170800004154444ms -[NX Daemon Server] - 2024-09-13T19:47:25.525Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:47:25.526Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:47:25.528Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:47:25.528Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:47:25.529Z - Time taken for 'total for creating and serializing project graph' 0.05799999996088445ms -[NX Daemon Server] - 2024-09-13T19:47:25.530Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:47:25.530Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:47:25.532Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:47:33.816Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-13T19:47:33.817Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:47:33.817Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:47:33.817Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.817Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:47:33.817Z - Time taken for 'changed-projects' 0.10833399998955429ms -[NX Daemon Server] - 2024-09-13T19:47:33.919Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:47:33.922Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:47:33.922Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:47:33.941Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.941Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.941Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.942Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.942Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.942Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.942Z - Time taken for 'hash changed files from watcher' 0.514041000045836ms -[NX Daemon Server] - 2024-09-13T19:47:33.943Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.943Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.943Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.944Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.944Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.944Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.945Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.945Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.945Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.946Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.946Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.946Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.947Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.947Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.947Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.948Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.948Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.948Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.949Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.949Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.949Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.949Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.949Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.949Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.950Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.950Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.950Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.951Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.951Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.951Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.952Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.952Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.952Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.953Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.953Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.953Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.953Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.953Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.953Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.954Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.954Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.954Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.955Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.955Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.955Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.956Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.956Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.956Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.957Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.957Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.957Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.957Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.957Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.957Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.958Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.958Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.958Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.959Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.959Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.959Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.960Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.960Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.960Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.960Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:47:33.960Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:47:33.960Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.967Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.967Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.967Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.968Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.968Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.968Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.968Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.968Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.968Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.969Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.969Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.969Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.970Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.970Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.970Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.970Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.970Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.970Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.971Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.973Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.973Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:33.973Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.978Z - Time taken for 'build-project-configs' 51.94229199993424ms -[NX Daemon Server] - 2024-09-13T19:47:33.978Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-13T19:47:33.979Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:47:33.979Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:47:33.979Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:33.979Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:47:33.979Z - Time taken for 'changed-projects' 0.03983300004620105ms -[NX Daemon Server] - 2024-09-13T19:47:34.004Z - Time taken for 'total execution time for createProjectGraph()' 23.897374999942258ms -[NX Daemon Server] - 2024-09-13T19:47:34.181Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:47:34.181Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-13T19:47:34.181Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:47:34.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.197Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.198Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.198Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:47:34.198Z - Time taken for 'hash changed files from watcher' 0.49841599992942065ms -[NX Daemon Server] - 2024-09-13T19:47:34.198Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.199Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.199Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:47:34.199Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.200Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.200Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:47:34.200Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.200Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.200Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.201Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.202Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.203Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.204Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.204Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.204Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.204Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.204Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.204Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.205Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.205Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.205Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.206Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.206Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.206Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.207Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.207Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.207Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.207Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.207Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.207Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.208Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.208Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.208Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.209Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.209Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.209Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.209Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.209Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.209Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.210Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.210Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.210Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.211Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.211Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.211Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.211Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.211Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.211Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.212Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.212Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.212Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.212Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.213Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.213Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:47:34.213Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.213Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.213Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.214Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.214Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.214Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.214Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.214Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.214Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.215Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.215Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.215Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.216Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.216Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.216Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.216Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.216Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.216Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.217Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.217Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.217Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.218Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.218Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.218Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.218Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.218Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:47:34.218Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:47:34.224Z - Time taken for 'build-project-configs' 39.20620799995959ms -[NX Daemon Server] - 2024-09-13T19:47:34.246Z - Time taken for 'total execution time for createProjectGraph()' 18.100500000058673ms -[NX Daemon Server] - 2024-09-13T19:47:34.987Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:47:34.988Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:47:34.991Z - Time taken for 'total for creating and serializing project graph' 0.5829999999841675ms -[NX Daemon Server] - 2024-09-13T19:47:34.997Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:47:34.997Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 9. -[NX Daemon Server] - 2024-09-13T19:47:35.003Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:47:35.004Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:47:35.004Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:47:35.004Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:47:35.045Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:47:35.045Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:47:35.045Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:47:35.045Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:47:35.045Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:47:35.045Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:47:35.047Z - Time taken for 'total for creating and serializing project graph' 0.0783750000409782ms -[NX Daemon Server] - 2024-09-13T19:47:35.048Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:47:35.048Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:47:35.051Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:47:35.051Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:47:35.052Z - Time taken for 'total for creating and serializing project graph' 0.08129200001712888ms -[NX Daemon Server] - 2024-09-13T19:47:35.053Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:47:35.053Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:47:35.055Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:48:46.244Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:48:46.245Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:48:46.245Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T19:48:46.247Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:48:46.248Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:48:46.251Z - Time taken for 'total for creating and serializing project graph' 0.5546670000767335ms -[NX Daemon Server] - 2024-09-13T19:48:46.253Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:48:46.253Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:48:46.347Z - [WATCHER]: tsconfig.base.json was modified -[NX Daemon Server] - 2024-09-13T19:48:46.348Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:48:46.348Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:48:46.348Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.348Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:48:46.349Z - Time taken for 'changed-projects' 0.25404200004413724ms -[NX Daemon Server] - 2024-09-13T19:48:46.450Z - [WATCHER]: .nx/workspace-data/d/server-process.json was modified -[NX Daemon Server] - 2024-09-13T19:48:46.450Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:48:46.451Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:48:46.451Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:48:46.451Z - Time taken for 'changed-projects' 0.1349159999517724ms -[NX Daemon Server] - 2024-09-13T19:48:46.452Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:48:46.452Z - [REQUEST]: tsconfig.base.json,.nx/workspace-data/d/server-process.json -[NX Daemon Server] - 2024-09-13T19:48:46.452Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:48:46.466Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.466Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.466Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.467Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.467Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.467Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.467Z - Time taken for 'hash changed files from watcher' 0.7545829999726266ms -[NX Daemon Server] - 2024-09-13T19:48:46.468Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.468Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.468Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.469Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.469Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.470Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.470Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.470Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.471Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.472Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:48:46.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.472Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.473Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.473Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.474Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.474Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.474Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.475Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.475Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.475Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.475Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.475Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.475Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.476Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.476Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.476Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.477Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.477Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.477Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.478Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.478Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.478Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.478Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.478Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.478Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.479Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.479Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.479Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.480Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.482Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.483Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.484Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:48:46.484Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:48:46.484Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.491Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.493Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.494Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.495Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.495Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.496Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.496Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.496Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.497Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.497Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.497Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.498Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.498Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.498Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:46.498Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:46.503Z - Time taken for 'build-project-configs' 46.842084000003524ms -[NX Daemon Server] - 2024-09-13T19:48:46.529Z - Time taken for 'total execution time for createProjectGraph()' 23.663082999992184ms -[NX Daemon Server] - 2024-09-13T19:48:47.095Z - [WATCHER]: 0 file(s) created or restored, 4 file(s) modified, 0 file(s) deleted -[NX Daemon Server] - 2024-09-13T19:48:47.095Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:48:47.095Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:48:47.095Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.095Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:48:47.095Z - Time taken for 'changed-projects' 0.04587500006891787ms -[NX Daemon Server] - 2024-09-13T19:48:47.149Z - [WATCHER]: 0 file(s) created or restored, 3 file(s) modified, 0 file(s) deleted -[NX Daemon Server] - 2024-09-13T19:48:47.149Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:48:47.150Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:48:47.150Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:48:47.150Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:48:47.150Z - Time taken for 'changed-projects' 0.16654100001323968ms -[NX Daemon Server] - 2024-09-13T19:48:47.203Z - [WATCHER]: libs/native-federation/src/utils/angular-esbuild-adapter.ts was modified -[NX Daemon Server] - 2024-09-13T19:48:47.203Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:48:47.203Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:48:47.203Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.204Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:48:47.204Z - Time taken for 'changed-projects' 0.22091699996963143ms -[NX Daemon Server] - 2024-09-13T19:48:47.263Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:48:47.297Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:48:47.297Z - [REQUEST]: libs/native-federation-node/src/lib/node/import-map-store.ts,libs/native-federation-node/src/lib/node/init-node-federation.ts,libs/native-federation-node/src/lib/node/federation-resolver.ts,libs/native-federation-node/src/lib/utils/import-map-utils.js,libs/native-federation-runtime/src/lib/init-federation.ts,libs/native-federation-runtime/tsconfig.json,libs/native-federation/src/builders/build/builder.ts,libs/native-federation/src/utils/angular-esbuild-adapter.ts -[NX Daemon Server] - 2024-09-13T19:48:47.297Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:48:47.313Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.313Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.313Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.314Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.314Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.314Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.314Z - Time taken for 'hash changed files from watcher' 0.8947499999776483ms -[NX Daemon Server] - 2024-09-13T19:48:47.315Z - [WATCHER]: tsconfig.base.json was modified -[NX Daemon Server] - 2024-09-13T19:48:47.315Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:48:47.315Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:48:47.315Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.315Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:48:47.316Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.316Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.316Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.316Z - Time taken for 'changed-projects' 0.06241699995007366ms -[NX Daemon Server] - 2024-09-13T19:48:47.317Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.317Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.317Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.318Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.318Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.318Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.318Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.318Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.318Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.319Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.319Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.319Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.320Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.320Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.320Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.321Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.321Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.321Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.322Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.322Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.322Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.322Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.322Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.322Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.323Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.323Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.323Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.324Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.324Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.324Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.324Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.324Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.324Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.325Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.325Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.325Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.326Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.326Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.326Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.326Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.326Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.326Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.327Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.327Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.327Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.328Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.328Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.328Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.329Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.329Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.329Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:48:47.330Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.330Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.330Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.331Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.331Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.331Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.332Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.332Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.332Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.333Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:48:47.333Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:48:47.333Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.337Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.337Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.337Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.338Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.338Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.338Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.338Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.338Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.338Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.339Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.339Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.339Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.342Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.342Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.342Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.342Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.342Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.342Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.343Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.343Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.343Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.345Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.345Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.345Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.351Z - Time taken for 'build-project-configs' 49.6277499999851ms -[NX Daemon Server] - 2024-09-13T19:48:47.376Z - Time taken for 'total execution time for createProjectGraph()' 21.63004100008402ms -[NX Daemon Server] - 2024-09-13T19:48:47.716Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:48:47.716Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:48:47.716Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:48:47.722Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.722Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.722Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.723Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.723Z - Time taken for 'hash changed files from watcher' 0.24349999998230487ms -[NX Daemon Server] - 2024-09-13T19:48:47.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.723Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.724Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.724Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.725Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.725Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.725Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.726Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.726Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.727Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.727Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.728Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.728Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.728Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.728Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.728Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.728Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.729Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.729Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.730Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.730Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.730Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.730Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.730Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.730Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.731Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.731Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.731Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.731Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.731Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.731Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.732Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.732Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.732Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.732Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.732Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.732Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.733Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.733Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.733Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.733Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.733Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.733Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.734Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.734Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.734Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.734Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.734Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.734Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.734Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.735Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.735Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:48:47.735Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.735Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.735Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.735Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.735Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.735Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.736Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.736Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.736Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.736Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.736Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.736Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.737Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.737Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.737Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.737Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.737Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:48:47.737Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:48:47.742Z - Time taken for 'build-project-configs' 23.10475000005681ms -[NX Daemon Server] - 2024-09-13T19:48:47.755Z - Time taken for 'total execution time for createProjectGraph()' 10.961832999950275ms -[NX Daemon Server] - 2024-09-13T19:48:48.320Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:48:48.321Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:48:48.324Z - Time taken for 'total for creating and serializing project graph' 0.40187499998137355ms -[NX Daemon Server] - 2024-09-13T19:48:48.326Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:48:48.326Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:48:48.332Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:48:48.333Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:48:48.333Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:48:48.333Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:48:48.374Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:48:48.375Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:48:48.375Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:48:48.375Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:48:48.375Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:48:48.375Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:48:48.377Z - Time taken for 'total for creating and serializing project graph' 0.08154200005810708ms -[NX Daemon Server] - 2024-09-13T19:48:48.378Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:48:48.378Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:48:48.380Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:48:48.380Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:48:48.381Z - Time taken for 'total for creating and serializing project graph' 0.06737499998416752ms -[NX Daemon Server] - 2024-09-13T19:48:48.386Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:48:48.386Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T19:48:48.388Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:49:57.736Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T19:49:57.736Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:49:57.736Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:49:57.736Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.737Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:49:57.737Z - Time taken for 'changed-projects' 0.07016599993221462ms -[NX Daemon Server] - 2024-09-13T19:49:57.839Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:49:57.839Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T19:49:57.839Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:49:57.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.852Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.853Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.853Z - Time taken for 'hash changed files from watcher' 0.6347079999977723ms -[NX Daemon Server] - 2024-09-13T19:49:57.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.854Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.855Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.856Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.857Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.857Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.858Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.859Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.860Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.860Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.862Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.862Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.862Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.863Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.863Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.863Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.864Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.864Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.865Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.865Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.865Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.866Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.866Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.867Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.867Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.867Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.868Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.868Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.868Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.868Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.868Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.868Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.869Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.869Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.869Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.870Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:49:57.870Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:49:57.870Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.877Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.877Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.877Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.877Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.878Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.878Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:49:57.879Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.879Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.879Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.879Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.879Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.879Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.880Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.880Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.880Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.881Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.881Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.881Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.882Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.882Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.882Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.884Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.884Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:49:57.884Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:57.889Z - Time taken for 'build-project-configs' 45.243374999961816ms -[NX Daemon Server] - 2024-09-13T19:49:57.913Z - Time taken for 'total execution time for createProjectGraph()' 21.920833999989554ms -[NX Daemon Server] - 2024-09-13T19:49:58.742Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:49:58.743Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:49:58.746Z - Time taken for 'total for creating and serializing project graph' 0.296875ms -[NX Daemon Server] - 2024-09-13T19:49:58.748Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:49:58.748Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-13T19:49:58.754Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:49:58.754Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:49:58.754Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:49:58.755Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:49:58.794Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:49:58.794Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:49:58.794Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:49:58.794Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:49:58.794Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:49:58.794Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:49:58.796Z - Time taken for 'total for creating and serializing project graph' 0.07791699992958456ms -[NX Daemon Server] - 2024-09-13T19:49:58.797Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:49:58.797Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:49:58.799Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:49:58.800Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:49:58.801Z - Time taken for 'total for creating and serializing project graph' 0.09449999989010394ms -[NX Daemon Server] - 2024-09-13T19:49:58.802Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:49:58.802Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:49:58.804Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:50:02.058Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T19:50:02.058Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:50:02.058Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:50:02.058Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.059Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:50:02.059Z - Time taken for 'changed-projects' 0.07899999991059303ms -[NX Daemon Server] - 2024-09-13T19:50:02.161Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:50:02.161Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T19:50:02.161Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:50:02.177Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.177Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.177Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.178Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.178Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.178Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.178Z - Time taken for 'hash changed files from watcher' 0.6620419999817386ms -[NX Daemon Server] - 2024-09-13T19:50:02.179Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.179Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.179Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.179Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.179Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.180Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:50:02.180Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.180Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.180Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.181Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.182Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.182Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:50:02.182Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.182Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.182Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.183Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.183Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.183Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.184Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.184Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.184Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.185Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.185Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.186Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.187Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.188Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.188Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.188Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.189Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.189Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.189Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.189Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.189Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.189Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.190Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.190Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.190Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.191Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.192Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.192Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.192Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.192Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.193Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.193Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.193Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.194Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.194Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.195Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:50:02.195Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:50:02.195Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.201Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.202Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.203Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.203Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.204Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.204Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.204Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.205Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.205Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.205Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.205Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.205Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.205Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.207Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.207Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:50:02.207Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:02.212Z - Time taken for 'build-project-configs' 46.60999999998603ms -[NX Daemon Server] - 2024-09-13T19:50:02.240Z - Time taken for 'total execution time for createProjectGraph()' 25.603249999927357ms -[NX Daemon Server] - 2024-09-13T19:50:03.063Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:50:03.063Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:50:03.067Z - Time taken for 'total for creating and serializing project graph' 0.23495799989905208ms -[NX Daemon Server] - 2024-09-13T19:50:03.076Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:50:03.076Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 13. -[NX Daemon Server] - 2024-09-13T19:50:03.081Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:50:03.081Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:50:03.081Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:50:03.082Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:50:03.116Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:50:03.117Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:50:03.117Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:50:03.117Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:50:03.117Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:50:03.117Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:50:03.119Z - Time taken for 'total for creating and serializing project graph' 0.09308299992699176ms -[NX Daemon Server] - 2024-09-13T19:50:03.119Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:50:03.119Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:50:03.122Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:50:03.122Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:50:03.123Z - Time taken for 'total for creating and serializing project graph' 0.06616699998266995ms -[NX Daemon Server] - 2024-09-13T19:50:03.124Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:50:03.124Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:50:03.126Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:57:35.839Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:57:35.854Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:57:35.854Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:57:35.855Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:57:35.855Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:57:35.855Z - Time taken for 'changed-projects' 0.13529099989682436ms -[NX Daemon Server] - 2024-09-13T19:57:35.958Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:57:35.958Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-13T19:57:35.958Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:57:35.981Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.981Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.981Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.982Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.982Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.982Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.982Z - Time taken for 'hash changed files from watcher' 0.828042000066489ms -[NX Daemon Server] - 2024-09-13T19:57:35.983Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.983Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.983Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.984Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.984Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.984Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.985Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.985Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.985Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.986Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.986Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.986Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.987Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.987Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.987Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.988Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.988Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.988Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.989Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.989Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.990Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.991Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.991Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.992Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.993Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.994Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.994Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.994Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.995Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.995Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.996Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.997Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.997Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.997Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.998Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.998Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.998Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.999Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.999Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.999Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:35.999Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.999Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:35.999Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.000Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.000Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.000Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.001Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:57:36.001Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:57:36.001Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.009Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.011Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.011Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.011Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.012Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.012Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.013Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.013Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.016Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.016Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:36.016Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.021Z - Time taken for 'build-project-configs' 56.71762500004843ms -[NX Daemon Server] - 2024-09-13T19:57:36.047Z - Time taken for 'total execution time for createProjectGraph()' 23.429166000103578ms -[NX Daemon Server] - 2024-09-13T19:57:36.862Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:57:36.863Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:57:36.866Z - Time taken for 'total for creating and serializing project graph' 0.640707999933511ms -[NX Daemon Server] - 2024-09-13T19:57:36.871Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:57:36.871Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-13T19:57:36.878Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:57:36.878Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:57:36.878Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:36.879Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:57:36.920Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:57:36.921Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:57:36.921Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:57:36.921Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:57:36.921Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:57:36.921Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:57:36.923Z - Time taken for 'total for creating and serializing project graph' 0.08287500008009374ms -[NX Daemon Server] - 2024-09-13T19:57:36.924Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:57:36.924Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:57:36.926Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:57:36.926Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:57:36.928Z - Time taken for 'total for creating and serializing project graph' 0.06687500001862645ms -[NX Daemon Server] - 2024-09-13T19:57:36.929Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:57:36.929Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:57:36.931Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:57:39.903Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:57:39.904Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:57:39.904Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:57:39.904Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:39.904Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:57:39.904Z - Time taken for 'changed-projects' 0.10266599990427494ms -[NX Daemon Server] - 2024-09-13T19:57:40.006Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:57:40.006Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-13T19:57:40.007Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:57:40.022Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.022Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.022Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.023Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.023Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.023Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.023Z - Time taken for 'hash changed files from watcher' 0.6094999997876585ms -[NX Daemon Server] - 2024-09-13T19:57:40.024Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.024Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.024Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.025Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.025Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.025Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.026Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.026Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.026Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.027Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.028Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.029Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.030Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.030Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.031Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.033Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.033Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.033Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.034Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.034Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.035Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.035Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.036Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.037Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.038Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.038Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.038Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.039Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.040Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.040Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.041Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:57:40.041Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:57:40.041Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.047Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.047Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.047Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.048Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.049Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.049Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.049Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.050Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.051Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.051Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.051Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.051Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:57:40.053Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:57:40.059Z - Time taken for 'build-project-configs' 47.27362500014715ms -[NX Daemon Server] - 2024-09-13T19:57:40.084Z - Time taken for 'total execution time for createProjectGraph()' 23.27916600019671ms -[NX Daemon Server] - 2024-09-13T19:57:40.912Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:57:40.912Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:57:40.916Z - Time taken for 'total for creating and serializing project graph' 0.5489590000361204ms -[NX Daemon Server] - 2024-09-13T19:57:40.926Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:57:40.926Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 14. -[NX Daemon Server] - 2024-09-13T19:57:40.932Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:57:40.933Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:57:40.933Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:57:40.934Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:57:40.969Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:57:40.969Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:57:40.969Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:57:40.969Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:57:40.970Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:57:40.970Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:57:40.971Z - Time taken for 'total for creating and serializing project graph' 0.07891699997708201ms -[NX Daemon Server] - 2024-09-13T19:57:40.972Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:57:40.972Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:57:40.974Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:57:40.975Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:57:40.976Z - Time taken for 'total for creating and serializing project graph' 0.07012499985285103ms -[NX Daemon Server] - 2024-09-13T19:57:40.977Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:57:40.977Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:57:40.979Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:58:06.504Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:58:06.504Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:58:06.504Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:58:06.504Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.504Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:58:06.504Z - Time taken for 'changed-projects' 0.09895800007507205ms -[NX Daemon Server] - 2024-09-13T19:58:06.605Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:58:06.606Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-13T19:58:06.606Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:58:06.621Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.622Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.622Z - Handled HASH_GLOB. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:58:06.623Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.623Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.623Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.623Z - Time taken for 'hash changed files from watcher' 0.7415420000907034ms -[NX Daemon Server] - 2024-09-13T19:58:06.624Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.627Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.627Z - Handled HASH_GLOB. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:58:06.628Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.628Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.628Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.629Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.630Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.630Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.630Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.631Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.631Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.631Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.631Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.631Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.631Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.632Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.632Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.632Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.633Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.633Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.633Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.634Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.634Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.634Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.634Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.634Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.634Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.635Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.635Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.635Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.636Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.636Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.636Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.637Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.637Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.638Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.638Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.638Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.639Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.639Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.640Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.640Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:58:06.640Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.640Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.640Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.641Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.641Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.641Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.641Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.641Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.641Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.642Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.642Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.642Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.643Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:58:06.643Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:58:06.643Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.650Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.651Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.651Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.651Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.652Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.652Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.652Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.654Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.654Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.654Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.654Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.655Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.655Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:58:06.655Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.655Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.655Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.656Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.656Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.656Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.658Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.658Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.658Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.662Z - Time taken for 'build-project-configs' 52.56020800000988ms -[NX Daemon Server] - 2024-09-13T19:58:06.680Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:58:06.680Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:58:06.680Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:58:06.680Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.680Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:58:06.680Z - Time taken for 'changed-projects' 0.03920899983495474ms -[NX Daemon Server] - 2024-09-13T19:58:06.688Z - Time taken for 'total execution time for createProjectGraph()' 23.04329099995084ms -[NX Daemon Server] - 2024-09-13T19:58:06.882Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:58:06.882Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-13T19:58:06.882Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:58:06.897Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.897Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.897Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.898Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.898Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.898Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.898Z - Time taken for 'hash changed files from watcher' 0.6161250001750886ms -[NX Daemon Server] - 2024-09-13T19:58:06.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.899Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.900Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.901Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.901Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.902Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.904Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.904Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.904Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.905Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.905Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.906Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.906Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.907Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.907Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.907Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.908Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.908Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.908Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.908Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.908Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.908Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.909Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.909Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.909Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.910Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.910Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.911Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.911Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.911Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.912Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.912Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.912Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.912Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.912Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.912Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.913Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.913Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.913Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.914Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.914Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.914Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.914Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.914Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.914Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.915Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.916Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.916Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.916Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.916Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.916Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.916Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.917Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.918Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.918Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.919Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.919Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.919Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.920Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.920Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:06.920Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:06.926Z - Time taken for 'build-project-configs' 39.28000000002794ms -[NX Daemon Server] - 2024-09-13T19:58:06.943Z - Time taken for 'total execution time for createProjectGraph()' 14.191458000103012ms -[NX Daemon Server] - 2024-09-13T19:58:07.688Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:58:07.689Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:58:07.693Z - Time taken for 'total for creating and serializing project graph' 0.6170420001726598ms -[NX Daemon Server] - 2024-09-13T19:58:07.696Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:58:07.696Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-13T19:58:07.703Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:58:07.704Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:58:07.704Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:58:07.705Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:58:07.748Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:58:07.748Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:58:07.749Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:58:07.749Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:58:07.749Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:58:07.749Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:58:07.751Z - Time taken for 'total for creating and serializing project graph' 0.11608300008811057ms -[NX Daemon Server] - 2024-09-13T19:58:07.752Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:58:07.752Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:58:07.754Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:58:07.754Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:58:07.756Z - Time taken for 'total for creating and serializing project graph' 0.07712500006891787ms -[NX Daemon Server] - 2024-09-13T19:58:07.757Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:58:07.757Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:58:07.759Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:58:47.308Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:58:47.309Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:58:47.309Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:58:47.309Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.309Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:58:47.309Z - Time taken for 'changed-projects' 0.16554099996574223ms -[NX Daemon Server] - 2024-09-13T19:58:47.411Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:58:47.411Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-13T19:58:47.411Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:58:47.427Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.427Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.427Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.428Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.428Z - Time taken for 'hash changed files from watcher' 0.7141249999403954ms -[NX Daemon Server] - 2024-09-13T19:58:47.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.428Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.429Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.429Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.429Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.429Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.429Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.429Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.430Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.430Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.430Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.430Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.431Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.431Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:58:47.431Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.431Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.431Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.432Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.432Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.432Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.432Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.432Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.432Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.433Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.433Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.433Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.434Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.434Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.434Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.434Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.434Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.434Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.435Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.435Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.435Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.436Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.436Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.436Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.437Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.437Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.437Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.438Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.438Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.438Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.439Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.439Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.439Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.439Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.439Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.439Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.440Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.440Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.440Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.440Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.440Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.440Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.441Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.441Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.441Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.442Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.442Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.442Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.442Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:58:47.442Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:58:47.442Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.449Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.449Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.449Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.449Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.449Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.449Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.450Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.450Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.450Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.450Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.450Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.450Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.451Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.451Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.452Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.452Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:58:47.452Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.452Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.452Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:58:47.454Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:47.458Z - Time taken for 'build-project-configs' 42.75112499995157ms -[NX Daemon Server] - 2024-09-13T19:58:47.482Z - Time taken for 'total execution time for createProjectGraph()' 20.453375000040978ms -[NX Daemon Server] - 2024-09-13T19:58:48.317Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:58:48.317Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:58:48.320Z - Time taken for 'total for creating and serializing project graph' 0.5925420001149178ms -[NX Daemon Server] - 2024-09-13T19:58:48.324Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:58:48.324Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-13T19:58:48.332Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:58:48.332Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:58:48.332Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:58:48.334Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:58:48.382Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:58:48.382Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:58:48.382Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:58:48.383Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:58:48.383Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:58:48.383Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:58:48.384Z - Time taken for 'total for creating and serializing project graph' 0.08058300008997321ms -[NX Daemon Server] - 2024-09-13T19:58:48.385Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:58:48.385Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:58:48.387Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:58:48.387Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:58:48.389Z - Time taken for 'total for creating and serializing project graph' 0.052875000052154064ms -[NX Daemon Server] - 2024-09-13T19:58:48.390Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:58:48.390Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T19:58:48.392Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:59:04.206Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:59:04.207Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:59:04.207Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:59:04.207Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.207Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:59:04.207Z - Time taken for 'changed-projects' 0.0923329999204725ms -[NX Daemon Server] - 2024-09-13T19:59:04.308Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:59:04.310Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-13T19:59:04.310Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:59:04.328Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.328Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.328Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.330Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.330Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.330Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.330Z - Time taken for 'hash changed files from watcher' 0.8402909999713302ms -[NX Daemon Server] - 2024-09-13T19:59:04.331Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.331Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.331Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.332Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.332Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.332Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.332Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.332Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.332Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.333Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.333Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.333Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.334Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.334Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.334Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.335Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.335Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.335Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.336Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.336Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.336Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.337Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.337Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.337Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.337Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.338Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.338Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:59:04.338Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.338Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.338Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.339Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.339Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.339Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.340Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.340Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.340Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.341Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.341Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.341Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.341Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.342Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.342Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:59:04.342Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.342Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.342Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.343Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.343Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.343Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.344Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.344Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.344Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.345Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.345Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.345Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.345Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.345Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.345Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.346Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.346Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.346Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.347Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.347Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.347Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.348Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T19:59:04.348Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T19:59:04.348Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.355Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.355Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.355Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.355Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.355Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.355Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.356Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.356Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.356Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.356Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.357Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.357Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:59:04.357Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.357Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.357Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.358Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.358Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.358Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.358Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.358Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.358Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.361Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.361Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.361Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.365Z - Time taken for 'build-project-configs' 50.80575000005774ms -[NX Daemon Server] - 2024-09-13T19:59:04.367Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:59:04.367Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:59:04.367Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:59:04.367Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.367Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:59:04.367Z - Time taken for 'changed-projects' 0.03791700000874698ms -[NX Daemon Server] - 2024-09-13T19:59:04.392Z - Time taken for 'total execution time for createProjectGraph()' 23.40512500004843ms -[NX Daemon Server] - 2024-09-13T19:59:04.527Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-13T19:59:04.527Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T19:59:04.527Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T19:59:04.527Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.527Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T19:59:04.527Z - Time taken for 'changed-projects' 0.08429200015962124ms -[NX Daemon Server] - 2024-09-13T19:59:04.569Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T19:59:04.569Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-13T19:59:04.569Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T19:59:04.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.584Z - Time taken for 'hash changed files from watcher' 0.612457999959588ms -[NX Daemon Server] - 2024-09-13T19:59:04.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.586Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.587Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T19:59:04.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.590Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.591Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.592Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.592Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.592Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.593Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.593Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.593Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.593Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.593Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.593Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.594Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.594Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.594Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.595Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.595Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.595Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.595Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.595Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.595Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.596Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.596Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.596Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.598Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.598Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.598Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.599Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.599Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.599Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.599Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.599Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.599Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.600Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.600Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.600Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.601Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.601Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.601Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.602Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.602Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.603Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.603Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.604Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.604Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.604Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.605Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.605Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.605Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.605Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.605Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.605Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.606Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.606Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.606Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.607Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.607Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T19:59:04.607Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:04.613Z - Time taken for 'build-project-configs' 39.13195799989626ms -[NX Daemon Server] - 2024-09-13T19:59:04.633Z - Time taken for 'total execution time for createProjectGraph()' 17.80158400000073ms -[NX Daemon Server] - 2024-09-13T19:59:05.535Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:59:05.536Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:59:05.538Z - Time taken for 'total for creating and serializing project graph' 0.5350830000825226ms -[NX Daemon Server] - 2024-09-13T19:59:05.544Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:59:05.544Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-13T19:59:05.552Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T19:59:05.552Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T19:59:05.552Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T19:59:05.553Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:59:05.597Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T19:59:05.598Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:59:05.598Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T19:59:05.598Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T19:59:05.598Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:59:05.598Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:59:05.599Z - Time taken for 'total for creating and serializing project graph' 0.07783300010487437ms -[NX Daemon Server] - 2024-09-13T19:59:05.600Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:59:05.600Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:59:05.603Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T19:59:05.603Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T19:59:05.604Z - Time taken for 'total for creating and serializing project graph' 0.07474999991245568ms -[NX Daemon Server] - 2024-09-13T19:59:05.605Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T19:59:05.605Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T19:59:05.608Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:00:32.451Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:00:32.452Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:00:32.452Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:00:32.452Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.453Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:00:32.453Z - Time taken for 'changed-projects' 0.1511250000912696ms -[NX Daemon Server] - 2024-09-13T20:00:32.555Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:00:32.555Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:00:32.556Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:00:32.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.574Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.575Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.575Z - Time taken for 'hash changed files from watcher' 1.7097080000676215ms -[NX Daemon Server] - 2024-09-13T20:00:32.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.576Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.577Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.578Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.579Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.579Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.581Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.582Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.583Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.585Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.586Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.587Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.587Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.590Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.590Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.591Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.592Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.592Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.592Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.593Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:00:32.593Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:00:32.593Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.599Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.599Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.599Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.600Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.600Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.600Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.601Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.601Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.601Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.601Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.601Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.601Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.602Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.603Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.603Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:32.605Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.606Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:32.606Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:00:32.610Z - Time taken for 'build-project-configs' 48.810958000132814ms -[NX Daemon Server] - 2024-09-13T20:00:32.635Z - Time taken for 'total execution time for createProjectGraph()' 21.80716699990444ms -[NX Daemon Server] - 2024-09-13T20:00:33.460Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:33.460Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:33.464Z - Time taken for 'total for creating and serializing project graph' 0.4317920000758022ms -[NX Daemon Server] - 2024-09-13T20:00:33.466Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:33.466Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:00:33.473Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:00:33.473Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:00:33.473Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:33.474Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:33.517Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:00:33.518Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:33.518Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:00:33.518Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:33.518Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:33.518Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:33.519Z - Time taken for 'total for creating and serializing project graph' 0.07341700000688434ms -[NX Daemon Server] - 2024-09-13T20:00:33.520Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:33.520Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:00:33.523Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:33.523Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:33.524Z - Time taken for 'total for creating and serializing project graph' 0.06887500011362135ms -[NX Daemon Server] - 2024-09-13T20:00:33.529Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:33.529Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:00:33.531Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:00:45.259Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:00:45.259Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:00:45.259Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:00:45.259Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.259Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:00:45.259Z - Time taken for 'changed-projects' 0.06399999978020787ms -[NX Daemon Server] - 2024-09-13T20:00:45.361Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:00:45.362Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:00:45.362Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:00:45.377Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.377Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.377Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.378Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.378Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.378Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.378Z - Time taken for 'hash changed files from watcher' 0.6044169999659061ms -[NX Daemon Server] - 2024-09-13T20:00:45.379Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.379Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.379Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.380Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.380Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.380Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.381Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.381Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.381Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.382Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.382Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.382Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.383Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.383Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.383Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.384Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.384Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.384Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.385Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.385Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.385Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.385Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.385Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.385Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.386Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.386Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.386Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.387Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.387Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.387Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.388Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.388Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.388Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.388Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.389Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.389Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:00:45.389Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.389Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.389Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.390Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.390Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.390Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.391Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.391Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.391Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.391Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.391Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.391Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.392Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.392Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.392Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.393Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.393Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.393Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.394Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.394Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.394Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.394Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.394Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.394Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.395Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.395Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.395Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.396Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:00:45.396Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:00:45.396Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.402Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.402Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.402Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.403Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.403Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.403Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.404Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.404Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.405Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.405Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.405Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.406Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.406Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.406Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.406Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.406Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.406Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.408Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.408Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:45.408Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:45.413Z - Time taken for 'build-project-configs' 46.90304199978709ms -[NX Daemon Server] - 2024-09-13T20:00:45.436Z - Time taken for 'total execution time for createProjectGraph()' 20.17825000011362ms -[NX Daemon Server] - 2024-09-13T20:00:46.268Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:46.268Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:46.272Z - Time taken for 'total for creating and serializing project graph' 0.5615000000689179ms -[NX Daemon Server] - 2024-09-13T20:00:46.276Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:46.276Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2024-09-13T20:00:46.283Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:00:46.284Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:00:46.284Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:00:46.284Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:46.328Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:00:46.328Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:46.328Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:00:46.328Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:46.328Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:46.328Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:46.330Z - Time taken for 'total for creating and serializing project graph' 0.07945800013840199ms -[NX Daemon Server] - 2024-09-13T20:00:46.331Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:46.331Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T20:00:46.333Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:46.333Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:46.335Z - Time taken for 'total for creating and serializing project graph' 0.08137500006705523ms -[NX Daemon Server] - 2024-09-13T20:00:46.338Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:46.338Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T20:00:46.340Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:00:58.427Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:00:58.427Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:00:58.427Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:00:58.427Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.427Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:00:58.427Z - Time taken for 'changed-projects' 0.10883400007151067ms -[NX Daemon Server] - 2024-09-13T20:00:58.529Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:00:58.530Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:00:58.530Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:00:58.550Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.550Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.550Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.551Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.551Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.551Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.551Z - Time taken for 'hash changed files from watcher' 0.7330420000944287ms -[NX Daemon Server] - 2024-09-13T20:00:58.552Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.552Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.552Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.553Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.553Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.554Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:00:58.555Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.555Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.555Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.556Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.556Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.556Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.557Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.557Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.557Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.558Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.558Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.559Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.559Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:00:58.559Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.559Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.559Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.560Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.560Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.560Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.561Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.561Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.561Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.562Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.562Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.562Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.563Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.563Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.563Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.564Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.564Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.565Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.565Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.565Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.566Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.566Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.566Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.567Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.567Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.567Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.568Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.568Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.569Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.569Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.569Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.570Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.570Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.570Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.571Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:00:58.571Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:00:58.571Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.577Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.577Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.578Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.579Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.580Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.581Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:00:58.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:58.588Z - Time taken for 'build-project-configs' 53.373458000132814ms -[NX Daemon Server] - 2024-09-13T20:00:58.614Z - Time taken for 'total execution time for createProjectGraph()' 23.543042000150308ms -[NX Daemon Server] - 2024-09-13T20:00:59.435Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:59.436Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:59.439Z - Time taken for 'total for creating and serializing project graph' 0.5716250000987202ms -[NX Daemon Server] - 2024-09-13T20:00:59.442Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:59.442Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:00:59.449Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:00:59.449Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:00:59.449Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:00:59.450Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:59.491Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:00:59.491Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:59.491Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:00:59.491Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:00:59.492Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:59.492Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:59.493Z - Time taken for 'total for creating and serializing project graph' 0.08004199992865324ms -[NX Daemon Server] - 2024-09-13T20:00:59.494Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:59.494Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:00:59.497Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:00:59.497Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:00:59.498Z - Time taken for 'total for creating and serializing project graph' 0.08416700013913214ms -[NX Daemon Server] - 2024-09-13T20:00:59.499Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:00:59.499Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:00:59.501Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:04.287Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:01:04.288Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:01:04.288Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:01:04.288Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.288Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:01:04.288Z - Time taken for 'changed-projects' 0.13025000016205013ms -[NX Daemon Server] - 2024-09-13T20:01:04.391Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:01:04.391Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:01:04.391Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:01:04.413Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.413Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.413Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.414Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.414Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.414Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.414Z - Time taken for 'hash changed files from watcher' 1.500082999933511ms -[NX Daemon Server] - 2024-09-13T20:01:04.415Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.415Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.415Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.416Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.416Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.416Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.417Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.417Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.417Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.418Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.418Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.418Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.419Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.419Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.419Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.420Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.420Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.420Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.421Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.421Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.421Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.422Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.422Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.422Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.423Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.423Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.423Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.423Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.424Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.424Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:04.424Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.424Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.424Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.425Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.425Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.425Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.426Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.426Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.426Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.426Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.426Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.426Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.427Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.427Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.427Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.428Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.428Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.429Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.429Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.429Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.430Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.430Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.430Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.431Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.431Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.431Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.431Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.432Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.432Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:04.432Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.432Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.432Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.433Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.433Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.433Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.434Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.434Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.434Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.434Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.434Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.434Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.435Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.435Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.435Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.436Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.436Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.436Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.436Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.436Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.436Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.437Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.437Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:04.437Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:04.444Z - Time taken for 'build-project-configs' 47.29012500005774ms -[NX Daemon Server] - 2024-09-13T20:01:04.469Z - Time taken for 'total execution time for createProjectGraph()' 22.81237500021234ms -[NX Daemon Server] - 2024-09-13T20:01:05.297Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:05.297Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:05.300Z - Time taken for 'total for creating and serializing project graph' 0.24262499995529652ms -[NX Daemon Server] - 2024-09-13T20:01:05.304Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:05.304Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-13T20:01:05.309Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:05.310Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:05.310Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:05.310Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:05.347Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:01:05.348Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:05.348Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:01:05.348Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:05.348Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:05.348Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:05.350Z - Time taken for 'total for creating and serializing project graph' 0.0808330001309514ms -[NX Daemon Server] - 2024-09-13T20:01:05.351Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:05.351Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T20:01:05.353Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:05.353Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:05.354Z - Time taken for 'total for creating and serializing project graph' 0.07441599993035197ms -[NX Daemon Server] - 2024-09-13T20:01:05.355Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:05.355Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:01:05.357Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:09.488Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:01:09.489Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:01:09.489Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:01:09.489Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.489Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:01:09.489Z - Time taken for 'changed-projects' 0.08379099983721972ms -[NX Daemon Server] - 2024-09-13T20:01:09.591Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:01:09.591Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:01:09.591Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:01:09.611Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.611Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.611Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.612Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.612Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.612Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.612Z - Time taken for 'hash changed files from watcher' 0.8861249999608845ms -[NX Daemon Server] - 2024-09-13T20:01:09.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.613Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.614Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.615Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.615Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.615Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.617Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.617Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.617Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.618Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.618Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.618Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.619Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.619Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.619Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.620Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.621Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.621Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:09.621Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.622Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.622Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:09.622Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.622Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.622Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.623Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.623Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.623Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.624Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.624Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.624Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.625Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.625Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.625Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.626Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.626Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.626Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.626Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.626Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.626Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.627Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.627Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.627Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.628Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.628Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.628Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.629Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.630Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.630Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.630Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.630Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.630Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.630Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.631Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.631Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.631Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.632Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:01:09.632Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:01:09.632Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.636Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.637Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:09.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.637Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.638Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.638Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.638Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.639Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.639Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.639Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.639Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.640Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.640Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.640Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.641Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.641Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.641Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.643Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.643Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:09.643Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:09.648Z - Time taken for 'build-project-configs' 51.970208999933675ms -[NX Daemon Server] - 2024-09-13T20:01:09.674Z - Time taken for 'total execution time for createProjectGraph()' 23.87783300015144ms -[NX Daemon Server] - 2024-09-13T20:01:10.495Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:10.495Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:10.498Z - Time taken for 'total for creating and serializing project graph' 0.2949999999254942ms -[NX Daemon Server] - 2024-09-13T20:01:10.500Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:10.500Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T20:01:10.505Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:10.506Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:10.506Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:10.506Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:10.544Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:01:10.544Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:10.544Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:10.544Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:10.545Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:10.545Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:10.547Z - Time taken for 'total for creating and serializing project graph' 0.08583299978636205ms -[NX Daemon Server] - 2024-09-13T20:01:10.547Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:10.547Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:01:10.550Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:10.550Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:10.551Z - Time taken for 'total for creating and serializing project graph' 0.05312500009313226ms -[NX Daemon Server] - 2024-09-13T20:01:10.552Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:10.552Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:01:10.554Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:11.647Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:01:11.647Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:01:11.647Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:01:11.647Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.647Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:01:11.647Z - Time taken for 'changed-projects' 0.046165999956429005ms -[NX Daemon Server] - 2024-09-13T20:01:11.749Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:01:11.749Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:01:11.749Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:01:11.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.765Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.766Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.766Z - Time taken for 'hash changed files from watcher' 0.629541999893263ms -[NX Daemon Server] - 2024-09-13T20:01:11.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.767Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.768Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.768Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.769Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.770Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.771Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.772Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.772Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.773Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.775Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.776Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:11.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.776Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.777Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.778Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.778Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.779Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.780Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.781Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.782Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.782Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.783Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:01:11.783Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:01:11.783Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.790Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.790Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.792Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.792Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.794Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.795Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.797Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:11.797Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:11.802Z - Time taken for 'build-project-configs' 48.43020799988881ms -[NX Daemon Server] - 2024-09-13T20:01:11.824Z - Time taken for 'total execution time for createProjectGraph()' 19.610916999867186ms -[NX Daemon Server] - 2024-09-13T20:01:12.655Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:12.655Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:12.659Z - Time taken for 'total for creating and serializing project graph' 0.5290000000968575ms -[NX Daemon Server] - 2024-09-13T20:01:12.661Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:12.661Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:01:12.669Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:12.669Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:12.669Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:12.670Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:12.710Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:01:12.710Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:12.710Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:12.711Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:12.711Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:12.711Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:12.713Z - Time taken for 'total for creating and serializing project graph' 0.08279199991375208ms -[NX Daemon Server] - 2024-09-13T20:01:12.716Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:12.716Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T20:01:12.719Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:12.719Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:12.720Z - Time taken for 'total for creating and serializing project graph' 0.08254200010560453ms -[NX Daemon Server] - 2024-09-13T20:01:12.721Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:12.721Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:01:12.723Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:22.473Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:01:22.473Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:01:22.473Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:01:22.473Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.473Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:01:22.473Z - Time taken for 'changed-projects' 0.11229199985973537ms -[NX Daemon Server] - 2024-09-13T20:01:22.575Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:01:22.576Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:01:22.576Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:01:22.597Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.599Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.599Z - Handled HASH_GLOB. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:01:22.600Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.600Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.600Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.600Z - Time taken for 'hash changed files from watcher' 1.11379100009799ms -[NX Daemon Server] - 2024-09-13T20:01:22.601Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.602Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:22.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.603Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:22.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.603Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.604Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.604Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.604Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.605Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.605Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.605Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.606Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.606Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.606Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.607Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.607Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.607Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.608Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.608Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.608Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.609Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.609Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.609Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.610Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.610Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.610Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.610Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.610Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.610Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.611Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.611Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.611Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.612Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.612Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.612Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.613Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.613Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.614Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.615Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.615Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.615Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.616Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.616Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.617Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.617Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.617Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.618Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.618Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.618Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.618Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.618Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.618Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.619Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.619Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.619Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.620Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.620Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.621Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.621Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.621Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.622Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.622Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.622Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.622Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.622Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.622Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.623Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.623Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.623Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.629Z - Time taken for 'build-project-configs' 48.372083000140265ms -[NX Daemon Server] - 2024-09-13T20:01:22.647Z - Time taken for 'total execution time for createProjectGraph()' 15.1445000001695ms -[NX Daemon Server] - 2024-09-13T20:01:22.655Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:01:22.656Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:01:22.656Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:01:22.656Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.656Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:01:22.656Z - Time taken for 'changed-projects' 0.037542000180110335ms -[NX Daemon Server] - 2024-09-13T20:01:22.858Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:01:22.859Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:01:22.859Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:01:22.880Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.880Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.880Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.881Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.881Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.881Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.881Z - Time taken for 'hash changed files from watcher' 0.8812080000061542ms -[NX Daemon Server] - 2024-09-13T20:01:22.882Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.882Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.882Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.883Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.883Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.883Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.884Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.884Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.884Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.885Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.885Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.885Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.886Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.886Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.886Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.887Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.887Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.887Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.887Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.888Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.888Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:22.888Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.888Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.888Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.889Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.889Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.889Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.890Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.890Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.890Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.891Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.891Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.891Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.892Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.892Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.892Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.892Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.892Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.892Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.893Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.893Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.893Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.894Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.894Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.894Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.894Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.894Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.894Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.895Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.895Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.895Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.896Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.896Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.896Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.897Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.897Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.897Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.897Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.897Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.897Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.898Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.898Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.898Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.899Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.899Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.900Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.901Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.901Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.902Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.903Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.903Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.903Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.903Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.903Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:22.903Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:22.910Z - Time taken for 'build-project-configs' 45.816165999975055ms -[NX Daemon Server] - 2024-09-13T20:01:22.931Z - Time taken for 'total execution time for createProjectGraph()' 18.43375000008382ms -[NX Daemon Server] - 2024-09-13T20:01:23.661Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:23.662Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:23.665Z - Time taken for 'total for creating and serializing project graph' 0.6742920000106096ms -[NX Daemon Server] - 2024-09-13T20:01:23.667Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:23.667Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-13T20:01:23.673Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:23.673Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:23.673Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:23.674Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:23.710Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:01:23.710Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:23.710Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:23.710Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:23.711Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:23.711Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:23.712Z - Time taken for 'total for creating and serializing project graph' 0.07733300002291799ms -[NX Daemon Server] - 2024-09-13T20:01:23.713Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:23.713Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:01:23.715Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:23.715Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:23.717Z - Time taken for 'total for creating and serializing project graph' 0.06412500003352761ms -[NX Daemon Server] - 2024-09-13T20:01:23.718Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:23.718Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T20:01:23.720Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:31.780Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:01:31.781Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:01:31.781Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:01:31.781Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.781Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:01:31.781Z - Time taken for 'changed-projects' 0.15300000016577542ms -[NX Daemon Server] - 2024-09-13T20:01:31.883Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:01:31.883Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:01:31.883Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:01:31.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.900Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.901Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.901Z - Time taken for 'hash changed files from watcher' 0.6565829999744892ms -[NX Daemon Server] - 2024-09-13T20:01:31.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.902Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.903Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.903Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.903Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.904Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.904Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.904Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.905Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.905Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.907Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.907Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:31.908Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.908Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.908Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.908Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.908Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.908Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.909Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.909Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.909Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.910Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.911Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.911Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.911Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.911Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.911Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.911Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.912Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.912Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.912Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.913Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.913Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.913Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.913Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.913Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.913Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.914Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.914Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.914Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.915Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.915Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.916Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.916Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.916Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.917Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.917Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.918Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.919Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.919Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.919Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.919Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.919Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.919Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.920Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.920Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.920Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.921Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.921Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.921Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.921Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.921Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.921Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.922Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.922Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.922Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.923Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.923Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.923Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.923Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.923Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:31.923Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.930Z - Time taken for 'build-project-configs' 41.52220800006762ms -[NX Daemon Server] - 2024-09-13T20:01:31.948Z - Time taken for 'total execution time for createProjectGraph()' 14.37466700002551ms -[NX Daemon Server] - 2024-09-13T20:01:31.948Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:01:31.948Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:01:31.948Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:01:31.948Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:31.948Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:01:31.948Z - Time taken for 'changed-projects' 0.028583000181242824ms -[NX Daemon Server] - 2024-09-13T20:01:32.150Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:01:32.151Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:01:32.151Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:01:32.171Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.171Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.171Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.172Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.172Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.172Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.172Z - Time taken for 'hash changed files from watcher' 1.4034160000737756ms -[NX Daemon Server] - 2024-09-13T20:01:32.173Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.173Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.173Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.175Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.175Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.175Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.175Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.176Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.176Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:32.177Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.177Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.177Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.177Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.177Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.177Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.178Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.178Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.178Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.179Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.179Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.179Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.180Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.180Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.180Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.181Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.181Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.181Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.182Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.182Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.182Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.183Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.183Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.183Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.185Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.186Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.186Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.187Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.188Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.188Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.188Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.188Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.189Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.189Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:32.189Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.189Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.189Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.190Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.190Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.190Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.191Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.191Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.192Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.192Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.193Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.193Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.193Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.193Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.194Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:01:32.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.194Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.195Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.195Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.195Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.196Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.196Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.196Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.196Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.196Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.196Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:32.197Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.204Z - Time taken for 'build-project-configs' 47.85766700003296ms -[NX Daemon Server] - 2024-09-13T20:01:32.222Z - Time taken for 'total execution time for createProjectGraph()' 15.791999999899417ms -[NX Daemon Server] - 2024-09-13T20:01:32.956Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:32.957Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:32.960Z - Time taken for 'total for creating and serializing project graph' 0.5868329999502748ms -[NX Daemon Server] - 2024-09-13T20:01:32.963Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:32.963Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:01:32.971Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:32.971Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:32.971Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:32.972Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:33.015Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:01:33.016Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:33.016Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:33.016Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:33.016Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:33.016Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:33.018Z - Time taken for 'total for creating and serializing project graph' 0.08683299995027483ms -[NX Daemon Server] - 2024-09-13T20:01:33.019Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:33.019Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T20:01:33.021Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:33.021Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:33.023Z - Time taken for 'total for creating and serializing project graph' 0.07758300006389618ms -[NX Daemon Server] - 2024-09-13T20:01:33.023Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:33.023Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:01:33.026Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:55.061Z - [WATCHER]: libs/native-federation-node/src/lib/node/federation-resolver.ts was modified -[NX Daemon Server] - 2024-09-13T20:01:55.061Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:01:55.061Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:01:55.061Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.061Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:01:55.061Z - Time taken for 'changed-projects' 0.08341700001619756ms -[NX Daemon Server] - 2024-09-13T20:01:55.163Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:01:55.164Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-13T20:01:55.164Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:01:55.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.185Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.186Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.186Z - Time taken for 'hash changed files from watcher' 1.373333000112325ms -[NX Daemon Server] - 2024-09-13T20:01:55.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.187Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.188Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.188Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.188Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.189Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.189Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.189Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.190Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.190Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.190Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.191Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.192Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.192Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.193Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.193Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.193Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.194Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.194Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.195Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.195Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.195Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.196Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.196Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.196Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.197Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.197Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.198Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.198Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.198Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.199Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.199Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.199Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.200Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.200Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.200Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.201Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.202Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.202Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.203Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.204Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.204Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.204Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.205Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:01:55.205Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:01:55.205Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.214Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.214Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.214Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.215Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.215Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.215Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.215Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.215Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.215Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.216Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.216Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.216Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.217Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.217Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.217Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.217Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.217Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.217Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.218Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.218Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.218Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.220Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.220Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:01:55.220Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:55.225Z - Time taken for 'build-project-configs' 55.7711249999702ms -[NX Daemon Server] - 2024-09-13T20:01:55.251Z - Time taken for 'total execution time for createProjectGraph()' 23.12608400010504ms -[NX Daemon Server] - 2024-09-13T20:01:56.066Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:56.066Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:56.069Z - Time taken for 'total for creating and serializing project graph' 0.3922500000335276ms -[NX Daemon Server] - 2024-09-13T20:01:56.071Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:56.071Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T20:01:56.076Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:56.076Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:01:56.076Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:01:56.077Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:56.119Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:01:56.120Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:56.120Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:01:56.120Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:01:56.120Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:56.120Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:56.122Z - Time taken for 'total for creating and serializing project graph' 0.10349999996833503ms -[NX Daemon Server] - 2024-09-13T20:01:56.123Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:56.123Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T20:01:56.126Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:01:56.126Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:01:56.128Z - Time taken for 'total for creating and serializing project graph' 0.10316699999384582ms -[NX Daemon Server] - 2024-09-13T20:01:56.129Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:01:56.129Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T20:01:56.131Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:02:57.139Z - [WATCHER]: libs/native-federation-node/project.json was modified -[NX Daemon Server] - 2024-09-13T20:02:57.139Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:02:57.139Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:02:57.139Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.139Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:02:57.139Z - Time taken for 'changed-projects' 0.08333300007507205ms -[NX Daemon Server] - 2024-09-13T20:02:57.244Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:02:57.244Z - [REQUEST]: libs/native-federation-node/project.json -[NX Daemon Server] - 2024-09-13T20:02:57.245Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:02:57.260Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.260Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.260Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.260Z - Time taken for 'hash changed files from watcher' 1.5370830001775175ms -[NX Daemon Server] - 2024-09-13T20:02:57.261Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.261Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.261Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.262Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.262Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.262Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.263Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.263Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.263Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.264Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.264Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.264Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.265Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.265Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.265Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.265Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.265Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.265Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.266Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.266Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.266Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.267Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.267Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.267Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.268Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.268Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.268Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.268Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.268Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.268Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.269Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.269Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.269Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.270Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.270Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.270Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.271Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.271Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.271Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.272Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.272Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.272Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.272Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.272Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.272Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.273Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.273Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.273Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.274Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.274Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.274Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.275Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.275Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.275Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.275Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.275Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.275Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.276Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.276Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.276Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.277Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.277Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.277Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.277Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.278Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.278Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:02:57.278Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:02:57.278Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:02:57.278Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.291Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.293Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.293Z - Handled HASH_GLOB. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:02:57.293Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.293Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.293Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.294Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.294Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.294Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.295Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.295Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.295Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.295Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.295Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.295Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.296Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.296Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.296Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.296Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.297Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.297Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:02:57.299Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.299Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.299Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.304Z - Time taken for 'build-project-configs' 54.543416999978945ms -[NX Daemon Server] - 2024-09-13T20:02:57.330Z - Time taken for 'total execution time for createProjectGraph()' 21.396582999965176ms -[NX Daemon Server] - 2024-09-13T20:02:57.347Z - [WATCHER]: libs/native-federation-node/project.json was modified -[NX Daemon Server] - 2024-09-13T20:02:57.347Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:02:57.347Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:02:57.347Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.347Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:02:57.347Z - Time taken for 'changed-projects' 0.04412500001490116ms -[NX Daemon Server] - 2024-09-13T20:02:57.489Z - [WATCHER]: libs/native-federation-node/project.json was modified -[NX Daemon Server] - 2024-09-13T20:02:57.489Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:02:57.489Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:02:57.489Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.489Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:02:57.489Z - Time taken for 'changed-projects' 0.07374999998137355ms -[NX Daemon Server] - 2024-09-13T20:02:57.549Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:02:57.550Z - [REQUEST]: libs/native-federation-node/project.json -[NX Daemon Server] - 2024-09-13T20:02:57.550Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:02:57.566Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.566Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.566Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.567Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.567Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.567Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.567Z - Time taken for 'hash changed files from watcher' 0.7112499999348074ms -[NX Daemon Server] - 2024-09-13T20:02:57.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.568Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.569Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.569Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.569Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.570Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.570Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.570Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.571Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.571Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.571Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.572Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.572Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.572Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.573Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.573Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.573Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.574Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.574Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.575Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.576Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.577Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.577Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.578Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.579Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.580Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.581Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.582Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.582Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.584Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.586Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.586Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.587Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.588Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:02:57.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:02:57.595Z - Time taken for 'build-project-configs' 40.07450000010431ms -[NX Daemon Server] - 2024-09-13T20:02:57.615Z - Time taken for 'total execution time for createProjectGraph()' 16.855874999891967ms -[NX Daemon Server] - 2024-09-13T20:02:58.497Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:02:58.498Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:02:58.501Z - Time taken for 'total for creating and serializing project graph' 0.6412910001818091ms -[NX Daemon Server] - 2024-09-13T20:02:58.505Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:02:58.505Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-13T20:02:58.514Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:02:58.521Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:02:58.521Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-13T20:02:58.522Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:02:58.565Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:02:58.566Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:02:58.566Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:02:58.566Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:02:58.567Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:02:58.567Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:02:58.568Z - Time taken for 'total for creating and serializing project graph' 0.07387500000186265ms -[NX Daemon Server] - 2024-09-13T20:02:58.570Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:02:58.570Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T20:02:58.572Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:02:58.572Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:02:58.574Z - Time taken for 'total for creating and serializing project graph' 0.07720900001004338ms -[NX Daemon Server] - 2024-09-13T20:02:58.574Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:02:58.574Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:02:58.576Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:03:37.700Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:03:37.700Z - Established a connection. Number of open connections: 6 -[NX Daemon Server] - 2024-09-13T20:03:37.701Z - Closed a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:03:37.703Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:03:37.703Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:03:37.707Z - Time taken for 'total for creating and serializing project graph' 0.4765830000396818ms -[NX Daemon Server] - 2024-09-13T20:03:37.709Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:03:37.709Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:03:37.761Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T20:03:37.763Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T20:03:37.763Z - Handled HASH_TASKS. Handling time: 41. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:03:38.221Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:38.347Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:38.571Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:38.590Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:38.590Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:38.590Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:38.631Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:38.752Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:38.867Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:39.340Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:39.358Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:39.358Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:39.358Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:39.392Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:39.631Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:40.026Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:40.026Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:40.026Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:40.060Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:40.185Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:40.572Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:40.572Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:40.572Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:40.699Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:40.751Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:40.751Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:40.751Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:40.751Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:40.789Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:40.790Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:40.790Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:03:40.805Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:40.944Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:03:41.468Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:41.468Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:41.468Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:41.928Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:41.928Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:41.928Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:42.469Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:42.469Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:03:42.469Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:42.472Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:03:42.473Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:03:42.473Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:03:42.474Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:03:42.474Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:03:42.474Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:03:42.476Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:05:26.938Z - [WATCHER]: libs/native-federation-node/project.json was modified -[NX Daemon Server] - 2024-09-13T20:05:26.938Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:05:26.938Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:05:26.938Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:26.938Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:05:26.939Z - Time taken for 'changed-projects' 0.09154099994339049ms -[NX Daemon Server] - 2024-09-13T20:05:27.041Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:05:27.041Z - [REQUEST]: libs/native-federation-node/project.json -[NX Daemon Server] - 2024-09-13T20:05:27.041Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:05:27.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.058Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.059Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.059Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.059Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.059Z - Time taken for 'hash changed files from watcher' 0.6842079998459667ms -[NX Daemon Server] - 2024-09-13T20:05:27.060Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.060Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.060Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.061Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.061Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.061Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.062Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.063Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.063Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.064Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.066Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.066Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.067Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.068Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.068Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.069Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.069Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.069Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.070Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.070Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.070Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.071Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.072Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.072Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.073Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.073Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.073Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.074Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.074Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.074Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.075Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.075Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.075Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.075Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.075Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.075Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.076Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.076Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.076Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.077Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.077Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.077Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.078Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:05:27.078Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:05:27.078Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.085Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.085Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.085Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.085Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.085Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.085Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.086Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.086Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.086Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.087Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.087Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.087Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.087Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.087Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.087Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.088Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.088Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.088Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.089Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.089Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.089Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.091Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.091Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:27.091Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.097Z - Time taken for 'build-project-configs' 51.20383399981074ms -[NX Daemon Server] - 2024-09-13T20:05:27.123Z - Time taken for 'total execution time for createProjectGraph()' 23.323417000006884ms -[NX Daemon Server] - 2024-09-13T20:05:27.947Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:05:27.947Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:05:27.952Z - Time taken for 'total for creating and serializing project graph' 0.5089160001371056ms -[NX Daemon Server] - 2024-09-13T20:05:27.955Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:05:27.955Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2024-09-13T20:05:27.964Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:05:27.964Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:05:27.964Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:27.965Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:05:28.006Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:05:28.007Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:05:28.007Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:05:28.007Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:05:28.008Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:05:28.008Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:05:28.009Z - Time taken for 'total for creating and serializing project graph' 0.08975000004284084ms -[NX Daemon Server] - 2024-09-13T20:05:28.010Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:05:28.010Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:05:28.012Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:05:28.012Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:05:28.014Z - Time taken for 'total for creating and serializing project graph' 0.07541700010187924ms -[NX Daemon Server] - 2024-09-13T20:05:28.015Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:05:28.015Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-13T20:05:28.017Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:05:32.712Z - [WATCHER]: libs/native-federation-node/project.json was modified -[NX Daemon Server] - 2024-09-13T20:05:32.713Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:05:32.713Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:05:32.713Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.713Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:05:32.713Z - Time taken for 'changed-projects' 0.17520800000056624ms -[NX Daemon Server] - 2024-09-13T20:05:32.815Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:05:32.815Z - [REQUEST]: libs/native-federation-node/project.json -[NX Daemon Server] - 2024-09-13T20:05:32.815Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:05:32.827Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.827Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.827Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.828Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.828Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.828Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.828Z - Time taken for 'hash changed files from watcher' 0.6723340000025928ms -[NX Daemon Server] - 2024-09-13T20:05:32.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.829Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.830Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.830Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.831Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:05:32.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.831Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.832Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.832Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.832Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.833Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.834Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.834Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.834Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.834Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.834Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.834Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.835Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.836Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.837Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.837Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.837Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.837Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.837Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.837Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.838Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.839Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.839Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.839Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.840Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.840Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.840Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.840Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.840Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.840Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.841Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.842Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.842Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.843Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.844Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.845Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:05:32.845Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:05:32.845Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.850Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.851Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.852Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.853Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.853Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.854Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:05:32.856Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:32.861Z - Time taken for 'build-project-configs' 41.903666000114754ms -[NX Daemon Server] - 2024-09-13T20:05:32.886Z - Time taken for 'total execution time for createProjectGraph()' 22.433000000193715ms -[NX Daemon Server] - 2024-09-13T20:05:33.721Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:05:33.721Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:05:33.725Z - Time taken for 'total for creating and serializing project graph' 0.512542000040412ms -[NX Daemon Server] - 2024-09-13T20:05:33.729Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:05:33.729Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2024-09-13T20:05:33.737Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:05:33.737Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:05:33.737Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:33.738Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:05:33.778Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:05:33.778Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:05:33.779Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:05:33.779Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:05:33.779Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:05:33.779Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:05:33.780Z - Time taken for 'total for creating and serializing project graph' 0.07829199987463653ms -[NX Daemon Server] - 2024-09-13T20:05:33.781Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:05:33.781Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:05:33.784Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:05:33.784Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:05:33.785Z - Time taken for 'total for creating and serializing project graph' 0.05612500011920929ms -[NX Daemon Server] - 2024-09-13T20:05:33.786Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:05:33.786Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:05:33.788Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:05:34.369Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:05:34.370Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:05:34.370Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:05:34.372Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:05:34.373Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:05:34.376Z - Time taken for 'total for creating and serializing project graph' 0.4520419999025762ms -[NX Daemon Server] - 2024-09-13T20:05:34.378Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:05:34.378Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-13T20:05:34.432Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T20:05:34.434Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T20:05:34.434Z - Handled HASH_TASKS. Handling time: 45. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:05:34.459Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:05:34.459Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:05:34.459Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.460Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.460Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.460Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.467Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:05:34.467Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:05:34.467Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.468Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.468Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.468Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.470Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:05:34.470Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:05:34.470Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.471Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.471Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.471Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.494Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.494Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.494Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.496Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:05:34.496Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:05:34.496Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.496Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.496Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:34.496Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:34.553Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:05:34.618Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:05:34.715Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:05:35.041Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.041Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.041Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:35.074Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.074Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.074Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:35.077Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.077Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.077Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:35.104Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:05:35.214Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:05:35.643Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.643Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.643Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:35.674Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.674Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:35.674Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:36.209Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:36.209Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:05:36.209Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:36.211Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:05:36.211Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:05:36.211Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:36.212Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:05:36.212Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:05:36.212Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:05:36.214Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:06:07.583Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:06:07.584Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:06:07.584Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:06:07.586Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:06:07.587Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:06:07.590Z - Time taken for 'total for creating and serializing project graph' 0.6201669999863952ms -[NX Daemon Server] - 2024-09-13T20:06:07.592Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:06:07.593Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:06:07.640Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T20:06:07.642Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T20:06:07.642Z - Handled HASH_TASKS. Handling time: 39. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:06:07.667Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.667Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.667Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.667Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.667Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.667Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.672Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.672Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.672Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.672Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.672Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.672Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.673Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.673Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.673Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.673Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.673Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.673Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.675Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.675Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.675Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.676Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.676Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:06:07.676Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.676Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.676Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.677Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:06:07.677Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.677Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.677Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.699Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.699Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:07.699Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:07.761Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:06:07.823Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:06:08.654Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:08.654Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:08.654Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:08.690Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:08.690Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:08.690Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:08.701Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:08.701Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:08.701Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:08.821Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:06:09.488Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:09.488Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:09.488Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:09.902Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:09.903Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:06:09.903Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:06:09.906Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:06:09.906Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:06:09.906Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:06:09.906Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:06:09.907Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:06:09.907Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:06:09.910Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:07:21.249Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:07:21.249Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:07:21.250Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:07:21.251Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:07:21.252Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:07:21.257Z - Time taken for 'total for creating and serializing project graph' 0.3679160000756383ms -[NX Daemon Server] - 2024-09-13T20:07:21.259Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:07:21.259Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-13T20:07:21.306Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T20:07:21.308Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T20:07:21.308Z - Handled HASH_TASKS. Handling time: 39. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:07:21.331Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.331Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.331Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.332Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.332Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.332Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.336Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.336Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.336Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.337Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.337Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.337Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.337Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.337Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.337Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.338Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.338Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.338Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.340Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.340Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.340Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.341Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.341Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:07:21.341Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.341Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.341Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.341Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.342Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.342Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.342Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.364Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.364Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.364Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.426Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:07:21.484Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:07:21.884Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.884Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.884Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.907Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.907Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.907Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:21.937Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.937Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:21.937Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:22.041Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:07:22.420Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:22.420Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:22.420Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:22.798Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:22.798Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:07:22.798Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:22.800Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:07:22.800Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:07:22.800Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:22.800Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:07:22.800Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:07:22.800Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:07:22.802Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:09:01.168Z - [WATCHER]: tools/scripts/publish.mjs was modified -[NX Daemon Server] - 2024-09-13T20:09:01.168Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:09:01.168Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:09:01.168Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.168Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:09:01.168Z - Time taken for 'changed-projects' 0.08966700010932982ms -[NX Daemon Server] - 2024-09-13T20:09:01.270Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:09:01.270Z - [REQUEST]: tools/scripts/publish.mjs -[NX Daemon Server] - 2024-09-13T20:09:01.270Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:09:01.290Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.290Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.290Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.291Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.292Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.292Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:09:01.292Z - Time taken for 'hash changed files from watcher' 0.8778329999186099ms -[NX Daemon Server] - 2024-09-13T20:09:01.293Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.293Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.293Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.294Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.294Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.294Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.295Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.295Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.295Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.296Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.296Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.296Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.297Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.297Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.297Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.297Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.297Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.297Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.298Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.298Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.298Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.299Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.299Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.299Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.300Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.300Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.300Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.301Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.301Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.301Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.302Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.302Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.302Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.302Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.302Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.302Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.303Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.303Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.303Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.304Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.304Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.304Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.304Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.304Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.304Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.305Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.305Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.305Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.306Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.306Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.306Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.307Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.307Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.307Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.308Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.308Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.308Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.308Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.308Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.308Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.309Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.309Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.309Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.310Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-13T20:09:01.310Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-13T20:09:01.310Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.318Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.318Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.318Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.319Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.319Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.319Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.319Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.319Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.319Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.320Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.320Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.320Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.321Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.321Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.321Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.321Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.321Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.321Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.322Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.322Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.322Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.322Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.322Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:01.322Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:01.328Z - Time taken for 'build-project-configs' 51.91791700012982ms -[NX Daemon Server] - 2024-09-13T20:09:01.353Z - Time taken for 'total execution time for createProjectGraph()' 22.748333000112325ms -[NX Daemon Server] - 2024-09-13T20:09:02.176Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:09:02.177Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:09:02.180Z - Time taken for 'total for creating and serializing project graph' 0.6581670001614839ms -[NX Daemon Server] - 2024-09-13T20:09:02.183Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:09:02.183Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:09:02.192Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:09:02.192Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:09:02.192Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:02.193Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:09:02.237Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:09:02.237Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:09:02.237Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:09:02.237Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:09:02.238Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:09:02.238Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:09:02.239Z - Time taken for 'total for creating and serializing project graph' 0.08300000010058284ms -[NX Daemon Server] - 2024-09-13T20:09:02.240Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:09:02.240Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:09:02.243Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:09:02.243Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:09:02.244Z - Time taken for 'total for creating and serializing project graph' 0.07987500005401671ms -[NX Daemon Server] - 2024-09-13T20:09:02.249Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:09:02.249Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-13T20:09:02.251Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:09:07.919Z - [WATCHER]: tools/scripts/publish.mjs was modified -[NX Daemon Server] - 2024-09-13T20:09:07.920Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-13T20:09:07.920Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-13T20:09:07.920Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:07.920Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:09:07.921Z - Time taken for 'changed-projects' 0.31524999998509884ms -[NX Daemon Server] - 2024-09-13T20:09:08.022Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-13T20:09:08.022Z - [REQUEST]: tools/scripts/publish.mjs -[NX Daemon Server] - 2024-09-13T20:09:08.022Z - [REQUEST]: -[NX Daemon Server] - 2024-09-13T20:09:08.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.040Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.042Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.042Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.042Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.042Z - Time taken for 'hash changed files from watcher' 0.5723749999888241ms -[NX Daemon Server] - 2024-09-13T20:09:08.043Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.043Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.043Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.044Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.045Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.045Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.045Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.046Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.046Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.046Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.048Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.049Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.049Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.049Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.050Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.051Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.051Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.052Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.052Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.052Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.053Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.054Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.054Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.055Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.055Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.056Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.056Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.056Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.057Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.057Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.057Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.058Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.058Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.059Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.059Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.059Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.060Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.060Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.060Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.061Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.061Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.061Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.061Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.061Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.061Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.062Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.063Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.063Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.063Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.063Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.064Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.066Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.066Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:08.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-13T20:09:08.067Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:09:08.074Z - Time taken for 'build-project-configs' 46.151084000011906ms -[NX Daemon Server] - 2024-09-13T20:09:08.094Z - Time taken for 'total execution time for createProjectGraph()' 17.649375000037253ms -[NX Daemon Server] - 2024-09-13T20:09:08.927Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:09:08.928Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:09:08.931Z - Time taken for 'total for creating and serializing project graph' 0.6679999998304993ms -[NX Daemon Server] - 2024-09-13T20:09:08.933Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:09:08.933Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-13T20:09:08.940Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-13T20:09:08.942Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-13T20:09:08.942Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:09:08.943Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:09:08.987Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:09:08.988Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:09:08.988Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-13T20:09:08.988Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-13T20:09:08.989Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:09:08.989Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:09:08.990Z - Time taken for 'total for creating and serializing project graph' 0.12983300001360476ms -[NX Daemon Server] - 2024-09-13T20:09:08.991Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:09:08.991Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:09:08.994Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:09:08.994Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:09:08.995Z - Time taken for 'total for creating and serializing project graph' 0.06779200001619756ms -[NX Daemon Server] - 2024-09-13T20:09:08.996Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:09:08.996Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:09:08.998Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:09:14.718Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:09:14.719Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T20:09:14.719Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-13T20:09:14.721Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-13T20:09:14.721Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-13T20:09:14.725Z - Time taken for 'total for creating and serializing project graph' 0.6013329999987036ms -[NX Daemon Server] - 2024-09-13T20:09:14.726Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-13T20:09:14.726Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-13T20:09:14.782Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-13T20:09:14.784Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-13T20:09:14.784Z - Handled HASH_TASKS. Handling time: 47. Response time: 2. -[NX Daemon Server] - 2024-09-13T20:09:14.809Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.809Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.809Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.810Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.810Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.810Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.814Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.814Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.814Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.815Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.815Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.815Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.815Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.815Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.815Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.816Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.816Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.816Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.818Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.818Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.818Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.818Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.818Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-13T20:09:14.818Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.819Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.819Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.819Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.820Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.820Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.820Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.842Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.842Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:14.842Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:14.903Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:09:14.967Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:09:16.481Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:16.482Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:16.482Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:09:16.626Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:09:16.766Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:16.766Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:16.766Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:16.862Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:16.862Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:16.862Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:16.905Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-13T20:09:18.184Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:18.184Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:18.184Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:18.516Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:18.516Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-13T20:09:18.516Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:18.518Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:09:18.518Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-13T20:09:18.518Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-13T20:09:18.519Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:09:18.519Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-13T20:09:18.520Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-13T20:09:18.521Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-13T23:16:11.704Z - There are 4 open connections. Reset inactivity timer. -[NX Daemon Server] - 2024-09-14T02:20:14.784Z - There are 4 open connections. Reset inactivity timer. -[NX Daemon Server] - 2024-09-14T05:22:33.334Z - There are 4 open connections. Reset inactivity timer. -[NX Daemon Server] - 2024-09-14T08:27:29.590Z - There are 4 open connections. Reset inactivity timer. -[NX Daemon Server] - 2024-09-14T08:51:36.558Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T08:51:36.560Z - Established a connection. Number of open connections: 6 -[NX Daemon Server] - 2024-09-14T08:51:36.560Z - Closed a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T08:51:36.563Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T08:51:36.563Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T08:51:36.567Z - Time taken for 'total for creating and serializing project graph' 0.6916249990463257ms -[NX Daemon Server] - 2024-09-14T08:51:36.569Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T08:51:36.569Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T08:51:36.618Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T08:51:36.620Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T08:51:36.620Z - Handled HASH_TASKS. Handling time: 37. Response time: 2. -[NX Daemon Server] - 2024-09-14T08:51:36.644Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.644Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.644Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.645Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.645Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.645Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.650Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.650Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.650Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.651Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.651Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.651Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.651Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.651Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.651Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.652Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.652Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.652Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.656Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.656Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.656Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.657Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.657Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T08:51:36.657Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.658Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.658Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.658Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.660Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.660Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.660Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.683Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.683Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:36.683Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:36.712Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T08:51:36.819Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T08:51:38.621Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:38.621Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:38.621Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:38.659Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:38.659Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:38.660Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T08:51:38.709Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:38.709Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:38.709Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:38.772Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T08:51:40.177Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:40.177Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:40.177Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:40.431Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:40.432Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T08:51:40.432Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T08:51:40.435Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T08:51:40.435Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T08:51:40.435Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:40.436Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T08:51:40.436Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T08:51:40.436Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T08:51:40.438Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T09:23:45.917Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T09:23:45.918Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T09:23:45.919Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T09:23:45.919Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T09:23:45.919Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T09:23:45.919Z - Time taken for 'changed-projects' 0.30391599982976913ms -[NX Daemon Server] - 2024-09-14T09:23:46.021Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T09:23:46.021Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T09:23:46.021Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T09:23:46.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.044Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.044Z - Time taken for 'hash changed files from watcher' 0.7984170019626617ms -[NX Daemon Server] - 2024-09-14T09:23:46.046Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.046Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.046Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.047Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.047Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.047Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.048Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.049Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.049Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.049Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.051Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T09:23:46.052Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.052Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.052Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.053Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.054Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.054Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.055Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.055Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.056Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.056Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.056Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.057Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.057Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.057Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.057Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.057Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.057Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.058Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.059Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.059Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.059Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.059Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.060Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.060Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T09:23:46.060Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.060Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.060Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.061Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.061Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.061Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.062Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.062Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.063Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.063Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T09:23:46.064Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.066Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.066Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.067Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.067Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.068Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.075Z - Time taken for 'build-project-configs' 48.486458003520966ms -[NX Daemon Server] - 2024-09-14T09:23:46.093Z - Time taken for 'total execution time for createProjectGraph()' 15.643582999706268ms -[NX Daemon Server] - 2024-09-14T09:23:46.101Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T09:23:46.101Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T09:23:46.101Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T09:23:46.101Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.101Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T09:23:46.101Z - Time taken for 'changed-projects' 0.0403750017285347ms -[NX Daemon Server] - 2024-09-14T09:23:46.301Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T09:23:46.301Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T09:23:46.301Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T09:23:46.301Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.301Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T09:23:46.302Z - Time taken for 'changed-projects' 0.09341700375080109ms -[NX Daemon Server] - 2024-09-14T09:23:46.303Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T09:23:46.303Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T09:23:46.303Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T09:23:46.318Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.318Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.318Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.319Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.319Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.319Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.319Z - Time taken for 'hash changed files from watcher' 0.6730840057134628ms -[NX Daemon Server] - 2024-09-14T09:23:46.319Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.319Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.319Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.320Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.320Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.320Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.321Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.321Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.321Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.322Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.322Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.322Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.323Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.323Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.323Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.324Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.324Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.324Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.324Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.324Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.324Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.325Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.325Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.325Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.326Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.326Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.326Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.327Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.327Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.327Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.327Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.327Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.328Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T09:23:46.328Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.328Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.328Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.329Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.329Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.329Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.329Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.329Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.329Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.330Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.330Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.330Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.331Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.331Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.331Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.331Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.331Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.331Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.332Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.332Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.332Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.333Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.333Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.333Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.333Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.333Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.334Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T09:23:46.334Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.334Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.334Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.335Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.335Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.335Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.335Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.335Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.336Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T09:23:46.336Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.336Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.336Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.337Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.337Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.337Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.337Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.337Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.337Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.338Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.338Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.338Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.338Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.338Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.338Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.339Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.339Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:23:46.339Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:46.345Z - Time taken for 'build-project-configs' 37.93404100090265ms -[NX Daemon Server] - 2024-09-14T09:23:46.365Z - Time taken for 'total execution time for createProjectGraph()' 17.005791999399662ms -[NX Daemon Server] - 2024-09-14T09:23:47.312Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T09:23:47.312Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T09:23:47.315Z - Time taken for 'total for creating and serializing project graph' 0.28849999606609344ms -[NX Daemon Server] - 2024-09-14T09:23:47.317Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T09:23:47.317Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T09:23:47.324Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T09:23:47.324Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T09:23:47.324Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:23:47.325Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T09:23:47.362Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T09:23:47.363Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T09:23:47.363Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T09:23:47.363Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T09:23:47.364Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T09:23:47.364Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T09:23:47.365Z - Time taken for 'total for creating and serializing project graph' 0.08033299446105957ms -[NX Daemon Server] - 2024-09-14T09:23:47.366Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T09:23:47.366Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T09:23:47.369Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T09:23:47.369Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T09:23:47.370Z - Time taken for 'total for creating and serializing project graph' 0.13204099982976913ms -[NX Daemon Server] - 2024-09-14T09:23:47.371Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T09:23:47.371Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T09:23:47.373Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T09:25:01.509Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T09:25:01.510Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T09:25:01.510Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T09:25:01.510Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.510Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T09:25:01.510Z - Time taken for 'changed-projects' 0.10783400386571884ms -[NX Daemon Server] - 2024-09-14T09:25:01.612Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T09:25:01.612Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T09:25:01.612Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T09:25:01.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.629Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.630Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.630Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.630Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.630Z - Time taken for 'hash changed files from watcher' 0.759332999587059ms -[NX Daemon Server] - 2024-09-14T09:25:01.631Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.631Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.631Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.632Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.632Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.632Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.633Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.633Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.633Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.634Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.634Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.634Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.635Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.635Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.635Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.636Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.636Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.636Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.637Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.637Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.638Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.638Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.638Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.639Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.639Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.640Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.640Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.640Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.640Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.640Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.640Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.641Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.641Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.641Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.642Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.642Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.642Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.642Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.642Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.642Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.643Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.643Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.643Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.644Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.644Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.644Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.645Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.645Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.645Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.645Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.645Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.645Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.646Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.646Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.646Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.647Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.647Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.647Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.648Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.648Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.648Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.648Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.648Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.648Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.649Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.649Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.649Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.649Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.649Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.649Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.650Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.651Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.651Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.651Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.651Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.651Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.651Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.652Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.652Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T09:25:01.652Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:01.659Z - Time taken for 'build-project-configs' 41.606959000229836ms -[NX Daemon Server] - 2024-09-14T09:25:01.677Z - Time taken for 'total execution time for createProjectGraph()' 15.713124997913837ms -[NX Daemon Server] - 2024-09-14T09:25:02.516Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T09:25:02.517Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T09:25:02.518Z - Time taken for 'total for creating and serializing project graph' 0.2617499977350235ms -[NX Daemon Server] - 2024-09-14T09:25:02.520Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T09:25:02.520Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-14T09:25:02.525Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T09:25:02.525Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T09:25:02.525Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T09:25:02.528Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T09:25:02.572Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T09:25:02.572Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T09:25:02.573Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T09:25:02.573Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T09:25:02.573Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T09:25:02.573Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T09:25:02.575Z - Time taken for 'total for creating and serializing project graph' 0.11999999731779099ms -[NX Daemon Server] - 2024-09-14T09:25:02.576Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T09:25:02.576Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T09:25:02.578Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T09:25:02.578Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T09:25:02.580Z - Time taken for 'total for creating and serializing project graph' 0.09445800632238388ms -[NX Daemon Server] - 2024-09-14T09:25:02.581Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T09:25:02.581Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T09:25:02.583Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T12:38:59.903Z - There are 4 open connections. Reset inactivity timer. -[NX Daemon Server] - 2024-09-14T13:53:15.920Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:53:15.921Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:53:15.921Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:53:15.921Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:53:15.921Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:53:15.921Z - Time taken for 'changed-projects' 0.21245799958705902ms -[NX Daemon Server] - 2024-09-14T13:53:16.023Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:53:16.024Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:53:16.024Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:53:16.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.044Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.044Z - Time taken for 'hash changed files from watcher' 0.9755000025033951ms -[NX Daemon Server] - 2024-09-14T13:53:16.045Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.045Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.045Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.046Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.046Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.046Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.047Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.047Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.047Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.048Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.049Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.049Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.049Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.051Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.051Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.051Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.051Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.052Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.052Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.052Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.053Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.054Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:53:16.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.054Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.055Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.055Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.056Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.056Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.056Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.060Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.060Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.060Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.061Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.061Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.061Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.067Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.068Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.070Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.070Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.070Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.071Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.071Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.072Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.073Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:53:16.073Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:53:16.073Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.121Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.122Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.123Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.123Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.124Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:16.126Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.131Z - Time taken for 'build-project-configs' 101.96225000172853ms -[NX Daemon Server] - 2024-09-14T13:53:16.158Z - Time taken for 'total execution time for createProjectGraph()' 24.563707999885082ms -[NX Daemon Server] - 2024-09-14T13:53:16.937Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:16.937Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:16.941Z - Time taken for 'total for creating and serializing project graph' 0.29637499898672104ms -[NX Daemon Server] - 2024-09-14T13:53:16.943Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:16.943Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:53:16.950Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:53:16.950Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:53:16.950Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:16.951Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:16.999Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:53:16.999Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:16.999Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:53:16.999Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:17.000Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:17.000Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:17.001Z - Time taken for 'total for creating and serializing project graph' 0.07529100030660629ms -[NX Daemon Server] - 2024-09-14T13:53:17.002Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:17.002Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:53:17.005Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:17.005Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:17.006Z - Time taken for 'total for creating and serializing project graph' 0.07804200053215027ms -[NX Daemon Server] - 2024-09-14T13:53:17.007Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:17.007Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:53:17.009Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:53:30.370Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:53:30.370Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:53:30.370Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:53:30.370Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.370Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:53:30.370Z - Time taken for 'changed-projects' 0.10991699993610382ms -[NX Daemon Server] - 2024-09-14T13:53:30.471Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:53:30.472Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:53:30.472Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:53:30.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.484Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.485Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.485Z - Time taken for 'hash changed files from watcher' 0.529791995882988ms -[NX Daemon Server] - 2024-09-14T13:53:30.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.486Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.487Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.487Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.489Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.490Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.491Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.492Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.492Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.493Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.494Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.495Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.495Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.495Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.495Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.496Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.496Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.496Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.497Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.497Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.497Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.497Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.497Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.497Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.498Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.498Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.499Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.499Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.499Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.499Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.499Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.499Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.500Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.500Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.500Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.501Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:53:30.501Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:53:30.501Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.506Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.506Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.506Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.507Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.507Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.507Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.507Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.507Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.507Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.508Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.508Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.508Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.509Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.509Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.509Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.510Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.510Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.510Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.512Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.512Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.512Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.514Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.514Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:30.514Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:30.518Z - Time taken for 'build-project-configs' 42.671333000063896ms -[NX Daemon Server] - 2024-09-14T13:53:30.542Z - Time taken for 'total execution time for createProjectGraph()' 20.62337499856949ms -[NX Daemon Server] - 2024-09-14T13:53:31.379Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:31.379Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:31.382Z - Time taken for 'total for creating and serializing project graph' 0.5324579998850822ms -[NX Daemon Server] - 2024-09-14T13:53:31.384Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:31.385Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:53:31.392Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:53:31.392Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:53:31.392Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:31.393Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:31.433Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:53:31.434Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:31.434Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:53:31.434Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:31.434Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:31.434Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:31.435Z - Time taken for 'total for creating and serializing project graph' 0.0728750005364418ms -[NX Daemon Server] - 2024-09-14T13:53:31.436Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:31.437Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:53:31.439Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:31.439Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:31.441Z - Time taken for 'total for creating and serializing project graph' 0.08170799911022186ms -[NX Daemon Server] - 2024-09-14T13:53:31.441Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:31.441Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:53:31.443Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:53:38.927Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:53:38.931Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:53:38.931Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:53:38.931Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:38.931Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:53:38.931Z - Time taken for 'changed-projects' 0.12341700494289398ms -[NX Daemon Server] - 2024-09-14T13:53:39.035Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:53:39.035Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:53:39.035Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:53:39.057Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.057Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.057Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.059Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:53:39.059Z - Time taken for 'hash changed files from watcher' 1.8786249980330467ms -[NX Daemon Server] - 2024-09-14T13:53:39.060Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.060Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.060Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.061Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.061Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.061Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.062Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.063Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:53:39.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:53:39.064Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.064Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.066Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.066Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.067Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.068Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.068Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.069Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.069Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.069Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.070Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.070Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.070Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.071Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.072Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.072Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.073Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.073Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.073Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.074Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.074Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.074Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.075Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.075Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.075Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.075Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.075Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.075Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.076Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.076Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.076Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.077Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:53:39.077Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:53:39.077Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.084Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.084Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.084Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.085Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.085Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.085Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.086Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.086Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.086Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.086Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.086Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.086Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.087Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.087Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.087Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.087Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.087Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.087Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.088Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.088Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.088Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.090Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.090Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:39.090Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.096Z - Time taken for 'build-project-configs' 55.26612500101328ms -[NX Daemon Server] - 2024-09-14T13:53:39.123Z - Time taken for 'total execution time for createProjectGraph()' 24.792166002094746ms -[NX Daemon Server] - 2024-09-14T13:53:39.935Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:39.935Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:39.938Z - Time taken for 'total for creating and serializing project graph' 0.1709579974412918ms -[NX Daemon Server] - 2024-09-14T13:53:39.939Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:39.939Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T13:53:39.945Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:53:39.945Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:53:39.945Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:39.945Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:39.984Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:53:39.985Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:39.985Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:53:39.985Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:39.985Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:39.986Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:39.987Z - Time taken for 'total for creating and serializing project graph' 0.08433300256729126ms -[NX Daemon Server] - 2024-09-14T13:53:39.988Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:39.988Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:53:39.990Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:39.990Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:39.992Z - Time taken for 'total for creating and serializing project graph' 0.08933299779891968ms -[NX Daemon Server] - 2024-09-14T13:53:39.992Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:39.992Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:53:39.995Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:53:40.538Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:53:40.539Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:53:40.539Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:53:40.539Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.539Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:53:40.539Z - Time taken for 'changed-projects' 0.06424999982118607ms -[NX Daemon Server] - 2024-09-14T13:53:40.641Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:53:40.641Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:53:40.641Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:53:40.656Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.656Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.656Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.657Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.657Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.657Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.657Z - Time taken for 'hash changed files from watcher' 0.6050000041723251ms -[NX Daemon Server] - 2024-09-14T13:53:40.658Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.658Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.658Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.659Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.659Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.659Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.659Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.659Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.659Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.660Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.660Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.660Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.661Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.661Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.661Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.662Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.662Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.662Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.663Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.663Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.663Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.663Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.663Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.663Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.664Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.664Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.664Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.665Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.665Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.665Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.665Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.665Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.665Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.666Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.666Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.666Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.667Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.667Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.667Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.667Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.667Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.667Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.668Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.668Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.668Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.669Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.669Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.669Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.669Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.669Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.669Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.670Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.670Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.670Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.671Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.671Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.671Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.671Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.671Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.671Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.672Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.672Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.672Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.672Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.672Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.672Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.673Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.673Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.673Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.674Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.674Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.674Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.674Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.674Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.674Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.675Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.675Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.675Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.675Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.675Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.675Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.676Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.676Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.676Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.677Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.677Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:53:40.677Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:40.683Z - Time taken for 'build-project-configs' 37.45566699653864ms -[NX Daemon Server] - 2024-09-14T13:53:40.699Z - Time taken for 'total execution time for createProjectGraph()' 13.728415995836258ms -[NX Daemon Server] - 2024-09-14T13:53:41.547Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:41.548Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:41.551Z - Time taken for 'total for creating and serializing project graph' 1.1543750017881393ms -[NX Daemon Server] - 2024-09-14T13:53:41.554Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:41.554Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:53:41.562Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:53:41.562Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:53:41.562Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:53:41.563Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:41.602Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:53:41.603Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:41.603Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:53:41.603Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:53:41.603Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:41.603Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:41.605Z - Time taken for 'total for creating and serializing project graph' 0.08379200100898743ms -[NX Daemon Server] - 2024-09-14T13:53:41.606Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:41.606Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:53:41.608Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:53:41.608Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:53:41.610Z - Time taken for 'total for creating and serializing project graph' 0.0638749971985817ms -[NX Daemon Server] - 2024-09-14T13:53:41.611Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:53:41.611Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:53:41.613Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:02.090Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:02.090Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:02.090Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:02.090Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.090Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:02.091Z - Time taken for 'changed-projects' 0.09950000047683716ms -[NX Daemon Server] - 2024-09-14T13:54:02.193Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:02.194Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:02.194Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:02.208Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.208Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.208Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.209Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.209Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.209Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.209Z - Time taken for 'hash changed files from watcher' 0.7465410009026527ms -[NX Daemon Server] - 2024-09-14T13:54:02.210Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.210Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.210Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.211Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.211Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.211Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.212Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.212Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.212Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.212Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.212Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.213Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:02.213Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.213Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.213Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.214Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.214Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.214Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.215Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.215Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.215Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.216Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.216Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.216Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.216Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.216Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.216Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.217Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.217Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.217Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.218Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.218Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.218Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.219Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.219Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.219Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.219Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.219Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.219Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.220Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.220Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.220Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.221Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.221Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.221Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.222Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.222Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.222Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.222Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.222Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.222Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.223Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.223Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.223Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.224Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.224Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.224Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.224Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.224Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.224Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.225Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.225Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.225Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.226Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:54:02.226Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:54:02.226Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.230Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.231Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.231Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:02.231Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.231Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.231Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.232Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.232Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.233Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.233Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.233Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.233Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.233Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.233Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.234Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.235Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.236Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.236Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.236Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.241Z - Time taken for 'build-project-configs' 43.43741700053215ms -[NX Daemon Server] - 2024-09-14T13:54:02.250Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:02.251Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:02.251Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:02.251Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:02.251Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.251Z - Time taken for 'changed-projects' 0.05316700041294098ms -[NX Daemon Server] - 2024-09-14T13:54:02.265Z - Time taken for 'total execution time for createProjectGraph()' 21.117167003452778ms -[NX Daemon Server] - 2024-09-14T13:54:02.453Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:02.453Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:02.453Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:02.465Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.465Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.465Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.465Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.465Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.465Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.466Z - Time taken for 'hash changed files from watcher' 0.5414170026779175ms -[NX Daemon Server] - 2024-09-14T13:54:02.466Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.466Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.466Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.467Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.467Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.467Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.468Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.468Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.468Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.469Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.470Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.470Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.470Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.470Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.470Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.470Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.471Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.472Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.473Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.473Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.474Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.474Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.474Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.475Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.475Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.475Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.476Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.476Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.476Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.476Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.476Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.476Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.477Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.477Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.477Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.477Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.477Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.477Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.478Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.478Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.478Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.479Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.479Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.479Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.479Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.479Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.479Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.480Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.481Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.481Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.484Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.485Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:02.486Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:02.492Z - Time taken for 'build-project-configs' 35.07191699743271ms -[NX Daemon Server] - 2024-09-14T13:54:02.511Z - Time taken for 'total execution time for createProjectGraph()' 15.776624999940395ms -[NX Daemon Server] - 2024-09-14T13:54:03.259Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:03.259Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:03.264Z - Time taken for 'total for creating and serializing project graph' 0.6227080002427101ms -[NX Daemon Server] - 2024-09-14T13:54:03.267Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:03.267Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T13:54:03.275Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:03.275Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:03.275Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:03.276Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:03.317Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:54:03.318Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:03.318Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:54:03.318Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:03.318Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:03.318Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:03.320Z - Time taken for 'total for creating and serializing project graph' 0.08358300477266312ms -[NX Daemon Server] - 2024-09-14T13:54:03.320Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:03.321Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:54:03.323Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:03.323Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:03.324Z - Time taken for 'total for creating and serializing project graph' 0.07699999958276749ms -[NX Daemon Server] - 2024-09-14T13:54:03.325Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:03.325Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:54:03.327Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:04.783Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:04.784Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:04.784Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:04.784Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.784Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:04.784Z - Time taken for 'changed-projects' 0.10575000196695328ms -[NX Daemon Server] - 2024-09-14T13:54:04.885Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:04.886Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:04.886Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:04.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.900Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.901Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.901Z - Time taken for 'hash changed files from watcher' 0.5258749946951866ms -[NX Daemon Server] - 2024-09-14T13:54:04.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.902Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.903Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.903Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.903Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.904Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.904Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.904Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.908Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.908Z - Handled HASH_GLOB. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:54:04.909Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.909Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.909Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.910Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.910Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.911Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.911Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.911Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.912Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.912Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.912Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.913Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.913Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.913Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.913Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.913Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.913Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.914Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.914Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.914Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.915Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.915Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.916Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.916Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.916Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.917Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.918Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.918Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.919Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.919Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.919Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.920Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.920Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.920Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.920Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.920Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.920Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.921Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:54:04.921Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:54:04.921Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.926Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.926Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.926Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.927Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.927Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.927Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.928Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.928Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.928Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.928Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.929Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.929Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:04.929Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.929Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.929Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.930Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.930Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.932Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.932Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:04.932Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.937Z - Time taken for 'build-project-configs' 47.22308300435543ms -[NX Daemon Server] - 2024-09-14T13:54:04.964Z - Time taken for 'total execution time for createProjectGraph()' 24.538917005062103ms -[NX Daemon Server] - 2024-09-14T13:54:04.964Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:04.964Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:04.964Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:04.964Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:04.964Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:04.964Z - Time taken for 'changed-projects' 0.032666996121406555ms -[NX Daemon Server] - 2024-09-14T13:54:05.127Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:05.127Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:05.127Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:05.127Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.127Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:05.127Z - Time taken for 'changed-projects' 0.07691700011491776ms -[NX Daemon Server] - 2024-09-14T13:54:05.166Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:05.167Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:05.167Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:05.184Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.184Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.184Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.185Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.185Z - Time taken for 'hash changed files from watcher' 0.6588750034570694ms -[NX Daemon Server] - 2024-09-14T13:54:05.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.186Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.187Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.188Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:05.188Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.188Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.188Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.189Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.189Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.189Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.190Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.190Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.190Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.191Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.191Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.192Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.192Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.193Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.193Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.193Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.194Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.194Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.195Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.195Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.195Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.196Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.196Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.196Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.197Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.197Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.198Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.198Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.198Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.199Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.199Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.199Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.199Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.199Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.199Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.200Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.200Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.200Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.201Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.201Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.202Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.203Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.203Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.204Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.204Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.204Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.205Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.205Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.205Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.205Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.205Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.205Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.206Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.206Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:05.206Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:05.212Z - Time taken for 'build-project-configs' 40.63324999809265ms -[NX Daemon Server] - 2024-09-14T13:54:05.228Z - Time taken for 'total execution time for createProjectGraph()' 13.481084004044533ms -[NX Daemon Server] - 2024-09-14T13:54:06.136Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:06.137Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:06.140Z - Time taken for 'total for creating and serializing project graph' 0.48795799911022186ms -[NX Daemon Server] - 2024-09-14T13:54:06.143Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:06.143Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:54:06.153Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:06.153Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:06.153Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.154Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:06.196Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:54:06.197Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:06.197Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:06.197Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:06.197Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:06.197Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:06.199Z - Time taken for 'total for creating and serializing project graph' 0.07850000262260437ms -[NX Daemon Server] - 2024-09-14T13:54:06.200Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:06.200Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:54:06.202Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:06.202Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:06.204Z - Time taken for 'total for creating and serializing project graph' 0.07575000077486038ms -[NX Daemon Server] - 2024-09-14T13:54:06.205Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:06.205Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:54:06.207Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:06.579Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:06.579Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:06.580Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:06.580Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:06.581Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:06.581Z - Time taken for 'changed-projects' 0.257750004529953ms -[NX Daemon Server] - 2024-09-14T13:54:06.681Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:06.681Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:06.681Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:06.701Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:06.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.703Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.703Z - Time taken for 'hash changed files from watcher' 0.8900419995188713ms -[NX Daemon Server] - 2024-09-14T13:54:06.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.704Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.706Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.707Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.707Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.709Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.711Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.712Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.713Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.713Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.714Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.714Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:06.714Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.714Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.714Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.715Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.715Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.715Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.716Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.716Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.716Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.717Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.717Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.717Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.717Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.717Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.717Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.718Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.718Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.718Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.719Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.719Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.719Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.719Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.719Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.719Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.720Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.720Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.720Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.721Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.721Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.721Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.721Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.722Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.722Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:06.722Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.722Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.722Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.723Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.724Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.724Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.725Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.725Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.725Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.726Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.726Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.727Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:06.727Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:06.734Z - Time taken for 'build-project-configs' 47.3087920024991ms -[NX Daemon Server] - 2024-09-14T13:54:06.750Z - Time taken for 'total execution time for createProjectGraph()' 13.43129200488329ms -[NX Daemon Server] - 2024-09-14T13:54:07.589Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:07.590Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:07.593Z - Time taken for 'total for creating and serializing project graph' 0.5659999996423721ms -[NX Daemon Server] - 2024-09-14T13:54:07.595Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:07.595Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T13:54:07.603Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:07.603Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:07.603Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:07.604Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:07.644Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:54:07.645Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:07.645Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:07.645Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:07.645Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:07.645Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:07.647Z - Time taken for 'total for creating and serializing project graph' 0.08008299767971039ms -[NX Daemon Server] - 2024-09-14T13:54:07.647Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:07.647Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:54:07.650Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:07.650Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:07.651Z - Time taken for 'total for creating and serializing project graph' 0.054124996066093445ms -[NX Daemon Server] - 2024-09-14T13:54:07.652Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:07.652Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:54:07.654Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:41.674Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:41.675Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:41.675Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:41.675Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.675Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:41.675Z - Time taken for 'changed-projects' 0.1012909933924675ms -[NX Daemon Server] - 2024-09-14T13:54:41.777Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:41.778Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:41.778Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:41.800Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.800Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.800Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.801Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.801Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.801Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.801Z - Time taken for 'hash changed files from watcher' 0.7912079989910126ms -[NX Daemon Server] - 2024-09-14T13:54:41.803Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.803Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.803Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.804Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.804Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.804Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.805Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.805Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.805Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.806Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.806Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.806Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.806Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.806Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.807Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:41.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.807Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.807Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.808Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.808Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.808Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.809Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.809Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.809Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.810Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.810Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.810Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.811Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.811Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.811Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.811Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.811Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.811Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.812Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.812Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.812Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.813Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.813Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.813Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.814Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.814Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.814Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.814Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.814Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.814Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.815Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.815Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.815Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.816Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.816Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.816Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.816Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.816Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.816Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.817Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.817Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.817Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.818Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.818Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.818Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.818Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.818Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.818Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.819Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.819Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.819Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.820Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.820Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.820Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.820Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.820Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.820Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.821Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.821Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.821Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.822Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.822Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.823Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.823Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.823Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:41.824Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.830Z - Time taken for 'build-project-configs' 46.40579200536013ms -[NX Daemon Server] - 2024-09-14T13:54:41.847Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:41.847Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:41.847Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:41.847Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:41.847Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:41.847Z - Time taken for 'changed-projects' 0.044832997024059296ms -[NX Daemon Server] - 2024-09-14T13:54:41.856Z - Time taken for 'total execution time for createProjectGraph()' 22.668292000889778ms -[NX Daemon Server] - 2024-09-14T13:54:42.011Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:42.011Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:42.011Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:42.011Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.011Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:42.011Z - Time taken for 'changed-projects' 0.06941699981689453ms -[NX Daemon Server] - 2024-09-14T13:54:42.048Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:42.048Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:42.048Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:42.062Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.062Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.062Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.063Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.063Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.063Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.063Z - Time taken for 'hash changed files from watcher' 0.6223750039935112ms -[NX Daemon Server] - 2024-09-14T13:54:42.064Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.064Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.064Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.064Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:42.065Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.065Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.065Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.066Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.066Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.066Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.067Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.067Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.067Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.067Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.068Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.068Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.068Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.069Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.069Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.069Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.070Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.070Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.070Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.070Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.070Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.070Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.071Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.072Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.073Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.073Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.073Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.073Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.073Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.073Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.074Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.074Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.074Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.074Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.075Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.075Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:42.075Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.075Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.075Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.076Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.076Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.076Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.076Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.076Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.076Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.077Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.077Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.077Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.078Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.078Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.078Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.078Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.078Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.078Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.079Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.079Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.079Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.080Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.080Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.080Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.080Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.080Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.080Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.081Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.081Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.081Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.082Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.082Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.082Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.082Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.082Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.082Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.083Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.083Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:42.083Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:42.089Z - Time taken for 'build-project-configs' 36.77820800244808ms -[NX Daemon Server] - 2024-09-14T13:54:42.106Z - Time taken for 'total execution time for createProjectGraph()' 14.05595800280571ms -[NX Daemon Server] - 2024-09-14T13:54:43.019Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:43.020Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:43.024Z - Time taken for 'total for creating and serializing project graph' 0.5150000005960464ms -[NX Daemon Server] - 2024-09-14T13:54:43.027Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:43.027Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T13:54:43.034Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:43.034Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:43.034Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:43.035Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:43.078Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:54:43.078Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:43.078Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:43.078Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:43.079Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:43.079Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:43.080Z - Time taken for 'total for creating and serializing project graph' 0.07508299499750137ms -[NX Daemon Server] - 2024-09-14T13:54:43.081Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:43.081Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:54:43.084Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:43.084Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:43.085Z - Time taken for 'total for creating and serializing project graph' 0.06533300131559372ms -[NX Daemon Server] - 2024-09-14T13:54:43.087Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:43.087Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:54:43.089Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:44.783Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:44.783Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:44.783Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:44.784Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:44.784Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:44.784Z - Time taken for 'changed-projects' 0.10762500017881393ms -[NX Daemon Server] - 2024-09-14T13:54:44.886Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:44.886Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:44.886Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:44.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.906Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.907Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.908Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.908Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:44.908Z - Time taken for 'hash changed files from watcher' 0.8367500007152557ms -[NX Daemon Server] - 2024-09-14T13:54:44.909Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.909Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.909Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.910Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.911Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.911Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.911Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.912Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.912Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.912Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.913Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.913Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.913Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.914Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.914Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.914Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.915Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.915Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.916Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.916Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.916Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.917Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.918Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.919Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.919Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:44.919Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.919Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.919Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.920Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.920Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.920Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.921Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.921Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.921Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.921Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.921Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.921Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.922Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.922Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.922Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.923Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.923Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.923Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.924Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.924Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.924Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.924Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.924Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.924Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.925Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.925Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.925Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.926Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.926Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.926Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.926Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.926Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.926Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.927Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.927Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.927Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.928Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.928Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.928Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.928Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.928Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.928Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.929Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.929Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.929Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.930Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:44.930Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:44.937Z - Time taken for 'build-project-configs' 45.127415999770164ms -[NX Daemon Server] - 2024-09-14T13:54:44.966Z - Time taken for 'total execution time for createProjectGraph()' 26.926750004291534ms -[NX Daemon Server] - 2024-09-14T13:54:45.790Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:45.791Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:45.794Z - Time taken for 'total for creating and serializing project graph' 0.49995899945497513ms -[NX Daemon Server] - 2024-09-14T13:54:45.797Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:45.798Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T13:54:45.805Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:45.806Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:45.806Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:45.807Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:45.848Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:54:45.849Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:45.849Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:45.849Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:45.849Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:45.849Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:45.851Z - Time taken for 'total for creating and serializing project graph' 0.08087500184774399ms -[NX Daemon Server] - 2024-09-14T13:54:45.852Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:45.852Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:54:45.854Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:45.855Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:45.856Z - Time taken for 'total for creating and serializing project graph' 0.0751659944653511ms -[NX Daemon Server] - 2024-09-14T13:54:45.857Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:45.857Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:54:45.859Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:51.588Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-utils.js was modified -[NX Daemon Server] - 2024-09-14T13:54:51.589Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:54:51.589Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:54:51.589Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.589Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:54:51.589Z - Time taken for 'changed-projects' 0.1402920037508011ms -[NX Daemon Server] - 2024-09-14T13:54:51.690Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:54:51.690Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:54:51.690Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:54:51.702Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:51.702Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.702Z - Time taken for 'hash changed files from watcher' 0.46858300268650055ms -[NX Daemon Server] - 2024-09-14T13:54:51.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.703Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.704Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.705Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.705Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.706Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.707Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.707Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.708Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.708Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.708Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.709Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.709Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.710Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.710Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.711Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.711Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.712Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.713Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.713Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.713Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.713Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.714Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.714Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.714Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.715Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.715Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.715Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.715Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.715Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.715Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.716Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.716Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.716Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.716Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.716Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.717Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:51.717Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:54:51.717Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:54:51.717Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.724Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.724Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.725Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.725Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.725Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.725Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.726Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:54:51.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.726Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.727Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.727Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:54:51.729Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:51.734Z - Time taken for 'build-project-configs' 40.077583998441696ms -[NX Daemon Server] - 2024-09-14T13:54:51.756Z - Time taken for 'total execution time for createProjectGraph()' 19.639792002737522ms -[NX Daemon Server] - 2024-09-14T13:54:52.597Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:52.598Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:52.602Z - Time taken for 'total for creating and serializing project graph' 0.5219159945845604ms -[NX Daemon Server] - 2024-09-14T13:54:52.604Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:52.604Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:54:52.612Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:52.612Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:54:52.612Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:54:52.613Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:52.653Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:54:52.653Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:52.653Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:54:52.653Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:54:52.654Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:52.654Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:52.655Z - Time taken for 'total for creating and serializing project graph' 0.08033400028944016ms -[NX Daemon Server] - 2024-09-14T13:54:52.656Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:52.656Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:54:52.659Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:54:52.659Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:54:52.660Z - Time taken for 'total for creating and serializing project graph' 0.09245800226926804ms -[NX Daemon Server] - 2024-09-14T13:54:52.661Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:54:52.661Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:54:52.663Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:12.436Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:55:12.438Z - [WATCHER]: 0 file(s) created or restored, 1 file(s) modified, 1 file(s) deleted -[NX Daemon Server] - 2024-09-14T13:55:12.438Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:55:12.438Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:55:12.438Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.438Z - Time taken for 'changed-projects' 0.08899999409914017ms -[NX Daemon Server] - 2024-09-14T13:55:12.539Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:55:12.539Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts.bak -[NX Daemon Server] - 2024-09-14T13:55:12.539Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts -[NX Daemon Server] - 2024-09-14T13:55:12.546Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.546Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.546Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.546Z - Time taken for 'hash changed files from watcher' 0.2717919945716858ms -[NX Daemon Server] - 2024-09-14T13:55:12.547Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.547Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.547Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.548Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.548Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.548Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.548Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.548Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.548Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.549Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.549Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.549Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.551Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.551Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.551Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.551Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.551Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.551Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.552Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.552Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.552Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.552Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.552Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.552Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.553Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.553Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.553Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.553Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.553Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.554Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:12.554Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.554Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.554Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.555Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.555Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.555Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.555Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.555Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.555Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.556Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.556Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.556Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.557Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.557Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.557Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.557Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.557Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.557Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.558Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.558Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.558Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.558Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.559Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.559Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.559Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.559Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.559Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.559Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.560Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.560Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.560Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.560Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.560Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.560Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.561Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.561Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.561Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.561Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.561Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.561Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.562Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.562Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.562Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.563Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.563Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.563Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.563Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.563Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.563Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.564Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.564Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.565Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.565Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:12.565Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:12.570Z - Time taken for 'build-project-configs' 27.51504100114107ms -[NX Daemon Server] - 2024-09-14T13:55:12.594Z - Time taken for 'total execution time for createProjectGraph()' 20.68716599792242ms -[NX Daemon Server] - 2024-09-14T13:55:13.444Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:13.444Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:13.448Z - Time taken for 'total for creating and serializing project graph' 0.29695799946784973ms -[NX Daemon Server] - 2024-09-14T13:55:13.449Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:13.449Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T13:55:13.456Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:13.456Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:13.456Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:13.457Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:13.495Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:55:13.495Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:13.495Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:13.495Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:13.496Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:13.496Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:13.497Z - Time taken for 'total for creating and serializing project graph' 0.10654100030660629ms -[NX Daemon Server] - 2024-09-14T13:55:13.499Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:13.499Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:55:13.501Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:13.501Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:13.502Z - Time taken for 'total for creating and serializing project graph' 0.06608299911022186ms -[NX Daemon Server] - 2024-09-14T13:55:13.503Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:13.503Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:55:13.506Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:21.004Z - [WATCHER]: 0 file(s) created or restored, 1 file(s) modified, 1 file(s) deleted -[NX Daemon Server] - 2024-09-14T13:55:21.004Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:55:21.004Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:55:21.004Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.004Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:55:21.005Z - Time taken for 'changed-projects' 0.08491700142621994ms -[NX Daemon Server] - 2024-09-14T13:55:21.106Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:55:21.109Z - [REQUEST]: libs/native-federation-node/src/lib/node/import-map-store.ts.bak -[NX Daemon Server] - 2024-09-14T13:55:21.113Z - [REQUEST]: libs/native-federation-node/src/lib/node/import-map-store.ts -[NX Daemon Server] - 2024-09-14T13:55:21.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.123Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.123Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.123Z - Time taken for 'hash changed files from watcher' 0.27991700172424316ms -[NX Daemon Server] - 2024-09-14T13:55:21.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.124Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.125Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.125Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.125Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.127Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:21.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.128Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.129Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:21.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.129Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.130Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.131Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.131Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.132Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.132Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.133Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.133Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.134Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.134Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.135Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.135Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.136Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.136Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.136Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.137Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.137Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.137Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.137Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.137Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.137Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.137Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.138Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.138Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:21.138Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.138Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.138Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.138Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.138Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.138Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.139Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.139Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.139Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.139Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.139Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.139Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.140Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.140Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.141Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.141Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.141Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.141Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.141Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.141Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.142Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.142Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.142Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.147Z - Time taken for 'build-project-configs' 30.33262500166893ms -[NX Daemon Server] - 2024-09-14T13:55:21.166Z - [WATCHER]: 0 file(s) created or restored, 3 file(s) modified, 0 file(s) deleted -[NX Daemon Server] - 2024-09-14T13:55:21.166Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:55:21.166Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:55:21.166Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.166Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:55:21.166Z - Time taken for 'changed-projects' 0.05008400231599808ms -[NX Daemon Server] - 2024-09-14T13:55:21.174Z - Time taken for 'total execution time for createProjectGraph()' 25.023416996002197ms -[NX Daemon Server] - 2024-09-14T13:55:21.368Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:55:21.368Z - [REQUEST]: libs/native-federation-node/src/lib/node/federation-resolver.ts.bak,libs/native-federation-node/tsconfig.lib.json,libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:55:21.368Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:55:21.377Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.377Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.377Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.377Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.377Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.377Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.377Z - Time taken for 'hash changed files from watcher' 0.30479200184345245ms -[NX Daemon Server] - 2024-09-14T13:55:21.378Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.378Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.378Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.378Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.378Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.378Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.379Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.379Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.379Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.380Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.380Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.380Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.380Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.380Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.380Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.381Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.381Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.381Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.381Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.381Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.381Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.382Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.382Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.382Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.382Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.382Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.382Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.383Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.383Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.383Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.383Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.383Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.383Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.384Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.384Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.384Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.385Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.385Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.385Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.385Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.385Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.385Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.386Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.386Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.386Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.386Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.386Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.386Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.387Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.387Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.387Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.387Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.387Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.387Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.388Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.388Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.388Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.388Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.388Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.388Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.389Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.389Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.389Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.390Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:55:21.390Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:55:21.390Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.395Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.395Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.395Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.396Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.397Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.397Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.398Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.398Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.399Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.399Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.399Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.401Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.401Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:21.401Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:21.405Z - Time taken for 'build-project-configs' 34.17629100382328ms -[NX Daemon Server] - 2024-09-14T13:55:21.431Z - Time taken for 'total execution time for createProjectGraph()' 23.80791699886322ms -[NX Daemon Server] - 2024-09-14T13:55:22.172Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:22.172Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:22.174Z - Time taken for 'total for creating and serializing project graph' 0.3046249970793724ms -[NX Daemon Server] - 2024-09-14T13:55:22.178Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:22.178Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:55:22.181Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:22.181Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:22.181Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:22.182Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:22.217Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:55:22.217Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:22.217Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:22.218Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:22.218Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:22.218Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:22.219Z - Time taken for 'total for creating and serializing project graph' 0.0668330043554306ms -[NX Daemon Server] - 2024-09-14T13:55:22.220Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:22.220Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:55:22.222Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:22.222Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:22.223Z - Time taken for 'total for creating and serializing project graph' 0.058041997253894806ms -[NX Daemon Server] - 2024-09-14T13:55:22.224Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:22.224Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:55:22.226Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:25.326Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:55:25.326Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:55:25.326Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:55:25.326Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.326Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:55:25.326Z - Time taken for 'changed-projects' 0.05870800465345383ms -[NX Daemon Server] - 2024-09-14T13:55:25.428Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:55:25.428Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:55:25.428Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:55:25.447Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.447Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.447Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.448Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.448Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.448Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.448Z - Time taken for 'hash changed files from watcher' 0.6719169989228249ms -[NX Daemon Server] - 2024-09-14T13:55:25.449Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.449Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.449Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.450Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.450Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.450Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.451Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.451Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.451Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.451Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.452Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.452Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.452Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.453Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.453Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.453Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.453Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.453Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.453Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.454Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.455Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.455Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.455Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.455Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.455Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.456Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:25.456Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.456Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.456Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.457Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.457Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.457Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.458Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.458Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.458Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.458Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.458Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.458Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.459Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.459Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.459Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.459Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.459Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.459Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.460Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.460Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.460Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.461Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.461Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.461Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.461Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.461Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.461Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.462Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.462Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.462Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.463Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.463Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.463Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.464Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:55:25.464Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:55:25.464Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.469Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.470Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.470Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.470Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.470Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.470Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.470Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.471Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.472Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.472Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.473Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.476Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.476Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.476Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.481Z - Time taken for 'build-project-configs' 48.10608399659395ms -[NX Daemon Server] - 2024-09-14T13:55:25.484Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:55:25.484Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:55:25.484Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:55:25.484Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.484Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:55:25.484Z - Time taken for 'changed-projects' 0.04412499815225601ms -[NX Daemon Server] - 2024-09-14T13:55:25.505Z - Time taken for 'total execution time for createProjectGraph()' 21.57270799577236ms -[NX Daemon Server] - 2024-09-14T13:55:25.685Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:55:25.685Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:55:25.685Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:55:25.697Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.697Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.697Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.698Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.698Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.698Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.698Z - Time taken for 'hash changed files from watcher' 0.3922500014305115ms -[NX Daemon Server] - 2024-09-14T13:55:25.699Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.699Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.699Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.699Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.699Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.699Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.700Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.700Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.700Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.701Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.701Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.701Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.701Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.701Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.701Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.702Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.703Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.703Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.704Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.705Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:25.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.705Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.706Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.706Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.707Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.707Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.708Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.708Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.708Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.708Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.708Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.708Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.709Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.710Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.710Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.710Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.710Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.711Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.712Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.712Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.713Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.713Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.713Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.713Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.714Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.714Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.714Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.714Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.714Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.714Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.715Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.715Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.715Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.715Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.715Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:25.715Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:25.721Z - Time taken for 'build-project-configs' 32.397374995052814ms -[NX Daemon Server] - 2024-09-14T13:55:25.738Z - Time taken for 'total execution time for createProjectGraph()' 14.773959003388882ms -[NX Daemon Server] - 2024-09-14T13:55:26.491Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:26.491Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:26.495Z - Time taken for 'total for creating and serializing project graph' 0.5659589990973473ms -[NX Daemon Server] - 2024-09-14T13:55:26.500Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:26.500Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. -[NX Daemon Server] - 2024-09-14T13:55:26.507Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:26.507Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:26.507Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:26.508Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:26.549Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:55:26.550Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:26.550Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:26.550Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:26.550Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:26.551Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:26.552Z - Time taken for 'total for creating and serializing project graph' 0.08662500232458115ms -[NX Daemon Server] - 2024-09-14T13:55:26.553Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:26.553Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:55:26.555Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:26.555Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:26.557Z - Time taken for 'total for creating and serializing project graph' 0.05570799857378006ms -[NX Daemon Server] - 2024-09-14T13:55:26.562Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:26.562Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T13:55:26.564Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:29.180Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:55:29.181Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:55:29.181Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:55:29.181Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.181Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:55:29.181Z - Time taken for 'changed-projects' 0.12091699987649918ms -[NX Daemon Server] - 2024-09-14T13:55:29.282Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:55:29.282Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:55:29.282Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:55:29.301Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.301Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.301Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.302Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.302Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.302Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.303Z - Time taken for 'hash changed files from watcher' 0.6618330031633377ms -[NX Daemon Server] - 2024-09-14T13:55:29.304Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.304Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.304Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.305Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.305Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.305Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.306Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.306Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.306Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.307Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.307Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.307Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.307Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.307Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.307Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.308Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.308Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.308Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.309Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.309Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.309Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.310Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.310Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.310Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.311Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.311Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.311Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.312Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.312Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.312Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.313Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.313Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.313Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.314Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.314Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.314Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.314Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.314Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.314Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.315Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.315Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.315Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.316Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.316Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.316Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.317Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.317Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.317Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.318Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.318Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.318Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.318Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.318Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.318Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.319Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.319Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.319Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.320Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.320Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.320Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.320Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.320Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.320Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.321Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:55:29.321Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:55:29.321Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.326Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.326Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.326Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.327Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.327Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.327Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.328Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.328Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.328Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.328Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.328Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.328Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.329Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.329Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.329Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.330Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.330Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.330Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.331Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.331Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.331Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.333Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.333Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:29.333Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:29.338Z - Time taken for 'build-project-configs' 51.015916995704174ms -[NX Daemon Server] - 2024-09-14T13:55:29.360Z - Time taken for 'total execution time for createProjectGraph()' 19.87116700410843ms -[NX Daemon Server] - 2024-09-14T13:55:30.190Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:30.190Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:30.194Z - Time taken for 'total for creating and serializing project graph' 0.5046250000596046ms -[NX Daemon Server] - 2024-09-14T13:55:30.196Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:30.197Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T13:55:30.204Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:30.205Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:30.205Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:30.206Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:30.246Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:55:30.247Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:30.247Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:30.247Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:30.247Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:30.247Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:30.249Z - Time taken for 'total for creating and serializing project graph' 0.08466699719429016ms -[NX Daemon Server] - 2024-09-14T13:55:30.249Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:30.249Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:55:30.252Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:30.252Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:30.253Z - Time taken for 'total for creating and serializing project graph' 0.05183299630880356ms -[NX Daemon Server] - 2024-09-14T13:55:30.254Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:30.254Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:55:30.256Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:47.062Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:55:47.062Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:55:47.062Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:55:47.062Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.062Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:55:47.062Z - Time taken for 'changed-projects' 0.14683300256729126ms -[NX Daemon Server] - 2024-09-14T13:55:47.165Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:55:47.165Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:55:47.165Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:55:47.190Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.190Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.191Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:47.191Z - Time taken for 'hash changed files from watcher' 0.8510409966111183ms -[NX Daemon Server] - 2024-09-14T13:55:47.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.192Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.192Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.193Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.193Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:47.193Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.193Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.193Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.194Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.195Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.195Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.195Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.196Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.196Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.196Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.197Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.198Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.198Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.198Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.198Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.198Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.198Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.199Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.199Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.199Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.200Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.200Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.200Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.201Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.201Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.202Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.203Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.204Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.204Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.204Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.204Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.204Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.204Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.205Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.205Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.205Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.206Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.206Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.206Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.207Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.207Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.207Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.207Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.207Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.207Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.208Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.208Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.208Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.209Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:55:47.209Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:55:47.209Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.216Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.216Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.216Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.217Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.217Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.217Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.217Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.217Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.217Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.218Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.218Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.218Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.219Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.219Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.219Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.219Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.219Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.219Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.220Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.220Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.220Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.222Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.222Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.222Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.227Z - Time taken for 'build-project-configs' 56.45058400183916ms -[NX Daemon Server] - 2024-09-14T13:55:47.250Z - Time taken for 'total execution time for createProjectGraph()' 19.965500004589558ms -[NX Daemon Server] - 2024-09-14T13:55:47.250Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:55:47.250Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:55:47.250Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:55:47.250Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.250Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:55:47.250Z - Time taken for 'changed-projects' 0.0330829992890358ms -[NX Daemon Server] - 2024-09-14T13:55:47.452Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:55:47.453Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:55:47.453Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:55:47.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.472Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.473Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.473Z - Time taken for 'hash changed files from watcher' 0.7253340035676956ms -[NX Daemon Server] - 2024-09-14T13:55:47.474Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.474Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.474Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.475Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.475Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.475Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.476Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.476Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.476Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.477Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.477Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.477Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.478Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.478Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.478Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.479Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.479Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.479Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.480Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.480Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.481Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.482Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.483Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:47.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.485Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.486Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.486Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.487Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.488Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.489Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.490Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.491Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.492Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.492Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.493Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.494Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.494Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.495Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:55:47.495Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:47.501Z - Time taken for 'build-project-configs' 43.463790997862816ms -[NX Daemon Server] - 2024-09-14T13:55:47.518Z - Time taken for 'total execution time for createProjectGraph()' 14.615500003099442ms -[NX Daemon Server] - 2024-09-14T13:55:48.253Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:48.254Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:48.255Z - Time taken for 'total for creating and serializing project graph' 0.13987499475479126ms -[NX Daemon Server] - 2024-09-14T13:55:48.257Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:48.257Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:55:48.262Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:48.262Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:55:48.262Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:55:48.262Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:48.303Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:55:48.303Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:48.303Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:55:48.303Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:55:48.303Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:48.304Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:48.305Z - Time taken for 'total for creating and serializing project graph' 0.0750419944524765ms -[NX Daemon Server] - 2024-09-14T13:55:48.305Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:48.305Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:55:48.308Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:55:48.308Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:55:48.309Z - Time taken for 'total for creating and serializing project graph' 0.06708399951457977ms -[NX Daemon Server] - 2024-09-14T13:55:48.310Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:55:48.310Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:55:48.312Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:00.363Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:00.363Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:00.363Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:00.363Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.363Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:00.363Z - Time taken for 'changed-projects' 0.06520800292491913ms -[NX Daemon Server] - 2024-09-14T13:56:00.465Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:00.465Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:56:00.465Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:00.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.481Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.481Z - Time taken for 'hash changed files from watcher' 0.6221249997615814ms -[NX Daemon Server] - 2024-09-14T13:56:00.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.486Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.487Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.488Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.489Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.490Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.491Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.492Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.492Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.493Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.494Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.495Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:00.495Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.495Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.496Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.496Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.496Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.496Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.496Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.496Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.497Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.497Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.497Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.498Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.498Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.499Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:56:00.499Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:56:00.499Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.505Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.505Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.505Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.506Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.506Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.506Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:00.506Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.506Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.506Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.507Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.507Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.507Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.507Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.507Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.507Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.508Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.508Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.508Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.508Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.508Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.508Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.511Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.511Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.511Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.516Z - Time taken for 'build-project-configs' 46.04745800048113ms -[NX Daemon Server] - 2024-09-14T13:56:00.534Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:00.534Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:00.534Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:00.534Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.534Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:00.535Z - Time taken for 'changed-projects' 0.05025000125169754ms -[NX Daemon Server] - 2024-09-14T13:56:00.543Z - Time taken for 'total execution time for createProjectGraph()' 24.457916997373104ms -[NX Daemon Server] - 2024-09-14T13:56:00.736Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:00.736Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:56:00.736Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:00.752Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.752Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.752Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.753Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.753Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.753Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.754Z - Time taken for 'hash changed files from watcher' 0.5023339986801147ms -[NX Daemon Server] - 2024-09-14T13:56:00.755Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.755Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.755Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.756Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.756Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.756Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.756Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.756Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.757Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:00.757Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.757Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.757Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.758Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.758Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.758Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.760Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.760Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.760Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.761Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.761Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.761Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.762Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.762Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.762Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.763Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.763Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.763Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.764Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.764Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.764Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.764Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.764Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.764Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.765Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.766Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.767Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.767Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.768Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.769Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:00.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.769Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.770Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.770Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.771Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.772Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.772Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.773Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.774Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:00.776Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:00.783Z - Time taken for 'build-project-configs' 41.68391600251198ms -[NX Daemon Server] - 2024-09-14T13:56:00.803Z - Time taken for 'total execution time for createProjectGraph()' 18.380042001605034ms -[NX Daemon Server] - 2024-09-14T13:56:01.542Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:01.542Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:01.546Z - Time taken for 'total for creating and serializing project graph' 0.49175000190734863ms -[NX Daemon Server] - 2024-09-14T13:56:01.551Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:01.551Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. -[NX Daemon Server] - 2024-09-14T13:56:01.558Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:01.559Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:01.559Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:01.559Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:01.602Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:56:01.603Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:01.603Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:01.603Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:01.603Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:01.603Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:01.604Z - Time taken for 'total for creating and serializing project graph' 0.07900000363588333ms -[NX Daemon Server] - 2024-09-14T13:56:01.605Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:01.605Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:56:01.608Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:01.608Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:01.609Z - Time taken for 'total for creating and serializing project graph' 0.0663749948143959ms -[NX Daemon Server] - 2024-09-14T13:56:01.610Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:01.610Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:56:01.613Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:17.153Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:17.153Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:17.153Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:17.153Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.153Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:17.153Z - Time taken for 'changed-projects' 0.09612499922513962ms -[NX Daemon Server] - 2024-09-14T13:56:17.255Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:17.255Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:56:17.255Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:17.271Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.271Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.271Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.272Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.272Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.272Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.272Z - Time taken for 'hash changed files from watcher' 0.7176670059561729ms -[NX Daemon Server] - 2024-09-14T13:56:17.273Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.273Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.273Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.274Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.274Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.274Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.275Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.275Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.275Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.276Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.276Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.276Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.276Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.277Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.277Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:17.277Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.277Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.277Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.278Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.278Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.278Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.279Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.279Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.279Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.280Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.280Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.280Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.281Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.281Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.281Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.281Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.281Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.281Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.282Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.282Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.282Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.283Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.283Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.283Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.283Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.283Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.283Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.284Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.284Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.284Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.285Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.285Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.285Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.286Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.286Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.286Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.286Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.286Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.286Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.287Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.287Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.287Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.288Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.288Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.288Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.289Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.289Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.289Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.290Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:56:17.290Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:56:17.290Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.295Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.295Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.295Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.296Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.296Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.296Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.296Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.296Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.296Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.297Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.297Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.297Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.298Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.298Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.298Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.299Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.299Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.299Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.299Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.299Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.299Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.301Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.301Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:17.301Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:17.306Z - Time taken for 'build-project-configs' 46.352874994277954ms -[NX Daemon Server] - 2024-09-14T13:56:17.330Z - Time taken for 'total execution time for createProjectGraph()' 21.258041001856327ms -[NX Daemon Server] - 2024-09-14T13:56:18.161Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:18.162Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:18.165Z - Time taken for 'total for creating and serializing project graph' 0.47724999487400055ms -[NX Daemon Server] - 2024-09-14T13:56:18.168Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:18.168Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:56:18.175Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:18.175Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:18.175Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:18.175Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:18.224Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:56:18.225Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:18.225Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:18.225Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:18.226Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:18.226Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:18.227Z - Time taken for 'total for creating and serializing project graph' 0.10270900279283524ms -[NX Daemon Server] - 2024-09-14T13:56:18.228Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:18.228Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:56:18.231Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:18.231Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:18.233Z - Time taken for 'total for creating and serializing project graph' 0.1202080026268959ms -[NX Daemon Server] - 2024-09-14T13:56:18.234Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:18.234Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:56:18.236Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:20.028Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:20.031Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:20.031Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:20.031Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:20.031Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.031Z - Time taken for 'changed-projects' 0.11283300071954727ms -[NX Daemon Server] - 2024-09-14T13:56:20.133Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:20.133Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:56:20.133Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:20.145Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.145Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.145Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.146Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.146Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.146Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.146Z - Time taken for 'hash changed files from watcher' 0.5757090002298355ms -[NX Daemon Server] - 2024-09-14T13:56:20.146Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.146Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.146Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.147Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.147Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.147Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.148Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.148Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.148Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.148Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.148Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.148Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.149Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.149Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.150Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:20.150Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.150Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.150Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.151Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.151Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.151Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.151Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.152Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.152Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:20.152Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.152Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.152Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.153Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.153Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.153Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.154Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.154Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.154Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.154Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.154Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.154Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.155Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.155Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.155Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.155Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.155Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.155Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.156Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.156Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.156Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.157Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.157Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.157Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.158Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.158Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.158Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.158Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.158Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.158Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.159Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.159Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.159Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.159Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.159Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.159Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.160Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.160Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.160Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.161Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:56:20.161Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:56:20.161Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.167Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.167Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.167Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.167Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.167Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.167Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.168Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.168Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.168Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.168Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.168Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.168Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.169Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.169Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.169Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.169Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.170Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.170Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:20.170Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.170Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.170Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.172Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.176Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.176Z - Handled HASH_GLOB. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T13:56:20.181Z - Time taken for 'build-project-configs' 43.902125000953674ms -[NX Daemon Server] - 2024-09-14T13:56:20.203Z - Time taken for 'total execution time for createProjectGraph()' 20.197207994759083ms -[NX Daemon Server] - 2024-09-14T13:56:20.229Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:20.229Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:20.229Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:20.229Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.229Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:20.229Z - Time taken for 'changed-projects' 0.03966699540615082ms -[NX Daemon Server] - 2024-09-14T13:56:20.431Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:20.432Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:56:20.432Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:20.449Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.449Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.449Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.450Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.450Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.450Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.450Z - Time taken for 'hash changed files from watcher' 0.5972089990973473ms -[NX Daemon Server] - 2024-09-14T13:56:20.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.451Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.451Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.452Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.452Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.452Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.453Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.453Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.453Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.455Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.455Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.455Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.456Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.456Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.456Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.457Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.457Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.457Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.457Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.457Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.457Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.458Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.458Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.458Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.459Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.459Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.459Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.460Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.460Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.460Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.460Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.461Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.461Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:20.461Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.461Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.461Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.462Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.462Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.462Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.463Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.463Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.463Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.463Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.463Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.463Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.464Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.464Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.464Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.465Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.465Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.465Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.465Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.465Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.465Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.466Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.466Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.466Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.467Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.467Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.467Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.468Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.468Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.468Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.468Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.468Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.468Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.469Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.469Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.470Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.470Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.470Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.471Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.471Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.472Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:20.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:20.473Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:20.479Z - Time taken for 'build-project-configs' 41.528999999165535ms -[NX Daemon Server] - 2024-09-14T13:56:20.495Z - Time taken for 'total execution time for createProjectGraph()' 13.927415996789932ms -[NX Daemon Server] - 2024-09-14T13:56:21.237Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:21.238Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:21.240Z - Time taken for 'total for creating and serializing project graph' 0.596500001847744ms -[NX Daemon Server] - 2024-09-14T13:56:21.245Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:21.245Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T13:56:21.253Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:21.253Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:21.253Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:21.254Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:21.292Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:56:21.293Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:21.293Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:21.293Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:21.293Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:21.293Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:21.295Z - Time taken for 'total for creating and serializing project graph' 0.08379100263118744ms -[NX Daemon Server] - 2024-09-14T13:56:21.295Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:21.295Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:56:21.298Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:21.298Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:21.300Z - Time taken for 'total for creating and serializing project graph' 0.04924999922513962ms -[NX Daemon Server] - 2024-09-14T13:56:21.300Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:21.300Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:56:21.303Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:21.999Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:21.999Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:21.999Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:21.999Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:21.999Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:21.999Z - Time taken for 'changed-projects' 0.1192920058965683ms -[NX Daemon Server] - 2024-09-14T13:56:22.102Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:22.102Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:56:22.102Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:22.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.117Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.118Z - Time taken for 'hash changed files from watcher' 0.7002080008387566ms -[NX Daemon Server] - 2024-09-14T13:56:22.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.119Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.121Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.123Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.123Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.124Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.125Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.125Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.125Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.126Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.127Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.127Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.127Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.127Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.127Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.127Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.128Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.129Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.130Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.130Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.131Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.132Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.132Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.133Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.133Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.134Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.135Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.135Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:56:22.136Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:56:22.136Z - Handled GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:22.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.140Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.141Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.141Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.141Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.142Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.142Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.142Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.143Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.143Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.143Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.144Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.144Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.144Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.146Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.146Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.146Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.147Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.147Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.147Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.149Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.149Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:22.149Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:22.154Z - Time taken for 'build-project-configs' 47.3874169960618ms -[NX Daemon Server] - 2024-09-14T13:56:22.176Z - Time taken for 'total execution time for createProjectGraph()' 19.90870799869299ms -[NX Daemon Server] - 2024-09-14T13:56:23.001Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:23.001Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:23.003Z - Time taken for 'total for creating and serializing project graph' 0.13374999910593033ms -[NX Daemon Server] - 2024-09-14T13:56:23.005Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:23.005Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T13:56:23.008Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:23.008Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:23.008Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:23.009Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:23.043Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:56:23.043Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:23.043Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:23.044Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:23.044Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:23.044Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:23.046Z - Time taken for 'total for creating and serializing project graph' 0.09166700392961502ms -[NX Daemon Server] - 2024-09-14T13:56:23.047Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:23.047Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:56:23.049Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:23.049Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:23.050Z - Time taken for 'total for creating and serializing project graph' 0.09633299708366394ms -[NX Daemon Server] - 2024-09-14T13:56:23.051Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:23.052Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:56:23.054Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:27.604Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:27.605Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:27.605Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:27.605Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.605Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:27.605Z - Time taken for 'changed-projects' 0.13237500190734863ms -[NX Daemon Server] - 2024-09-14T13:56:27.708Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:27.708Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:56:27.708Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:27.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.729Z - Handled HASH_GLOB. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:56:27.730Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.730Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.730Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.730Z - Time taken for 'hash changed files from watcher' 1.7816249951720238ms -[NX Daemon Server] - 2024-09-14T13:56:27.731Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.731Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.731Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.732Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.732Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.732Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.733Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.733Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.733Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.733Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.733Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.733Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.735Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.735Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.735Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.735Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.735Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.735Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.736Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.736Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.736Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.737Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.737Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.737Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.738Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.738Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.738Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.738Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.738Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.738Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.739Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.739Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.739Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.740Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.740Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.740Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.741Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.741Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.741Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.741Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.741Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.741Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.742Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.742Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.742Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.743Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.743Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.743Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.744Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.744Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.744Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.744Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.744Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.744Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.745Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.745Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.745Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.746Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.746Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.746Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.747Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.747Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.747Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.747Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:56:27.747Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:56:27.748Z - Handled GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:27.754Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.754Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.754Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.754Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.754Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.754Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.755Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.755Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.755Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.756Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.756Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.756Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.756Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.756Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.756Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.757Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.757Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.757Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.757Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.757Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.757Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.760Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.760Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:27.760Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.764Z - Time taken for 'build-project-configs' 50.7107499986887ms -[NX Daemon Server] - 2024-09-14T13:56:27.791Z - Time taken for 'total execution time for createProjectGraph()' 24.23241700232029ms -[NX Daemon Server] - 2024-09-14T13:56:27.791Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:27.791Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:27.791Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:27.791Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.791Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:27.791Z - Time taken for 'changed-projects' 0.03312499821186066ms -[NX Daemon Server] - 2024-09-14T13:56:27.921Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T13:56:27.921Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:27.921Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:27.921Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:27.921Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:27.921Z - Time taken for 'changed-projects' 0.07754199951887131ms -[NX Daemon Server] - 2024-09-14T13:56:27.993Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:27.994Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T13:56:27.994Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:28.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.009Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.010Z - Time taken for 'hash changed files from watcher' 0.561208002269268ms -[NX Daemon Server] - 2024-09-14T13:56:28.011Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.011Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.011Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.012Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.013Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.014Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.014Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.014Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.015Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.015Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.015Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.016Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.016Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.016Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.017Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.017Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.017Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.017Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.017Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.017Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.018Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.018Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.018Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.019Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.019Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.019Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.020Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.020Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.020Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.020Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.020Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.020Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.021Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.021Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.021Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.022Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.022Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.022Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.022Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.022Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.022Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.023Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.023Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.023Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.024Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.024Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.024Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.024Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.024Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.024Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.025Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.025Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.025Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.026Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.026Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.026Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.026Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.026Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.026Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.027Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.028Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.028Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.029Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.030Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.030Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.031Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:28.032Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.038Z - Time taken for 'build-project-configs' 39.62687499821186ms -[NX Daemon Server] - 2024-09-14T13:56:28.055Z - Time taken for 'total execution time for createProjectGraph()' 14.602292001247406ms -[NX Daemon Server] - 2024-09-14T13:56:28.927Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:28.928Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:28.931Z - Time taken for 'total for creating and serializing project graph' 0.5122499987483025ms -[NX Daemon Server] - 2024-09-14T13:56:28.933Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:28.933Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T13:56:28.941Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:28.941Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:28.941Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:28.942Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:28.981Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:56:28.981Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:28.981Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:28.981Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:28.981Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:28.982Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:28.983Z - Time taken for 'total for creating and serializing project graph' 0.08375000208616257ms -[NX Daemon Server] - 2024-09-14T13:56:28.984Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:28.984Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:56:28.986Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:28.986Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:28.988Z - Time taken for 'total for creating and serializing project graph' 0.07754199951887131ms -[NX Daemon Server] - 2024-09-14T13:56:28.988Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:28.988Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:56:28.991Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:57.227Z - [WATCHER]: 0 file(s) created or restored, 1 file(s) modified, 1 file(s) deleted -[NX Daemon Server] - 2024-09-14T13:56:57.228Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:57.228Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:57.228Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.228Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:57.229Z - Time taken for 'changed-projects' 0.26579199731349945ms -[NX Daemon Server] - 2024-09-14T13:56:57.329Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:57.329Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T13:56:57.329Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-utils.js -[NX Daemon Server] - 2024-09-14T13:56:57.337Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.337Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.337Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.338Z - Time taken for 'hash changed files from watcher' 0.26224999874830246ms -[NX Daemon Server] - 2024-09-14T13:56:57.339Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.339Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.339Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.340Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.340Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.340Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.340Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.340Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.340Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.341Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.341Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.341Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.342Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.342Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.342Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.342Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.342Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.342Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.343Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.343Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.343Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.343Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.343Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.343Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.344Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.344Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.344Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.344Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.345Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.345Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:57.345Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.345Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.345Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.345Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.345Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.345Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.346Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.346Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.346Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.346Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.346Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.346Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.347Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.347Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.347Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.347Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.347Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.347Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.348Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.348Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.348Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.348Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.348Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.348Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.349Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.349Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.349Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.349Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.350Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.350Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.350Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.351Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.351Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.351Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.351Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.351Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.351Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.352Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.352Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.352Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.352Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.352Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.352Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.353Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.353Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.353Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.353Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.353Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.353Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.354Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.354Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.354Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.354Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.354Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.354Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.355Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.355Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.355Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.360Z - Time taken for 'build-project-configs' 27.266874998807907ms -[NX Daemon Server] - 2024-09-14T13:56:57.383Z - Time taken for 'total execution time for createProjectGraph()' 20.280375003814697ms -[NX Daemon Server] - 2024-09-14T13:56:57.766Z - [WATCHER]: 0 file(s) created or restored, 2 file(s) modified, 0 file(s) deleted -[NX Daemon Server] - 2024-09-14T13:56:57.766Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:56:57.766Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:56:57.767Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:56:57.767Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:56:57.767Z - Time taken for 'changed-projects' 0.04416700452566147ms -[NX Daemon Server] - 2024-09-14T13:56:57.968Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:56:57.968Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts,libs/native-federation-node/src/lib/node/federation-resolver.ts.bak -[NX Daemon Server] - 2024-09-14T13:56:57.968Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:56:57.978Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.978Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.978Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.979Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.979Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.979Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.979Z - Time taken for 'hash changed files from watcher' 0.4201669991016388ms -[NX Daemon Server] - 2024-09-14T13:56:57.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.980Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.980Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.981Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.981Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.981Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.982Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.982Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.982Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.983Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.983Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.983Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.984Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.984Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.984Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.984Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.984Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.984Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.985Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.985Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.985Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.986Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.986Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.986Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.986Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.986Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.986Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.987Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.987Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.987Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.988Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.988Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.988Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.988Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.988Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.988Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.989Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.989Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.989Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.989Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.990Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.991Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.992Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.993Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.993Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.994Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.994Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:57.994Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:57.995Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:56:57.995Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:56:57.995Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.000Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.000Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.000Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.001Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.001Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.001Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.002Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.002Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.002Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.002Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.002Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.002Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.003Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.003Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.003Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.003Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.003Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.003Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.004Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.004Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.004Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.006Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.006Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:56:58.006Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.011Z - Time taken for 'build-project-configs' 39.1757920011878ms -[NX Daemon Server] - 2024-09-14T13:56:58.035Z - Time taken for 'total execution time for createProjectGraph()' 21.105167001485825ms -[NX Daemon Server] - 2024-09-14T13:56:58.774Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:58.774Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:58.778Z - Time taken for 'total for creating and serializing project graph' 0.45308399945497513ms -[NX Daemon Server] - 2024-09-14T13:56:58.780Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:58.780Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:56:58.786Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:58.786Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:56:58.786Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:56:58.787Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:58.854Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:56:58.855Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:58.855Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:56:58.855Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:56:58.855Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:58.855Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:58.857Z - Time taken for 'total for creating and serializing project graph' 0.08241600543260574ms -[NX Daemon Server] - 2024-09-14T13:56:58.858Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:58.858Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:56:58.861Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:56:58.862Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:56:58.863Z - Time taken for 'total for creating and serializing project graph' 0.20762500166893005ms -[NX Daemon Server] - 2024-09-14T13:56:58.867Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:56:58.867Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T13:56:58.869Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:57:09.230Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T13:57:09.230Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:57:09.230Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:57:09.230Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.230Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:57:09.230Z - Time taken for 'changed-projects' 0.07133299857378006ms -[NX Daemon Server] - 2024-09-14T13:57:09.331Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:57:09.333Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T13:57:09.333Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:57:09.348Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.348Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.348Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.349Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.349Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.349Z - Time taken for 'hash changed files from watcher' 0.627750001847744ms -[NX Daemon Server] - 2024-09-14T13:57:09.350Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.350Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.350Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.351Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.351Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.351Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.351Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.351Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.351Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.352Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.352Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.352Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.353Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.353Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.353Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.354Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.354Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.354Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.354Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.354Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.355Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:57:09.355Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.355Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.355Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.356Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.356Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.356Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.357Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.357Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.357Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.358Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.358Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.358Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.359Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.359Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.359Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.359Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.359Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.359Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.360Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.360Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.360Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.361Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.361Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.361Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.362Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.362Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.362Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.362Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.362Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.362Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.363Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.363Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.363Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.364Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.364Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.364Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.365Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.365Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.365Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.365Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.365Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.365Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.366Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:57:09.366Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:57:09.366Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.372Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.372Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.372Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.372Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.372Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.372Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.373Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.373Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.373Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.374Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.374Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.374Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.375Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.375Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.375Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.375Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.375Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.375Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.376Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.376Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.376Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.378Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.378Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.378Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.384Z - Time taken for 'build-project-configs' 46.48983299732208ms -[NX Daemon Server] - 2024-09-14T13:57:09.390Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T13:57:09.390Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:57:09.390Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:57:09.390Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.390Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:57:09.390Z - Time taken for 'changed-projects' 0.04183399677276611ms -[NX Daemon Server] - 2024-09-14T13:57:09.407Z - Time taken for 'total execution time for createProjectGraph()' 21.521082997322083ms -[NX Daemon Server] - 2024-09-14T13:57:09.592Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:57:09.592Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T13:57:09.592Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:57:09.604Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.604Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.604Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.605Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.605Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.605Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.605Z - Time taken for 'hash changed files from watcher' 0.5487500056624413ms -[NX Daemon Server] - 2024-09-14T13:57:09.606Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.606Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.606Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.607Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.607Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.607Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.608Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.608Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.608Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.608Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.608Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.608Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.609Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.609Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.609Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.610Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.610Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.610Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.610Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.610Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.610Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.611Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.611Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.611Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.612Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.612Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.612Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.613Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.613Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.614Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.614Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.615Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.615Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.615Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.616Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.616Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.617Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.617Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.617Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.618Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.618Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.618Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.618Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.618Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.618Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.619Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.619Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.619Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.619Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.619Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.619Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.620Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.621Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:57:09.621Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.621Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.621Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.622Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.622Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.622Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.622Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.622Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.622Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.623Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.623Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.623Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.623Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.623Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.623Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.624Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.624Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:57:09.624Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:09.630Z - Time taken for 'build-project-configs' 33.78641600161791ms -[NX Daemon Server] - 2024-09-14T13:57:09.647Z - Time taken for 'total execution time for createProjectGraph()' 14.894000001251698ms -[NX Daemon Server] - 2024-09-14T13:57:10.393Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:57:10.393Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:57:10.395Z - Time taken for 'total for creating and serializing project graph' 0.1651659980416298ms -[NX Daemon Server] - 2024-09-14T13:57:10.397Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:57:10.397Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T13:57:10.401Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:57:10.401Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:57:10.401Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:57:10.402Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:57:10.440Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:57:10.440Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:57:10.440Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:57:10.440Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:57:10.441Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:57:10.441Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:57:10.442Z - Time taken for 'total for creating and serializing project graph' 0.08020900189876556ms -[NX Daemon Server] - 2024-09-14T13:57:10.443Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:57:10.443Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:57:10.446Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:57:10.446Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:57:10.447Z - Time taken for 'total for creating and serializing project graph' 0.12058299779891968ms -[NX Daemon Server] - 2024-09-14T13:57:10.452Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:57:10.452Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T13:57:10.455Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:59:04.882Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was created or restored -[NX Daemon Server] - 2024-09-14T13:59:04.882Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:59:04.983Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:59:04.984Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T13:59:04.984Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:59:04.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.990Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.990Z - Time taken for 'hash changed files from watcher' 0.2210410013794899ms -[NX Daemon Server] - 2024-09-14T13:59:04.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.991Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.991Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.992Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.992Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.993Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.993Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.994Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.994Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.994Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.994Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.994Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.994Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.995Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.996Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:59:04.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.996Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.996Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.997Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.997Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.997Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.997Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.997Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.997Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.998Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.998Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.998Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.998Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.998Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.998Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:04.999Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.999Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:04.999Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.000Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.000Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.000Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.000Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.000Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.000Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.001Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.001Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.001Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.001Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.001Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.001Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.002Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.002Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.002Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.002Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:59:05.002Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:59:05.002Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.009Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.009Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.010Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.011Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.011Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.011Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.012Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.012Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.014Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.014Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:05.014Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.018Z - Time taken for 'build-project-configs' 31.59529200196266ms -[NX Daemon Server] - 2024-09-14T13:59:05.041Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:59:05.041Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:59:05.041Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:05.041Z - Time taken for 'total execution time for createProjectGraph()' 20.200541995465755ms -[NX Daemon Server] - 2024-09-14T13:59:06.045Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:06.046Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:06.049Z - Time taken for 'total for creating and serializing project graph' 0.4056669995188713ms -[NX Daemon Server] - 2024-09-14T13:59:06.051Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:06.051Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T13:59:06.057Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:59:06.057Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:59:06.057Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:06.058Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:06.100Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:59:06.101Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:06.101Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:59:06.101Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:06.101Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:06.101Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:06.103Z - Time taken for 'total for creating and serializing project graph' 0.08487499505281448ms -[NX Daemon Server] - 2024-09-14T13:59:06.104Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:06.104Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:59:06.106Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:06.106Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:06.108Z - Time taken for 'total for creating and serializing project graph' 0.0667089968919754ms -[NX Daemon Server] - 2024-09-14T13:59:06.109Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:06.109Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:59:06.111Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:59:31.634Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was created or restored -[NX Daemon Server] - 2024-09-14T13:59:31.634Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:59:31.735Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:59:31.735Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T13:59:31.735Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:59:31.742Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.742Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.742Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.742Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.742Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.742Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.742Z - Time taken for 'hash changed files from watcher' 0.23283299803733826ms -[NX Daemon Server] - 2024-09-14T13:59:31.743Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.743Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.743Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.743Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.743Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.743Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.744Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.744Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.744Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.744Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.744Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.745Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:59:31.745Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.745Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.745Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.745Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.745Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.745Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.746Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.746Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.746Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.746Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.746Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.746Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.747Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.747Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.747Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.747Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.747Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.747Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.748Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.748Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.748Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.749Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.749Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.749Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.749Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.749Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.749Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.750Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.750Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.750Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.750Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.750Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.750Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.751Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.751Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.751Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.751Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.751Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.751Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.752Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.752Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.752Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.752Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.752Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.752Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.753Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.753Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.753Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.753Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.753Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.753Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.754Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:59:31.754Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:59:31.754Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.758Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.758Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.758Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.759Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.759Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.759Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.759Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.759Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.759Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.760Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.760Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.760Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.760Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.760Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.760Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.761Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.761Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.761Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.761Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.761Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.761Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.763Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.763Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:31.763Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.768Z - Time taken for 'build-project-configs' 29.00195799767971ms -[NX Daemon Server] - 2024-09-14T13:59:31.791Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:59:31.791Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:59:31.791Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:31.791Z - Time taken for 'total execution time for createProjectGraph()' 20.868916995823383ms -[NX Daemon Server] - 2024-09-14T13:59:32.795Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:32.795Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:32.797Z - Time taken for 'total for creating and serializing project graph' 0.2000420019030571ms -[NX Daemon Server] - 2024-09-14T13:59:32.799Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:32.799Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T13:59:32.804Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:59:32.804Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:59:32.804Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:32.805Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:32.848Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:59:32.849Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:32.849Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:59:32.849Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:32.849Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:32.849Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:32.851Z - Time taken for 'total for creating and serializing project graph' 0.09966699779033661ms -[NX Daemon Server] - 2024-09-14T13:59:32.851Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:32.851Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:59:32.854Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:32.855Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:32.856Z - Time taken for 'total for creating and serializing project graph' 0.10487499833106995ms -[NX Daemon Server] - 2024-09-14T13:59:32.857Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:32.857Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:59:32.859Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:59:32.898Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T13:59:32.898Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T13:59:32.898Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T13:59:32.898Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:32.898Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T13:59:32.898Z - Time taken for 'changed-projects' 0.05370800197124481ms -[NX Daemon Server] - 2024-09-14T13:59:32.999Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T13:59:32.999Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T13:59:32.999Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T13:59:33.007Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.007Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.007Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.007Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.007Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.008Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:59:33.008Z - Time taken for 'hash changed files from watcher' 0.30820799618959427ms -[NX Daemon Server] - 2024-09-14T13:59:33.008Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.008Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.008Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.009Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:59:33.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.011Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.011Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.011Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.012Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.013Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.013Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.014Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.014Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.014Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.015Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.015Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.015Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.015Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.016Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.016Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:59:33.016Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.016Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.016Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.017Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.017Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.017Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.018Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.018Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.018Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.018Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.019Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.019Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T13:59:33.019Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.019Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.019Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.020Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.020Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.020Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.021Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.021Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.021Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.021Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.021Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.021Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.022Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.022Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.022Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.022Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.022Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.022Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.023Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T13:59:33.023Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T13:59:33.023Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.027Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.027Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.028Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.029Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.029Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.030Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.030Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T13:59:33.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.037Z - Time taken for 'build-project-configs' 34.35354100167751ms -[NX Daemon Server] - 2024-09-14T13:59:33.066Z - Time taken for 'total execution time for createProjectGraph()' 26.4684170037508ms -[NX Daemon Server] - 2024-09-14T13:59:33.908Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:33.908Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:33.912Z - Time taken for 'total for creating and serializing project graph' 0.6182080060243607ms -[NX Daemon Server] - 2024-09-14T13:59:33.916Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:33.916Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2024-09-14T13:59:33.923Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T13:59:33.923Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T13:59:33.923Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T13:59:33.924Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:33.964Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T13:59:33.964Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:33.964Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T13:59:33.964Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T13:59:33.964Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:33.965Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:33.966Z - Time taken for 'total for creating and serializing project graph' 0.07879099994897842ms -[NX Daemon Server] - 2024-09-14T13:59:33.967Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:33.967Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T13:59:33.969Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T13:59:33.969Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T13:59:33.971Z - Time taken for 'total for creating and serializing project graph' 0.08270899951457977ms -[NX Daemon Server] - 2024-09-14T13:59:33.972Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T13:59:33.972Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T13:59:33.974Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:00:25.567Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:00:25.567Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:00:25.567Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:00:25.568Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:00:25.568Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:00:25.568Z - Time taken for 'changed-projects' 0.08695899695158005ms -[NX Daemon Server] - 2024-09-14T14:00:25.670Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:00:25.670Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:00:25.671Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:00:25.692Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.692Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.692Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.693Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.693Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.693Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.693Z - Time taken for 'hash changed files from watcher' 0.8428749963641167ms -[NX Daemon Server] - 2024-09-14T14:00:25.694Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.694Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.694Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.695Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.695Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.695Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.696Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.696Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.696Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.697Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.697Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.697Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.698Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.698Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.698Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.699Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.699Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.699Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.700Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.700Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.700Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.700Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.700Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.700Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.701Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.701Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.701Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.702Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.703Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.704Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.705Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.705Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.706Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.707Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.708Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.708Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.708Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.709Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.709Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.710Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.710Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.711Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.712Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:00:25.712Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:00:25.712Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.719Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.719Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.719Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.720Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.720Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.720Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.721Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.721Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.721Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.723Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.724Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:00:25.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.724Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.725Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.725Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.725Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.727Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.732Z - Time taken for 'build-project-configs' 56.5049589946866ms -[NX Daemon Server] - 2024-09-14T14:00:25.748Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:00:25.748Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:00:25.748Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:00:25.748Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.748Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:00:25.748Z - Time taken for 'changed-projects' 0.038708001375198364ms -[NX Daemon Server] - 2024-09-14T14:00:25.758Z - Time taken for 'total execution time for createProjectGraph()' 23.395999997854233ms -[NX Daemon Server] - 2024-09-14T14:00:25.951Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:00:25.951Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:00:25.951Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:00:25.968Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.968Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.968Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.969Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.969Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.969Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.969Z - Time taken for 'hash changed files from watcher' 0.6355839967727661ms -[NX Daemon Server] - 2024-09-14T14:00:25.970Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.970Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.970Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.971Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.972Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.972Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.972Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.972Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.972Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.972Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.973Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.973Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.973Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.974Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.974Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.974Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.975Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.975Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.975Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.976Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.976Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.976Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.977Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.977Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.977Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.978Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.978Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.978Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.978Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.978Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.978Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.979Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.979Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.979Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.980Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.980Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.981Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.981Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.981Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.982Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.982Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.982Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.982Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.982Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.982Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.983Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.983Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.983Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.984Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.984Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.984Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.984Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.984Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.984Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.985Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.985Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.985Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.986Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.986Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.986Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.986Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.987Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.987Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:00:25.987Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.987Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.987Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.988Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.988Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.988Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.989Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.989Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.989Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.989Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.990Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:25.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:25.991Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:00:25.997Z - Time taken for 'build-project-configs' 40.758708000183105ms -[NX Daemon Server] - 2024-09-14T14:00:26.016Z - Time taken for 'total execution time for createProjectGraph()' 16.460749998688698ms -[NX Daemon Server] - 2024-09-14T14:00:26.756Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:00:26.757Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:00:26.762Z - Time taken for 'total for creating and serializing project graph' 0.5400420054793358ms -[NX Daemon Server] - 2024-09-14T14:00:26.765Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:00:26.765Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T14:00:26.773Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:00:26.773Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:00:26.773Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:26.773Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:00:26.818Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:00:26.819Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:00:26.819Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:00:26.819Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:00:26.819Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:00:26.819Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:00:26.820Z - Time taken for 'total for creating and serializing project graph' 0.08245799690485ms -[NX Daemon Server] - 2024-09-14T14:00:26.821Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:00:26.821Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:00:26.824Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:00:26.824Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:00:26.825Z - Time taken for 'total for creating and serializing project graph' 0.059415996074676514ms -[NX Daemon Server] - 2024-09-14T14:00:26.826Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:00:26.826Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:00:26.828Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:00:40.523Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:00:40.524Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:00:40.524Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:00:40.524Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.524Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:00:40.524Z - Time taken for 'changed-projects' 0.19349999725818634ms -[NX Daemon Server] - 2024-09-14T14:00:40.625Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:00:40.625Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:00:40.625Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:00:40.640Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.640Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.640Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.641Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.641Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.641Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.641Z - Time taken for 'hash changed files from watcher' 0.5125420019030571ms -[NX Daemon Server] - 2024-09-14T14:00:40.642Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.642Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.642Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.643Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.643Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.643Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.644Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.644Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.644Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.645Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.645Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.645Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.646Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.646Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.646Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.646Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.646Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.646Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.647Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.647Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.647Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.648Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.648Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.648Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.649Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.649Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.649Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.650Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.650Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.651Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.651Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.651Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.652Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.652Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.652Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.652Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.653Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.653Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:00:40.653Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.653Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.653Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.654Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.654Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.654Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.655Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.655Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.655Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.655Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.655Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.655Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.656Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.656Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.656Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.657Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.657Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.657Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.658Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.658Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.658Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.658Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:00:40.658Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:00:40.658Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.665Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.665Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.665Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.666Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.666Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.666Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.666Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.666Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.666Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.667Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.667Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.667Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.668Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.668Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.668Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.668Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.668Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.668Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.669Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.669Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.669Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.670Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:00:40.670Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:00:40.670Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:00:40.670Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.670Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:00:40.671Z - Time taken for 'changed-projects' 0.04662499576807022ms -[NX Daemon Server] - 2024-09-14T14:00:40.671Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.671Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.671Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.676Z - Time taken for 'build-project-configs' 46.486458003520966ms -[NX Daemon Server] - 2024-09-14T14:00:40.700Z - Time taken for 'total execution time for createProjectGraph()' 21.473292000591755ms -[NX Daemon Server] - 2024-09-14T14:00:40.843Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:00:40.844Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:00:40.844Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:00:40.844Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:00:40.844Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.844Z - Time taken for 'changed-projects' 0.07879199832677841ms -[NX Daemon Server] - 2024-09-14T14:00:40.872Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:00:40.872Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:00:40.872Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:00:40.884Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.884Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.884Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.885Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.885Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.885Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.885Z - Time taken for 'hash changed files from watcher' 0.5245829969644547ms -[NX Daemon Server] - 2024-09-14T14:00:40.886Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.886Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.886Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.887Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.887Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.887Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.887Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.887Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.887Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.888Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.888Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.888Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.889Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.889Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.889Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.890Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.890Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.890Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.891Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.891Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.891Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.892Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.892Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.892Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.893Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.893Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.893Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.893Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.893Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.893Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.894Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.894Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.894Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.895Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.895Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.895Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.895Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.895Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.895Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.896Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.896Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.896Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.897Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.897Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.897Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.897Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.897Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.897Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.898Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.898Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.898Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.899Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.899Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.900Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.900Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.901Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.902Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.902Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.903Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.903Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.903Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.903Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.903Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.903Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.904Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.904Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.904Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.905Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.905Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.905Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:40.905Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:40.912Z - Time taken for 'build-project-configs' 35.939332999289036ms -[NX Daemon Server] - 2024-09-14T14:00:40.927Z - Time taken for 'total execution time for createProjectGraph()' 13.108916997909546ms -[NX Daemon Server] - 2024-09-14T14:00:41.850Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:00:41.851Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:00:41.855Z - Time taken for 'total for creating and serializing project graph' 0.5200419947504997ms -[NX Daemon Server] - 2024-09-14T14:00:41.858Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:00:41.858Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T14:00:41.864Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:00:41.864Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:00:41.864Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:41.864Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:00:41.905Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:00:41.905Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:00:41.905Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:00:41.905Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:00:41.906Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:00:41.906Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:00:41.907Z - Time taken for 'total for creating and serializing project graph' 0.10062500089406967ms -[NX Daemon Server] - 2024-09-14T14:00:41.908Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:00:41.908Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:00:41.911Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:00:41.911Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:00:41.912Z - Time taken for 'total for creating and serializing project graph' 0.06212499737739563ms -[NX Daemon Server] - 2024-09-14T14:00:41.916Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:00:41.916Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T14:00:41.919Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:00:59.120Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:00:59.121Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:00:59.121Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:00:59.121Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.121Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:00:59.121Z - Time taken for 'changed-projects' 0.1231670007109642ms -[NX Daemon Server] - 2024-09-14T14:00:59.224Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:00:59.225Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:00:59.225Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:00:59.242Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.242Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.242Z - Time taken for 'hash changed files from watcher' 0.7997500002384186ms -[NX Daemon Server] - 2024-09-14T14:00:59.243Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.243Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.243Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.244Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.244Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.244Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.245Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.245Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.245Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.246Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.246Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.246Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.247Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.247Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.247Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.248Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.248Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.248Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.248Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.248Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.248Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.249Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.249Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.249Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.250Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.250Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.250Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.250Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.251Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.251Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:00:59.251Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.251Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.251Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.252Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.252Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.252Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.253Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.253Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.253Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.253Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.253Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.253Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.254Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.254Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.254Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.255Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.255Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.255Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.256Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.256Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.256Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.256Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.256Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.256Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.257Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.257Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.257Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.258Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.258Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.258Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.259Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.259Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.259Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.259Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.259Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.259Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.260Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:00:59.260Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:00:59.260Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.267Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.267Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.267Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.267Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.267Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.267Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.268Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.268Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.268Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.269Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.269Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.269Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.269Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.269Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.269Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.270Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.270Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.270Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.271Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.271Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.271Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.273Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.273Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.273Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.278Z - Time taken for 'build-project-configs' 47.80749999731779ms -[NX Daemon Server] - 2024-09-14T14:00:59.282Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:00:59.282Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:00:59.282Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:00:59.282Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.282Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:00:59.282Z - Time taken for 'changed-projects' 0.04637499898672104ms -[NX Daemon Server] - 2024-09-14T14:00:59.303Z - Time taken for 'total execution time for createProjectGraph()' 22.262708999216557ms -[NX Daemon Server] - 2024-09-14T14:00:59.484Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:00:59.484Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:00:59.484Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:00:59.498Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.498Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.499Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.499Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.499Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.499Z - Time taken for 'hash changed files from watcher' 0.6337919980287552ms -[NX Daemon Server] - 2024-09-14T14:00:59.500Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.500Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.500Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.501Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.501Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.501Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.502Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.502Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.502Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.503Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.503Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.503Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.503Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.503Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.503Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.504Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.504Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.504Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.505Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.505Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.505Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.506Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.506Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.506Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.507Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.507Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.507Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.508Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.508Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.508Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.509Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.509Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.509Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.509Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.509Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.509Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.510Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.510Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.510Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.511Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.511Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.511Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.511Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.511Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.511Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.512Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.512Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.512Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.513Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.513Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.513Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.513Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.513Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.513Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.514Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.514Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.514Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.515Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.515Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.515Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.515Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.515Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.515Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.516Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.516Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.516Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.517Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.517Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.517Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.517Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.517Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.517Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.518Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.518Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.518Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.519Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.519Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.519Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.520Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.520Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.520Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.520Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.520Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.520Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.521Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.521Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:00:59.521Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:00:59.527Z - Time taken for 'build-project-configs' 39.141000002622604ms -[NX Daemon Server] - 2024-09-14T14:00:59.544Z - Time taken for 'total execution time for createProjectGraph()' 13.886666998267174ms -[NX Daemon Server] - 2024-09-14T14:01:00.295Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:00.296Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:00.299Z - Time taken for 'total for creating and serializing project graph' 0.5379999950528145ms -[NX Daemon Server] - 2024-09-14T14:01:00.301Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:00.301Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T14:01:00.308Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:00.308Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:00.308Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:00.309Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:00.354Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:01:00.354Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:00.354Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:01:00.354Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:00.354Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:00.355Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:00.356Z - Time taken for 'total for creating and serializing project graph' 0.08170799911022186ms -[NX Daemon Server] - 2024-09-14T14:01:00.357Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:00.357Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:01:00.359Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:00.359Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:00.361Z - Time taken for 'total for creating and serializing project graph' 0.06679200381040573ms -[NX Daemon Server] - 2024-09-14T14:01:00.361Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:00.361Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:01:00.363Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:01:17.623Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:01:17.624Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:01:17.624Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:01:17.624Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.624Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:01:17.624Z - Time taken for 'changed-projects' 0.11041700094938278ms -[NX Daemon Server] - 2024-09-14T14:01:17.728Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:01:17.728Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:01:17.728Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:01:17.745Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.746Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.746Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:17.747Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.747Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.747Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.747Z - Time taken for 'hash changed files from watcher' 2.164750002324581ms -[NX Daemon Server] - 2024-09-14T14:01:17.748Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.748Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.748Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.749Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.749Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.749Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.749Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.749Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.749Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.750Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.750Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.750Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.751Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.751Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.751Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.752Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.752Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.752Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.753Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.753Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.753Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.754Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.754Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.754Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.754Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.755Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.755Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:17.755Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.755Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.755Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.756Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.756Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.756Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.757Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.757Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.757Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.757Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.757Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.757Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.758Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.758Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.758Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.759Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.759Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.759Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.760Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.760Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.760Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.760Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.760Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.761Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:17.761Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.761Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.761Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.762Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.762Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.762Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.763Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.763Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.763Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.763Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.763Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.763Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.764Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:01:17.764Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:01:17.764Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.771Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.772Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.772Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.773Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.774Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.777Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.782Z - Time taken for 'build-project-configs' 48.60395900160074ms -[NX Daemon Server] - 2024-09-14T14:01:17.782Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:01:17.782Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:01:17.782Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:01:17.782Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.782Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:01:17.782Z - Time taken for 'changed-projects' 0.04016699641942978ms -[NX Daemon Server] - 2024-09-14T14:01:17.806Z - Time taken for 'total execution time for createProjectGraph()' 21.859750002622604ms -[NX Daemon Server] - 2024-09-14T14:01:17.950Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:01:17.950Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:01:17.951Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:01:17.951Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:17.951Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:01:17.951Z - Time taken for 'changed-projects' 0.08383399993181229ms -[NX Daemon Server] - 2024-09-14T14:01:17.983Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:01:17.983Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:01:17.983Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:01:17.997Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.997Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.997Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.998Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.998Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.998Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:17.998Z - Time taken for 'hash changed files from watcher' 0.6171249970793724ms -[NX Daemon Server] - 2024-09-14T14:01:17.999Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.999Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:17.999Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.000Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.000Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.000Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.001Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.001Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.001Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.002Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.002Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.002Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.003Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.003Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.003Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.003Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.004Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.004Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:18.004Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.004Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.004Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.005Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.005Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.005Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.006Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.006Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.006Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.007Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.007Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.007Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.007Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.007Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.007Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.008Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.008Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.008Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.009Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.010Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.011Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.011Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.011Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.012Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.012Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.013Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.014Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.014Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:18.014Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.014Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.014Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.015Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.015Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.015Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.015Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.015Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.015Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.016Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.016Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.016Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.017Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.017Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.017Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.017Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.017Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.017Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.018Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.018Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.018Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.019Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.019Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.019Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.019Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.019Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:18.019Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:18.025Z - Time taken for 'build-project-configs' 38.42970899492502ms -[NX Daemon Server] - 2024-09-14T14:01:18.044Z - Time taken for 'total execution time for createProjectGraph()' 15.782708995044231ms -[NX Daemon Server] - 2024-09-14T14:01:18.959Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:18.959Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:18.964Z - Time taken for 'total for creating and serializing project graph' 0.585875004529953ms -[NX Daemon Server] - 2024-09-14T14:01:18.968Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:18.968Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. -[NX Daemon Server] - 2024-09-14T14:01:18.976Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:18.977Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:18.977Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:18.978Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:19.024Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:01:19.024Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:19.024Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:01:19.025Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:19.025Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:19.025Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:19.026Z - Time taken for 'total for creating and serializing project graph' 0.08254200220108032ms -[NX Daemon Server] - 2024-09-14T14:01:19.027Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:19.027Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:01:19.030Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:19.030Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:19.031Z - Time taken for 'total for creating and serializing project graph' 0.0650000050663948ms -[NX Daemon Server] - 2024-09-14T14:01:19.032Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:19.032Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:01:19.034Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:01:42.505Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:01:42.506Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:01:42.506Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:01:42.506Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.506Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:01:42.506Z - Time taken for 'changed-projects' 0.13804100453853607ms -[NX Daemon Server] - 2024-09-14T14:01:42.608Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:01:42.608Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:01:42.608Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:01:42.623Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.623Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.623Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.623Z - Time taken for 'hash changed files from watcher' 0.628541998565197ms -[NX Daemon Server] - 2024-09-14T14:01:42.624Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.624Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.624Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.625Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.625Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.625Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.626Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.626Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.626Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.627Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.627Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.627Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.627Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.627Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.627Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.628Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.628Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.628Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.629Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.630Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.630Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.630Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.631Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.631Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.631Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.632Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.632Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.632Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.632Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.632Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.632Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.633Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.633Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.633Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.634Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.634Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.634Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.634Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.634Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.634Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.635Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.635Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.635Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.636Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.636Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.636Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.637Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.637Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.638Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.638Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.638Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.639Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.639Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.639Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.640Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:42.640Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.640Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.640Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.641Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:01:42.641Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:01:42.641Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.649Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.649Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.649Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.649Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.649Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.649Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.650Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.650Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.651Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.651Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.651Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.652Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.652Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.652Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.652Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.652Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.652Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.654Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.654Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:42.654Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:42.660Z - Time taken for 'build-project-configs' 47.124875001609325ms -[NX Daemon Server] - 2024-09-14T14:01:42.684Z - Time taken for 'total execution time for createProjectGraph()' 21.559458002448082ms -[NX Daemon Server] - 2024-09-14T14:01:43.512Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:43.513Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:43.516Z - Time taken for 'total for creating and serializing project graph' 0.46412499994039536ms -[NX Daemon Server] - 2024-09-14T14:01:43.519Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:43.519Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T14:01:43.526Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:43.526Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:43.526Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:43.527Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:43.567Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:01:43.568Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:43.568Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:01:43.568Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:43.568Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:43.568Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:43.570Z - Time taken for 'total for creating and serializing project graph' 0.07808300107717514ms -[NX Daemon Server] - 2024-09-14T14:01:43.575Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:43.575Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T14:01:43.577Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:43.577Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:43.579Z - Time taken for 'total for creating and serializing project graph' 0.08695800602436066ms -[NX Daemon Server] - 2024-09-14T14:01:43.579Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:43.579Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:01:43.581Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:01:44.357Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:01:44.358Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:01:44.358Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:01:44.358Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.358Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:01:44.358Z - Time taken for 'changed-projects' 0.1264999955892563ms -[NX Daemon Server] - 2024-09-14T14:01:44.459Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:01:44.459Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:01:44.459Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:01:44.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.471Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.472Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.472Z - Time taken for 'hash changed files from watcher' 0.5577080026268959ms -[NX Daemon Server] - 2024-09-14T14:01:44.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.473Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.474Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.474Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.474Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.474Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.474Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.474Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.475Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.475Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.475Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.476Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.476Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.476Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.477Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.477Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.477Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.477Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.477Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.477Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.478Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.478Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.478Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.479Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.479Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.479Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.480Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.480Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.481Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.483Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:44.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.486Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.486Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.487Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:44.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.489Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:44.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.491Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.491Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:44.492Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:44.498Z - Time taken for 'build-project-configs' 35.18087499588728ms -[NX Daemon Server] - 2024-09-14T14:01:44.514Z - Time taken for 'total execution time for createProjectGraph()' 13.120374999940395ms -[NX Daemon Server] - 2024-09-14T14:01:45.366Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:45.367Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:45.371Z - Time taken for 'total for creating and serializing project graph' 0.5135409981012344ms -[NX Daemon Server] - 2024-09-14T14:01:45.375Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:45.375Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T14:01:45.382Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:45.382Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:45.382Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:45.383Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:45.422Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:01:45.424Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:45.424Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:01:45.424Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:45.425Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:45.425Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:45.426Z - Time taken for 'total for creating and serializing project graph' 0.08966699987649918ms -[NX Daemon Server] - 2024-09-14T14:01:45.427Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:45.427Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:01:45.430Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:45.430Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:45.431Z - Time taken for 'total for creating and serializing project graph' 0.07404199987649918ms -[NX Daemon Server] - 2024-09-14T14:01:45.432Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:45.432Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:01:45.434Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:01:54.705Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:01:54.707Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:01:54.707Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:01:54.707Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.707Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:01:54.707Z - Time taken for 'changed-projects' 0.10745799541473389ms -[NX Daemon Server] - 2024-09-14T14:01:54.808Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:01:54.809Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:01:54.809Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:01:54.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.829Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.834Z - Handled HASH_GLOB. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:01:54.834Z - Time taken for 'hash changed files from watcher' 0.8803329989314079ms -[NX Daemon Server] - 2024-09-14T14:01:54.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.835Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.836Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:54.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.836Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.837Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.837Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.837Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.838Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.839Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.839Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.839Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.840Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.840Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.840Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.841Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.841Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.842Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.843Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.843Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.844Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.845Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.846Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.846Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.848Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.849Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.849Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.850Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.851Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:01:54.851Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:01:54.851Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.857Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.858Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.859Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.859Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.860Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.861Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.863Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.863Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:54.863Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.868Z - Time taken for 'build-project-configs' 54.75575000047684ms -[NX Daemon Server] - 2024-09-14T14:01:54.886Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:01:54.886Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:01:54.886Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:01:54.886Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:54.886Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:01:54.886Z - Time taken for 'changed-projects' 0.04125000536441803ms -[NX Daemon Server] - 2024-09-14T14:01:54.894Z - Time taken for 'total execution time for createProjectGraph()' 23.307250000536442ms -[NX Daemon Server] - 2024-09-14T14:01:55.088Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:01:55.088Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:01:55.088Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:01:55.100Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.100Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.100Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.101Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.101Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.101Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.101Z - Time taken for 'hash changed files from watcher' 0.45433399826288223ms -[NX Daemon Server] - 2024-09-14T14:01:55.102Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.102Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.102Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.103Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.103Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.103Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.104Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.104Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.104Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.106Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.106Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.106Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.107Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.107Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.107Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.108Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.108Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.108Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.109Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.109Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.109Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.109Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.109Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.109Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.110Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.110Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.110Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.111Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.111Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.111Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.111Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.111Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.111Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.112Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.112Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.112Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.113Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.113Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.114Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.115Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:01:55.115Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.115Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.116Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.116Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.117Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.117Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.119Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.119Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.120Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.121Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.122Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:01:55.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.128Z - Time taken for 'build-project-configs' 36.42724999785423ms -[NX Daemon Server] - 2024-09-14T14:01:55.144Z - Time taken for 'total execution time for createProjectGraph()' 13.759499996900558ms -[NX Daemon Server] - 2024-09-14T14:01:55.892Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:55.893Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:55.896Z - Time taken for 'total for creating and serializing project graph' 0.26854100078344345ms -[NX Daemon Server] - 2024-09-14T14:01:55.898Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:55.898Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T14:01:55.903Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:55.903Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:01:55.903Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:01:55.904Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:55.943Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:01:55.944Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:55.944Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:01:55.944Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:01:55.945Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:55.945Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:55.946Z - Time taken for 'total for creating and serializing project graph' 0.08237500488758087ms -[NX Daemon Server] - 2024-09-14T14:01:55.947Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:55.947Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:01:55.949Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:01:55.949Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:01:55.951Z - Time taken for 'total for creating and serializing project graph' 0.06729099899530411ms -[NX Daemon Server] - 2024-09-14T14:01:55.952Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:01:55.952Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:01:55.954Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:02:16.983Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:02:16.983Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:02:16.983Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:02:16.983Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:16.983Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:02:16.983Z - Time taken for 'changed-projects' 0.1174589991569519ms -[NX Daemon Server] - 2024-09-14T14:02:17.085Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:02:17.086Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:02:17.086Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:02:17.106Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.107Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.107Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:17.108Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.108Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.108Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.108Z - Time taken for 'hash changed files from watcher' 1.1270000040531158ms -[NX Daemon Server] - 2024-09-14T14:02:17.109Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.109Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.109Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.110Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.110Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.110Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.111Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.111Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.111Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.112Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.112Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.112Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.113Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.114Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.115Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.115Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.116Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.117Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:17.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.117Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.119Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:17.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.121Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.122Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.123Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.124Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.124Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.125Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.125Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.125Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.126Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.127Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:02:17.127Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:02:17.127Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.133Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.133Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.134Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.135Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.135Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.136Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.136Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.136Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.137Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.137Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.137Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.137Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.137Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.137Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:17.140Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:17.145Z - Time taken for 'build-project-configs' 54.30508299916983ms -[NX Daemon Server] - 2024-09-14T14:02:17.169Z - Time taken for 'total execution time for createProjectGraph()' 21.842583999037743ms -[NX Daemon Server] - 2024-09-14T14:02:17.991Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:17.992Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:17.995Z - Time taken for 'total for creating and serializing project graph' 0.49437500536441803ms -[NX Daemon Server] - 2024-09-14T14:02:17.999Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:17.999Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T14:02:18.006Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:02:18.006Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:02:18.006Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:18.007Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:18.048Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:02:18.048Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:18.048Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:02:18.048Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:18.048Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:18.048Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:18.050Z - Time taken for 'total for creating and serializing project graph' 0.07654200494289398ms -[NX Daemon Server] - 2024-09-14T14:02:18.051Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:18.051Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:02:18.053Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:18.053Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:18.055Z - Time taken for 'total for creating and serializing project graph' 0.06504200398921967ms -[NX Daemon Server] - 2024-09-14T14:02:18.060Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:18.060Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T14:02:18.062Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:02:36.904Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:02:36.904Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:02:36.905Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:02:36.905Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:36.905Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:02:36.905Z - Time taken for 'changed-projects' 0.09862499684095383ms -[NX Daemon Server] - 2024-09-14T14:02:37.007Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:02:37.007Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:02:37.007Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:02:37.024Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.024Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.024Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.025Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.025Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.025Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.025Z - Time taken for 'hash changed files from watcher' 0.729374997317791ms -[NX Daemon Server] - 2024-09-14T14:02:37.026Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.026Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.026Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.028Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:37.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.028Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.029Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.030Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.031Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.032Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.033Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.033Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.033Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.033Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.033Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.033Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.034Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.035Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.036Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.036Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.037Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.038Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.038Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.038Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.038Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.039Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:37.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.039Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.040Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.041Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.041Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.041Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.041Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.042Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.042Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:37.042Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.042Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.042Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.043Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:02:37.043Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:02:37.043Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.050Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.051Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.051Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.052Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.052Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.052Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.054Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.054Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.055Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.055Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.056Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.056Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:37.058Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.058Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:37.058Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.063Z - Time taken for 'build-project-configs' 50.776374995708466ms -[NX Daemon Server] - 2024-09-14T14:02:37.091Z - Time taken for 'total execution time for createProjectGraph()' 25.204541996121407ms -[NX Daemon Server] - 2024-09-14T14:02:37.907Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:37.907Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:37.910Z - Time taken for 'total for creating and serializing project graph' 0.15695799887180328ms -[NX Daemon Server] - 2024-09-14T14:02:37.912Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:37.912Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T14:02:37.916Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:02:37.916Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:02:37.916Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:37.917Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:37.956Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:02:37.956Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:37.957Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:02:37.957Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:37.957Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:37.957Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:37.958Z - Time taken for 'total for creating and serializing project graph' 0.08483300358057022ms -[NX Daemon Server] - 2024-09-14T14:02:37.959Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:37.959Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:02:37.962Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:37.962Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:37.963Z - Time taken for 'total for creating and serializing project graph' 0.07645799964666367ms -[NX Daemon Server] - 2024-09-14T14:02:37.964Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:37.964Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:02:37.966Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:02:38.455Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:02:38.455Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:02:38.455Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:02:38.455Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.456Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:02:38.456Z - Time taken for 'changed-projects' 0.08662500232458115ms -[NX Daemon Server] - 2024-09-14T14:02:38.558Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:02:38.558Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:02:38.558Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:02:38.572Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.572Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.572Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.573Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.573Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.573Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.573Z - Time taken for 'hash changed files from watcher' 0.6135829985141754ms -[NX Daemon Server] - 2024-09-14T14:02:38.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.574Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.575Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.575Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.576Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.576Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.577Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.578Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.578Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.579Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.579Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.580Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.581Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.581Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.582Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.582Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.584Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.585Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.586Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.587Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.588Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.589Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.590Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.591Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:38.591Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:38.598Z - Time taken for 'build-project-configs' 35.67979100346565ms -[NX Daemon Server] - 2024-09-14T14:02:38.614Z - Time taken for 'total execution time for createProjectGraph()' 14.183040998876095ms -[NX Daemon Server] - 2024-09-14T14:02:39.463Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:39.464Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:39.467Z - Time taken for 'total for creating and serializing project graph' 0.5223749950528145ms -[NX Daemon Server] - 2024-09-14T14:02:39.471Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:39.471Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T14:02:39.477Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:02:39.477Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:02:39.477Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:39.477Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:39.520Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:02:39.520Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:39.520Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:02:39.520Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:39.521Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:39.521Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:39.522Z - Time taken for 'total for creating and serializing project graph' 0.07508300244808197ms -[NX Daemon Server] - 2024-09-14T14:02:39.523Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:39.523Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:02:39.525Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:39.525Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:39.527Z - Time taken for 'total for creating and serializing project graph' 0.07537499815225601ms -[NX Daemon Server] - 2024-09-14T14:02:39.527Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:39.527Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:02:39.529Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:02:40.274Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:02:40.274Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:02:40.274Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:02:40.274Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.274Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:02:40.275Z - Time taken for 'changed-projects' 0.10770799964666367ms -[NX Daemon Server] - 2024-09-14T14:02:40.377Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:02:40.377Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:02:40.377Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:02:40.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.397Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.398Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.398Z - Time taken for 'hash changed files from watcher' 0.6930840015411377ms -[NX Daemon Server] - 2024-09-14T14:02:40.399Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.399Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.399Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.401Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.401Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.401Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.402Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.402Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.402Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.403Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.403Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.403Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.404Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.405Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.405Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.405Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.406Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.406Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.406Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.407Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.407Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.407Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.408Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.408Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.408Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.409Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.409Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.409Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.410Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.410Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.410Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.410Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.410Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.410Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.411Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.411Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.411Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.412Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.412Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.412Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.413Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.413Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.413Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.414Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.414Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.414Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.415Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.415Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.415Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.416Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.416Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.416Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.416Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.416Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.416Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.417Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.417Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.417Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.418Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.418Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.418Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.419Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:02:40.419Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:02:40.419Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.424Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.424Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.424Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.425Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.425Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.425Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.426Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.426Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.426Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.426Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.426Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.426Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.427Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.427Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.427Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.428Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.428Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.430Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.430Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:02:40.430Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:02:40.436Z - Time taken for 'build-project-configs' 53.88312499970198ms -[NX Daemon Server] - 2024-09-14T14:02:40.459Z - Time taken for 'total execution time for createProjectGraph()' 20.766333997249603ms -[NX Daemon Server] - 2024-09-14T14:02:41.281Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:41.282Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:41.285Z - Time taken for 'total for creating and serializing project graph' 0.3913329988718033ms -[NX Daemon Server] - 2024-09-14T14:02:41.288Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:41.288Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T14:02:41.293Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:02:41.294Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:02:41.294Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:02:41.294Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:41.331Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:02:41.332Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:41.332Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:02:41.332Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:02:41.332Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:41.332Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:41.334Z - Time taken for 'total for creating and serializing project graph' 0.09045799821615219ms -[NX Daemon Server] - 2024-09-14T14:02:41.335Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:41.335Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:02:41.338Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:02:41.338Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:02:41.339Z - Time taken for 'total for creating and serializing project graph' 0.07837499678134918ms -[NX Daemon Server] - 2024-09-14T14:02:41.340Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:02:41.340Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:02:41.342Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:03:14.315Z - [WATCHER]: 1 file(s) created or restored, 0 file(s) modified, 1 file(s) deleted -[NX Daemon Server] - 2024-09-14T14:03:14.316Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:03:14.316Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:03:14.316Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.316Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:03:14.316Z - Time taken for 'changed-projects' 0.2842079997062683ms -[NX Daemon Server] - 2024-09-14T14:03:14.417Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:03:14.417Z - [REQUEST]: update-local-nf.sh -[NX Daemon Server] - 2024-09-14T14:03:14.417Z - [REQUEST]: update-local-nf.bat -[NX Daemon Server] - 2024-09-14T14:03:14.426Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.426Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.426Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.427Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.427Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.427Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:03:14.427Z - Time taken for 'hash changed files from watcher' 0.3525420054793358ms -[NX Daemon Server] - 2024-09-14T14:03:14.427Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.427Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.427Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.428Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.428Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.429Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.429Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.429Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.430Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.430Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.430Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.430Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.430Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.430Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.431Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.431Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.431Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.432Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.432Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.432Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.432Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.432Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.432Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.433Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.433Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.433Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.433Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.433Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.433Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.434Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.434Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.434Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.434Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.435Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.435Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:03:14.435Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.435Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.435Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.436Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.436Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.436Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.436Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.436Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.436Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.437Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.437Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.437Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.437Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.437Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.437Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.438Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.438Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.438Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.438Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.438Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.438Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.439Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.439Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.439Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.439Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.439Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.439Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.440Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.440Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.440Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.441Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.441Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.441Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.441Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.441Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.441Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.442Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.442Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.442Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.442Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.442Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.442Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.443Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.443Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.443Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.443Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.443Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:14.443Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.448Z - Time taken for 'build-project-configs' 27.815749995410442ms -[NX Daemon Server] - 2024-09-14T14:03:14.473Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:03:14.473Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:03:14.473Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:14.473Z - Time taken for 'total execution time for createProjectGraph()' 21.685833998024464ms -[NX Daemon Server] - 2024-09-14T14:03:15.479Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:03:15.479Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:03:15.483Z - Time taken for 'total for creating and serializing project graph' 0.30283399671316147ms -[NX Daemon Server] - 2024-09-14T14:03:15.485Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:03:15.485Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T14:03:15.491Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:03:15.492Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:03:15.492Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:03:15.493Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:03:15.533Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:03:15.533Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:03:15.533Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:03:15.533Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:03:15.534Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:03:15.534Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:03:15.535Z - Time taken for 'total for creating and serializing project graph' 0.08125000447034836ms -[NX Daemon Server] - 2024-09-14T14:03:15.536Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:03:15.536Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:03:15.539Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:03:15.539Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:03:15.540Z - Time taken for 'total for creating and serializing project graph' 0.08066700398921967ms -[NX Daemon Server] - 2024-09-14T14:03:15.545Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:03:15.545Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T14:03:15.547Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:03:16.593Z - [WATCHER]: update-local-nf.sh was modified -[NX Daemon Server] - 2024-09-14T14:03:16.594Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:03:16.594Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:03:16.594Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.594Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:03:16.594Z - Time taken for 'changed-projects' 0.10516700148582458ms -[NX Daemon Server] - 2024-09-14T14:03:16.696Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:03:16.696Z - [REQUEST]: update-local-nf.sh -[NX Daemon Server] - 2024-09-14T14:03:16.696Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:03:16.717Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.717Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.717Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.718Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.718Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.719Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:03:16.719Z - Time taken for 'hash changed files from watcher' 0.960875004529953ms -[NX Daemon Server] - 2024-09-14T14:03:16.720Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.720Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.720Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.721Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.721Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.721Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.722Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.722Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.722Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.723Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.724Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.724Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.725Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.725Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.725Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.726Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.727Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.728Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.728Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.728Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.729Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.729Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.730Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.730Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.730Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.731Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.731Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.731Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.732Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.732Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.732Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.732Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.733Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.733Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:03:16.733Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.733Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.733Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.734Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.734Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.734Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.735Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.735Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.735Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.736Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.736Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.736Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.736Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.736Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.736Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.737Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:03:16.737Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:03:16.737Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.744Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.744Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.744Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.744Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.744Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.744Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.745Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.745Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.745Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.746Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.746Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.746Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.746Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.746Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.746Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.747Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.747Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.747Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.748Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.748Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.748Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.748Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.748Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:16.748Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:16.753Z - Time taken for 'build-project-configs' 51.79450000077486ms -[NX Daemon Server] - 2024-09-14T14:03:16.776Z - Time taken for 'total execution time for createProjectGraph()' 20.549625001847744ms -[NX Daemon Server] - 2024-09-14T14:03:17.598Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:03:17.598Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:03:17.602Z - Time taken for 'total for creating and serializing project graph' 0.2374579980969429ms -[NX Daemon Server] - 2024-09-14T14:03:17.603Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:03:17.603Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T14:03:17.608Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:03:17.608Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:03:17.608Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:17.609Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:03:17.647Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:03:17.647Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:03:17.647Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:03:17.647Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:03:17.648Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:03:17.648Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:03:17.649Z - Time taken for 'total for creating and serializing project graph' 0.09983300417661667ms -[NX Daemon Server] - 2024-09-14T14:03:17.650Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:03:17.650Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:03:17.653Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:03:17.653Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:03:17.654Z - Time taken for 'total for creating and serializing project graph' 0.07945799827575684ms -[NX Daemon Server] - 2024-09-14T14:03:17.655Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:03:17.655Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:03:17.657Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:03:59.231Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:03:59.232Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:03:59.232Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:03:59.232Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.232Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:03:59.232Z - Time taken for 'changed-projects' 0.10504100471735ms -[NX Daemon Server] - 2024-09-14T14:03:59.335Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:03:59.335Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:03:59.335Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:03:59.390Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.391Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.391Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:03:59.391Z - Time taken for 'hash changed files from watcher' 0.7489169985055923ms -[NX Daemon Server] - 2024-09-14T14:03:59.392Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.392Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.392Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.393Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.393Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.393Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.393Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.393Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.393Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.394Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.394Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.394Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.395Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.395Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.395Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.396Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.397Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.398Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.398Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.399Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.399Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.399Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.400Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.400Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.400Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.402Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.402Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.402Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.402Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.402Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.402Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.403Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.403Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.403Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.404Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.404Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.405Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.405Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.405Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.406Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.406Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.406Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.407Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.407Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.407Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.408Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.408Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.408Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.408Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.408Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.408Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.409Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.409Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.409Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.410Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:03:59.410Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:03:59.410Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.423Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.423Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.423Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.424Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.424Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.424Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.425Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.425Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.425Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.425Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.425Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.425Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.426Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.426Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.426Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.427Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.427Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.427Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.427Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.427Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.427Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.432Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.432Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.432Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.433Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:03:59.433Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:03:59.433Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:03:59.433Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.433Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:03:59.433Z - Time taken for 'changed-projects' 0.06362500041723251ms -[NX Daemon Server] - 2024-09-14T14:03:59.439Z - Time taken for 'build-project-configs' 57.7492910027504ms -[NX Daemon Server] - 2024-09-14T14:03:59.467Z - Time taken for 'total execution time for createProjectGraph()' 24.801750004291534ms -[NX Daemon Server] - 2024-09-14T14:03:59.635Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:03:59.635Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:03:59.635Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:03:59.648Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.648Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.648Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.649Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.649Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.649Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.649Z - Time taken for 'hash changed files from watcher' 0.5912079960107803ms -[NX Daemon Server] - 2024-09-14T14:03:59.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.650Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.651Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.651Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.651Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.652Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.652Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.652Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.653Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.653Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.653Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.654Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.654Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.654Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.655Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.655Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.655Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.656Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.656Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.656Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.657Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.657Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.657Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.658Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.658Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.658Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.658Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.658Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.658Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.659Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.659Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.659Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.660Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.660Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.660Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.661Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.661Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.661Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.662Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.662Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.662Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.662Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.662Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.662Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.663Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.663Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.663Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.664Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.664Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.664Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.664Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.664Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.664Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.665Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.665Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.665Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.666Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.666Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.666Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.666Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.666Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.666Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.667Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.667Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.667Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.668Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.668Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.668Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.669Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.669Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.669Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.669Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.669Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.669Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.670Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.670Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.670Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.671Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.671Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.671Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.671Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.671Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.671Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.672Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.672Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:03:59.672Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:03:59.678Z - Time taken for 'build-project-configs' 39.11962500214577ms -[NX Daemon Server] - 2024-09-14T14:03:59.695Z - Time taken for 'total execution time for createProjectGraph()' 13.665916994214058ms -[NX Daemon Server] - 2024-09-14T14:04:00.440Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:04:00.440Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:04:00.443Z - Time taken for 'total for creating and serializing project graph' 0.5979170054197311ms -[NX Daemon Server] - 2024-09-14T14:04:00.448Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:04:00.448Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2024-09-14T14:04:00.457Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:04:00.457Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:04:00.457Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:04:00.458Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:04:00.509Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:04:00.511Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:04:00.511Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:04:00.511Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:04:00.511Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:04:00.511Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:04:00.513Z - Time taken for 'total for creating and serializing project graph' 0.12433300167322159ms -[NX Daemon Server] - 2024-09-14T14:04:00.514Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:04:00.514Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:04:00.516Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:04:00.517Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:04:00.518Z - Time taken for 'total for creating and serializing project graph' 0.09029199928045273ms -[NX Daemon Server] - 2024-09-14T14:04:00.519Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:04:00.519Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:04:00.521Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:05:19.703Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:05:19.720Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:05:19.721Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:05:19.721Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:05:19.721Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.721Z - Time taken for 'changed-projects' 0.18366600573062897ms -[NX Daemon Server] - 2024-09-14T14:05:19.823Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:05:19.826Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:05:19.826Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:05:19.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.844Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.844Z - Time taken for 'hash changed files from watcher' 0.8730830028653145ms -[NX Daemon Server] - 2024-09-14T14:05:19.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.845Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.846Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.847Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.848Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.849Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.849Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.850Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.852Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.853Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.853Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.854Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.855Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.856Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.856Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.857Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.858Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.858Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.859Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.860Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.861Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.862Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:05:19.862Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:05:19.862Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.871Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.871Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.871Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.871Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.871Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.871Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.872Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.872Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.872Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.873Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.873Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.873Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.873Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.873Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.873Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.874Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.874Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.874Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.874Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.874Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.874Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.876Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.876Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:19.876Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.882Z - Time taken for 'build-project-configs' 50.70575000345707ms -[NX Daemon Server] - 2024-09-14T14:05:19.883Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:05:19.883Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:05:19.883Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:05:19.883Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:19.883Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:05:19.883Z - Time taken for 'changed-projects' 0.04008299857378006ms -[NX Daemon Server] - 2024-09-14T14:05:19.906Z - Time taken for 'total execution time for createProjectGraph()' 21.417625002563ms -[NX Daemon Server] - 2024-09-14T14:05:20.043Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:05:20.043Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:05:20.043Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:05:20.043Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.043Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:05:20.043Z - Time taken for 'changed-projects' 0.07433399558067322ms -[NX Daemon Server] - 2024-09-14T14:05:20.086Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:05:20.086Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:05:20.086Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:05:20.100Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.101Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.101Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:05:20.101Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.101Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.101Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.101Z - Time taken for 'hash changed files from watcher' 0.5533749982714653ms -[NX Daemon Server] - 2024-09-14T14:05:20.102Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.102Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.102Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.103Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.103Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.103Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.104Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.104Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.104Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.105Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.105Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.105Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.106Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.106Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.106Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.107Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.107Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.107Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.108Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.108Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.108Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.108Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.108Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.108Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.109Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.109Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.109Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.110Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.110Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.110Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.111Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.111Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.111Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.111Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.111Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.111Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.112Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.112Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.112Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.113Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.113Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.114Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.115Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.115Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.115Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.115Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.116Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.117Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.117Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.119Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.119Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.121Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.121Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:20.123Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:20.128Z - Time taken for 'build-project-configs' 37.92400000244379ms -[NX Daemon Server] - 2024-09-14T14:05:20.145Z - Time taken for 'total execution time for createProjectGraph()' 13.426084004342556ms -[NX Daemon Server] - 2024-09-14T14:05:21.049Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:21.050Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:21.054Z - Time taken for 'total for creating and serializing project graph' 0.5457080006599426ms -[NX Daemon Server] - 2024-09-14T14:05:21.059Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:21.059Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 9. -[NX Daemon Server] - 2024-09-14T14:05:21.066Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:05:21.066Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:05:21.066Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.067Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:21.111Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:05:21.111Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:21.111Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:05:21.111Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:21.112Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:21.112Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:21.113Z - Time taken for 'total for creating and serializing project graph' 0.07875000685453415ms -[NX Daemon Server] - 2024-09-14T14:05:21.114Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:21.114Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:05:21.117Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:21.117Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:21.118Z - Time taken for 'total for creating and serializing project graph' 0.07012499868869781ms -[NX Daemon Server] - 2024-09-14T14:05:21.120Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:21.120Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:05:21.123Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:05:21.478Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:05:21.479Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:05:21.479Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:05:21.479Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.479Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:05:21.479Z - Time taken for 'changed-projects' 0.1252089962363243ms -[NX Daemon Server] - 2024-09-14T14:05:21.581Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:05:21.581Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T14:05:21.581Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:05:21.601Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.601Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.601Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.602Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.602Z - Time taken for 'hash changed files from watcher' 0.8674580007791519ms -[NX Daemon Server] - 2024-09-14T14:05:21.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.603Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.604Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.604Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.604Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.605Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.606Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.606Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:05:21.606Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.607Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.607Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:05:21.608Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.608Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.608Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.609Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.609Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.609Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.610Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.610Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.610Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.610Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.610Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.610Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.611Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.611Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.611Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.612Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.612Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.612Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.613Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.614Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.614Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.615Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.615Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.615Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.616Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.617Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.617Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.617Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.617Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.617Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.617Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.618Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.618Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.618Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.619Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.619Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.619Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.620Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.620Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.621Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:05:21.621Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:05:21.621Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.626Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.626Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.626Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.627Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.627Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.627Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.627Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.627Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.627Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.628Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.628Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.628Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.629Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.629Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.630Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.630Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.630Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.632Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.632Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:21.632Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:21.637Z - Time taken for 'build-project-configs' 51.20166600495577ms -[NX Daemon Server] - 2024-09-14T14:05:21.661Z - Time taken for 'total execution time for createProjectGraph()' 21.09687500447035ms -[NX Daemon Server] - 2024-09-14T14:05:22.488Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:22.489Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:22.492Z - Time taken for 'total for creating and serializing project graph' 0.5528329983353615ms -[NX Daemon Server] - 2024-09-14T14:05:22.495Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:22.495Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T14:05:22.503Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:05:22.503Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:05:22.503Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:22.504Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:22.544Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:05:22.544Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:22.544Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:05:22.544Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:22.544Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:22.545Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:22.546Z - Time taken for 'total for creating and serializing project graph' 0.08100000023841858ms -[NX Daemon Server] - 2024-09-14T14:05:22.550Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:22.550Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T14:05:22.552Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:22.552Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:22.554Z - Time taken for 'total for creating and serializing project graph' 0.09025000035762787ms -[NX Daemon Server] - 2024-09-14T14:05:22.554Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:22.554Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:05:22.557Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:05:25.646Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:05:25.647Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:05:25.647Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:05:25.647Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.647Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:05:25.648Z - Time taken for 'changed-projects' 0.21591699868440628ms -[NX Daemon Server] - 2024-09-14T14:05:25.750Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:05:25.750Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T14:05:25.750Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:05:25.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.770Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.771Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.771Z - Time taken for 'hash changed files from watcher' 1.1049999967217445ms -[NX Daemon Server] - 2024-09-14T14:05:25.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.772Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.773Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.776Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.777Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.778Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.779Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.780Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:05:25.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.782Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.782Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.783Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.783Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.784Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.784Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.784Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.785Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.785Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.785Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.786Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.786Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.786Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.786Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.786Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.786Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.787Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.787Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.787Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.788Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.788Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.789Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.790Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:05:25.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.792Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.793Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:05:25.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.793Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:05:25.794Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:25.800Z - Time taken for 'build-project-configs' 45.109375ms -[NX Daemon Server] - 2024-09-14T14:05:25.817Z - Time taken for 'total execution time for createProjectGraph()' 14.162249997258186ms -[NX Daemon Server] - 2024-09-14T14:05:26.651Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:26.651Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:26.655Z - Time taken for 'total for creating and serializing project graph' 0.24741599708795547ms -[NX Daemon Server] - 2024-09-14T14:05:26.656Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:26.656Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T14:05:26.661Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:05:26.661Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:05:26.661Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:05:26.662Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:26.699Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:05:26.699Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:26.699Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:05:26.699Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:05:26.700Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:26.700Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:26.701Z - Time taken for 'total for creating and serializing project graph' 0.0764169991016388ms -[NX Daemon Server] - 2024-09-14T14:05:26.702Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:26.702Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:05:26.705Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:05:26.705Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:05:26.706Z - Time taken for 'total for creating and serializing project graph' 0.11300000548362732ms -[NX Daemon Server] - 2024-09-14T14:05:26.707Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:05:26.707Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:05:26.709Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:06:11.809Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T14:06:11.809Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:06:11.809Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:06:11.809Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.809Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:06:11.809Z - Time taken for 'changed-projects' 0.10829100012779236ms -[NX Daemon Server] - 2024-09-14T14:06:11.912Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:06:11.912Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T14:06:11.913Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:06:11.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.930Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.930Z - Time taken for 'hash changed files from watcher' 0.9417500048875809ms -[NX Daemon Server] - 2024-09-14T14:06:11.931Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.931Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.931Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.932Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.932Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.932Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.933Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.933Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.933Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.934Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.934Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.934Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.935Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.935Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.935Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.935Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.935Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.935Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.936Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.936Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.936Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.937Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.937Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.937Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.938Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.938Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.938Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.939Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.939Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.939Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.940Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.940Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.940Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:06:11.940Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.940Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.940Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.941Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.941Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.941Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.942Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.942Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.942Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.942Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.942Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.942Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.943Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.943Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.943Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.944Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.944Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.944Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.945Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.945Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.945Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.946Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.946Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.946Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.946Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.946Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.946Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.947Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.947Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.947Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.948Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.948Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.948Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.949Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:06:11.949Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:06:11.949Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.954Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.954Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.954Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.955Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.955Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.955Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.955Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.955Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.955Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.956Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.956Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.956Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.957Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.957Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.957Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.957Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.957Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.957Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.958Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.958Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.958Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.960Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.960Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:11.960Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:11.965Z - Time taken for 'build-project-configs' 47.200625002384186ms -[NX Daemon Server] - 2024-09-14T14:06:11.990Z - Time taken for 'total execution time for createProjectGraph()' 21.991542004048824ms -[NX Daemon Server] - 2024-09-14T14:06:12.813Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:12.814Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:12.816Z - Time taken for 'total for creating and serializing project graph' 0.23908299952745438ms -[NX Daemon Server] - 2024-09-14T14:06:12.818Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:12.818Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. -[NX Daemon Server] - 2024-09-14T14:06:12.824Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:06:12.824Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:06:12.824Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:12.825Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:12.867Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:06:12.868Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:12.868Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:06:12.868Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:12.868Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:12.868Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:12.870Z - Time taken for 'total for creating and serializing project graph' 0.07608400285243988ms -[NX Daemon Server] - 2024-09-14T14:06:12.870Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:12.871Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:06:12.873Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:12.873Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:12.874Z - Time taken for 'total for creating and serializing project graph' 0.07458300143480301ms -[NX Daemon Server] - 2024-09-14T14:06:12.875Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:12.875Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:06:12.877Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:06:37.453Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T14:06:37.453Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:06:37.453Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:06:37.453Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.454Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:06:37.454Z - Time taken for 'changed-projects' 0.09345799684524536ms -[NX Daemon Server] - 2024-09-14T14:06:37.555Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:06:37.555Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T14:06:37.555Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:06:37.571Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.571Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.571Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.571Z - Time taken for 'hash changed files from watcher' 0.6543749943375587ms -[NX Daemon Server] - 2024-09-14T14:06:37.572Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.572Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.572Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.573Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.573Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.573Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.574Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.575Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.576Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.576Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.577Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.578Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.579Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.580Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.581Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:06:37.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.582Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:06:37.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.582Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.584Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.585Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.586Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.587Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.588Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.589Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.590Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:06:37.590Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:06:37.590Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.598Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.598Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.598Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.599Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.599Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.599Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.600Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.600Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.600Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.601Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.601Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.601Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.602Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.602Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.602Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.603Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.603Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.603Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.603Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.606Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.606Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:37.606Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:37.611Z - Time taken for 'build-project-configs' 50.94583400338888ms -[NX Daemon Server] - 2024-09-14T14:06:37.636Z - Time taken for 'total execution time for createProjectGraph()' 22.543583005666733ms -[NX Daemon Server] - 2024-09-14T14:06:38.456Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:38.456Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:38.458Z - Time taken for 'total for creating and serializing project graph' 0.09650000184774399ms -[NX Daemon Server] - 2024-09-14T14:06:38.459Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:38.459Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:06:38.462Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:06:38.462Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:06:38.462Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:38.462Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:38.494Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:06:38.494Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:38.494Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:06:38.495Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:38.495Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:38.495Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:38.496Z - Time taken for 'total for creating and serializing project graph' 0.06475000083446503ms -[NX Daemon Server] - 2024-09-14T14:06:38.497Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:38.497Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:06:38.499Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:38.499Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:38.500Z - Time taken for 'total for creating and serializing project graph' 0.05641700327396393ms -[NX Daemon Server] - 2024-09-14T14:06:38.505Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:38.505Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T14:06:38.507Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:06:42.329Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T14:06:42.329Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:06:42.330Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:06:42.330Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:06:42.330Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:06:42.330Z - Time taken for 'changed-projects' 0.14854200184345245ms -[NX Daemon Server] - 2024-09-14T14:06:42.431Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:06:42.431Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T14:06:42.431Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:06:42.450Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.450Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.450Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.451Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.451Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.452Z - Time taken for 'hash changed files from watcher' 0.8684169948101044ms -[NX Daemon Server] - 2024-09-14T14:06:42.453Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.453Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.453Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.454Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.455Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:06:42.455Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.455Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.455Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.456Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.456Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.456Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.457Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.457Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.457Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.458Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.458Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.458Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.459Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.459Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.459Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.460Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.460Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.460Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.461Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.461Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.461Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.462Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.462Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.462Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.462Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.462Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.462Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.463Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.463Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.463Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.464Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.464Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.464Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.465Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.465Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.465Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.465Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.465Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.465Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.466Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.466Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.466Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.467Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.467Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.467Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.467Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.467Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.467Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.468Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.468Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.468Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.469Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.469Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.469Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.470Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.470Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.470Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.471Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.471Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.471Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.471Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.472Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.473Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.473Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.474Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.474Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.474Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.475Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.475Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:42.475Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.481Z - Time taken for 'build-project-configs' 44.59062499552965ms -[NX Daemon Server] - 2024-09-14T14:06:42.502Z - Time taken for 'total execution time for createProjectGraph()' 18.267459005117416ms -[NX Daemon Server] - 2024-09-14T14:06:42.846Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T14:06:42.847Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:06:42.847Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:06:42.847Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:42.847Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:06:42.848Z - Time taken for 'changed-projects' 0.2609580010175705ms -[NX Daemon Server] - 2024-09-14T14:06:43.050Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:06:43.050Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T14:06:43.050Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:06:43.069Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.069Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.069Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.071Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.071Z - Time taken for 'hash changed files from watcher' 0.9326250031590462ms -[NX Daemon Server] - 2024-09-14T14:06:43.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.072Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.073Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.073Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.073Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.074Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.074Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.074Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.075Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.075Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.075Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.075Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.076Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.076Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:06:43.077Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.077Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.077Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.077Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.077Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.077Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.078Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.078Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.078Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.079Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.079Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.079Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.080Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.080Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.080Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.081Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.081Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.081Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.081Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.082Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.082Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:06:43.082Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.082Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.082Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.083Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.083Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.083Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.084Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.084Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.084Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.084Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.084Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.084Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.085Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.085Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.085Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.086Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.086Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.086Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.086Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.086Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.086Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.087Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.087Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.087Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.088Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.088Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.088Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.088Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.088Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.088Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.089Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.089Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.089Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.090Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.090Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.090Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.090Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.090Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.090Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.091Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.091Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.091Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.092Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.092Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.092Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.092Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.092Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.092Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.093Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.093Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:06:43.093Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:06:43.100Z - Time taken for 'build-project-configs' 44.52737499773502ms -[NX Daemon Server] - 2024-09-14T14:06:43.117Z - Time taken for 'total execution time for createProjectGraph()' 14.443916998803616ms -[NX Daemon Server] - 2024-09-14T14:06:43.852Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:43.852Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:43.854Z - Time taken for 'total for creating and serializing project graph' 0.21495800465345383ms -[NX Daemon Server] - 2024-09-14T14:06:43.856Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:43.856Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T14:06:43.860Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:06:43.861Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:06:43.861Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:06:43.861Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:43.901Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:06:43.901Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:43.901Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:06:43.901Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:06:43.902Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:43.902Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:43.904Z - Time taken for 'total for creating and serializing project graph' 0.10537499934434891ms -[NX Daemon Server] - 2024-09-14T14:06:43.905Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:43.905Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:06:43.908Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:06:43.908Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:06:43.909Z - Time taken for 'total for creating and serializing project graph' 0.08658400177955627ms -[NX Daemon Server] - 2024-09-14T14:06:43.910Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:06:43.910Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:06:43.912Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:07:40.617Z - [WATCHER]: update-local-nf.sh was modified -[NX Daemon Server] - 2024-09-14T14:07:40.618Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:07:40.618Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:07:40.618Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.618Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:07:40.618Z - Time taken for 'changed-projects' 0.11679200083017349ms -[NX Daemon Server] - 2024-09-14T14:07:40.720Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:07:40.720Z - [REQUEST]: update-local-nf.sh -[NX Daemon Server] - 2024-09-14T14:07:40.720Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:07:40.737Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.737Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.737Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.738Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.738Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.738Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.739Z - Time taken for 'hash changed files from watcher' 0.8565839976072311ms -[NX Daemon Server] - 2024-09-14T14:07:40.739Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.739Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.739Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.740Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.740Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.740Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.741Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.741Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.741Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.742Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.742Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.742Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.743Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.743Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.743Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.744Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.744Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.744Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.745Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.745Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.745Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.745Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.745Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.745Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.746Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.746Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.746Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.747Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.747Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.747Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.747Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.747Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.747Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.748Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.748Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.748Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.749Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.749Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.749Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.750Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.750Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.750Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.750Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.750Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.750Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.751Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.751Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.751Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.752Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.752Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.752Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.753Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.753Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.753Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.753Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.753Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.753Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.754Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.754Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.754Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.755Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.755Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.755Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.755Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:07:40.755Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:07:40.755Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.764Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.764Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.764Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.765Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.765Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.766Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.767Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.767Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.768Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.768Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.773Z - Time taken for 'build-project-configs' 48.21875ms -[NX Daemon Server] - 2024-09-14T14:07:40.773Z - [WATCHER]: update-local-nf.sh was modified -[NX Daemon Server] - 2024-09-14T14:07:40.773Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:07:40.773Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:07:40.773Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.773Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:07:40.774Z - Time taken for 'changed-projects' 0.03704100102186203ms -[NX Daemon Server] - 2024-09-14T14:07:40.801Z - Time taken for 'total execution time for createProjectGraph()' 25.752833001315594ms -[NX Daemon Server] - 2024-09-14T14:07:40.975Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:07:40.975Z - [REQUEST]: update-local-nf.sh -[NX Daemon Server] - 2024-09-14T14:07:40.975Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:07:40.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.989Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.989Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.990Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.990Z - Time taken for 'hash changed files from watcher' 0.6238749995827675ms -[NX Daemon Server] - 2024-09-14T14:07:40.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.991Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.992Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.993Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.993Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.994Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.994Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.994Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.995Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.996Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.996Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.997Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.997Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.997Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.998Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.998Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.998Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.999Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.999Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.999Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:40.999Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.999Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:40.999Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.000Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.000Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.000Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.001Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.001Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.001Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.001Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.001Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.001Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.002Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.002Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.002Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.003Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.003Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.003Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.003Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.003Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.003Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.004Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.004Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.004Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.005Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.005Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.005Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.005Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.005Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.005Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.006Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.006Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.006Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.007Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.007Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.007Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.007Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.007Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.007Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.008Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.008Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.008Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.009Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.009Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:41.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:41.017Z - Time taken for 'build-project-configs' 37.06383299827576ms -[NX Daemon Server] - 2024-09-14T14:07:41.035Z - Time taken for 'total execution time for createProjectGraph()' 15.650209002196789ms -[NX Daemon Server] - 2024-09-14T14:07:41.777Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:07:41.778Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:07:41.781Z - Time taken for 'total for creating and serializing project graph' 0.2001669928431511ms -[NX Daemon Server] - 2024-09-14T14:07:41.782Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:07:41.782Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. -[NX Daemon Server] - 2024-09-14T14:07:41.787Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:07:41.788Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:07:41.788Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:07:41.788Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:07:41.825Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:07:41.826Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:07:41.826Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:07:41.826Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:07:41.826Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:07:41.826Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:07:41.828Z - Time taken for 'total for creating and serializing project graph' 0.07566700130701065ms -[NX Daemon Server] - 2024-09-14T14:07:41.829Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:07:41.829Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:07:41.832Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:07:41.832Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:07:41.833Z - Time taken for 'total for creating and serializing project graph' 0.06308300048112869ms -[NX Daemon Server] - 2024-09-14T14:07:41.834Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:07:41.834Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:07:41.836Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:07:57.576Z - [WATCHER]: update-local-nf.sh was modified -[NX Daemon Server] - 2024-09-14T14:07:57.577Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:07:57.577Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:07:57.577Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.577Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:07:57.577Z - Time taken for 'changed-projects' 0.09608300030231476ms -[NX Daemon Server] - 2024-09-14T14:07:57.679Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:07:57.679Z - [REQUEST]: update-local-nf.sh -[NX Daemon Server] - 2024-09-14T14:07:57.679Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:07:57.700Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.700Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.700Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.701Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.701Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.701Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.701Z - Time taken for 'hash changed files from watcher' 0.8922909945249557ms -[NX Daemon Server] - 2024-09-14T14:07:57.702Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.704Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:07:57.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.704Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.705Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.706Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.707Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.708Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.708Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.708Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.709Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.709Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.710Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.710Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.711Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.712Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.712Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.713Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.713Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.714Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.714Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.714Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.715Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.715Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.715Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.716Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.716Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.716Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.716Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.716Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.716Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.717Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.717Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.717Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.718Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.718Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.718Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.719Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.719Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.719Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.719Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T14:07:57.719Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T14:07:57.719Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.725Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.725Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.725Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.726Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.727Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.727Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.727Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.727Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.728Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.728Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.728Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.728Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.728Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.728Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.729Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.729Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:57.729Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.730Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:07:57.730Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:07:57.735Z - Time taken for 'build-project-configs' 50.52945899963379ms -[NX Daemon Server] - 2024-09-14T14:07:57.759Z - Time taken for 'total execution time for createProjectGraph()' 21.349249996244907ms -[NX Daemon Server] - 2024-09-14T14:07:58.585Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:07:58.586Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:07:58.590Z - Time taken for 'total for creating and serializing project graph' 0.5367080047726631ms -[NX Daemon Server] - 2024-09-14T14:07:58.594Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:07:58.594Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T14:07:58.603Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:07:58.603Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:07:58.603Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:07:58.604Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:07:58.648Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T14:07:58.649Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:07:58.649Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:07:58.649Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:07:58.649Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:07:58.649Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:07:58.651Z - Time taken for 'total for creating and serializing project graph' 0.07604200392961502ms -[NX Daemon Server] - 2024-09-14T14:07:58.651Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:07:58.651Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:07:58.654Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:07:58.654Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:07:58.655Z - Time taken for 'total for creating and serializing project graph' 0.054499998688697815ms -[NX Daemon Server] - 2024-09-14T14:07:58.657Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:07:58.657Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:07:58.659Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:08:08.285Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T14:08:08.286Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T14:08:08.286Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T14:08:08.286Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.286Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:08:08.286Z - Time taken for 'changed-projects' 0.10087499767541885ms -[NX Daemon Server] - 2024-09-14T14:08:08.388Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T14:08:08.388Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T14:08:08.388Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T14:08:08.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.396Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.396Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.396Z - Time taken for 'hash changed files from watcher' 0.4498329982161522ms -[NX Daemon Server] - 2024-09-14T14:08:08.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.397Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.397Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.398Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.398Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.399Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.399Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.399Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.400Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.400Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.400Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.400Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.400Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.400Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.401Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.401Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.401Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.401Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.401Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.401Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.402Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.402Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.402Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.402Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.402Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.402Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.403Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.403Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.403Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.403Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.403Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.403Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.404Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.404Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.405Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.405Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.405Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.405Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.405Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.405Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.406Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.406Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.406Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.406Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.406Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.406Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.407Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.407Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.407Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.407Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.407Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.407Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.408Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.408Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.408Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.408Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.408Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.408Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.409Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.409Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.409Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.409Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.409Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.409Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.410Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.410Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.410Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.410Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.410Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.410Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.411Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.411Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.411Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.411Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.411Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T14:08:08.411Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.417Z - Time taken for 'build-project-configs' 25.32270799577236ms -[NX Daemon Server] - 2024-09-14T14:08:08.431Z - Time taken for 'total execution time for createProjectGraph()' 11.949083000421524ms -[NX Daemon Server] - 2024-09-14T14:08:08.539Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T14:08:08.540Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:08:08.540Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T14:08:08.541Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:08:08.541Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:08:08.542Z - Time taken for 'total for creating and serializing project graph' 0.09858299791812897ms -[NX Daemon Server] - 2024-09-14T14:08:08.543Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:08:08.543Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:08:08.590Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T14:08:08.592Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T14:08:08.592Z - Handled HASH_TASKS. Handling time: 36. Response time: 2. -[NX Daemon Server] - 2024-09-14T14:08:08.618Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T14:08:08.618Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T14:08:08.618Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.619Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.619Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.619Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.627Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T14:08:08.627Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T14:08:08.627Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.628Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.628Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.628Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.632Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T14:08:08.632Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T14:08:08.632Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.633Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.633Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.633Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.657Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.657Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.657Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.659Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T14:08:08.659Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T14:08:08.659Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.663Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.663Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:08.663Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:08.714Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:08:08.783Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:08:08.921Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:08:09.287Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:08:09.288Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:08:09.289Z - Time taken for 'total for creating and serializing project graph' 0.10404100269079208ms -[NX Daemon Server] - 2024-09-14T14:08:09.289Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:09.289Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:09.289Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:09.291Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:08:09.291Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:08:09.294Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T14:08:09.294Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T14:08:09.294Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:09.294Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:08:09.327Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:08:09.327Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:08:09.329Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:08:09.329Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T14:08:09.329Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T14:08:09.329Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:08:09.329Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:08:09.331Z - Time taken for 'total for creating and serializing project graph' 0.1220410019159317ms -[NX Daemon Server] - 2024-09-14T14:08:09.332Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:08:09.332Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:08:09.334Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T14:08:09.334Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T14:08:09.336Z - Time taken for 'total for creating and serializing project graph' 0.12366599589586258ms -[NX Daemon Server] - 2024-09-14T14:08:09.336Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T14:08:09.337Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T14:08:09.339Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T14:08:09.449Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:08:10.120Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:10.120Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:10.120Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:10.267Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:08:10.501Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:10.501Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:10.501Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:10.646Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T14:08:10.684Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:10.684Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:10.684Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:11.887Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:11.887Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:11.887Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:12.031Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:12.032Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T14:08:12.032Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:08:12.035Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T14:08:12.036Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T14:08:12.036Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T14:08:12.037Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T14:08:12.037Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T14:08:12.037Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T14:08:12.041Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T15:07:14.443Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:14.448Z - [WATCHER]: libs/native-federation-node/tsconfig.lib.json was modified -[NX Daemon Server] - 2024-09-14T15:07:14.448Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T15:07:14.448Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T15:07:14.448Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.448Z - Time taken for 'changed-projects' 0.2027909904718399ms -[NX Daemon Server] - 2024-09-14T15:07:14.553Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T15:07:14.554Z - [REQUEST]: libs/native-federation-node/tsconfig.lib.json -[NX Daemon Server] - 2024-09-14T15:07:14.554Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T15:07:14.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.574Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.574Z - Time taken for 'hash changed files from watcher' 0.896916002035141ms -[NX Daemon Server] - 2024-09-14T15:07:14.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.575Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.576Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.577Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.578Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.579Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.581Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.582Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.582Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.585Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.586Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.586Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.587Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.588Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.590Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.590Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.591Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.592Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.592Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.592Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.592Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T15:07:14.592Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T15:07:14.592Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.611Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.611Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.611Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.611Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.612Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.612Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T15:07:14.612Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.612Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.612Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.613Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.613Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.614Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.614Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:14.616Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:14.623Z - Time taken for 'build-project-configs' 63.28891699016094ms -[NX Daemon Server] - 2024-09-14T15:07:14.655Z - Time taken for 'total execution time for createProjectGraph()' 27.887707993388176ms -[NX Daemon Server] - 2024-09-14T15:07:15.458Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T15:07:15.458Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T15:07:15.462Z - Time taken for 'total for creating and serializing project graph' 0.2773749977350235ms -[NX Daemon Server] - 2024-09-14T15:07:15.466Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T15:07:15.466Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2024-09-14T15:07:15.472Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T15:07:15.472Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T15:07:15.472Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:15.472Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T15:07:15.515Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T15:07:15.515Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T15:07:15.515Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T15:07:15.515Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T15:07:15.516Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T15:07:15.516Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T15:07:15.517Z - Time taken for 'total for creating and serializing project graph' 0.07374998927116394ms -[NX Daemon Server] - 2024-09-14T15:07:15.518Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T15:07:15.518Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T15:07:15.521Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T15:07:15.521Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T15:07:15.522Z - Time taken for 'total for creating and serializing project graph' 0.05320800840854645ms -[NX Daemon Server] - 2024-09-14T15:07:15.527Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T15:07:15.527Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T15:07:15.529Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T15:07:24.511Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T15:07:24.512Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T15:07:24.512Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T15:07:24.512Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.512Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:24.512Z - Time taken for 'changed-projects' 0.21491698920726776ms -[NX Daemon Server] - 2024-09-14T15:07:24.615Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T15:07:24.615Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T15:07:24.615Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T15:07:24.624Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.624Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.624Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.624Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.624Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.624Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.624Z - Time taken for 'hash changed files from watcher' 0.6757919937372208ms -[NX Daemon Server] - 2024-09-14T15:07:24.625Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.625Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.625Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.625Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.625Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.625Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.626Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.626Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.626Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.626Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.626Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.626Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.627Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.627Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.627Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.628Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.628Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.628Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.628Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.628Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.628Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.629Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.630Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.630Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.630Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.630Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.630Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.630Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.631Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.631Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.631Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.632Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.633Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.633Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.633Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.633Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.633Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.633Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.634Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.634Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.634Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.634Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.634Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.634Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.635Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.635Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.635Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.635Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.635Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.635Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.636Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.636Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.636Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.636Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.636Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.636Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.637Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.637Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.638Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.638Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.638Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.639Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.639Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.639Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.639Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T15:07:24.639Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.644Z - Time taken for 'build-project-configs' 25.903833001852036ms -[NX Daemon Server] - 2024-09-14T15:07:24.660Z - Time taken for 'total execution time for createProjectGraph()' 12.799791991710663ms -[NX Daemon Server] - 2024-09-14T15:07:24.736Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T15:07:24.736Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T15:07:24.736Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T15:07:24.737Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T15:07:24.737Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T15:07:24.739Z - Time taken for 'total for creating and serializing project graph' 0.0877079963684082ms -[NX Daemon Server] - 2024-09-14T15:07:24.740Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T15:07:24.740Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T15:07:24.787Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T15:07:24.789Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T15:07:24.789Z - Handled HASH_TASKS. Handling time: 36. Response time: 2. -[NX Daemon Server] - 2024-09-14T15:07:24.814Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T15:07:24.814Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T15:07:24.814Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.814Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.815Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.815Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T15:07:24.823Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T15:07:24.823Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T15:07:24.823Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.823Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.823Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.823Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.826Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T15:07:24.826Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T15:07:24.826Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.827Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.827Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.827Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.851Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.851Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.851Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.854Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T15:07:24.854Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T15:07:24.854Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.854Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.854Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:24.854Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:24.912Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:24.978Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:25.119Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:25.515Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T15:07:25.515Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T15:07:25.517Z - Time taken for 'total for creating and serializing project graph' 0.1081250011920929ms -[NX Daemon Server] - 2024-09-14T15:07:25.522Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T15:07:25.522Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T15:07:25.526Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T15:07:25.527Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:25.527Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:25.527Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:25.527Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T15:07:25.527Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T15:07:25.527Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T15:07:25.561Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:25.562Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T15:07:25.563Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T15:07:25.563Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T15:07:25.563Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T15:07:25.563Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T15:07:25.563Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T15:07:25.564Z - Time taken for 'total for creating and serializing project graph' 0.10658299922943115ms -[NX Daemon Server] - 2024-09-14T15:07:25.565Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T15:07:25.565Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T15:07:25.568Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T15:07:25.569Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T15:07:25.570Z - Time taken for 'total for creating and serializing project graph' 0.18812499940395355ms -[NX Daemon Server] - 2024-09-14T15:07:25.571Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T15:07:25.571Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T15:07:25.573Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T15:07:25.690Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:26.850Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:26.850Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:26.851Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T15:07:26.919Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:26.919Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:26.919Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:26.997Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:27.065Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T15:07:27.389Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:27.389Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:27.389Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:28.524Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:28.524Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:28.524Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:28.635Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:28.636Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T15:07:28.636Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T15:07:28.639Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T15:07:28.639Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T15:07:28.639Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:28.640Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T15:07:28.640Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T15:07:28.640Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T15:07:28.642Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T17:55:47.732Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T17:55:47.734Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T17:55:47.734Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T17:55:47.734Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.734Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T17:55:47.734Z - Time taken for 'changed-projects' 0.3682499974966049ms -[NX Daemon Server] - 2024-09-14T17:55:47.835Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T17:55:47.835Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T17:55:47.835Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T17:55:47.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.844Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.844Z - Time taken for 'hash changed files from watcher' 0.297666996717453ms -[NX Daemon Server] - 2024-09-14T17:55:47.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.844Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.845Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.846Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.846Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.848Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T17:55:47.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.848Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.849Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.850Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T17:55:47.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.852Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.852Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.853Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.853Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.854Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.854Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.855Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.855Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.856Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.856Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.857Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.857Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.858Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.858Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.859Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.859Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.860Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T17:55:47.860Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:47.867Z - Time taken for 'build-project-configs' 27.266999989748ms -[NX Daemon Server] - 2024-09-14T17:55:47.886Z - Time taken for 'total execution time for createProjectGraph()' 16.89562499523163ms -[NX Daemon Server] - 2024-09-14T17:55:47.987Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T17:55:47.987Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T17:55:47.987Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T17:55:47.988Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T17:55:47.988Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T17:55:47.991Z - Time taken for 'total for creating and serializing project graph' 0.07558399438858032ms -[NX Daemon Server] - 2024-09-14T17:55:47.993Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T17:55:47.993Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T17:55:48.040Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T17:55:48.042Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T17:55:48.042Z - Handled HASH_TASKS. Handling time: 36. Response time: 2. -[NX Daemon Server] - 2024-09-14T17:55:48.069Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.069Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.069Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.069Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.069Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.069Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.075Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.075Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.075Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.075Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.075Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.075Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.076Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.076Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.076Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.077Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.077Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.077Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.081Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.081Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.081Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.081Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.081Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T17:55:48.081Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.082Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.082Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.082Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.086Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.086Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.086Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.108Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.108Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:48.108Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.136Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T17:55:48.236Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T17:55:48.740Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T17:55:48.740Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T17:55:48.742Z - Time taken for 'total for creating and serializing project graph' 0.19395799934864044ms -[NX Daemon Server] - 2024-09-14T17:55:48.746Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T17:55:48.746Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T17:55:48.750Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T17:55:48.750Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T17:55:48.750Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:48.752Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T17:55:48.795Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T17:55:48.796Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T17:55:48.796Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T17:55:48.796Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T17:55:48.796Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T17:55:48.796Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T17:55:48.798Z - Time taken for 'total for creating and serializing project graph' 0.13075000047683716ms -[NX Daemon Server] - 2024-09-14T17:55:48.799Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T17:55:48.799Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T17:55:48.802Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T17:55:48.802Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T17:55:48.804Z - Time taken for 'total for creating and serializing project graph' 0.2473749965429306ms -[NX Daemon Server] - 2024-09-14T17:55:48.809Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T17:55:48.809Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T17:55:48.812Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T17:55:50.076Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:50.076Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:50.076Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:50.095Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:50.096Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:50.096Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T17:55:50.103Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:50.103Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T17:55:50.103Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T17:55:50.224Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T17:55:51.495Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:10:58.192Z - There are 4 open connections. Reset inactivity timer. -[NX Daemon Server] - 2024-09-14T21:52:57.631Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T21:52:57.633Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:52:57.633Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:52:57.633Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:52:57.633Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:52:57.633Z - Time taken for 'changed-projects' 0.2718749940395355ms -[NX Daemon Server] - 2024-09-14T21:52:57.737Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:52:57.738Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T21:52:57.738Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:52:57.758Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.758Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.758Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.758Z - Time taken for 'hash changed files from watcher' 2.5172500014305115ms -[NX Daemon Server] - 2024-09-14T21:52:57.760Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.760Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.760Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.761Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.761Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.761Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.761Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.761Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.761Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.762Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.762Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.762Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.763Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.763Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.763Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.764Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.764Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.764Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.765Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.765Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.766Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.767Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.768Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.769Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.769Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.770Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.771Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.771Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.772Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.773Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.774Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.776Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.777Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:52:57.777Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:52:57.777Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.822Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.822Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.823Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.823Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.823Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.823Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.823Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.823Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.824Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.824Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.825Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.825Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.825Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.827Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.827Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:52:57.827Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:57.833Z - Time taken for 'build-project-configs' 87.69529201090336ms -[NX Daemon Server] - 2024-09-14T21:52:57.860Z - Time taken for 'total execution time for createProjectGraph()' 23.735790997743607ms -[NX Daemon Server] - 2024-09-14T21:52:58.645Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:52:58.646Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:52:58.649Z - Time taken for 'total for creating and serializing project graph' 0.5857910066843033ms -[NX Daemon Server] - 2024-09-14T21:52:58.656Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:52:58.656Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 10. -[NX Daemon Server] - 2024-09-14T21:52:58.664Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:52:58.664Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:52:58.664Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:52:58.665Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:52:58.707Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:52:58.707Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:52:58.708Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:52:58.708Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:52:58.708Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:52:58.708Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:52:58.709Z - Time taken for 'total for creating and serializing project graph' 0.07962499558925629ms -[NX Daemon Server] - 2024-09-14T21:52:58.710Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:52:58.710Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:52:58.713Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:52:58.713Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:52:58.715Z - Time taken for 'total for creating and serializing project graph' 0.06616699695587158ms -[NX Daemon Server] - 2024-09-14T21:52:58.718Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:52:58.718Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:52:58.720Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:53:51.821Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T21:53:51.822Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:53:51.822Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:53:51.822Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.822Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:53:51.822Z - Time taken for 'changed-projects' 0.07154199481010437ms -[NX Daemon Server] - 2024-09-14T21:53:51.924Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:53:51.924Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T21:53:51.924Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:53:51.937Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.937Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.937Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.938Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.938Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.938Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.938Z - Time taken for 'hash changed files from watcher' 0.5422080010175705ms -[NX Daemon Server] - 2024-09-14T21:53:51.939Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.939Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.939Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.940Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.940Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.940Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.940Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.940Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.940Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.941Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.941Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.941Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.942Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.942Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.942Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.943Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.943Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.943Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.944Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.944Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.944Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.945Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.945Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.945Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.945Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.945Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.945Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.946Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.946Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.946Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.947Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.947Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.947Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.948Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.948Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.948Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.949Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.949Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.949Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.949Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.949Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.949Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.950Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.950Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.950Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.951Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.951Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.951Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.951Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.951Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.951Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.952Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.952Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.952Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.953Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.953Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.953Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.953Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.953Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.953Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.954Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.954Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.954Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.955Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:53:51.955Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:53:51.955Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.960Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.960Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.960Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.960Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.960Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.960Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.961Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.961Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.961Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.962Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.962Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.962Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.962Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.962Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.962Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.963Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.963Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.963Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.964Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.964Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.964Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.966Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.966Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:51.966Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.971Z - Time taken for 'build-project-configs' 42.70162498950958ms -[NX Daemon Server] - 2024-09-14T21:53:51.971Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T21:53:51.972Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:53:51.972Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:53:51.972Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:51.972Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:53:51.972Z - Time taken for 'changed-projects' 0.04087500274181366ms -[NX Daemon Server] - 2024-09-14T21:53:51.998Z - Time taken for 'total execution time for createProjectGraph()' 23.89479199051857ms -[NX Daemon Server] - 2024-09-14T21:53:52.112Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T21:53:52.112Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:53:52.112Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:53:52.112Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.113Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:53:52.113Z - Time taken for 'changed-projects' 0.06666699051856995ms -[NX Daemon Server] - 2024-09-14T21:53:52.174Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:53:52.174Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T21:53:52.174Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:53:52.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.188Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:53:52.189Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.189Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.189Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.189Z - Time taken for 'hash changed files from watcher' 0.6252079904079437ms -[NX Daemon Server] - 2024-09-14T21:53:52.190Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.190Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.190Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.191Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.191Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.192Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.192Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.194Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.196Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.196Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.196Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.197Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.198Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.198Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.198Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.198Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.198Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.198Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.199Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.199Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.199Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.200Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.200Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.200Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.200Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.200Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.200Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.201Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.202Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.202Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.203Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.203Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.203Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.203Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.204Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.204Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.204Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.205Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.205Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.205Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.206Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.206Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.206Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:53:52.206Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.206Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.206Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.207Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.207Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.207Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.207Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.208Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.208Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:53:52.208Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.208Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.208Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.209Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.209Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.209Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.209Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.209Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.209Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.210Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.210Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.210Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.211Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.211Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.211Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.211Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.211Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:52.211Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:52.218Z - Time taken for 'build-project-configs' 39.43220899999142ms -[NX Daemon Server] - 2024-09-14T21:53:52.234Z - Time taken for 'total execution time for createProjectGraph()' 14.122083008289337ms -[NX Daemon Server] - 2024-09-14T21:53:53.119Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:53:53.120Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:53:53.124Z - Time taken for 'total for creating and serializing project graph' 0.5668749958276749ms -[NX Daemon Server] - 2024-09-14T21:53:53.128Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:53:53.128Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T21:53:53.137Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:53:53.137Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:53:53.137Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.138Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:53:53.181Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:53:53.182Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:53:53.182Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:53:53.182Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:53:53.182Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:53:53.182Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:53:53.183Z - Time taken for 'total for creating and serializing project graph' 0.0767500102519989ms -[NX Daemon Server] - 2024-09-14T21:53:53.184Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:53:53.184Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:53:53.187Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:53:53.187Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:53:53.189Z - Time taken for 'total for creating and serializing project graph' 0.07529100775718689ms -[NX Daemon Server] - 2024-09-14T21:53:53.192Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:53:53.192Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:53:53.194Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:53:53.642Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:53:53.642Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T21:53:53.643Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:53:53.643Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:53:53.643Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.643Z - Time taken for 'changed-projects' 0.04329200088977814ms -[NX Daemon Server] - 2024-09-14T21:53:53.744Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:53:53.744Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T21:53:53.744Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:53:53.755Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.755Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.755Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.756Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.756Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.756Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.756Z - Time taken for 'hash changed files from watcher' 0.24733300507068634ms -[NX Daemon Server] - 2024-09-14T21:53:53.757Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.757Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.757Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.757Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.757Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.757Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.758Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.758Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.758Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.758Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.759Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.759Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:53:53.759Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.759Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.759Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.760Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.760Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.760Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.761Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.761Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.761Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.761Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.761Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.761Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.762Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.762Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.762Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.762Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.762Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.762Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.763Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.763Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.763Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.764Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.764Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.764Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.764Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.764Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.764Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.765Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.766Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.767Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.767Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.768Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.768Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.769Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.769Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.770Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:53:53.770Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:53:53.770Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.776Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.777Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.777Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.778Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.778Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.779Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:53.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.786Z - Time taken for 'build-project-configs' 37.63145899772644ms -[NX Daemon Server] - 2024-09-14T21:53:53.807Z - Time taken for 'total execution time for createProjectGraph()' 19.60199999809265ms -[NX Daemon Server] - 2024-09-14T21:53:53.810Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T21:53:53.810Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:53:53.810Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:53:53.810Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:53.810Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:53:53.810Z - Time taken for 'changed-projects' 0.03508399426937103ms -[NX Daemon Server] - 2024-09-14T21:53:54.012Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:53:54.012Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T21:53:54.012Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:53:54.025Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.025Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.025Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.026Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.026Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.026Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.026Z - Time taken for 'hash changed files from watcher' 0.5404579937458038ms -[NX Daemon Server] - 2024-09-14T21:53:54.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.027Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.028Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.029Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.029Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.030Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.031Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:53:54.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.033Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.033Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.033Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.034Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.034Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.035Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.036Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.036Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.037Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.038Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:53:54.038Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.038Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.038Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.039Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.039Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.040Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.041Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.041Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.041Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.041Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.041Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.041Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.042Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.042Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.042Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.042Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.042Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.042Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.043Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.043Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.043Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.044Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.044Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.045Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.045Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.045Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.045Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.045Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:53:54.045Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.051Z - Time taken for 'build-project-configs' 34.877333000302315ms -[NX Daemon Server] - 2024-09-14T21:53:54.067Z - Time taken for 'total execution time for createProjectGraph()' 13.155542001128197ms -[NX Daemon Server] - 2024-09-14T21:53:54.818Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:53:54.819Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:53:54.821Z - Time taken for 'total for creating and serializing project graph' 0.5434169918298721ms -[NX Daemon Server] - 2024-09-14T21:53:54.827Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:53:54.827Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T21:53:54.834Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:53:54.834Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:53:54.834Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:53:54.835Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:53:54.879Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:53:54.879Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:53:54.879Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:53:54.879Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:53:54.880Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:53:54.880Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:53:54.881Z - Time taken for 'total for creating and serializing project graph' 0.07729101181030273ms -[NX Daemon Server] - 2024-09-14T21:53:54.882Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:53:54.882Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:53:54.884Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:53:54.885Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:53:54.886Z - Time taken for 'total for creating and serializing project graph' 0.06562499701976776ms -[NX Daemon Server] - 2024-09-14T21:53:54.887Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:53:54.887Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:53:54.889Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:54:10.794Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:54:10.795Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:54:10.795Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:54:10.795Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:54:10.795Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:54:10.795Z - Time taken for 'changed-projects' 0.04483400285243988ms -[NX Daemon Server] - 2024-09-14T21:54:10.896Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:54:10.896Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:54:10.896Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:54:10.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.906Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:54:10.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.906Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.906Z - Time taken for 'hash changed files from watcher' 0.3942500054836273ms -[NX Daemon Server] - 2024-09-14T21:54:10.907Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.907Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.907Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.908Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.908Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.908Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.909Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.909Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.909Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.909Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.909Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.909Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.910Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.910Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.910Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.911Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.911Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.911Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.911Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.911Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.911Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.912Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.912Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.912Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.912Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.912Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.912Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.913Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.913Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.913Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.914Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.914Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.914Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.914Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.914Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.914Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.915Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.915Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.915Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.915Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.916Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.916Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.916Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.917Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.917Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.917Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.917Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.918Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.918Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.918Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.918Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.919Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.919Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.919Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.920Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.920Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.920Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.920Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:54:10.920Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:54:10.920Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.926Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.926Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.926Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.927Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.927Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.927Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.927Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.927Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.927Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.929Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.929Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.929Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.930Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.930Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.931Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.931Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.931Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.933Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.933Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:10.933Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.937Z - Time taken for 'build-project-configs' 37.92945799231529ms -[NX Daemon Server] - 2024-09-14T21:54:10.948Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:54:10.948Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:54:10.948Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:54:10.948Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:10.948Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:54:10.948Z - Time taken for 'changed-projects' 0.038874998688697815ms -[NX Daemon Server] - 2024-09-14T21:54:10.960Z - Time taken for 'total execution time for createProjectGraph()' 19.648500010371208ms -[NX Daemon Server] - 2024-09-14T21:54:11.101Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:54:11.101Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:54:11.101Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:54:11.101Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.101Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:54:11.101Z - Time taken for 'changed-projects' 0.0768750011920929ms -[NX Daemon Server] - 2024-09-14T21:54:11.150Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:54:11.150Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:54:11.150Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:54:11.165Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.165Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.165Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.166Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.166Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.166Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.166Z - Time taken for 'hash changed files from watcher' 0.637584000825882ms -[NX Daemon Server] - 2024-09-14T21:54:11.167Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.167Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.167Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.168Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.168Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.168Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.168Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.168Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.168Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.169Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.169Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.169Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.170Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.170Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.170Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.171Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.171Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.171Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.172Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.172Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.172Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.172Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.172Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.172Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.173Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.173Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.173Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.174Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.174Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.174Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.174Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.174Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.175Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:54:11.175Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.175Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.175Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.176Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.176Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.176Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.176Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.176Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.176Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.177Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.177Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.177Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.178Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.178Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.178Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.178Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.178Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.178Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.179Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.179Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.179Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.180Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.180Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.180Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.181Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.181Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.181Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.181Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.181Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.181Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.182Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.182Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.182Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.183Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.183Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.183Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.183Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.183Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.183Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.184Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.184Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.184Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.185Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.185Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.186Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:11.186Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:11.193Z - Time taken for 'build-project-configs' 38.140166997909546ms -[NX Daemon Server] - 2024-09-14T21:54:11.214Z - Time taken for 'total execution time for createProjectGraph()' 18.419207990169525ms -[NX Daemon Server] - 2024-09-14T21:54:12.110Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:12.111Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:12.114Z - Time taken for 'total for creating and serializing project graph' 0.8930000066757202ms -[NX Daemon Server] - 2024-09-14T21:54:12.118Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:12.119Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T21:54:12.126Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:54:12.126Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:54:12.126Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:12.127Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:12.168Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:54:12.169Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:12.169Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:54:12.169Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:12.169Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:12.169Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:12.170Z - Time taken for 'total for creating and serializing project graph' 0.07845799624919891ms -[NX Daemon Server] - 2024-09-14T21:54:12.171Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:12.171Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:54:12.174Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:12.174Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:12.175Z - Time taken for 'total for creating and serializing project graph' 0.06595900654792786ms -[NX Daemon Server] - 2024-09-14T21:54:12.177Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:12.177Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:54:12.179Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:54:48.082Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:54:48.082Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:54:48.082Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:54:48.082Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.082Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:54:48.082Z - Time taken for 'changed-projects' 0.12279200553894043ms -[NX Daemon Server] - 2024-09-14T21:54:48.185Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:54:48.186Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:54:48.186Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:54:48.206Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.206Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.206Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.207Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.207Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.207Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.207Z - Time taken for 'hash changed files from watcher' 1.0497500002384186ms -[NX Daemon Server] - 2024-09-14T21:54:48.209Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.209Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.209Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.210Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.210Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.210Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.211Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.211Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.211Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.212Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.212Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.212Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.213Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.213Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.213Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.214Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.214Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.214Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.215Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.215Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.215Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.216Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.216Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.216Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.216Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.216Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.216Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.217Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.217Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.217Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.218Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.218Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.218Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.219Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.219Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.219Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.220Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.220Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.220Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.220Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.220Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.220Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.221Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.221Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.221Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.222Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.222Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.222Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.223Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.223Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.223Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.224Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.224Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.224Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.225Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.225Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.225Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.225Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.225Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.225Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.226Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.226Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.226Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.227Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:54:48.227Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:54:48.227Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.233Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.233Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.233Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.234Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.235Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.235Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.235Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.235Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.235Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.235Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.236Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.236Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.236Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.236Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.236Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.236Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.237Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.237Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.237Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.239Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.239Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.239Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.245Z - Time taken for 'build-project-configs' 52.96283300220966ms -[NX Daemon Server] - 2024-09-14T21:54:48.254Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:54:48.254Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:54:48.254Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:54:48.254Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.254Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:54:48.254Z - Time taken for 'changed-projects' 0.04629199206829071ms -[NX Daemon Server] - 2024-09-14T21:54:48.269Z - Time taken for 'total execution time for createProjectGraph()' 21.760582998394966ms -[NX Daemon Server] - 2024-09-14T21:54:48.457Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:54:48.457Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:54:48.457Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:54:48.472Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.472Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.472Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.473Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.473Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.473Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.473Z - Time taken for 'hash changed files from watcher' 0.5893750041723251ms -[NX Daemon Server] - 2024-09-14T21:54:48.474Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.474Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.474Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.475Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.475Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.475Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.476Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.476Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.476Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.476Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.476Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.476Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.477Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.477Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.477Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.478Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.478Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.478Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.479Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.479Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.479Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.480Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.480Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.481Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:54:48.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:54:48.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.486Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.486Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.487Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.489Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.490Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.491Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.492Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.493Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.493Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:48.494Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:48.500Z - Time taken for 'build-project-configs' 38.45387499034405ms -[NX Daemon Server] - 2024-09-14T21:54:48.516Z - Time taken for 'total execution time for createProjectGraph()' 13.804707989096642ms -[NX Daemon Server] - 2024-09-14T21:54:49.262Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:49.262Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:49.266Z - Time taken for 'total for creating and serializing project graph' 0.7704160064458847ms -[NX Daemon Server] - 2024-09-14T21:54:49.269Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:49.269Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T21:54:49.276Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:54:49.277Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:54:49.277Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:54:49.277Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:49.320Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:54:49.320Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:49.320Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:54:49.320Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:49.320Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:49.320Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:49.322Z - Time taken for 'total for creating and serializing project graph' 0.08379200100898743ms -[NX Daemon Server] - 2024-09-14T21:54:49.323Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:49.323Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:54:49.325Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:49.325Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:49.327Z - Time taken for 'total for creating and serializing project graph' 0.060874998569488525ms -[NX Daemon Server] - 2024-09-14T21:54:49.330Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:49.330Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:54:49.332Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:54:51.100Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:54:51.100Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:54:51.100Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:54:51.100Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.100Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:54:51.100Z - Time taken for 'changed-projects' 0.1441660076379776ms -[NX Daemon Server] - 2024-09-14T21:54:51.203Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:54:51.203Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:54:51.203Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:54:51.217Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.217Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.217Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.218Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.218Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.218Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.218Z - Time taken for 'hash changed files from watcher' 0.6412499994039536ms -[NX Daemon Server] - 2024-09-14T21:54:51.219Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.219Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.219Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.220Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.220Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.220Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.221Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.221Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.221Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.222Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.222Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.222Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.223Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.223Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.223Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.223Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.224Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.224Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:54:51.224Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.224Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.224Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.225Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.225Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.225Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.226Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.226Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.226Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.227Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.227Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.227Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.227Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.227Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.227Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.228Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.228Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.228Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.229Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.229Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.229Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.229Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.229Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.229Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.230Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.230Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.230Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.231Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.231Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.231Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.232Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.232Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.232Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.232Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.233Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.233Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.233Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.234Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.234Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.235Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:54:51.235Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:54:51.235Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.241Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.241Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.241Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.242Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.242Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.242Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.242Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.243Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.243Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.243Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.244Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.244Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.244Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.244Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.244Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.244Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.245Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.245Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.245Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.247Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.247Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.247Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.252Z - Time taken for 'build-project-configs' 45.560917004942894ms -[NX Daemon Server] - 2024-09-14T21:54:51.268Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:54:51.268Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:54:51.268Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:54:51.268Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.268Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:54:51.269Z - Time taken for 'changed-projects' 0.042041003704071045ms -[NX Daemon Server] - 2024-09-14T21:54:51.277Z - Time taken for 'total execution time for createProjectGraph()' 22.43341699242592ms -[NX Daemon Server] - 2024-09-14T21:54:51.471Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:54:51.471Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:54:51.471Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:54:51.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.487Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.488Z - Time taken for 'hash changed files from watcher' 0.6504999995231628ms -[NX Daemon Server] - 2024-09-14T21:54:51.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.489Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.491Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.492Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.493Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.494Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:54:51.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.494Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.495Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.495Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.496Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.496Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.496Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.497Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.497Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.497Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.497Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.497Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.497Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.498Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.498Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.499Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.499Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.499Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.499Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.499Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.499Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.500Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.500Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.500Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.500Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.500Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.500Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.501Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.501Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.501Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.502Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.502Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.502Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.502Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.502Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.502Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.503Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.503Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.503Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.504Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.504Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.504Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.504Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.504Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.504Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.505Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.505Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.505Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.506Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.506Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.506Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.507Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.507Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.507Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.507Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.507Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.507Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.508Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.508Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.508Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.509Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.509Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.509Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.509Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.509Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:54:51.509Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:51.515Z - Time taken for 'build-project-configs' 39.335207998752594ms -[NX Daemon Server] - 2024-09-14T21:54:51.536Z - Time taken for 'total execution time for createProjectGraph()' 17.820999994874ms -[NX Daemon Server] - 2024-09-14T21:54:52.276Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:52.276Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:52.280Z - Time taken for 'total for creating and serializing project graph' 0.6781249940395355ms -[NX Daemon Server] - 2024-09-14T21:54:52.294Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:52.294Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 18. -[NX Daemon Server] - 2024-09-14T21:54:52.299Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:54:52.299Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:54:52.299Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:54:52.300Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:52.335Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:54:52.336Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:52.336Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:54:52.336Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:54:52.336Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:52.336Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:52.338Z - Time taken for 'total for creating and serializing project graph' 0.0817909985780716ms -[NX Daemon Server] - 2024-09-14T21:54:52.338Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:52.338Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:54:52.341Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:54:52.341Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:54:52.343Z - Time taken for 'total for creating and serializing project graph' 0.07583299279212952ms -[NX Daemon Server] - 2024-09-14T21:54:52.343Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:54:52.343Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:54:52.346Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:31.590Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:55:31.590Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:55:31.590Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:55:31.590Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.590Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:55:31.590Z - Time taken for 'changed-projects' 0.04387499392032623ms -[NX Daemon Server] - 2024-09-14T21:55:31.691Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:55:31.691Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:55:31.691Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:55:31.698Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.698Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.698Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.698Z - Time taken for 'hash changed files from watcher' 0.27741700410842896ms -[NX Daemon Server] - 2024-09-14T21:55:31.699Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.699Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.699Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.699Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.699Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.699Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.700Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.700Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.700Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.701Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.701Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.701Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.701Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.701Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.701Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.702Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.703Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.703Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.704Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.705Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.705Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.706Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.707Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.707Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.708Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.708Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.708Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.709Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.709Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.710Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.710Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.711Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.711Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.712Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.713Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.713Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.713Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:55:31.713Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:55:31.713Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.717Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.717Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.717Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.717Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.717Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.717Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.718Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.718Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.718Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.718Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.718Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.718Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.719Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.719Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.719Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.719Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.719Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.719Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.720Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.720Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.720Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:31.721Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.721Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:31.722Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:31.725Z - Time taken for 'build-project-configs' 31.390249997377396ms -[NX Daemon Server] - 2024-09-14T21:55:31.747Z - Time taken for 'total execution time for createProjectGraph()' 18.909082993865013ms -[NX Daemon Server] - 2024-09-14T21:55:32.589Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:55:32.590Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:55:32.590Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:55:32.590Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.590Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:55:32.590Z - Time taken for 'changed-projects' 0.10383298993110657ms -[NX Daemon Server] - 2024-09-14T21:55:32.792Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:55:32.792Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:55:32.792Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:55:32.813Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.814Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.814Z - Handled HASH_GLOB. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:32.815Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.815Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.815Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.815Z - Time taken for 'hash changed files from watcher' 1.1633749902248383ms -[NX Daemon Server] - 2024-09-14T21:55:32.816Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.816Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.816Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.817Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.817Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.817Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.818Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.818Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.818Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.819Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.819Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.819Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.819Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.820Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.820Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:32.820Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.820Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.820Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.821Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.821Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.821Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.822Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.823Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.823Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.823Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.824Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.825Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.825Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.825Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.826Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.826Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.826Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.826Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.826Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.826Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.827Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.827Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.827Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.828Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.828Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.828Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.829Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.830Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.830Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.830Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.830Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.831Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.832Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.832Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.832Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.833Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.833Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:55:32.834Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:55:32.834Z - Handled GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:32.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.841Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.842Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.843Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:32.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.843Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.844Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.844Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.845Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:32.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:32.853Z - Time taken for 'build-project-configs' 54.94241699576378ms -[NX Daemon Server] - 2024-09-14T21:55:32.875Z - Time taken for 'total execution time for createProjectGraph()' 20.41908299922943ms -[NX Daemon Server] - 2024-09-14T21:55:33.599Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:33.599Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:33.604Z - Time taken for 'total for creating and serializing project graph' 0.5177920013666153ms -[NX Daemon Server] - 2024-09-14T21:55:33.606Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:33.606Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T21:55:33.614Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:33.614Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:33.614Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:33.615Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:33.657Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:55:33.658Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:33.658Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:33.658Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:33.658Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:33.658Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:33.660Z - Time taken for 'total for creating and serializing project graph' 0.08708299696445465ms -[NX Daemon Server] - 2024-09-14T21:55:33.661Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:33.661Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:55:33.663Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:33.663Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:33.665Z - Time taken for 'total for creating and serializing project graph' 0.08050000667572021ms -[NX Daemon Server] - 2024-09-14T21:55:33.666Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:33.666Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:55:33.668Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:37.996Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:55:37.996Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:55:37.996Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:55:37.996Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:37.996Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:55:37.996Z - Time taken for 'changed-projects' 0.05854099988937378ms -[NX Daemon Server] - 2024-09-14T21:55:38.097Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:55:38.097Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:55:38.097Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:55:38.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.113Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.114Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.114Z - Time taken for 'hash changed files from watcher' 0.6332920044660568ms -[NX Daemon Server] - 2024-09-14T21:55:38.115Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.115Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.116Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.116Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:38.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.119Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.121Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.122Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.123Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.124Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.125Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.125Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.125Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.126Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.126Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.127Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.127Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.127Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.128Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.129Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.130Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.130Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.131Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.132Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:55:38.132Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:55:38.132Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.137Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.137Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.137Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.138Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.138Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.138Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.138Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.139Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.139Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:38.139Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.139Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.139Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.140Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.140Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.141Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.141Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.141Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.143Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.143Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:38.143Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:38.148Z - Time taken for 'build-project-configs' 46.92695900797844ms -[NX Daemon Server] - 2024-09-14T21:55:38.174Z - Time taken for 'total execution time for createProjectGraph()' 23.583917006850243ms -[NX Daemon Server] - 2024-09-14T21:55:38.999Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:38.999Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:39.001Z - Time taken for 'total for creating and serializing project graph' 0.17291700839996338ms -[NX Daemon Server] - 2024-09-14T21:55:39.002Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:39.002Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:55:39.005Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:39.005Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:39.005Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:39.005Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:39.037Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:55:39.038Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:39.038Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:39.038Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:39.038Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:39.038Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:39.040Z - Time taken for 'total for creating and serializing project graph' 0.07387499511241913ms -[NX Daemon Server] - 2024-09-14T21:55:39.041Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:39.041Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:55:39.044Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:39.044Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:39.045Z - Time taken for 'total for creating and serializing project graph' 0.12216700613498688ms -[NX Daemon Server] - 2024-09-14T21:55:39.046Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:39.046Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:55:39.049Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:43.684Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:55:43.685Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:55:43.685Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:55:43.685Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.685Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:55:43.685Z - Time taken for 'changed-projects' 0.07400000095367432ms -[NX Daemon Server] - 2024-09-14T21:55:43.787Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:55:43.787Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:55:43.787Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:55:43.798Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.798Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.798Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.799Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.799Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.799Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.799Z - Time taken for 'hash changed files from watcher' 0.46050000190734863ms -[NX Daemon Server] - 2024-09-14T21:55:43.800Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.800Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.800Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.801Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.801Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.801Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.802Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.802Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.802Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.802Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.802Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.802Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.803Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.803Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.803Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.804Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.804Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.804Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.805Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.805Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.805Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.805Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.805Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.805Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.806Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.806Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.806Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.807Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.807Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.807Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.807Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.808Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.808Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.808Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.809Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.809Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.809Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.809Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.809Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.809Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.810Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.810Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.810Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.811Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.811Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.811Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.812Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.812Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.812Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.812Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.812Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.812Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.813Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.813Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.813Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.814Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.814Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.814Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.815Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.818Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.818Z - Handled HASH_GLOB. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:55:43.819Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:55:43.819Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:55:43.819Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.822Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.822Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.823Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.823Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.823Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.824Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.824Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.825Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.825Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.825Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.825Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.825Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.825Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.828Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.828Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:43.828Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:43.832Z - Time taken for 'build-project-configs' 41.27137500047684ms -[NX Daemon Server] - 2024-09-14T21:55:43.860Z - Time taken for 'total execution time for createProjectGraph()' 25.83391599357128ms -[NX Daemon Server] - 2024-09-14T21:55:43.876Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:55:43.876Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:55:43.877Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:55:43.877Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:43.877Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:55:43.877Z - Time taken for 'changed-projects' 0.039333999156951904ms -[NX Daemon Server] - 2024-09-14T21:55:44.078Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:55:44.079Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:55:44.079Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:55:44.096Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.096Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.096Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.097Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.097Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.097Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.097Z - Time taken for 'hash changed files from watcher' 0.6837079972028732ms -[NX Daemon Server] - 2024-09-14T21:55:44.098Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.098Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.098Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.099Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.099Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.099Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.100Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.100Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.100Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.101Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.101Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.101Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.102Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.102Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.102Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.103Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.103Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.103Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.103Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.103Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.103Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.104Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.104Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.104Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.105Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.105Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.105Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.106Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.106Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.106Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.106Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.106Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.106Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.107Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.107Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.107Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.108Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.108Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.108Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.109Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.109Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.109Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.109Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.109Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.109Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.110Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.110Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.110Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.111Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.111Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.111Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.111Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.111Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.111Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.112Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.112Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.112Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.113Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.114Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.114Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.115Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.115Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.116Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.116Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.117Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.118Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:44.119Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.125Z - Time taken for 'build-project-configs' 41.32870799303055ms -[NX Daemon Server] - 2024-09-14T21:55:44.142Z - Time taken for 'total execution time for createProjectGraph()' 13.499458000063896ms -[NX Daemon Server] - 2024-09-14T21:55:44.883Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:44.884Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:44.887Z - Time taken for 'total for creating and serializing project graph' 0.8227500021457672ms -[NX Daemon Server] - 2024-09-14T21:55:44.889Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:44.890Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T21:55:44.897Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:44.897Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:44.897Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:44.898Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:44.941Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:55:44.942Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:44.942Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:44.942Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:44.942Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:44.942Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:44.944Z - Time taken for 'total for creating and serializing project graph' 0.09008300304412842ms -[NX Daemon Server] - 2024-09-14T21:55:44.945Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:44.945Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:55:44.947Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:44.948Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:44.949Z - Time taken for 'total for creating and serializing project graph' 0.1254579871892929ms -[NX Daemon Server] - 2024-09-14T21:55:44.949Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:44.949Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:44.952Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:54.430Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:55:54.431Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:55:54.431Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:55:54.431Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.431Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:55:54.431Z - Time taken for 'changed-projects' 0.16074998676776886ms -[NX Daemon Server] - 2024-09-14T21:55:54.533Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:55:54.533Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:55:54.533Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:55:54.552Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.552Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.552Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.553Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.553Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.553Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.553Z - Time taken for 'hash changed files from watcher' 0.9435420036315918ms -[NX Daemon Server] - 2024-09-14T21:55:54.554Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.554Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.554Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.555Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.555Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.555Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.556Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.556Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.557Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:54.557Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.557Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.557Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.558Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.558Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.559Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.559Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.559Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.560Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.560Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.560Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.561Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.561Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.561Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.562Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.562Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.562Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.563Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.563Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.563Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.563Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.563Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.563Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.564Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.565Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.565Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.565Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.566Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.566Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.566Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.566Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.566Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.566Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.567Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.567Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.567Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.568Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.568Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.569Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.569Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.569Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.570Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.570Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.570Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.571Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.571Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.571Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.571Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:55:54.571Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:55:54.572Z - Handled GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:54.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.581Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.584Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.586Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:54.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:54.594Z - Time taken for 'build-project-configs' 55.55316600203514ms -[NX Daemon Server] - 2024-09-14T21:55:54.619Z - Time taken for 'total execution time for createProjectGraph()' 23.008625000715256ms -[NX Daemon Server] - 2024-09-14T21:55:55.435Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:55.435Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:55.439Z - Time taken for 'total for creating and serializing project graph' 0.2539999932050705ms -[NX Daemon Server] - 2024-09-14T21:55:55.441Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:55.441Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T21:55:55.447Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:55.447Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:55.447Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:55.448Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:55.486Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:55:55.486Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:55.486Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:55.486Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:55.487Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:55.487Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:55.488Z - Time taken for 'total for creating and serializing project graph' 0.0934159904718399ms -[NX Daemon Server] - 2024-09-14T21:55:55.492Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:55.492Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:55:55.494Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:55.494Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:55.496Z - Time taken for 'total for creating and serializing project graph' 0.08908399939537048ms -[NX Daemon Server] - 2024-09-14T21:55:55.497Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:55.497Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:55:55.499Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:57.662Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:55:57.662Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:55:57.662Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:55:57.662Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.662Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:55:57.663Z - Time taken for 'changed-projects' 0.10687500238418579ms -[NX Daemon Server] - 2024-09-14T21:55:57.765Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:55:57.765Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:55:57.765Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:55:57.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.779Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.780Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.780Z - Time taken for 'hash changed files from watcher' 0.6422919929027557ms -[NX Daemon Server] - 2024-09-14T21:55:57.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.781Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.782Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.782Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.783Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:55:57.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.783Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.784Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.784Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.784Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.785Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.785Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.785Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.786Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.786Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.786Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.787Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.787Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.787Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.788Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.789Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.790Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.790Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.792Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.793Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.794Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.794Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.795Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.796Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.796Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.796Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.797Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.797Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.797Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.797Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.798Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:55:57.798Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:55:57.798Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.805Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.805Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.805Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.806Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.806Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.806Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.807Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.807Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.807Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.807Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.808Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.808Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.808Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.809Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.809Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.809Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.810Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.810Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.810Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.812Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.812Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:55:57.812Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:57.817Z - Time taken for 'build-project-configs' 48.00062499940395ms -[NX Daemon Server] - 2024-09-14T21:55:57.843Z - Time taken for 'total execution time for createProjectGraph()' 23.728124991059303ms -[NX Daemon Server] - 2024-09-14T21:55:58.670Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:58.670Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:58.673Z - Time taken for 'total for creating and serializing project graph' 0.453000009059906ms -[NX Daemon Server] - 2024-09-14T21:55:58.675Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:58.675Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:55:58.682Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:58.682Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:55:58.682Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:55:58.683Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:58.723Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:55:58.723Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:58.723Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:55:58.723Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:55:58.724Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:58.724Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:58.725Z - Time taken for 'total for creating and serializing project graph' 0.08720900118350983ms -[NX Daemon Server] - 2024-09-14T21:55:58.726Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:58.726Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:55:58.728Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:55:58.729Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:55:58.730Z - Time taken for 'total for creating and serializing project graph' 0.07016700506210327ms -[NX Daemon Server] - 2024-09-14T21:55:58.731Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:55:58.731Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:55:58.733Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:56:03.232Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:56:03.233Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:56:03.233Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:56:03.233Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.233Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:56:03.233Z - Time taken for 'changed-projects' 0.10804100334644318ms -[NX Daemon Server] - 2024-09-14T21:56:03.334Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:56:03.335Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:56:03.335Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:56:03.348Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.349Z - Handled HASH_GLOB. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:03.352Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.352Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.353Z - Handled HASH_GLOB. Handling time: 2. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:03.353Z - Time taken for 'hash changed files from watcher' 0.6601250022649765ms -[NX Daemon Server] - 2024-09-14T21:56:03.357Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.357Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.357Z - Handled HASH_GLOB. Handling time: 3. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.359Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.359Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.359Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.361Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.363Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.363Z - Handled HASH_GLOB. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:56:03.366Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.366Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.366Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.368Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.368Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.368Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.373Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.373Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.373Z - Handled HASH_GLOB. Handling time: 4. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.374Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.374Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.374Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.374Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.375Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.375Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:03.375Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.375Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.375Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.376Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.376Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.376Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.376Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.377Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.377Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:03.378Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.378Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.378Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.379Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.379Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.379Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.382Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.382Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.382Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.383Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.383Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.383Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.383Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.383Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.383Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.384Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.384Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.384Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.385Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.385Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.385Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.385Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.385Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.385Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.386Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.386Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.386Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.386Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.386Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.386Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.388Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:56:03.388Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:56:03.388Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.392Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.392Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.392Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.392Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.392Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.392Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.392Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:56:03.392Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:56:03.393Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:56:03.393Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:03.393Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:56:03.393Z - Time taken for 'changed-projects' 0.045249998569488525ms -[NX Daemon Server] - 2024-09-14T21:56:03.393Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.393Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.393Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.394Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.394Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.394Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.395Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.395Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.395Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.396Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.397Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.399Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.399Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.399Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:03.403Z - Time taken for 'build-project-configs' 63.88525000214577ms -[NX Daemon Server] - 2024-09-14T21:56:03.425Z - Time taken for 'total execution time for createProjectGraph()' 19.62008400261402ms -[NX Daemon Server] - 2024-09-14T21:56:03.594Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:56:03.594Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:56:03.594Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:56:03.605Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.605Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.605Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.606Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.607Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.607Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:03.607Z - Time taken for 'hash changed files from watcher' 0.38316699862480164ms -[NX Daemon Server] - 2024-09-14T21:56:03.607Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.607Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.607Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.609Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.609Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.609Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.610Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.610Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.610Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.611Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.611Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.611Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.611Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.611Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.611Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.613Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.613Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.613Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.613Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.614Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.614Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.614Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.615Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.615Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.615Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.615Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.615Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.615Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.616Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.616Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.616Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.617Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.617Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.617Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.617Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.617Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.617Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.618Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.618Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.618Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.618Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.618Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.618Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.619Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.619Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.619Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.620Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.620Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.620Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.620Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.621Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.621Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.621Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.622Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.622Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.622Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.623Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.623Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.623Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.623Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.623Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.623Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.624Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.624Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.624Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.625Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.625Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.625Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.625Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.625Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.625Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.626Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.626Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.626Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.626Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.626Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.626Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.627Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.627Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.627Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.628Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.628Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:03.628Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:03.634Z - Time taken for 'build-project-configs' 35.94141599535942ms -[NX Daemon Server] - 2024-09-14T21:56:03.654Z - Time taken for 'total execution time for createProjectGraph()' 17.516791999340057ms -[NX Daemon Server] - 2024-09-14T21:56:04.396Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:04.396Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:04.399Z - Time taken for 'total for creating and serializing project graph' 0.2920839935541153ms -[NX Daemon Server] - 2024-09-14T21:56:04.401Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:04.401Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:56:04.407Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:56:04.407Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:56:04.407Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:04.407Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:04.444Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:56:04.444Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:04.444Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:56:04.444Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:04.445Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:04.445Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:04.446Z - Time taken for 'total for creating and serializing project graph' 0.08070801198482513ms -[NX Daemon Server] - 2024-09-14T21:56:04.447Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:04.447Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:56:04.449Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:04.449Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:04.451Z - Time taken for 'total for creating and serializing project graph' 0.06962500512599945ms -[NX Daemon Server] - 2024-09-14T21:56:04.452Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:04.452Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:56:04.454Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:56:08.814Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:56:08.815Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:56:08.815Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:56:08.815Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.815Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:56:08.815Z - Time taken for 'changed-projects' 0.05341699719429016ms -[NX Daemon Server] - 2024-09-14T21:56:08.916Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:56:08.916Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:56:08.916Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:56:08.926Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.926Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.926Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.927Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.927Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.927Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.927Z - Time taken for 'hash changed files from watcher' 0.4611250013113022ms -[NX Daemon Server] - 2024-09-14T21:56:08.928Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.928Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.928Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.929Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.929Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.929Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.929Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.929Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.929Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.930Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.930Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.930Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.931Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.931Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.931Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.931Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.931Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.931Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.932Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.932Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.932Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.932Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.932Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.932Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.933Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.933Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.933Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.934Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.934Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.934Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.934Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.934Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.934Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.935Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.935Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.935Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.936Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.936Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.936Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.936Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.936Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.936Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.937Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.937Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.937Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.937Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.937Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.937Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.938Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.938Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.938Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.939Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.939Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.939Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.939Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.939Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.939Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.940Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.940Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.940Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.941Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.941Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.941Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.942Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:56:08.942Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:56:08.942Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.947Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.947Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.947Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.948Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.948Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.948Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.949Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.949Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.949Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.949Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.949Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.949Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.950Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.950Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.950Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.950Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.950Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.950Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.951Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.951Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.951Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.953Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.953Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:08.953Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.957Z - Time taken for 'build-project-configs' 37.305374994874ms -[NX Daemon Server] - 2024-09-14T21:56:08.963Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:56:08.963Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:56:08.963Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:56:08.963Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:08.963Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:56:08.963Z - Time taken for 'changed-projects' 0.040542006492614746ms -[NX Daemon Server] - 2024-09-14T21:56:08.979Z - Time taken for 'total execution time for createProjectGraph()' 19.39308300614357ms -[NX Daemon Server] - 2024-09-14T21:56:09.115Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:56:09.115Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:56:09.115Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:56:09.115Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.115Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:56:09.115Z - Time taken for 'changed-projects' 0.09708300232887268ms -[NX Daemon Server] - 2024-09-14T21:56:09.164Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:56:09.165Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:56:09.165Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:56:09.181Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.181Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.181Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.182Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.182Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.182Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.182Z - Time taken for 'hash changed files from watcher' 0.5600000023841858ms -[NX Daemon Server] - 2024-09-14T21:56:09.182Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.182Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.182Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.183Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.183Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.183Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.184Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.184Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.184Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.185Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.186Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.187Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.187Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.188Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.188Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.188Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.189Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.189Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.189Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.190Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.190Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.190Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.190Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.190Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.190Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.191Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.191Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.191Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.192Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.192Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.192Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.193Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.193Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.193Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.193Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.193Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.193Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.194Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.194Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.194Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.195Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.195Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:09.195Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.195Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.195Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.196Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.196Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.196Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.197Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.197Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.197Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.197Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.198Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.198Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.198Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.199Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.199Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.199Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.199Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.199Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.199Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.200Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.200Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.200Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.201Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.201Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.201Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.201Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.202Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.202Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.202Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:09.202Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:09.208Z - Time taken for 'build-project-configs' 39.31120799481869ms -[NX Daemon Server] - 2024-09-14T21:56:09.225Z - Time taken for 'total execution time for createProjectGraph()' 13.31937500834465ms -[NX Daemon Server] - 2024-09-14T21:56:10.127Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:10.127Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:10.130Z - Time taken for 'total for creating and serializing project graph' 0.4950840026140213ms -[NX Daemon Server] - 2024-09-14T21:56:10.138Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:10.139Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 12. -[NX Daemon Server] - 2024-09-14T21:56:10.144Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:56:10.144Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:56:10.144Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:10.145Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:10.182Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:56:10.183Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:10.183Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:56:10.183Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:10.184Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:10.184Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:10.185Z - Time taken for 'total for creating and serializing project graph' 0.08095799386501312ms -[NX Daemon Server] - 2024-09-14T21:56:10.186Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:10.186Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:56:10.189Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:10.189Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:10.190Z - Time taken for 'total for creating and serializing project graph' 0.08375000953674316ms -[NX Daemon Server] - 2024-09-14T21:56:10.191Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:10.191Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:56:10.193Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:56:52.127Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:56:52.128Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:56:52.128Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:56:52.128Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.128Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:56:52.128Z - Time taken for 'changed-projects' 0.11483399569988251ms -[NX Daemon Server] - 2024-09-14T21:56:52.231Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:56:52.231Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:56:52.231Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:56:52.248Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.248Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.248Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.248Z - Time taken for 'hash changed files from watcher' 0.6955420076847076ms -[NX Daemon Server] - 2024-09-14T21:56:52.249Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.249Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.249Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.250Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.250Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.250Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.251Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.251Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.251Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.252Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.252Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.252Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.253Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.253Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.253Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.254Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.254Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.254Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.254Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.255Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.255Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:52.255Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.255Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.255Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.256Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.256Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.256Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.257Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.257Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.257Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.258Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.258Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.258Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.259Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.259Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.259Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.259Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.259Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.259Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.260Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.260Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.260Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.261Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.261Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.261Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.262Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.262Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.262Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.262Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.262Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.262Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.263Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.263Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.263Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.264Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.264Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.264Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.264Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.264Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.264Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.265Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.265Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.265Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.266Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.266Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.266Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.267Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:56:52.267Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:56:52.267Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.275Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.275Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.275Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.276Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.276Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.276Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.277Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.277Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.277Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.277Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.277Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.277Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.278Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.278Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.278Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.279Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.279Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.279Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.279Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.279Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.279Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.281Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.281Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:52.281Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:52.287Z - Time taken for 'build-project-configs' 50.950290992856026ms -[NX Daemon Server] - 2024-09-14T21:56:52.314Z - Time taken for 'total execution time for createProjectGraph()' 25.260834008455276ms -[NX Daemon Server] - 2024-09-14T21:56:53.136Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:53.137Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:53.142Z - Time taken for 'total for creating and serializing project graph' 0.5625840127468109ms -[NX Daemon Server] - 2024-09-14T21:56:53.144Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:53.144Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T21:56:53.152Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:56:53.152Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:56:53.152Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:53.153Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:53.198Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:56:53.199Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:53.199Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:56:53.199Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:56:53.199Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:53.199Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:53.200Z - Time taken for 'total for creating and serializing project graph' 0.07933300733566284ms -[NX Daemon Server] - 2024-09-14T21:56:53.201Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:53.201Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:56:53.204Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:56:53.204Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:56:53.205Z - Time taken for 'total for creating and serializing project graph' 0.06487499177455902ms -[NX Daemon Server] - 2024-09-14T21:56:53.206Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:56:53.206Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:56:53.208Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:56:59.462Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:56:59.462Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:56:59.462Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:56:59.462Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.462Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:56:59.462Z - Time taken for 'changed-projects' 0.04079200327396393ms -[NX Daemon Server] - 2024-09-14T21:56:59.564Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:56:59.564Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:56:59.564Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:56:59.573Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.574Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:59.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.574Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.574Z - Time taken for 'hash changed files from watcher' 0.4103330075740814ms -[NX Daemon Server] - 2024-09-14T21:56:59.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.575Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.576Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.576Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.577Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.578Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.578Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.579Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:59.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.580Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.581Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.581Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.582Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.582Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.582Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:56:59.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.583Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.584Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.586Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.586Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.587Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.588Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.589Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.590Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.591Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.591Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.592Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.592Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:56:59.592Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:56:59.597Z - Time taken for 'build-project-configs' 29.93454200029373ms -[NX Daemon Server] - 2024-09-14T21:56:59.613Z - Time taken for 'total execution time for createProjectGraph()' 12.686916008591652ms -[NX Daemon Server] - 2024-09-14T21:57:00.470Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:00.471Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:00.474Z - Time taken for 'total for creating and serializing project graph' 0.5235839933156967ms -[NX Daemon Server] - 2024-09-14T21:57:00.482Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:00.482Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 11. -[NX Daemon Server] - 2024-09-14T21:57:00.488Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:00.489Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:00.489Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:00.489Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:00.533Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:57:00.534Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:00.534Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:57:00.534Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:00.534Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:00.535Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:00.536Z - Time taken for 'total for creating and serializing project graph' 0.08391699194908142ms -[NX Daemon Server] - 2024-09-14T21:57:00.537Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:00.537Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:57:00.539Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:00.539Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:00.540Z - Time taken for 'total for creating and serializing project graph' 0.06691700220108032ms -[NX Daemon Server] - 2024-09-14T21:57:00.544Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:00.544Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:57:00.547Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:57:11.775Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:57:11.776Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:57:11.777Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:57:11.777Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:11.777Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:57:11.777Z - Time taken for 'changed-projects' 0.20341700315475464ms -[NX Daemon Server] - 2024-09-14T21:57:11.878Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:57:11.878Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:57:11.878Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:57:11.886Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.886Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.886Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.886Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.886Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.886Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.886Z - Time taken for 'hash changed files from watcher' 0.2944590002298355ms -[NX Daemon Server] - 2024-09-14T21:57:11.887Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.887Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.887Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.888Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.888Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.888Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.888Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.888Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.888Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.889Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.889Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.889Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.890Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.890Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.890Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.890Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.890Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.890Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.891Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.891Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.891Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.891Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.891Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.891Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.892Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.892Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.892Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.893Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.893Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.893Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.894Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.894Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.894Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.894Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.894Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.894Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.895Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.895Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.895Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.895Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.895Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.895Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.898Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.898Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.898Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.898Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.898Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.898Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.899Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.900Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.901Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.901Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.902Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.902Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:57:11.902Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:57:11.902Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.904Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.904Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.904Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.904Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.904Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.904Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.905Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.905Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.905Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.905Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.906Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.906Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.906Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.906Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:57:11.907Z - Time taken for 'changed-projects' 0.04241698980331421ms -[NX Daemon Server] - 2024-09-14T21:57:11.909Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.909Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:11.909Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:11.912Z - Time taken for 'build-project-configs' 31.69945900142193ms -[NX Daemon Server] - 2024-09-14T21:57:11.939Z - Time taken for 'total execution time for createProjectGraph()' 23.504041001200676ms -[NX Daemon Server] - 2024-09-14T21:57:12.110Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:57:12.110Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:57:12.110Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:57:12.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.123Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.124Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.124Z - Time taken for 'hash changed files from watcher' 0.5999590009450912ms -[NX Daemon Server] - 2024-09-14T21:57:12.125Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.125Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.125Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.126Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.127Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.127Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.127Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.128Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.128Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.129Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.130Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.130Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.131Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.132Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.133Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.133Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.133Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.133Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.134Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.135Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.135Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.136Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.136Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.136Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.137Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.137Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.137Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.137Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.137Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.137Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.138Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.138Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.138Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.138Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.138Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.138Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.139Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.139Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.139Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.140Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.140Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.140Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.140Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.141Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.141Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.141Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.142Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.142Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.142Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.143Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.146Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.146Z - Handled HASH_GLOB. Handling time: 1. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:57:12.147Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.147Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.147Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.147Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.150Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.150Z - Handled HASH_GLOB. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:57:12.151Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.151Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:12.151Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.157Z - Time taken for 'build-project-configs' 43.15387499332428ms -[NX Daemon Server] - 2024-09-14T21:57:12.177Z - Time taken for 'total execution time for createProjectGraph()' 17.034584000706673ms -[NX Daemon Server] - 2024-09-14T21:57:12.912Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:12.912Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:12.916Z - Time taken for 'total for creating and serializing project graph' 0.31929099559783936ms -[NX Daemon Server] - 2024-09-14T21:57:12.918Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:12.918Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T21:57:12.923Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:12.923Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:12.923Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:12.924Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:12.960Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:57:12.961Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:12.961Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:57:12.961Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:12.961Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:12.961Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:12.963Z - Time taken for 'total for creating and serializing project graph' 0.07787500321865082ms -[NX Daemon Server] - 2024-09-14T21:57:12.963Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:12.963Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:57:12.966Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:12.966Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:12.967Z - Time taken for 'total for creating and serializing project graph' 0.07850000262260437ms -[NX Daemon Server] - 2024-09-14T21:57:12.968Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:12.968Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:57:12.970Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:57:33.108Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:57:33.108Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:57:33.108Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:57:33.108Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.108Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:57:33.108Z - Time taken for 'changed-projects' 0.04829099774360657ms -[NX Daemon Server] - 2024-09-14T21:57:33.209Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:57:33.209Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:57:33.209Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:57:33.218Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.218Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.218Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.219Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.219Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.219Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.219Z - Time taken for 'hash changed files from watcher' 0.4120829999446869ms -[NX Daemon Server] - 2024-09-14T21:57:33.220Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.220Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.220Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.221Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.221Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.221Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.221Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.221Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.221Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.222Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.222Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.222Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.223Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.223Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.223Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.223Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.223Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.223Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.224Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.224Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.224Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.225Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.225Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.225Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.225Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.225Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.225Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.226Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.226Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.226Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.227Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.227Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.227Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.227Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.227Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.227Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.228Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.228Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.228Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.228Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.228Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.228Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.229Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.229Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.229Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.230Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.230Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.230Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.230Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.230Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.230Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.231Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.231Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.231Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.231Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.231Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.231Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.232Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.232Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.233Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.233Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:33.233Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:57:33.233Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:57:33.233Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.239Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.239Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.239Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.240Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.240Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.240Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.240Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.240Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.240Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.241Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.241Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.241Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.241Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.242Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:33.242Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.242Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.242Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.243Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.243Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.243Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.245Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.245Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:33.245Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:33.249Z - Time taken for 'build-project-configs' 37.04366700351238ms -[NX Daemon Server] - 2024-09-14T21:57:33.274Z - Time taken for 'total execution time for createProjectGraph()' 22.45804201066494ms -[NX Daemon Server] - 2024-09-14T21:57:34.113Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:34.113Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:34.116Z - Time taken for 'total for creating and serializing project graph' 0.18774999678134918ms -[NX Daemon Server] - 2024-09-14T21:57:34.117Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:34.117Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T21:57:34.123Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:34.123Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:34.123Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:34.123Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:34.163Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:57:34.164Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:34.164Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:57:34.164Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:34.164Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:34.165Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:34.166Z - Time taken for 'total for creating and serializing project graph' 0.08574999868869781ms -[NX Daemon Server] - 2024-09-14T21:57:34.167Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:34.167Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:57:34.170Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:34.170Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:34.171Z - Time taken for 'total for creating and serializing project graph' 0.09345799684524536ms -[NX Daemon Server] - 2024-09-14T21:57:34.172Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:34.172Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:57:34.174Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:57:42.438Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:57:42.439Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:57:42.439Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:57:42.439Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:57:42.439Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.439Z - Time taken for 'changed-projects' 0.10433299839496613ms -[NX Daemon Server] - 2024-09-14T21:57:42.542Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:57:42.543Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:57:42.543Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:57:42.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.558Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.558Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.560Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.560Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.560Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.560Z - Time taken for 'hash changed files from watcher' 1.432332992553711ms -[NX Daemon Server] - 2024-09-14T21:57:42.561Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.561Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.561Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.562Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.562Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.562Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.562Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.562Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.562Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.563Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.563Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.563Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.564Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.565Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.565Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.565Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.565Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.565Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.565Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.566Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.566Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.566Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.567Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.567Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.567Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.568Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.569Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.569Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.569Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.569Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.569Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.569Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.570Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.570Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.570Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.571Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.571Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.571Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.571Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.571Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.571Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.572Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.572Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.572Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.573Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.573Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.573Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.573Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.573Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.573Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.574Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.575Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.576Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.577Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:57:42.577Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:57:42.577Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.584Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.586Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.587Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:42.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:42.589Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.589Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.589Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.591Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.591Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.591Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.596Z - Time taken for 'build-project-configs' 49.122666999697685ms -[NX Daemon Server] - 2024-09-14T21:57:42.619Z - Time taken for 'total execution time for createProjectGraph()' 20.468125000596046ms -[NX Daemon Server] - 2024-09-14T21:57:42.748Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:57:42.749Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:57:42.749Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:57:42.749Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.749Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:57:42.749Z - Time taken for 'changed-projects' 0.08379200100898743ms -[NX Daemon Server] - 2024-09-14T21:57:42.952Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:57:42.952Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:57:42.952Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:57:42.972Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.973Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.973Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:42.974Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.974Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.974Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.974Z - Time taken for 'hash changed files from watcher' 2.0027500092983246ms -[NX Daemon Server] - 2024-09-14T21:57:42.975Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.975Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.975Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.976Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.976Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.976Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.977Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.977Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.977Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.978Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.978Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.978Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.979Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.979Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.979Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.980Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.980Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.981Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.981Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.981Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.982Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.982Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.982Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.983Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.983Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.983Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.984Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.984Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.984Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.985Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.985Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.985Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.986Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.986Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.986Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.987Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.987Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.987Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.987Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.987Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.987Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.988Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.988Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.988Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.989Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.989Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.989Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.990Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:42.990Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.990Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.990Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.991Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.991Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.991Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.992Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.992Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.992Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.992Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.993Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.993Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.993Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.994Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.994Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.994Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.995Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.995Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.996Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.996Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:42.997Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.997Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:42.997Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:43.004Z - Time taken for 'build-project-configs' 46.41449999809265ms -[NX Daemon Server] - 2024-09-14T21:57:43.020Z - Time taken for 'total execution time for createProjectGraph()' 13.793957993388176ms -[NX Daemon Server] - 2024-09-14T21:57:43.758Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:43.758Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:43.760Z - Time taken for 'total for creating and serializing project graph' 0.499332994222641ms -[NX Daemon Server] - 2024-09-14T21:57:43.762Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:43.762Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T21:57:43.770Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:43.771Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:43.771Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:43.771Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:43.811Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:57:43.812Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:43.812Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:57:43.812Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:43.812Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:43.812Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:43.814Z - Time taken for 'total for creating and serializing project graph' 0.07716600596904755ms -[NX Daemon Server] - 2024-09-14T21:57:43.814Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:43.814Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:57:43.817Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:43.817Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:43.818Z - Time taken for 'total for creating and serializing project graph' 0.06670799851417542ms -[NX Daemon Server] - 2024-09-14T21:57:43.822Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:43.822Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:57:43.825Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:57:53.726Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:57:53.727Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:57:53.727Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:57:53.727Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.727Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:57:53.727Z - Time taken for 'changed-projects' 0.12645798921585083ms -[NX Daemon Server] - 2024-09-14T21:57:53.828Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:57:53.828Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:57:53.829Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:57:53.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.844Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.845Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.845Z - Time taken for 'hash changed files from watcher' 0.6126670092344284ms -[NX Daemon Server] - 2024-09-14T21:57:53.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.846Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.847Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.848Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.848Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.849Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.850Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.852Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.853Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.853Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.854Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.855Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.855Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.856Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.857Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.858Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.859Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.859Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.860Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.861Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.862Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:57:53.862Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:57:53.862Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.869Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.869Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.869Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.870Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.870Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.870Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.871Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.871Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.871Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:57:53.871Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.871Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.871Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.872Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.872Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.872Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.872Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.872Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.872Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.873Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.873Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.873Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.875Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.875Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:57:53.875Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:53.880Z - Time taken for 'build-project-configs' 47.332249999046326ms -[NX Daemon Server] - 2024-09-14T21:57:53.907Z - Time taken for 'total execution time for createProjectGraph()' 24.04612499475479ms -[NX Daemon Server] - 2024-09-14T21:57:54.736Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:54.736Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:54.740Z - Time taken for 'total for creating and serializing project graph' 0.542957991361618ms -[NX Daemon Server] - 2024-09-14T21:57:54.744Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:54.744Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T21:57:54.752Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:54.752Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:57:54.752Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:57:54.753Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:54.795Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:57:54.796Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:54.796Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:57:54.796Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:57:54.796Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:54.796Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:54.798Z - Time taken for 'total for creating and serializing project graph' 0.08245798945426941ms -[NX Daemon Server] - 2024-09-14T21:57:54.798Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:54.798Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:57:54.801Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:57:54.801Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:57:54.803Z - Time taken for 'total for creating and serializing project graph' 0.08308298885822296ms -[NX Daemon Server] - 2024-09-14T21:57:54.804Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:57:54.804Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:57:54.806Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:58:34.650Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:58:34.651Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:58:34.651Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:58:34.651Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.651Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:58:34.651Z - Time taken for 'changed-projects' 0.11929100751876831ms -[NX Daemon Server] - 2024-09-14T21:58:34.754Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:58:34.755Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:58:34.755Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:58:34.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.771Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.772Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.772Z - Time taken for 'hash changed files from watcher' 0.7347919940948486ms -[NX Daemon Server] - 2024-09-14T21:58:34.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.773Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.775Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.776Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.777Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.778Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.779Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.780Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.780Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.782Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.782Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.783Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.783Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.784Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.784Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.784Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.785Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.785Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.785Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.786Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.786Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.786Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.786Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.786Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.786Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.787Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.787Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.787Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.788Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.789Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.789Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.790Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:58:34.790Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:58:34.790Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.798Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.798Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:58:34.798Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.798Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.798Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.799Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.799Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.799Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.799Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.799Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.799Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.800Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.800Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.800Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.801Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.801Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.801Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.801Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.801Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.801Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.803Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.803Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:34.803Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:34.808Z - Time taken for 'build-project-configs' 48.562875002622604ms -[NX Daemon Server] - 2024-09-14T21:58:34.833Z - Time taken for 'total execution time for createProjectGraph()' 22.39995799958706ms -[NX Daemon Server] - 2024-09-14T21:58:35.658Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:35.660Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:35.664Z - Time taken for 'total for creating and serializing project graph' 2.202124997973442ms -[NX Daemon Server] - 2024-09-14T21:58:35.668Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:35.669Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 2. Response time: 9. -[NX Daemon Server] - 2024-09-14T21:58:35.676Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:58:35.677Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:58:35.677Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:58:35.678Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:35.719Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:58:35.719Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:35.719Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:58:35.719Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:35.720Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:35.720Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:35.721Z - Time taken for 'total for creating and serializing project graph' 0.07833300530910492ms -[NX Daemon Server] - 2024-09-14T21:58:35.722Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:35.722Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:58:35.725Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:35.725Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:35.726Z - Time taken for 'total for creating and serializing project graph' 0.07804200053215027ms -[NX Daemon Server] - 2024-09-14T21:58:35.728Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:35.728Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:58:35.731Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:58:38.655Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:58:38.655Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:58:38.655Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:58:38.655Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.655Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:58:38.655Z - Time taken for 'changed-projects' 0.08704100549221039ms -[NX Daemon Server] - 2024-09-14T21:58:38.758Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:58:38.758Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:58:38.758Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:58:38.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.779Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.780Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.780Z - Time taken for 'hash changed files from watcher' 0.9763330072164536ms -[NX Daemon Server] - 2024-09-14T21:58:38.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.782Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.782Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.783Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.784Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.784Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.784Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.785Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.785Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.785Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.786Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.786Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.786Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.787Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.787Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.787Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.788Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.789Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.790Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.791Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.792Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.792Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.793Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.794Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.795Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.795Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.796Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.796Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.796Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.797Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.797Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.798Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.798Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.798Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.799Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.799Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.799Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.800Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:58:38.800Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:58:38.800Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.807Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.807Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.807Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.807Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.808Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.808Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.808Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.809Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.809Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.809Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.809Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.809Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.809Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.810Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.810Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.810Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.811Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.811Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.811Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.813Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.813Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:38.813Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:38.818Z - Time taken for 'build-project-configs' 54.834957987070084ms -[NX Daemon Server] - 2024-09-14T21:58:38.844Z - Time taken for 'total execution time for createProjectGraph()' 23.56174999475479ms -[NX Daemon Server] - 2024-09-14T21:58:39.665Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:39.666Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:39.670Z - Time taken for 'total for creating and serializing project graph' 0.5190830081701279ms -[NX Daemon Server] - 2024-09-14T21:58:39.682Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:39.682Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 16. -[NX Daemon Server] - 2024-09-14T21:58:39.687Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:58:39.688Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:58:39.688Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:58:39.688Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:39.724Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:58:39.725Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:39.725Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:58:39.725Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:39.725Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:39.725Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:39.727Z - Time taken for 'total for creating and serializing project graph' 0.10125000774860382ms -[NX Daemon Server] - 2024-09-14T21:58:39.728Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:39.728Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:58:39.730Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:39.730Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:39.731Z - Time taken for 'total for creating and serializing project graph' 0.0510839968919754ms -[NX Daemon Server] - 2024-09-14T21:58:39.732Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:39.732Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:58:39.734Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:58:48.646Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:58:48.646Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:58:48.646Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:58:48.646Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.646Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:58:48.646Z - Time taken for 'changed-projects' 0.12987498939037323ms -[NX Daemon Server] - 2024-09-14T21:58:48.748Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:58:48.749Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:58:48.749Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:58:48.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.766Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:58:48.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.767Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.767Z - Time taken for 'hash changed files from watcher' 0.6908749938011169ms -[NX Daemon Server] - 2024-09-14T21:58:48.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.768Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.769Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.770Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.770Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.771Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.772Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.773Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.774Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.776Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.777Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.777Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.778Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.779Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.780Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.781Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.782Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.782Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.783Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.783Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.784Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:58:48.784Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:58:48.784Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.790Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.790Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.792Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.792Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.793Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.794Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:48.795Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.801Z - Time taken for 'build-project-configs' 45.87866699695587ms -[NX Daemon Server] - 2024-09-14T21:58:48.802Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:58:48.802Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:58:48.802Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:58:48.802Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:48.802Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:58:48.802Z - Time taken for 'changed-projects' 0.038291990756988525ms -[NX Daemon Server] - 2024-09-14T21:58:48.824Z - Time taken for 'total execution time for createProjectGraph()' 20.737792000174522ms -[NX Daemon Server] - 2024-09-14T21:58:49.004Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:58:49.004Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:58:49.004Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:58:49.017Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.017Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.017Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.018Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.018Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.018Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.018Z - Time taken for 'hash changed files from watcher' 0.5401249974966049ms -[NX Daemon Server] - 2024-09-14T21:58:49.019Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.019Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.019Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.020Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.020Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.020Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.021Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.021Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.021Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.021Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.021Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.021Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.022Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.022Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.022Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.023Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.023Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.023Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.024Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.024Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.024Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.025Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.025Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.025Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.025Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.025Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.025Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.026Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.026Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.026Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.027Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.027Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.027Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.028Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.028Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.028Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.028Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.029Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.030Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.030Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.031Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.031Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.033Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.033Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.033Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.034Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.034Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.035Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.035Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.036Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.037Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.037Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.038Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.038Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.038Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:49.039Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.044Z - Time taken for 'build-project-configs' 36.304041996598244ms -[NX Daemon Server] - 2024-09-14T21:58:49.064Z - Time taken for 'total execution time for createProjectGraph()' 17.32600000500679ms -[NX Daemon Server] - 2024-09-14T21:58:49.807Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:49.807Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:49.810Z - Time taken for 'total for creating and serializing project graph' 0.20783300697803497ms -[NX Daemon Server] - 2024-09-14T21:58:49.813Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:49.813Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T21:58:49.820Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:58:49.820Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:58:49.820Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:49.820Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:49.860Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:58:49.861Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:49.861Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:58:49.861Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:49.861Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:49.861Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:49.863Z - Time taken for 'total for creating and serializing project graph' 0.07820799946784973ms -[NX Daemon Server] - 2024-09-14T21:58:49.865Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:49.865Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T21:58:49.868Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:49.868Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:49.869Z - Time taken for 'total for creating and serializing project graph' 0.10487499833106995ms -[NX Daemon Server] - 2024-09-14T21:58:49.874Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:49.874Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T21:58:49.876Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:58:57.663Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:58:57.664Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:58:57.664Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:58:57.664Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.664Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:58:57.664Z - Time taken for 'changed-projects' 0.13650000095367432ms -[NX Daemon Server] - 2024-09-14T21:58:57.765Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:58:57.766Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:58:57.766Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:58:57.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.779Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.780Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.780Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.780Z - Time taken for 'hash changed files from watcher' 0.634458988904953ms -[NX Daemon Server] - 2024-09-14T21:58:57.781Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.781Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.781Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.782Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.782Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.782Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.783Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.783Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.783Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.784Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.784Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.784Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.785Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.785Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.785Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.785Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.785Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.785Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.786Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.786Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.786Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.787Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.787Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.787Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.788Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.788Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.789Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.790Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.790Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.792Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.792Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.793Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.794Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.794Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.795Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.796Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.796Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.796Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.796Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.796Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.796Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.797Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.797Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.798Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.798Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.798Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.798Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.798Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.798Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.799Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.799Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.799Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.799Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.799Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.800Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:58:57.800Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.800Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.800Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.801Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.801Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:57.801Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.808Z - Time taken for 'build-project-configs' 37.55933400988579ms -[NX Daemon Server] - 2024-09-14T21:58:57.813Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:58:57.813Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:58:57.813Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:58:57.813Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:57.813Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:58:57.813Z - Time taken for 'changed-projects' 0.051750004291534424ms -[NX Daemon Server] - 2024-09-14T21:58:57.825Z - Time taken for 'total execution time for createProjectGraph()' 14.795541003346443ms -[NX Daemon Server] - 2024-09-14T21:58:58.014Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:58:58.014Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:58:58.014Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:58:58.029Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.029Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.029Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.030Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.030Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.030Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.030Z - Time taken for 'hash changed files from watcher' 0.6522500067949295ms -[NX Daemon Server] - 2024-09-14T21:58:58.031Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.031Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.031Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.032Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.033Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.033Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.033Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.034Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.035Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.035Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.036Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.037Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.037Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.037Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.037Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.038Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.038Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.038Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.039Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.039Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.040Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.041Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.041Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.041Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.041Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.041Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.041Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.042Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.042Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.042Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.043Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.043Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.043Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.043Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.043Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.043Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.044Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.045Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.045Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.045Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.045Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.045Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.045Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.046Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.046Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.046Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.047Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.047Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.047Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.047Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.047Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.047Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.048Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.048Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.049Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.049Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.049Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:58:58.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.056Z - Time taken for 'build-project-configs' 36.27233301103115ms -[NX Daemon Server] - 2024-09-14T21:58:58.072Z - Time taken for 'total execution time for createProjectGraph()' 13.894625008106232ms -[NX Daemon Server] - 2024-09-14T21:58:58.824Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:58.824Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:58.828Z - Time taken for 'total for creating and serializing project graph' 0.3260830044746399ms -[NX Daemon Server] - 2024-09-14T21:58:58.830Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:58.830Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T21:58:58.836Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:58:58.836Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:58:58.836Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:58:58.837Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:58.879Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:58:58.879Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:58.879Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:58:58.880Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:58:58.880Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:58.880Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:58.881Z - Time taken for 'total for creating and serializing project graph' 0.09004199504852295ms -[NX Daemon Server] - 2024-09-14T21:58:58.882Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:58.882Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:58:58.885Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:58:58.885Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:58:58.887Z - Time taken for 'total for creating and serializing project graph' 0.09266699850559235ms -[NX Daemon Server] - 2024-09-14T21:58:58.888Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:58:58.888Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:58:58.891Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:22.886Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:59:22.887Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:59:22.887Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:59:22.887Z - Handled FILE-WATCH-CHANGED. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:22.887Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:59:22.887Z - Time taken for 'changed-projects' 0.10991600155830383ms -[NX Daemon Server] - 2024-09-14T21:59:22.990Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:59:22.990Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:59:22.990Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:59:23.007Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.007Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.007Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.008Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.008Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.008Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.008Z - Time taken for 'hash changed files from watcher' 0.6605419963598251ms -[NX Daemon Server] - 2024-09-14T21:59:23.009Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.009Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.009Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.010Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.010Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.010Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.011Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.011Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.011Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.012Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.012Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.012Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.013Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.013Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.013Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.014Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.014Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.014Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.015Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.015Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.015Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.015Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.015Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.015Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.016Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.016Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.016Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.017Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.017Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.017Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.018Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.018Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.018Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.018Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.018Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.018Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.019Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.019Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.019Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.020Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.020Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.020Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.021Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.021Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.021Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.021Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.021Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.021Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.022Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.022Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.022Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.023Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.023Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.023Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.024Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.024Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.024Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.024Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.024Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.024Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.025Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.025Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.025Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.026Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:59:23.026Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:59:23.026Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.032Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.032Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.032Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.033Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.033Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.033Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.034Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.034Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.034Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.034Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.035Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.035Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.035Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.035Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.036Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.036Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.036Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.038Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.038Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:23.038Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:23.043Z - Time taken for 'build-project-configs' 48.166999995708466ms -[NX Daemon Server] - 2024-09-14T21:59:23.069Z - Time taken for 'total execution time for createProjectGraph()' 23.250999987125397ms -[NX Daemon Server] - 2024-09-14T21:59:23.896Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:23.897Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:23.900Z - Time taken for 'total for creating and serializing project graph' 0.5187080055475235ms -[NX Daemon Server] - 2024-09-14T21:59:23.904Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:23.904Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T21:59:23.911Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:23.912Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:23.912Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:59:23.912Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:23.954Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:59:23.955Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:23.955Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:23.955Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:23.955Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:23.955Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:23.957Z - Time taken for 'total for creating and serializing project graph' 0.07808400690555573ms -[NX Daemon Server] - 2024-09-14T21:59:23.958Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:23.958Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:59:23.961Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:23.961Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:23.963Z - Time taken for 'total for creating and serializing project graph' 0.08912500739097595ms -[NX Daemon Server] - 2024-09-14T21:59:23.964Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:23.964Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:59:23.966Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:40.672Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:59:40.672Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:59:40.672Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:59:40.672Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.672Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:59:40.672Z - Time taken for 'changed-projects' 0.05262500047683716ms -[NX Daemon Server] - 2024-09-14T21:59:40.774Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:59:40.774Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:59:40.774Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:59:40.786Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.786Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.786Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.787Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.787Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.787Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.787Z - Time taken for 'hash changed files from watcher' 0.5431250035762787ms -[NX Daemon Server] - 2024-09-14T21:59:40.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.788Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.789Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.790Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.791Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.792Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.792Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.792Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.793Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.793Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.794Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.794Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.794Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.795Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.795Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.795Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.795Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.796Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.796Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.796Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.797Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.797Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.797Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.798Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.798Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:59:40.798Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.798Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.798Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.799Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.799Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.799Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.800Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.800Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.800Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.801Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.801Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.801Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.801Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.801Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.801Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.802Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.802Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.802Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.803Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.803Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.803Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.804Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:59:40.804Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:59:40.804Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.809Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.809Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.809Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.810Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.810Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.810Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.810Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.810Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.810Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.811Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.811Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.811Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.812Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.812Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.812Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.813Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.813Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.813Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.815Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.815Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.815Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.816Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.816Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:40.816Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:40.821Z - Time taken for 'build-project-configs' 42.92295800149441ms -[NX Daemon Server] - 2024-09-14T21:59:40.845Z - Time taken for 'total execution time for createProjectGraph()' 20.535792008042336ms -[NX Daemon Server] - 2024-09-14T21:59:41.676Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:41.676Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:41.679Z - Time taken for 'total for creating and serializing project graph' 0.2545829862356186ms -[NX Daemon Server] - 2024-09-14T21:59:41.681Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:41.681Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:59:41.687Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:41.687Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:41.687Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:41.687Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:41.730Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:59:41.731Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:41.731Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:41.731Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:41.731Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:41.731Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:41.733Z - Time taken for 'total for creating and serializing project graph' 0.07841598987579346ms -[NX Daemon Server] - 2024-09-14T21:59:41.733Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:41.733Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:41.736Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:41.736Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:41.737Z - Time taken for 'total for creating and serializing project graph' 0.05979199707508087ms -[NX Daemon Server] - 2024-09-14T21:59:41.738Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:41.738Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:41.740Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:43.844Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:59:43.844Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:59:43.844Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:59:43.844Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.844Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:59:43.844Z - Time taken for 'changed-projects' 0.12308299541473389ms -[NX Daemon Server] - 2024-09-14T21:59:43.947Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:59:43.947Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:59:43.947Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:59:43.968Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.968Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.968Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.969Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.969Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.969Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.969Z - Time taken for 'hash changed files from watcher' 0.8888330012559891ms -[NX Daemon Server] - 2024-09-14T21:59:43.970Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.970Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.970Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.971Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.972Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.972Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.972Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.973Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.973Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.973Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.974Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.974Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.974Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.975Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.975Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.975Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.976Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.976Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.976Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.977Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.977Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.977Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.978Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.978Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.978Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.978Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.978Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.979Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:59:43.979Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.979Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.979Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.980Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.980Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.980Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.981Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.981Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.981Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.982Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.982Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.982Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.983Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.983Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.983Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.984Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.984Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.984Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.985Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.985Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.985Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.985Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.985Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.985Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.986Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.986Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.986Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.987Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.987Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.987Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.988Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.988Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.988Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.989Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:59:43.989Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:59:43.989Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.994Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.995Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:59:43.995Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.995Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.995Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.996Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.996Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.996Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.997Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.997Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.997Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.997Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.997Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.997Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.998Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.998Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.998Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:43.999Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.999Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:43.999Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:44.001Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:44.001Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:44.001Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:44.006Z - Time taken for 'build-project-configs' 53.99395799636841ms -[NX Daemon Server] - 2024-09-14T21:59:44.030Z - Time taken for 'total execution time for createProjectGraph()' 21.750041007995605ms -[NX Daemon Server] - 2024-09-14T21:59:44.849Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:44.849Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:44.852Z - Time taken for 'total for creating and serializing project graph' 0.226624995470047ms -[NX Daemon Server] - 2024-09-14T21:59:44.855Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:44.855Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T21:59:44.860Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:44.861Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:44.861Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:59:44.861Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:44.899Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:59:44.899Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:44.899Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:44.899Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:44.899Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:44.900Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:44.901Z - Time taken for 'total for creating and serializing project graph' 0.0768750011920929ms -[NX Daemon Server] - 2024-09-14T21:59:44.902Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:44.902Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:44.904Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:44.905Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:44.906Z - Time taken for 'total for creating and serializing project graph' 0.12245799601078033ms -[NX Daemon Server] - 2024-09-14T21:59:44.907Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:44.907Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:44.909Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:46.206Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:59:46.206Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:59:46.206Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:59:46.206Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.206Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:59:46.207Z - Time taken for 'changed-projects' 0.10012499988079071ms -[NX Daemon Server] - 2024-09-14T21:59:46.309Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:59:46.309Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:59:46.309Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:59:46.322Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.322Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.322Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.323Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.323Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.323Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.323Z - Time taken for 'hash changed files from watcher' 0.6592079997062683ms -[NX Daemon Server] - 2024-09-14T21:59:46.324Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.324Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.324Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.324Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.324Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.324Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.325Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.325Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.325Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.326Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.326Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.326Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.327Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.327Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.327Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.328Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.328Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.328Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.329Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.329Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.329Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.329Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.329Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.329Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.330Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.330Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.330Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.331Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.331Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.331Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.332Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.332Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.332Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.332Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.332Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.332Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.333Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.333Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.333Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.334Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.334Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.334Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.335Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.335Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.335Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.335Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.335Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.335Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.336Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.336Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.336Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.337Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.337Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.337Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.337Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.337Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.337Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.338Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.338Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.338Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.339Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.339Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.339Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.339Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:59:46.339Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:59:46.339Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.346Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.346Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.346Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.346Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.346Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.346Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.347Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.347Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.347Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.348Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.348Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.348Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.348Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.348Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.348Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.349Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.349Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.349Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.349Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.349Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.352Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.352Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:46.352Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:46.356Z - Time taken for 'build-project-configs' 43.70254200696945ms -[NX Daemon Server] - 2024-09-14T21:59:46.380Z - Time taken for 'total execution time for createProjectGraph()' 20.386083006858826ms -[NX Daemon Server] - 2024-09-14T21:59:47.211Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:47.212Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:47.215Z - Time taken for 'total for creating and serializing project graph' 0.3785420060157776ms -[NX Daemon Server] - 2024-09-14T21:59:47.217Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:47.217Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T21:59:47.223Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:47.223Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:47.223Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:47.223Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:47.261Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:59:47.261Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:47.261Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:47.261Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:47.262Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:47.262Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:47.264Z - Time taken for 'total for creating and serializing project graph' 0.07745800912380219ms -[NX Daemon Server] - 2024-09-14T21:59:47.264Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:47.264Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:47.267Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:47.267Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:47.268Z - Time taken for 'total for creating and serializing project graph' 0.06174999475479126ms -[NX Daemon Server] - 2024-09-14T21:59:47.269Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:47.269Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:47.271Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:47.998Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:59:47.998Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:59:47.998Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:59:47.998Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:47.998Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:59:47.998Z - Time taken for 'changed-projects' 0.09999999403953552ms -[NX Daemon Server] - 2024-09-14T21:59:48.101Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:59:48.101Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:59:48.101Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:59:48.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.117Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.119Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.119Z - Time taken for 'hash changed files from watcher' 0.8795420080423355ms -[NX Daemon Server] - 2024-09-14T21:59:48.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.120Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.121Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.122Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.123Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.125Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.125Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.125Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.126Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.127Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.127Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.127Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.128Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.129Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.129Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.130Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.131Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.131Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.132Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.133Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.133Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.134Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.134Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.135Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.136Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.136Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.136Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.136Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.136Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.136Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.137Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:59:48.137Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:59:48.137Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.143Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.143Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.143Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.144Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.144Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.144Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.145Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.145Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.145Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.145Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.145Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.145Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.146Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.146Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.146Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.146Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.146Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.146Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.147Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.147Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.147Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.149Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.149Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:48.149Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:48.154Z - Time taken for 'build-project-configs' 48.551415994763374ms -[NX Daemon Server] - 2024-09-14T21:59:48.181Z - Time taken for 'total execution time for createProjectGraph()' 23.77691699564457ms -[NX Daemon Server] - 2024-09-14T21:59:49.005Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:49.006Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:49.008Z - Time taken for 'total for creating and serializing project graph' 0.5095839947462082ms -[NX Daemon Server] - 2024-09-14T21:59:49.010Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:49.010Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. -[NX Daemon Server] - 2024-09-14T21:59:49.017Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:49.017Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:49.017Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:49.018Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:49.056Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:59:49.056Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:49.056Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:49.056Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:49.057Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:49.057Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:49.058Z - Time taken for 'total for creating and serializing project graph' 0.08062499761581421ms -[NX Daemon Server] - 2024-09-14T21:59:49.059Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:49.059Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:49.061Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:49.061Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:49.063Z - Time taken for 'total for creating and serializing project graph' 0.05287499725818634ms -[NX Daemon Server] - 2024-09-14T21:59:49.063Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:49.063Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:49.065Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:49.967Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T21:59:49.967Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T21:59:49.968Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T21:59:49.968Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:59:49.968Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T21:59:49.968Z - Time taken for 'changed-projects' 0.10649999976158142ms -[NX Daemon Server] - 2024-09-14T21:59:50.069Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T21:59:50.069Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T21:59:50.069Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T21:59:50.082Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.082Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.082Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.083Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.083Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.083Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.083Z - Time taken for 'hash changed files from watcher' 0.6248749941587448ms -[NX Daemon Server] - 2024-09-14T21:59:50.083Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.083Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.083Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.084Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.084Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.084Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.085Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.085Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.085Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.086Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.086Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.086Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.087Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.087Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.087Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.087Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.087Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.087Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.088Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.088Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.088Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.089Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.089Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.089Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.089Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.089Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.089Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.090Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.090Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.090Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.091Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.091Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.091Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.091Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.091Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.091Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.092Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.092Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.092Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.093Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.093Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.093Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.094Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.094Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.094Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.094Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.094Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.094Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.095Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.095Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.095Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.096Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.096Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.096Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.096Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.096Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.096Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.097Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.097Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.097Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.098Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.098Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.098Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.098Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T21:59:50.099Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T21:59:50.099Z - Handled GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T21:59:50.104Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.104Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.104Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.105Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.105Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.105Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.105Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.105Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.105Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.106Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.106Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.106Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.107Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.107Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.107Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.107Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.107Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.107Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.108Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.108Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.108Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.110Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.110Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T21:59:50.110Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.114Z - Time taken for 'build-project-configs' 41.9069579988718ms -[NX Daemon Server] - 2024-09-14T21:59:50.136Z - Time taken for 'total execution time for createProjectGraph()' 19.126665994524956ms -[NX Daemon Server] - 2024-09-14T21:59:50.972Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:50.972Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:50.974Z - Time taken for 'total for creating and serializing project graph' 0.21112500131130219ms -[NX Daemon Server] - 2024-09-14T21:59:50.976Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:50.976Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T21:59:50.980Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:50.980Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T21:59:50.980Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T21:59:50.981Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:51.019Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T21:59:51.020Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:51.020Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T21:59:51.020Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T21:59:51.021Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:51.021Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:51.022Z - Time taken for 'total for creating and serializing project graph' 0.11570900678634644ms -[NX Daemon Server] - 2024-09-14T21:59:51.024Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:51.024Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T21:59:51.026Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T21:59:51.027Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T21:59:51.028Z - Time taken for 'total for creating and serializing project graph' 0.11754199862480164ms -[NX Daemon Server] - 2024-09-14T21:59:51.029Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T21:59:51.029Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T21:59:51.031Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:00:08.047Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:00:08.047Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:00:08.048Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:00:08.048Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:08.048Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:08.048Z - Time taken for 'changed-projects' 0.11775000393390656ms -[NX Daemon Server] - 2024-09-14T22:00:08.148Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:00:08.149Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:00:08.149Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:00:08.165Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.165Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.165Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.166Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.166Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.166Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.166Z - Time taken for 'hash changed files from watcher' 0.6791249960660934ms -[NX Daemon Server] - 2024-09-14T22:00:08.167Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.167Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.167Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.168Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.168Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.168Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.169Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.169Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.169Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.170Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.170Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.170Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.171Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.171Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.171Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.171Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.172Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.172Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:08.172Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.172Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.172Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.173Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.173Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.173Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.174Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.174Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.174Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.174Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.174Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.175Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.175Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.175Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.175Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.176Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.176Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.176Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.177Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.177Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.177Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.177Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.178Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.178Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:08.178Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.178Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.178Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.179Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.179Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.179Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.180Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.180Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.180Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.180Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.180Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.180Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.181Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.181Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.181Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.182Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.182Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.182Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.182Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.182Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.182Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.183Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.183Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.183Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.184Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.184Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.184Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.185Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.185Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.185Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.185Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.186Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.186Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.186Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.187Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.187Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.187Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.187Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.188Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.188Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.188Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.195Z - Time taken for 'build-project-configs' 41.25349999964237ms -[NX Daemon Server] - 2024-09-14T22:00:08.207Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:00:08.207Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:00:08.207Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:00:08.207Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.207Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:08.207Z - Time taken for 'changed-projects' 0.04408399760723114ms -[NX Daemon Server] - 2024-09-14T22:00:08.215Z - Time taken for 'total execution time for createProjectGraph()' 18.07233400642872ms -[NX Daemon Server] - 2024-09-14T22:00:08.409Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:00:08.409Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:00:08.409Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:00:08.419Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.419Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.419Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.420Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.420Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.420Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.420Z - Time taken for 'hash changed files from watcher' 0.4311250001192093ms -[NX Daemon Server] - 2024-09-14T22:00:08.421Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.421Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.421Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.422Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.422Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.422Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.422Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.422Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.422Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.423Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.423Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.423Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.424Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.424Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.424Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.425Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.425Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.425Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.426Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.426Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.426Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.426Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.426Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.426Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.427Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.427Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.427Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.428Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.428Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.428Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.428Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.429Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.429Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.429Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.430Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.430Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.430Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.430Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.430Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.430Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.431Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.431Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.431Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.432Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.432Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.432Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.433Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.433Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.433Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.433Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.433Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.433Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.434Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.434Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.434Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.435Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.435Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.435Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.435Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.435Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.435Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.436Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.436Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.436Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.437Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.437Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.437Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.437Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.437Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.437Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.438Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.438Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.438Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.438Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.438Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.438Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.439Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.439Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.439Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.440Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.440Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.440Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.440Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.440Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:08.440Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:08.446Z - Time taken for 'build-project-configs' 33.003541991114616ms -[NX Daemon Server] - 2024-09-14T22:00:08.464Z - Time taken for 'total execution time for createProjectGraph()' 13.86158299446106ms -[NX Daemon Server] - 2024-09-14T22:00:09.211Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:09.211Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:09.214Z - Time taken for 'total for creating and serializing project graph' 0.23537500202655792ms -[NX Daemon Server] - 2024-09-14T22:00:09.216Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:09.216Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T22:00:09.221Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:00:09.221Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:00:09.221Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:09.222Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:00:09.261Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:00:09.262Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:00:09.262Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:00:09.262Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:00:09.263Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:09.263Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:09.264Z - Time taken for 'total for creating and serializing project graph' 0.13416600227355957ms -[NX Daemon Server] - 2024-09-14T22:00:09.265Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:09.265Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:00:09.268Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:09.268Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:09.269Z - Time taken for 'total for creating and serializing project graph' 0.0724169909954071ms -[NX Daemon Server] - 2024-09-14T22:00:09.270Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:09.270Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:00:09.273Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:00:40.263Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:00:40.264Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:00:40.264Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:00:40.264Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.264Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:40.264Z - Time taken for 'changed-projects' 0.14550000429153442ms -[NX Daemon Server] - 2024-09-14T22:00:40.366Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:00:40.366Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:00:40.366Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:00:40.386Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.386Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.386Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.387Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.387Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.388Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:40.388Z - Time taken for 'hash changed files from watcher' 0.9059999883174896ms -[NX Daemon Server] - 2024-09-14T22:00:40.389Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.389Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.389Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.390Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.390Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.390Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.391Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.391Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.391Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.391Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.391Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.391Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.392Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.392Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.392Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.393Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.393Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.394Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:40.394Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.394Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.394Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.395Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.395Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.395Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.396Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.397Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.398Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:40.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.398Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.399Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.399Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.399Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.400Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.400Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.400Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.401Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.401Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.401Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.401Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.401Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.401Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.402Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.402Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.402Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.403Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.403Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.403Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.404Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.404Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.405Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.405Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.405Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.406Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.406Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.406Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.406Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.406Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.406Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.407Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.407Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.407Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.408Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.408Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.408Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.409Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.409Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.409Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.409Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.410Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.410Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:40.410Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.410Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.410Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.411Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.411Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:40.411Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:40.417Z - Time taken for 'build-project-configs' 45.83187501132488ms -[NX Daemon Server] - 2024-09-14T22:00:40.437Z - Time taken for 'total execution time for createProjectGraph()' 17.097625002264977ms -[NX Daemon Server] - 2024-09-14T22:00:41.272Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:41.272Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:41.276Z - Time taken for 'total for creating and serializing project graph' 0.5162089914083481ms -[NX Daemon Server] - 2024-09-14T22:00:41.279Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:41.280Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 8. -[NX Daemon Server] - 2024-09-14T22:00:41.287Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:00:41.287Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:00:41.287Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:41.288Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:00:41.329Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:00:41.329Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:00:41.329Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:00:41.329Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:00:41.330Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:41.330Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:41.331Z - Time taken for 'total for creating and serializing project graph' 0.07229100167751312ms -[NX Daemon Server] - 2024-09-14T22:00:41.332Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:41.332Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:00:41.335Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:41.335Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:41.336Z - Time taken for 'total for creating and serializing project graph' 0.09087499976158142ms -[NX Daemon Server] - 2024-09-14T22:00:41.337Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:41.337Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:00:41.339Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:00:54.581Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:00:54.582Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:00:54.583Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:00:54.583Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:54.583Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:54.583Z - Time taken for 'changed-projects' 0.21400000154972076ms -[NX Daemon Server] - 2024-09-14T22:00:54.685Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:00:54.685Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T22:00:54.685Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:00:54.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.703Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.704Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:54.704Z - Time taken for 'hash changed files from watcher' 1.445708990097046ms -[NX Daemon Server] - 2024-09-14T22:00:54.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.704Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.705Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.705Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.706Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.706Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.707Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.707Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.708Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.708Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.708Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.708Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.708Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.708Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.709Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.709Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.709Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.709Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.710Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.710Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.711Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:54.711Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.711Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.711Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.712Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.712Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.712Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.712Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.713Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.713Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.713Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.714Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.714Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.714Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.714Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.714Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.714Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.715Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.715Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.715Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.715Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.715Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.715Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.716Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:00:54.716Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:00:54.716Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.720Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.720Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.720Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.721Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.721Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.721Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.722Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.722Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.722Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.722Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.722Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.722Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.723Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.723Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.723Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.723Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.724Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.724Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.724Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.726Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.726Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:00:54.726Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.730Z - Time taken for 'build-project-configs' 40.82695800065994ms -[NX Daemon Server] - 2024-09-14T22:00:54.756Z - Time taken for 'total execution time for createProjectGraph()' 22.244124993681908ms -[NX Daemon Server] - 2024-09-14T22:00:54.840Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:00:54.840Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:00:54.841Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:00:54.841Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:54.841Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:54.843Z - Time taken for 'total for creating and serializing project graph' 0.08550000190734863ms -[NX Daemon Server] - 2024-09-14T22:00:54.844Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:54.844Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:00:54.884Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T22:00:54.885Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T22:00:54.886Z - Handled HASH_TASKS. Handling time: 29. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:00:54.910Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:00:54.910Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:00:54.910Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.911Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.911Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.911Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.919Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:00:54.919Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:00:54.919Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.919Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.919Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.919Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.922Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:00:54.922Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:00:54.922Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.923Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.923Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.923Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.947Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.947Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.947Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.949Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:00:54.949Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:00:54.949Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:54.953Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.953Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:54.953Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:55.005Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:55.074Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:55.229Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:55.586Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:55.586Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:55.588Z - Time taken for 'total for creating and serializing project graph' 0.09662500023841858ms -[NX Daemon Server] - 2024-09-14T22:00:55.589Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:55.589Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:00:55.592Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:00:55.592Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:00:55.592Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:55.593Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:00:55.619Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:55.619Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:55.619Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:55.630Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:00:55.630Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:00:55.631Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:00:55.631Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:00:55.631Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:55.631Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:55.632Z - Time taken for 'total for creating and serializing project graph' 0.0802919864654541ms -[NX Daemon Server] - 2024-09-14T22:00:55.634Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:55.634Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:00:55.636Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:00:55.636Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:00:55.638Z - Time taken for 'total for creating and serializing project graph' 0.11120900511741638ms -[NX Daemon Server] - 2024-09-14T22:00:55.639Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:00:55.639Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:00:55.641Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:00:55.656Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:55.779Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:56.906Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:56.907Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:56.907Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:56.968Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:56.968Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:56.968Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:57.057Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:57.121Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:00:57.394Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:57.394Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:57.394Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:58.583Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:58.583Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:58.583Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:58.802Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:58.803Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:00:58.803Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:00:58.806Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:00:58.806Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:00:58.806Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:58.807Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:00:58.807Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:00:58.807Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:00:58.809Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:15:46.913Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:15:46.917Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:15:46.918Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:15:46.918Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:15:46.918Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:46.918Z - Time taken for 'changed-projects' 0.31279198825359344ms -[NX Daemon Server] - 2024-09-14T22:15:47.020Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:15:47.021Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:15:47.021Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:15:47.039Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.039Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.039Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.039Z - Time taken for 'hash changed files from watcher' 0.8578750044107437ms -[NX Daemon Server] - 2024-09-14T22:15:47.040Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.040Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.040Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.041Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.041Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.041Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.042Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.042Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.042Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.044Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.044Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.044Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.045Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:15:47.045Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.045Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.045Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.046Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.046Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.046Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.047Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.047Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.047Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.048Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.048Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.048Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.048Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.049Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.049Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.049Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.050Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.050Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.050Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.051Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:15:47.051Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.051Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.051Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.052Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.052Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.052Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.052Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.052Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.052Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.053Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.053Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.053Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.054Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.054Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.054Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.054Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.055Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.055Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.055Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.056Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.056Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.056Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.056Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.056Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.056Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.057Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:15:47.057Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:15:47.057Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.070Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.070Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.070Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.071Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.071Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.071Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.071Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.072Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.072Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.072Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.072Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.073Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.073Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.073Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.074Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.074Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.074Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.076Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.076Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:15:47.076Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:15:47.081Z - Time taken for 'build-project-configs' 54.62183400988579ms -[NX Daemon Server] - 2024-09-14T22:15:47.109Z - Time taken for 'total execution time for createProjectGraph()' 25.360417008399963ms -[NX Daemon Server] - 2024-09-14T22:15:47.928Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:15:47.929Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:15:47.933Z - Time taken for 'total for creating and serializing project graph' 0.43183399736881256ms -[NX Daemon Server] - 2024-09-14T22:15:47.939Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:15:47.939Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 10. -[NX Daemon Server] - 2024-09-14T22:15:47.947Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:15:47.948Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:15:47.948Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:15:47.949Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:15:47.998Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:15:47.998Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:15:47.998Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:15:47.998Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:15:47.999Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:15:47.999Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:15:48.000Z - Time taken for 'total for creating and serializing project graph' 0.07850000262260437ms -[NX Daemon Server] - 2024-09-14T22:15:48.001Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:15:48.001Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:15:48.004Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:15:48.004Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:15:48.005Z - Time taken for 'total for creating and serializing project graph' 0.060332998633384705ms -[NX Daemon Server] - 2024-09-14T22:15:48.008Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:15:48.008Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T22:15:48.011Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:34:43.352Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T22:34:43.354Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:34:43.355Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:34:43.355Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:34:43.355Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:34:43.355Z - Time taken for 'changed-projects' 0.41474999487400055ms -[NX Daemon Server] - 2024-09-14T22:34:43.457Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:34:43.457Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T22:34:43.457Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:34:43.478Z - Time taken for 'hash changed files from watcher' 1.69862499833107ms -[NX Daemon Server] - 2024-09-14T22:34:43.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.481Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.486Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.487Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.488Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.489Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:34:43.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.489Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.491Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.492Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.492Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.492Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.492Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.493Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.493Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.493Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.494Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.494Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.494Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.494Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.495Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.495Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.495Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.495Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.495Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.496Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.496Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.496Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.497Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.497Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.497Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.497Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.498Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:34:43.498Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.498Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.499Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.499Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.499Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.499Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.499Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.499Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.500Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.500Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.500Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.501Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.501Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.501Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.501Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.501Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.501Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.502Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.502Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.502Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.503Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.503Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.503Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.503Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.503Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:34:43.503Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:43.510Z - Time taken for 'build-project-configs' 47.11479200422764ms -[NX Daemon Server] - 2024-09-14T22:34:43.529Z - Time taken for 'total execution time for createProjectGraph()' 15.779749989509583ms -[NX Daemon Server] - 2024-09-14T22:34:44.370Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:34:44.370Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:34:44.374Z - Time taken for 'total for creating and serializing project graph' 0.5738749951124191ms -[NX Daemon Server] - 2024-09-14T22:34:44.376Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:34:44.376Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T22:34:44.384Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:34:44.384Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:34:44.384Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:34:44.385Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:34:44.431Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:34:44.431Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:34:44.431Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:34:44.431Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:34:44.432Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:34:44.432Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:34:44.433Z - Time taken for 'total for creating and serializing project graph' 0.07362499833106995ms -[NX Daemon Server] - 2024-09-14T22:34:44.434Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:34:44.434Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:34:44.436Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:34:44.436Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:34:44.438Z - Time taken for 'total for creating and serializing project graph' 0.052041009068489075ms -[NX Daemon Server] - 2024-09-14T22:34:44.438Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:34:44.438Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:34:44.440Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:13.710Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T22:35:13.711Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:35:13.711Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:35:13.711Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.711Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:13.711Z - Time taken for 'changed-projects' 0.1130409985780716ms -[NX Daemon Server] - 2024-09-14T22:35:13.812Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:35:13.812Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T22:35:13.813Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:35:13.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.831Z - Handled HASH_GLOB. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:13.832Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.832Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.832Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.832Z - Time taken for 'hash changed files from watcher' 0.6302500069141388ms -[NX Daemon Server] - 2024-09-14T22:35:13.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.833Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.834Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.834Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.834Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.835Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.836Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.837Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.837Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.837Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.838Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.839Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:13.839Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.839Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.839Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.840Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.840Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.840Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.841Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.841Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.842Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.843Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.844Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.844Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.845Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.846Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.846Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.848Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.848Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.849Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:35:13.849Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:35:13.849Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.860Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.861Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.862Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.862Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.862Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.863Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.863Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.863Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.863Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.863Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.863Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.864Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:13.866Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.871Z - Time taken for 'build-project-configs' 53.3828330039978ms -[NX Daemon Server] - 2024-09-14T22:35:13.888Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T22:35:13.888Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:35:13.888Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:35:13.888Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:13.888Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:13.888Z - Time taken for 'changed-projects' 0.03633399307727814ms -[NX Daemon Server] - 2024-09-14T22:35:13.898Z - Time taken for 'total execution time for createProjectGraph()' 24.38391600549221ms -[NX Daemon Server] - 2024-09-14T22:35:14.089Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:35:14.089Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T22:35:14.089Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:35:14.101Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.101Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.101Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.102Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.102Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.102Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.102Z - Time taken for 'hash changed files from watcher' 0.4689999967813492ms -[NX Daemon Server] - 2024-09-14T22:35:14.103Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.103Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.103Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.104Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.104Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.104Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.105Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.105Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.105Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.105Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.105Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.105Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.107Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.107Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.107Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.109Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.109Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.109Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.110Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.110Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.110Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.110Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.110Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.110Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.111Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.111Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.111Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.112Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.112Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.112Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.112Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.112Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.112Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.113Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.113Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.113Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.113Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.114Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.114Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.114Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.114Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.115Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.115Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.115Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.116Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.116Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.116Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.116Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.117Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.117Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.117Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.117Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.118Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.118Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.118Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.119Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.119Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.120Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.121Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:14.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.122Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:14.123Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.129Z - Time taken for 'build-project-configs' 35.225833997130394ms -[NX Daemon Server] - 2024-09-14T22:35:14.144Z - Time taken for 'total execution time for createProjectGraph()' 13.539875000715256ms -[NX Daemon Server] - 2024-09-14T22:35:14.897Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:14.898Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:14.902Z - Time taken for 'total for creating and serializing project graph' 0.5600830018520355ms -[NX Daemon Server] - 2024-09-14T22:35:14.905Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:14.906Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 8. -[NX Daemon Server] - 2024-09-14T22:35:14.915Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:35:14.915Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:35:14.915Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:14.916Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:14.960Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:35:14.960Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:14.960Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:14.960Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:14.961Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:14.961Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:14.962Z - Time taken for 'total for creating and serializing project graph' 0.07591700553894043ms -[NX Daemon Server] - 2024-09-14T22:35:14.963Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:14.963Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:35:14.965Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:14.965Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:14.967Z - Time taken for 'total for creating and serializing project graph' 0.04712499678134918ms -[NX Daemon Server] - 2024-09-14T22:35:14.968Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:14.968Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:35:14.970Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:31.564Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T22:35:31.565Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:35:31.565Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:35:31.565Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.565Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:31.565Z - Time taken for 'changed-projects' 0.05866600573062897ms -[NX Daemon Server] - 2024-09-14T22:35:31.667Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:35:31.667Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T22:35:31.667Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:35:31.678Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.678Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.678Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.678Z - Time taken for 'hash changed files from watcher' 0.39787499606609344ms -[NX Daemon Server] - 2024-09-14T22:35:31.679Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.679Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.679Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.680Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.680Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.680Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.680Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.680Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.680Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.681Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.681Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.681Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.682Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.682Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.682Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.683Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.683Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.683Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.683Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.683Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.683Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.684Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.684Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.684Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.685Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.685Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.685Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.685Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.685Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.685Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.686Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.686Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.686Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.687Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.687Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.687Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.688Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.688Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.688Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.688Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.688Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.688Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.689Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.689Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.689Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.690Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.690Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.690Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.691Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.691Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.691Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.692Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.692Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.692Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.693Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.693Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.693Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.694Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.694Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.694Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.695Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.695Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.695Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.696Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.696Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.696Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.697Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:35:31.697Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:35:31.697Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.701Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:31.703Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.703Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.703Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.704Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.704Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.704Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.705Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.705Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.705Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.705Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.706Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.706Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.706Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.707Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.707Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.707Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.710Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.710Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.710Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.716Z - Time taken for 'build-project-configs' 44.76479199528694ms -[NX Daemon Server] - 2024-09-14T22:35:31.734Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T22:35:31.734Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:35:31.734Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:35:31.734Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.734Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:31.734Z - Time taken for 'changed-projects' 0.03920799493789673ms -[NX Daemon Server] - 2024-09-14T22:35:31.744Z - Time taken for 'total execution time for createProjectGraph()' 24.705042004585266ms -[NX Daemon Server] - 2024-09-14T22:35:31.902Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T22:35:31.903Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:35:31.903Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:35:31.903Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.903Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:31.903Z - Time taken for 'changed-projects' 0.07787500321865082ms -[NX Daemon Server] - 2024-09-14T22:35:31.937Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:35:31.937Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T22:35:31.937Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:35:31.949Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.949Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.949Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.950Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.950Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.950Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.950Z - Time taken for 'hash changed files from watcher' 0.5070409923791885ms -[NX Daemon Server] - 2024-09-14T22:35:31.951Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.951Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.951Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.952Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.952Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.952Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.953Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.953Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.953Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.954Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.954Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.954Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.955Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.955Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.955Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.956Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.956Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.956Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.957Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.957Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.957Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.958Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.958Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.958Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.959Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.959Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.959Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.959Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.959Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.960Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:31.960Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.960Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.960Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.961Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.961Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.961Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.962Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.962Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.962Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.963Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.963Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.963Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.963Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.963Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.963Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.964Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.964Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.964Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.965Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.965Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.965Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.966Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.966Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.966Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.967Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.967Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.967Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.967Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.967Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.967Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.968Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.968Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.968Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.969Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.969Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.969Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.970Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.970Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.970Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.971Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.971Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.971Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.971Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.972Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.972Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.972Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.972Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.972Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.972Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.973Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.973Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.973Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.974Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.974Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:31.974Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:31.981Z - Time taken for 'build-project-configs' 39.67729198932648ms -[NX Daemon Server] - 2024-09-14T22:35:32.004Z - Time taken for 'total execution time for createProjectGraph()' 19.858750000596046ms -[NX Daemon Server] - 2024-09-14T22:35:32.907Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:32.907Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:32.911Z - Time taken for 'total for creating and serializing project graph' 0.24962499737739563ms -[NX Daemon Server] - 2024-09-14T22:35:32.913Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:32.913Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 6. -[NX Daemon Server] - 2024-09-14T22:35:32.919Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:35:32.919Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:35:32.919Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:32.920Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:32.959Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:35:32.959Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:32.959Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:32.959Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:32.960Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:32.960Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:32.961Z - Time taken for 'total for creating and serializing project graph' 0.08699999749660492ms -[NX Daemon Server] - 2024-09-14T22:35:32.962Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:32.962Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:35:32.965Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:32.965Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:32.966Z - Time taken for 'total for creating and serializing project graph' 0.061542004346847534ms -[NX Daemon Server] - 2024-09-14T22:35:32.970Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:32.970Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T22:35:32.973Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:38.727Z - [WATCHER]: libs/native-federation-node/src/lib/utils/import-map-loader.js was modified -[NX Daemon Server] - 2024-09-14T22:35:38.728Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:35:38.728Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:35:38.728Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.728Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:38.728Z - Time taken for 'changed-projects' 0.28579099476337433ms -[NX Daemon Server] - 2024-09-14T22:35:38.830Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:35:38.830Z - [REQUEST]: libs/native-federation-node/src/lib/utils/import-map-loader.js -[NX Daemon Server] - 2024-09-14T22:35:38.831Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:35:38.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.850Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.852Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.852Z - Time taken for 'hash changed files from watcher' 0.9115419983863831ms -[NX Daemon Server] - 2024-09-14T22:35:38.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.853Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.854Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.855Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.856Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.856Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.856Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.857Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.857Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.857Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.858Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.858Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.858Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.859Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.859Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.859Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.859Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.860Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.860Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:38.861Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.861Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.861Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.862Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.862Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.862Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.863Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.863Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.863Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.863Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.863Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.863Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.864Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.865Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.865Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.865Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.866Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.866Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.867Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.867Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.867Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.868Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.868Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.868Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.868Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.869Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.869Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:38.869Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.869Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.869Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.870Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.870Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.870Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.871Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.871Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.871Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.871Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.871Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.871Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.872Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.872Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.872Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.873Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.873Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.873Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.873Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.874Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.874Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:38.874Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.874Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.874Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.875Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.875Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:38.875Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:38.882Z - Time taken for 'build-project-configs' 45.82891599833965ms -[NX Daemon Server] - 2024-09-14T22:35:38.900Z - Time taken for 'total execution time for createProjectGraph()' 15.105499997735023ms -[NX Daemon Server] - 2024-09-14T22:35:39.736Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:39.736Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:39.740Z - Time taken for 'total for creating and serializing project graph' 0.4109169989824295ms -[NX Daemon Server] - 2024-09-14T22:35:39.742Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:39.743Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T22:35:39.751Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:35:39.751Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:35:39.751Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:39.752Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:39.794Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:35:39.794Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:39.794Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:39.795Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:39.795Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:39.795Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:39.796Z - Time taken for 'total for creating and serializing project graph' 0.0864579975605011ms -[NX Daemon Server] - 2024-09-14T22:35:39.797Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:39.797Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:35:39.800Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:39.800Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:39.802Z - Time taken for 'total for creating and serializing project graph' 0.08825001120567322ms -[NX Daemon Server] - 2024-09-14T22:35:39.805Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:39.805Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T22:35:39.807Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:52.557Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:35:52.557Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:35:52.557Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:35:52.557Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.557Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:52.557Z - Time taken for 'changed-projects' 0.07975000143051147ms -[NX Daemon Server] - 2024-09-14T22:35:52.659Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:35:52.659Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T22:35:52.659Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:35:52.678Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.678Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.678Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.678Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.678Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.678Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.679Z - Time taken for 'hash changed files from watcher' 1.0953750014305115ms -[NX Daemon Server] - 2024-09-14T22:35:52.679Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.679Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.679Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.680Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.680Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.680Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.680Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.680Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.680Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.681Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.681Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.681Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.681Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.681Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.681Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.682Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.682Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.682Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.682Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.682Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.682Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.683Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.683Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.683Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.683Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.683Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.683Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.684Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.684Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.684Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.684Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.684Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.684Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.685Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.685Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.685Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.685Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.685Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.685Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.686Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.686Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.686Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.686Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.686Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.686Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.687Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.687Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.687Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.687Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.687Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.687Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.688Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.688Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.688Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.688Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.688Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.688Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.689Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.689Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.689Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.690Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.690Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.690Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.690Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:35:52.690Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:35:52.690Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.695Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.695Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.695Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.696Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.696Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.696Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.697Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.697Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.697Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.697Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.697Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.697Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.698Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.698Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.698Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.698Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.698Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.698Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.699Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.699Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.699Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.702Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.702Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:35:52.702Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.706Z - Time taken for 'build-project-configs' 43.05941699445248ms -[NX Daemon Server] - 2024-09-14T22:35:52.730Z - Time taken for 'total execution time for createProjectGraph()' 20.065500006079674ms -[NX Daemon Server] - 2024-09-14T22:35:52.804Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:35:52.804Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:52.804Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:35:52.805Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:52.805Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:52.807Z - Time taken for 'total for creating and serializing project graph' 0.0902080088853836ms -[NX Daemon Server] - 2024-09-14T22:35:52.808Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:52.808Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:35:52.851Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T22:35:52.853Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T22:35:52.853Z - Handled HASH_TASKS. Handling time: 32. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:35:52.880Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:35:52.880Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:35:52.880Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.880Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.880Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.880Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.888Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:35:52.888Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:35:52.888Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.889Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.889Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.889Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.892Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:35:52.892Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:35:52.892Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.893Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.893Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.893Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.917Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.917Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.917Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.919Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:35:52.919Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:35:52.919Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.923Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.923Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:52.923Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:52.974Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:53.049Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:53.193Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:53.559Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:53.559Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:53.559Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:53.559Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:53.559Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:53.561Z - Time taken for 'total for creating and serializing project graph' 0.08650000393390656ms -[NX Daemon Server] - 2024-09-14T22:35:53.561Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:53.561Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:35:53.564Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:35:53.564Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:35:53.564Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:53.565Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:53.596Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:53.597Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:35:53.598Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:53.598Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:35:53.598Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:35:53.598Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:53.598Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:53.600Z - Time taken for 'total for creating and serializing project graph' 0.08308300375938416ms -[NX Daemon Server] - 2024-09-14T22:35:53.601Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:53.601Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:35:53.603Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:35:53.603Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:35:53.604Z - Time taken for 'total for creating and serializing project graph' 0.08633400499820709ms -[NX Daemon Server] - 2024-09-14T22:35:53.606Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:35:53.606Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:35:53.609Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:35:53.721Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:54.785Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:54.785Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:54.786Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:54.905Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:54.905Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:54.905Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:54.929Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:55.050Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:35:55.310Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:55.310Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:55.310Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:56.405Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:56.406Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:56.406Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:56.559Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:56.560Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:35:56.560Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:35:56.561Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:35:56.561Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:35:56.561Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:56.562Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:35:56.562Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:35:56.562Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:35:56.564Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:36:03.424Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:36:03.424Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:36:03.424Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:36:03.424Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.424Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:36:03.424Z - Time taken for 'changed-projects' 0.09841600060462952ms -[NX Daemon Server] - 2024-09-14T22:36:03.528Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:36:03.528Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T22:36:03.528Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:36:03.549Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.550Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.550Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:36:03.551Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.551Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.551Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.551Z - Time taken for 'hash changed files from watcher' 1.2772499918937683ms -[NX Daemon Server] - 2024-09-14T22:36:03.552Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.552Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.552Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.553Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.553Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.553Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.554Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.554Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.554Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.555Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.555Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.555Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.556Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.556Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.556Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.557Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.557Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.557Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.558Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.558Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.559Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.559Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:36:03.559Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.559Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.559Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.560Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.560Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.560Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.561Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.561Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.561Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.561Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.561Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.561Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.562Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.562Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.562Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.563Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.563Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.563Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.564Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.565Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.565Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.565Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.566Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.566Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.566Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.566Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.566Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.566Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.567Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.567Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.567Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.568Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.569Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.569Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.569Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.569Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:36:03.569Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:36:03.569Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.576Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.576Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.576Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.577Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.577Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.577Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.578Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.578Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.578Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.579Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.579Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.579Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.579Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.580Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.580Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.580Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.581Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.581Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.581Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.583Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.583Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:03.583Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:03.588Z - Time taken for 'build-project-configs' 55.07083401083946ms -[NX Daemon Server] - 2024-09-14T22:36:03.616Z - Time taken for 'total execution time for createProjectGraph()' 25.112582996487617ms -[NX Daemon Server] - 2024-09-14T22:36:04.432Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:36:04.433Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:36:04.435Z - Time taken for 'total for creating and serializing project graph' 0.7364169955253601ms -[NX Daemon Server] - 2024-09-14T22:36:04.438Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:36:04.438Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 5. -[NX Daemon Server] - 2024-09-14T22:36:04.445Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:36:04.446Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:36:04.446Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:36:04.447Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:36:04.490Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:36:04.490Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:36:04.490Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:36:04.490Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:36:04.491Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:36:04.491Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:36:04.492Z - Time taken for 'total for creating and serializing project graph' 0.1500840038061142ms -[NX Daemon Server] - 2024-09-14T22:36:04.493Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:36:04.493Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:36:04.495Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:36:04.495Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:36:04.497Z - Time taken for 'total for creating and serializing project graph' 0.06329099833965302ms -[NX Daemon Server] - 2024-09-14T22:36:04.498Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:36:04.498Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:36:04.500Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:36:05.010Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:36:05.010Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:36:05.010Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:36:05.010Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.010Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:36:05.010Z - Time taken for 'changed-projects' 0.1983339935541153ms -[NX Daemon Server] - 2024-09-14T22:36:05.112Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:36:05.112Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T22:36:05.112Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:36:05.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.119Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.119Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.119Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.119Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.120Z - Time taken for 'hash changed files from watcher' 0.2685000002384186ms -[NX Daemon Server] - 2024-09-14T22:36:05.120Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.120Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.120Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.121Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.121Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.121Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.121Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.122Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.122Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.122Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.123Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.123Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.123Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.123Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.124Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.124Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.124Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.124Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.125Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.125Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.125Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.126Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.126Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.126Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.126Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.127Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.127Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.127Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.127Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.127Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.127Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.128Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.128Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.128Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.128Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.129Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.129Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.129Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.129Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.130Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.130Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.130Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.130Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.131Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.131Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.131Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.131Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.132Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.132Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.132Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.133Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:36:05.133Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.133Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.133Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.134Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.134Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.134Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.134Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.135Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.135Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.135Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.135Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.136Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.136Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:36:05.136Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.141Z - Time taken for 'build-project-configs' 26.284709006547928ms -[NX Daemon Server] - 2024-09-14T22:36:05.168Z - Time taken for 'total execution time for createProjectGraph()' 24.226541996002197ms -[NX Daemon Server] - 2024-09-14T22:36:05.204Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:36:05.204Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:36:05.204Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:36:05.205Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:36:05.205Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:36:05.206Z - Time taken for 'total for creating and serializing project graph' 0.06658299267292023ms -[NX Daemon Server] - 2024-09-14T22:36:05.208Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:36:05.208Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:36:05.244Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T22:36:05.246Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T22:36:05.246Z - Handled HASH_TASKS. Handling time: 25. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:36:05.277Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.277Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.277Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.277Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.277Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.277Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.283Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.283Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.283Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.283Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.283Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.283Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.284Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.284Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.284Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.284Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.284Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.284Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.286Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.286Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.287Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:36:05.290Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.290Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.290Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.291Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.291Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:36:05.291Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.292Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.292Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.292Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.314Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.314Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.314Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.340Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:36:05.451Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:36:05.888Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.888Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.888Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.915Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.915Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.915Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:05.945Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.945Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:05.945Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:06.012Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:36:06.013Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:36:06.014Z - Time taken for 'total for creating and serializing project graph' 0.10683299601078033ms -[NX Daemon Server] - 2024-09-14T22:36:06.015Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:36:06.015Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:36:06.018Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:36:06.020Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:36:06.020Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:36:06.021Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:36:06.051Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:36:06.057Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:36:06.057Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:36:06.057Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:36:06.057Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:36:06.058Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:36:06.058Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:36:06.059Z - Time taken for 'total for creating and serializing project graph' 0.10087499022483826ms -[NX Daemon Server] - 2024-09-14T22:36:06.061Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:36:06.061Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:36:06.063Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:36:06.063Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:36:06.064Z - Time taken for 'total for creating and serializing project graph' 0.09791699051856995ms -[NX Daemon Server] - 2024-09-14T22:36:06.065Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:36:06.065Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:36:06.068Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:36:06.451Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:06.451Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:06.451Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:07.443Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:07.443Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:36:07.443Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:07.446Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:36:07.446Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:36:07.446Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:07.447Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:36:07.447Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:36:07.447Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:36:07.451Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:43:26.510Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:43:26.512Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:43:26.512Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:43:26.512Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.512Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:43:26.512Z - Time taken for 'changed-projects' 0.34070800244808197ms -[NX Daemon Server] - 2024-09-14T22:43:26.614Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:43:26.614Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:43:26.614Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:43:26.634Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.634Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.634Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.634Z - Time taken for 'hash changed files from watcher' 0.9020000100135803ms -[NX Daemon Server] - 2024-09-14T22:43:26.635Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.635Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.635Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.637Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.637Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.637Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.638Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.638Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.638Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.640Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.640Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.640Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.641Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.641Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.641Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.642Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.642Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.642Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.643Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.643Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.643Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.644Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.644Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.644Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.645Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.645Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.645Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.646Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.646Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.646Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.647Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.647Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.647Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.648Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.648Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.648Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.649Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.649Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.649Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.650Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.650Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.650Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.650Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.651Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.651Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.651Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.652Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.652Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.652Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.654Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.654Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.654Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.655Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.655Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.655Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.656Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.656Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.656Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.657Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.657Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.657Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.657Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.657Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.657Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.658Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:43:26.658Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:43:26.658Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.679Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.679Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.679Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.680Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.680Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.680Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.680Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.680Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.680Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.681Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.681Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.681Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.682Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.682Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.682Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.683Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.683Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.683Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.683Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.683Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.683Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.686Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.686Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:26.686Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:26.693Z - Time taken for 'build-project-configs' 71.77050000429153ms -[NX Daemon Server] - 2024-09-14T22:43:26.725Z - Time taken for 'total execution time for createProjectGraph()' 28.489332988858223ms -[NX Daemon Server] - 2024-09-14T22:43:27.526Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:43:27.526Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:43:27.529Z - Time taken for 'total for creating and serializing project graph' 0.30195799469947815ms -[NX Daemon Server] - 2024-09-14T22:43:27.551Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:43:27.551Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 25. -[NX Daemon Server] - 2024-09-14T22:43:27.559Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:43:27.559Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:43:27.559Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:27.561Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:43:27.607Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:43:27.608Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:43:27.608Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:43:27.608Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:43:27.608Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:43:27.608Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:43:27.610Z - Time taken for 'total for creating and serializing project graph' 0.102292001247406ms -[NX Daemon Server] - 2024-09-14T22:43:27.611Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:43:27.611Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:43:27.613Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:43:27.613Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:43:27.615Z - Time taken for 'total for creating and serializing project graph' 0.0586249977350235ms -[NX Daemon Server] - 2024-09-14T22:43:27.622Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:43:27.622Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 9. -[NX Daemon Server] - 2024-09-14T22:43:27.624Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:43:43.688Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:43:43.688Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:43:43.688Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:43:43.688Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.688Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:43:43.688Z - Time taken for 'changed-projects' 0.07158398628234863ms -[NX Daemon Server] - 2024-09-14T22:43:43.790Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:43:43.790Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:43:43.790Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:43:43.803Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.803Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.803Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.803Z - Time taken for 'hash changed files from watcher' 0.5736660063266754ms -[NX Daemon Server] - 2024-09-14T22:43:43.804Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.804Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.804Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.805Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.805Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.805Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.806Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.806Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.806Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.807Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.807Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.807Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.808Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.808Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:43:43.808Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.808Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.808Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.809Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.809Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.809Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.810Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.810Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.810Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.811Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.811Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.811Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.811Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.811Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.811Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.812Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.812Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.812Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.813Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.813Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.813Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.814Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.814Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.814Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.814Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.814Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.814Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.815Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.815Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.815Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.816Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.816Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.816Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.816Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.817Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.817Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:43:43.817Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.817Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.817Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.818Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.818Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.818Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.819Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.819Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.819Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.819Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.819Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.819Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.820Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.820Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.820Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.821Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:43:43.821Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:43:43.821Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.828Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.828Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.828Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.828Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.828Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.828Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.829Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.829Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.830Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.830Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.831Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.831Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:43:43.833Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:43:43.838Z - Time taken for 'build-project-configs' 43.82054199278355ms -[NX Daemon Server] - 2024-09-14T22:43:43.864Z - Time taken for 'total execution time for createProjectGraph()' 22.759040996432304ms -[NX Daemon Server] - 2024-09-14T22:43:44.696Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:43:44.696Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:43:44.700Z - Time taken for 'total for creating and serializing project graph' 0.4457080066204071ms -[NX Daemon Server] - 2024-09-14T22:43:44.709Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:43:44.709Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 13. -[NX Daemon Server] - 2024-09-14T22:43:44.714Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:43:44.715Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:43:44.715Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:43:44.716Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:43:44.756Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:43:44.757Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:43:44.757Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:43:44.757Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:43:44.757Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:43:44.757Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:43:44.759Z - Time taken for 'total for creating and serializing project graph' 0.10541699826717377ms -[NX Daemon Server] - 2024-09-14T22:43:44.760Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:43:44.760Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:43:44.763Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:43:44.763Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:43:44.764Z - Time taken for 'total for creating and serializing project graph' 0.08683300018310547ms -[NX Daemon Server] - 2024-09-14T22:43:44.766Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:43:44.766Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:43:44.768Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:44:45.759Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:44:45.759Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:44:45.759Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:44:45.759Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.759Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:44:45.760Z - Time taken for 'changed-projects' 0.11920899152755737ms -[NX Daemon Server] - 2024-09-14T22:44:45.861Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:44:45.861Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:44:45.861Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:44:45.873Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.873Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.873Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.874Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.874Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.874Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.874Z - Time taken for 'hash changed files from watcher' 0.49037499725818634ms -[NX Daemon Server] - 2024-09-14T22:44:45.875Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.875Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.875Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.876Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.876Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.876Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.877Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.877Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.877Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.878Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.878Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.878Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.880Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.880Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.880Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.880Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.881Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.881Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:44:45.881Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.881Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.881Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.882Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.882Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.882Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.883Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.883Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.883Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.884Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.884Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.884Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.885Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.886Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.886Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:44:45.886Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.886Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.886Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.887Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.887Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.887Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.888Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.888Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.888Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.889Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.889Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.889Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.890Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.890Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.890Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.893Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.893Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.893Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.894Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.894Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.894Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.895Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.895Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.895Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.896Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.896Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.896Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.897Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.897Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.897Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.897Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:44:45.898Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:44:45.898Z - Handled GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:44:45.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.899Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.899Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.899Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.899Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.900Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.900Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.900Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.901Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.901Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.901Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.902Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.902Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.902Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.902Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.903Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.903Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.903Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.905Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.905Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:45.905Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:45.911Z - Time taken for 'build-project-configs' 45.26641699671745ms -[NX Daemon Server] - 2024-09-14T22:44:45.934Z - Time taken for 'total execution time for createProjectGraph()' 21.176583006978035ms -[NX Daemon Server] - 2024-09-14T22:44:46.762Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:44:46.763Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:44:46.765Z - Time taken for 'total for creating and serializing project graph' 0.18458300828933716ms -[NX Daemon Server] - 2024-09-14T22:44:46.767Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:44:46.767Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 4. -[NX Daemon Server] - 2024-09-14T22:44:46.771Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:44:46.772Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:44:46.772Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:44:46.772Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:44:46.812Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:44:46.812Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:44:46.812Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:44:46.812Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:44:46.813Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:44:46.813Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:44:46.814Z - Time taken for 'total for creating and serializing project graph' 0.08600001037120819ms -[NX Daemon Server] - 2024-09-14T22:44:46.815Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:44:46.815Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:44:46.818Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:44:46.818Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:44:46.819Z - Time taken for 'total for creating and serializing project graph' 0.07716600596904755ms -[NX Daemon Server] - 2024-09-14T22:44:46.825Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:44:46.825Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T22:44:46.827Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:44:55.097Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:44:55.097Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:44:55.097Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:44:55.097Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.097Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:44:55.097Z - Time taken for 'changed-projects' 0.10562500357627869ms -[NX Daemon Server] - 2024-09-14T22:44:55.199Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:44:55.199Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:44:55.199Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:44:55.219Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.219Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.219Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.220Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.220Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.220Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.220Z - Time taken for 'hash changed files from watcher' 1.2749160081148148ms -[NX Daemon Server] - 2024-09-14T22:44:55.221Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.221Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.222Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:44:55.223Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.223Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.223Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.224Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.224Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.224Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.225Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.225Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.225Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.226Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.226Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.226Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.227Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.227Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.227Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.227Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.228Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.228Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:44:55.228Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.228Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.228Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.229Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.229Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.229Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.230Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.230Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.230Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.231Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.231Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.231Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.232Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.232Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.232Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.232Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.232Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.233Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.233Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.233Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.234Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.234Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.234Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.235Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.235Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.235Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.236Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.236Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.236Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.236Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.236Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.236Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.237Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.237Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.237Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.238Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.238Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.238Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.238Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.238Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.239Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:44:55.239Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:44:55.240Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:44:55.240Z - Handled GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:44:55.246Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.246Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.246Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.246Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.246Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.246Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.247Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.247Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.247Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.248Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.248Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.248Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.248Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.248Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.248Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.249Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.249Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.249Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.250Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.250Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.250Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.252Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.252Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:44:55.252Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:55.257Z - Time taken for 'build-project-configs' 52.55220900475979ms -[NX Daemon Server] - 2024-09-14T22:44:55.283Z - Time taken for 'total execution time for createProjectGraph()' 23.576708987355232ms -[NX Daemon Server] - 2024-09-14T22:44:56.106Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:44:56.107Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:44:56.111Z - Time taken for 'total for creating and serializing project graph' 0.5645409971475601ms -[NX Daemon Server] - 2024-09-14T22:44:56.114Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:44:56.114Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T22:44:56.122Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:44:56.122Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:44:56.122Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:44:56.123Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:44:56.164Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:44:56.165Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:44:56.165Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:44:56.165Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:44:56.166Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:44:56.166Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:44:56.167Z - Time taken for 'total for creating and serializing project graph' 0.08083300292491913ms -[NX Daemon Server] - 2024-09-14T22:44:56.168Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:44:56.168Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:44:56.171Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:44:56.171Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:44:56.172Z - Time taken for 'total for creating and serializing project graph' 0.07870900630950928ms -[NX Daemon Server] - 2024-09-14T22:44:56.173Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:44:56.173Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:44:56.175Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:09.393Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:45:09.394Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:45:09.394Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:45:09.394Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.394Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:09.394Z - Time taken for 'changed-projects' 0.11504198610782623ms -[NX Daemon Server] - 2024-09-14T22:45:09.495Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:45:09.496Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:45:09.496Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:45:09.511Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.511Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.511Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.512Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.512Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.512Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.512Z - Time taken for 'hash changed files from watcher' 0.5514169931411743ms -[NX Daemon Server] - 2024-09-14T22:45:09.513Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.513Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.513Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.514Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.514Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.514Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.515Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.515Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.515Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.516Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.516Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.516Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.517Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.517Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.517Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.518Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.518Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.518Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.518Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.518Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.518Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.519Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.519Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.519Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.520Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.520Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.520Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.521Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.521Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.521Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.521Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.521Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.521Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.522Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.522Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.522Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.523Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.523Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.523Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.523Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.523Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.523Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.524Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.524Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.524Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.525Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.525Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.525Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.526Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.526Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.526Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.526Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.526Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.526Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.527Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.527Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.527Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.528Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.528Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.528Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.528Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.528Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.528Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.529Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:45:09.529Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:45:09.529Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.535Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.535Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.535Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.536Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.536Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.536Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.536Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.536Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.536Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.537Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.537Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.537Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.538Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.538Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.538Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.539Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.539Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.539Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.539Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.540Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.540Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:09.543Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.543Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:09.543Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:09.548Z - Time taken for 'build-project-configs' 48.16099999845028ms -[NX Daemon Server] - 2024-09-14T22:45:09.572Z - Time taken for 'total execution time for createProjectGraph()' 21.408416002988815ms -[NX Daemon Server] - 2024-09-14T22:45:10.403Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:10.404Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:10.408Z - Time taken for 'total for creating and serializing project graph' 0.5195840001106262ms -[NX Daemon Server] - 2024-09-14T22:45:10.417Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:10.417Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 13. -[NX Daemon Server] - 2024-09-14T22:45:10.424Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:45:10.424Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:45:10.424Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:10.425Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:10.462Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:45:10.463Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:10.463Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:10.463Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:10.463Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:10.463Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:10.465Z - Time taken for 'total for creating and serializing project graph' 0.0920419991016388ms -[NX Daemon Server] - 2024-09-14T22:45:10.468Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:10.468Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T22:45:10.471Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:10.471Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:10.472Z - Time taken for 'total for creating and serializing project graph' 0.08837500214576721ms -[NX Daemon Server] - 2024-09-14T22:45:10.473Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:10.473Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:45:10.476Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:21.260Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:45:21.261Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:45:21.261Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:45:21.261Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.261Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:21.261Z - Time taken for 'changed-projects' 0.14841599762439728ms -[NX Daemon Server] - 2024-09-14T22:45:21.364Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:45:21.364Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:45:21.364Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:45:21.386Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.386Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.386Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.387Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.387Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.387Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.387Z - Time taken for 'hash changed files from watcher' 1.5475419908761978ms -[NX Daemon Server] - 2024-09-14T22:45:21.388Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.388Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.388Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.389Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.390Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.390Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:21.390Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.390Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.390Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.391Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.391Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.391Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.392Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.392Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.392Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.393Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.393Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.393Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.394Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.394Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.394Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.395Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.395Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.395Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.396Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.396Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.396Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.397Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.397Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.397Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.397Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.398Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.398Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.398Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.399Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.399Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.399Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.400Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.400Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.400Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.400Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.400Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.400Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.401Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.401Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.401Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.402Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.402Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.402Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.403Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.403Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.403Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.404Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.404Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.404Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.404Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.405Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.405Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.405Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.406Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:45:21.406Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:45:21.406Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.412Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.412Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.412Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.413Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.413Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.413Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.414Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.414Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.414Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.414Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.414Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.414Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.415Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.415Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.415Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.416Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.416Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.416Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.416Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.416Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.416Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.418Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.418Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.418Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.424Z - Time taken for 'build-project-configs' 54.209791988134384ms -[NX Daemon Server] - 2024-09-14T22:45:21.437Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:45:21.437Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:45:21.437Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:45:21.437Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.438Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:21.438Z - Time taken for 'changed-projects' 0.04033300280570984ms -[NX Daemon Server] - 2024-09-14T22:45:21.450Z - Time taken for 'total execution time for createProjectGraph()' 23.936958000063896ms -[NX Daemon Server] - 2024-09-14T22:45:21.640Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:45:21.641Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:45:21.641Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:45:21.658Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.658Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.658Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.659Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.659Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.659Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.659Z - Time taken for 'hash changed files from watcher' 0.9721249938011169ms -[NX Daemon Server] - 2024-09-14T22:45:21.660Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.660Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.660Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.661Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.661Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.661Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.662Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.662Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.662Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.662Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.662Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.662Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.663Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.663Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.663Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.664Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.664Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.664Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.665Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.665Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.665Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.666Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.666Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.666Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.667Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.667Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.667Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.667Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.667Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.667Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.668Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.668Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.668Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.669Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.669Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.669Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.669Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.669Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.669Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.670Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.670Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.670Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.671Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.671Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.671Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.671Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.671Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.671Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.672Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.672Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.672Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.673Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.673Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.673Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.674Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.674Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.674Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.674Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.674Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.674Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.675Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.675Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.675Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.675Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.675Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.675Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.676Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.676Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.676Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.677Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.677Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.677Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.677Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.677Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.677Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.678Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.678Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.678Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.679Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.679Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.679Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.679Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.679Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.679Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.680Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.680Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:21.680Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:21.686Z - Time taken for 'build-project-configs' 41.0927500128746ms -[NX Daemon Server] - 2024-09-14T22:45:21.703Z - Time taken for 'total execution time for createProjectGraph()' 14.183292001485825ms -[NX Daemon Server] - 2024-09-14T22:45:22.446Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:22.446Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:22.449Z - Time taken for 'total for creating and serializing project graph' 0.47962500154972076ms -[NX Daemon Server] - 2024-09-14T22:45:22.453Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:22.453Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 7. -[NX Daemon Server] - 2024-09-14T22:45:22.460Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:45:22.460Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:45:22.460Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:22.461Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:22.500Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:45:22.501Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:22.501Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:22.501Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:22.501Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:22.501Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:22.503Z - Time taken for 'total for creating and serializing project graph' 0.07420800626277924ms -[NX Daemon Server] - 2024-09-14T22:45:22.503Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:22.503Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:45:22.506Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:22.506Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:22.507Z - Time taken for 'total for creating and serializing project graph' 0.05045899748802185ms -[NX Daemon Server] - 2024-09-14T22:45:22.508Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:22.508Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:45:22.510Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:35.705Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:45:35.706Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:45:35.706Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:45:35.706Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.706Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:35.706Z - Time taken for 'changed-projects' 0.05895799398422241ms -[NX Daemon Server] - 2024-09-14T22:45:35.807Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:45:35.807Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:45:35.807Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:45:35.821Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.821Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.821Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.822Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.822Z - Time taken for 'hash changed files from watcher' 0.6297500133514404ms -[NX Daemon Server] - 2024-09-14T22:45:35.823Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.823Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.823Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.824Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.825Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.825Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.825Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.826Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.826Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.826Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.826Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.827Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.827Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:35.827Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.827Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.827Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.828Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.828Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.828Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.829Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.830Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.830Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.830Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.830Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.831Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.832Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.832Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.832Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.832Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.833Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:35.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.833Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.834Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.834Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.834Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.835Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.835Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.836Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.837Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.837Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.837Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.838Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.838Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.839Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:45:35.839Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:45:35.839Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.845Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.846Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.846Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.848Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.848Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.849Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:35.851Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:35.856Z - Time taken for 'build-project-configs' 44.77137500047684ms -[NX Daemon Server] - 2024-09-14T22:45:35.881Z - Time taken for 'total execution time for createProjectGraph()' 22.79849998652935ms -[NX Daemon Server] - 2024-09-14T22:45:36.713Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:36.713Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:36.717Z - Time taken for 'total for creating and serializing project graph' 0.508542001247406ms -[NX Daemon Server] - 2024-09-14T22:45:36.725Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:36.725Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 12. -[NX Daemon Server] - 2024-09-14T22:45:36.731Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:45:36.731Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:45:36.731Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:36.732Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:36.770Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:45:36.770Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:36.770Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:36.770Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:36.771Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:36.771Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:36.772Z - Time taken for 'total for creating and serializing project graph' 0.09029199182987213ms -[NX Daemon Server] - 2024-09-14T22:45:36.773Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:36.773Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:45:36.776Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:36.776Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:36.777Z - Time taken for 'total for creating and serializing project graph' 0.07895798981189728ms -[NX Daemon Server] - 2024-09-14T22:45:36.780Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:36.781Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 5. -[NX Daemon Server] - 2024-09-14T22:45:36.783Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:51.719Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:45:51.720Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:45:51.720Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:45:51.720Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.720Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:51.720Z - Time taken for 'changed-projects' 0.14658299088478088ms -[NX Daemon Server] - 2024-09-14T22:45:51.823Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:45:51.823Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T22:45:51.823Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:45:51.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.833Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.833Z - Time taken for 'hash changed files from watcher' 0.6065829992294312ms -[NX Daemon Server] - 2024-09-14T22:45:51.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.833Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.834Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.834Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.834Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.835Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.835Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.836Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.836Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.837Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.837Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.837Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.837Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.837Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.837Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.838Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.838Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.839Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.839Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.839Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.839Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.839Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.839Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.840Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.840Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.840Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.840Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.840Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.840Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.841Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.841Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.842Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.842Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.843Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.843Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.844Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.845Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.845Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.846Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.847Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.848Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:45:51.848Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:51.854Z - Time taken for 'build-project-configs' 26.86387500166893ms -[NX Daemon Server] - 2024-09-14T22:45:51.870Z - Time taken for 'total execution time for createProjectGraph()' 13.348666995763779ms -[NX Daemon Server] - 2024-09-14T22:45:51.933Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:45:51.934Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:51.934Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:45:51.935Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:51.935Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:51.937Z - Time taken for 'total for creating and serializing project graph' 0.10820800065994263ms -[NX Daemon Server] - 2024-09-14T22:45:51.938Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:51.938Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:45:51.979Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T22:45:51.980Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T22:45:51.980Z - Handled HASH_TASKS. Handling time: 30. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:52.008Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:45:52.008Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:45:52.009Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:52.010Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.010Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.010Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.020Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:45:52.020Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:45:52.020Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.020Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.020Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.020Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.024Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:45:52.024Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:45:52.024Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.025Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.025Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.025Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.050Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.050Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.050Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.052Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:45:52.052Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:45:52.052Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.052Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.052Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.052Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.110Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:52.180Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:52.321Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:52.700Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.700Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:52.700Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:52.723Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:52.723Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:52.724Z - Time taken for 'total for creating and serializing project graph' 0.10987500846385956ms -[NX Daemon Server] - 2024-09-14T22:45:52.727Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:52.727Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T22:45:52.730Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:45:52.731Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:45:52.731Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:52.731Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:52.738Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:52.768Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:52.769Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:52.770Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:45:52.770Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:45:52.771Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:52.771Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:52.773Z - Time taken for 'total for creating and serializing project graph' 0.21950000524520874ms -[NX Daemon Server] - 2024-09-14T22:45:52.773Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:52.773Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:45:52.776Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:45:52.776Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:45:52.777Z - Time taken for 'total for creating and serializing project graph' 0.08716700971126556ms -[NX Daemon Server] - 2024-09-14T22:45:52.778Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:45:52.778Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:45:52.780Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:45:52.864Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:53.895Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:53.895Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:53.895Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:54.050Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:54.052Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:54.052Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:54.052Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:54.197Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:45:54.447Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:54.448Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:54.448Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:55.532Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:55.532Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:55.532Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:55.638Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:55.639Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:45:55.639Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:55.642Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:45:55.642Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:45:55.642Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:45:55.644Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:45:55.645Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:45:55.645Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:45:55.647Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:48:31.695Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:48:31.696Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:48:31.696Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:48:31.696Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.696Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:48:31.696Z - Time taken for 'changed-projects' 0.11225000023841858ms -[NX Daemon Server] - 2024-09-14T22:48:31.798Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:48:31.798Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:48:31.798Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:48:31.819Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.819Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.819Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.819Z - Time taken for 'hash changed files from watcher' 0.9347500056028366ms -[NX Daemon Server] - 2024-09-14T22:48:31.820Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.820Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.820Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.821Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.821Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.821Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.822Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.822Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.822Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.823Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.823Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.823Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.824Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.824Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.824Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.825Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.825Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.825Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.826Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.826Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.826Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.826Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.826Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.827Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:48:31.827Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.827Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.827Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.828Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.828Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.828Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.829Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.829Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.829Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.830Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.830Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.830Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.831Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.831Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.831Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.831Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.832Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.832Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.832Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.833Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.833Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.833Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.834Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.834Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.834Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.835Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.835Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.835Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.836Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.836Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.837Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.837Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.837Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.838Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.839Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:48:31.839Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:48:31.839Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.845Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.846Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.848Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.848Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.849Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.850Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:48:31.852Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:31.857Z - Time taken for 'build-project-configs' 53.58166700601578ms -[NX Daemon Server] - 2024-09-14T22:48:31.884Z - Time taken for 'total execution time for createProjectGraph()' 24.463375002145767ms -[NX Daemon Server] - 2024-09-14T22:48:32.703Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:48:32.704Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:48:32.708Z - Time taken for 'total for creating and serializing project graph' 0.47587500512599945ms -[NX Daemon Server] - 2024-09-14T22:48:32.710Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:48:32.710Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T22:48:32.716Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:48:32.716Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:48:32.716Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:48:32.717Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:48:32.759Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:48:32.760Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:48:32.760Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:48:32.760Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:48:32.760Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:48:32.760Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:48:32.762Z - Time taken for 'total for creating and serializing project graph' 0.08658400177955627ms -[NX Daemon Server] - 2024-09-14T22:48:32.763Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:48:32.763Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:48:32.766Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:48:32.766Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:48:32.767Z - Time taken for 'total for creating and serializing project graph' 0.08304201066493988ms -[NX Daemon Server] - 2024-09-14T22:48:32.768Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:48:32.768Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:48:32.771Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:50:15.673Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:50:15.712Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:50:15.712Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:50:15.712Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:50:15.712Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.712Z - Time taken for 'changed-projects' 0.07516700029373169ms -[NX Daemon Server] - 2024-09-14T22:50:15.815Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:50:15.815Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T22:50:15.815Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:50:15.836Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.836Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.836Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.837Z - Time taken for 'hash changed files from watcher' 0.9099169969558716ms -[NX Daemon Server] - 2024-09-14T22:50:15.838Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.838Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.838Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.839Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.839Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.839Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.840Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.840Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.840Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.841Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.841Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.841Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.842Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.842Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.842Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.842Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.843Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.843Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.843Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.844Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.844Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.844Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.845Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.845Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.845Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.846Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.846Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.846Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:50:15.847Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.847Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.847Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.848Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.848Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.848Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.849Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.849Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.849Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.850Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.850Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.850Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.851Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.851Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.851Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.851Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.852Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.852Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.852Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.853Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.853Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.853Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.854Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.854Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.854Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.854Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.855Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.855Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.855Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.856Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:50:15.856Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:50:15.856Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.864Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.864Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.864Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.864Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.865Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.865Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.865Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.866Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.866Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.866Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.866Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.867Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.867Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.867Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.867Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.867Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.867Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:15.869Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.869Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:50:15.870Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:50:15.875Z - Time taken for 'build-project-configs' 54.63529200851917ms -[NX Daemon Server] - 2024-09-14T22:50:15.900Z - Time taken for 'total execution time for createProjectGraph()' 22.17833299934864ms -[NX Daemon Server] - 2024-09-14T22:50:16.720Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:50:16.721Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:50:16.724Z - Time taken for 'total for creating and serializing project graph' 0.5469170063734055ms -[NX Daemon Server] - 2024-09-14T22:50:16.728Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:50:16.728Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T22:50:16.735Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:50:16.735Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:50:16.735Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:50:16.736Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:50:16.784Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:50:16.785Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:50:16.785Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:50:16.785Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:50:16.785Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:50:16.785Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:50:16.787Z - Time taken for 'total for creating and serializing project graph' 0.07741700112819672ms -[NX Daemon Server] - 2024-09-14T22:50:16.787Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:50:16.787Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:50:16.790Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:50:16.790Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:50:16.792Z - Time taken for 'total for creating and serializing project graph' 0.051791995763778687ms -[NX Daemon Server] - 2024-09-14T22:50:16.792Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:50:16.792Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:50:16.794Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:51:04.634Z - [WATCHER]: libs/native-federation-node/build/create-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:51:04.635Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:51:04.635Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:51:04.635Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.635Z - Time taken for 'changed-projects' 0.1142909973859787ms -[NX Daemon Server] - 2024-09-14T22:51:04.641Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:51:04.738Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:51:04.738Z - [REQUEST]: libs/native-federation-node/build/create-data-url.js -[NX Daemon Server] - 2024-09-14T22:51:04.738Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:51:04.762Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.762Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.762Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.762Z - Time taken for 'hash changed files from watcher' 1.5485839992761612ms -[NX Daemon Server] - 2024-09-14T22:51:04.763Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.763Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.763Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.764Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.764Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.764Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.765Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.765Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.765Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.766Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.766Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.766Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.766Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.767Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.767Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.767Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.768Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.768Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.768Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.769Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.769Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.769Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.770Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.770Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.770Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.771Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.771Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.771Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.771Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.772Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.772Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.772Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.773Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.773Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.773Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.773Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.774Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.774Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.774Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.775Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.775Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.775Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.776Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.776Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.776Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.777Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.777Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.777Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.777Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.778Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.778Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.778Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.779Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.779Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.779Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.780Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.780Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:51:04.780Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:51:04.780Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:51:04.780Z - Handled GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.787Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.787Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.787Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.788Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.788Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.788Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.789Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.789Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.789Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.789Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.790Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.790Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.790Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:51:04.791Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.791Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.791Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.793Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.793Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:04.793Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:04.799Z - Time taken for 'build-project-configs' 55.22879199683666ms -[NX Daemon Server] - 2024-09-14T22:51:04.825Z - Time taken for 'total execution time for createProjectGraph()' 23.70049999654293ms -[NX Daemon Server] - 2024-09-14T22:51:05.643Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:51:05.644Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:51:05.648Z - Time taken for 'total for creating and serializing project graph' 0.5360830128192902ms -[NX Daemon Server] - 2024-09-14T22:51:05.650Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:51:05.650Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T22:51:05.658Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:51:05.658Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:51:05.658Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:05.659Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:51:05.702Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:51:05.703Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:51:05.703Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:51:05.703Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:51:05.703Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:51:05.703Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:51:05.705Z - Time taken for 'total for creating and serializing project graph' 0.08291700482368469ms -[NX Daemon Server] - 2024-09-14T22:51:05.706Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:51:05.706Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:51:05.709Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:51:05.709Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:51:05.710Z - Time taken for 'total for creating and serializing project graph' 0.055041998624801636ms -[NX Daemon Server] - 2024-09-14T22:51:05.711Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:51:05.711Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:51:05.713Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:51:52.357Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:51:52.357Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:51:52.357Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:51:52.358Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:51:52.358Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:51:52.358Z - Time taken for 'changed-projects' 0.17808400094509125ms -[NX Daemon Server] - 2024-09-14T22:51:52.460Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:51:52.461Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T22:51:52.461Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:51:52.478Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.478Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.478Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.478Z - Time taken for 'hash changed files from watcher' 1.4691670089960098ms -[NX Daemon Server] - 2024-09-14T22:51:52.479Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.479Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.479Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.480Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.480Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.480Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.480Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.481Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.481Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.481Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:51:52.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.482Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.482Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.482Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.483Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.483Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.483Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:51:52.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.484Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.484Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.484Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.485Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.485Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.485Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.486Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.486Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.486Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.487Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.487Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.487Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.487Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.488Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.488Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.488Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.489Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.489Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.489Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.489Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.490Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.490Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.490Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.490Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.491Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.491Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.491Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.492Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:51:52.492Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:51:52.492Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.498Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.498Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.498Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.499Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.499Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.499Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.500Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.500Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.500Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.501Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.501Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.501Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.502Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.502Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.502Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.503Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.503Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.503Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.516Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.516Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.516Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.518Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.518Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:51:52.518Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.523Z - Time taken for 'build-project-configs' 58.368249997496605ms -[NX Daemon Server] - 2024-09-14T22:51:52.549Z - Time taken for 'total execution time for createProjectGraph()' 21.403415992856026ms -[NX Daemon Server] - 2024-09-14T22:51:52.588Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:51:52.588Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:51:52.588Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:51:52.589Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:51:52.589Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:51:52.591Z - Time taken for 'total for creating and serializing project graph' 0.07670800387859344ms -[NX Daemon Server] - 2024-09-14T22:51:52.592Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:51:52.592Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:51:52.636Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T22:51:52.638Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T22:51:52.638Z - Handled HASH_TASKS. Handling time: 33. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:51:52.663Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:51:52.663Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:51:52.663Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.663Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.663Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.663Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.671Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:51:52.671Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:51:52.671Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.672Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.672Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.672Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.675Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:51:52.675Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:51:52.675Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.676Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.676Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.676Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.700Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.700Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.700Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.701Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:51:52.702Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:51:52.702Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:51:52.702Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.702Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:52.702Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:52.761Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:51:52.831Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:51:52.951Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:51:53.320Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:53.320Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:53.320Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:53.360Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:51:53.360Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:51:53.361Z - Time taken for 'total for creating and serializing project graph' 0.1083340048789978ms -[NX Daemon Server] - 2024-09-14T22:51:53.362Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:51:53.362Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:51:53.366Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:51:53.366Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:51:53.366Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:53.366Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:51:53.373Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:51:53.406Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:51:53.406Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:51:53.406Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:51:53.406Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:51:53.406Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:51:53.407Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:51:53.408Z - Time taken for 'total for creating and serializing project graph' 0.07325001060962677ms -[NX Daemon Server] - 2024-09-14T22:51:53.409Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:51:53.409Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:51:53.411Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:51:53.412Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:51:53.413Z - Time taken for 'total for creating and serializing project graph' 0.10266600549221039ms -[NX Daemon Server] - 2024-09-14T22:51:53.419Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:51:53.419Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 7. -[NX Daemon Server] - 2024-09-14T22:51:53.421Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:51:53.481Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:51:54.470Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:54.470Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:54.470Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:54.615Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:51:54.644Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:54.644Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:54.644Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:55.234Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:55.235Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:55.235Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:51:56.396Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:56.396Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:51:56.396Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:56.398Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:51:56.398Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:51:56.398Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:56.398Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:51:56.398Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:51:56.398Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:51:56.400Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:52:15.435Z - [WATCHER]: libs/native-federation-node/src/lib/node/init-node-federation.ts was modified -[NX Daemon Server] - 2024-09-14T22:52:15.437Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:52:15.437Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:52:15.437Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.437Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:52:15.437Z - Time taken for 'changed-projects' 0.12233300507068634ms -[NX Daemon Server] - 2024-09-14T22:52:15.540Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:52:15.540Z - [REQUEST]: libs/native-federation-node/src/lib/node/init-node-federation.ts -[NX Daemon Server] - 2024-09-14T22:52:15.540Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:52:15.557Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.557Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.557Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.557Z - Time taken for 'hash changed files from watcher' 0.968874990940094ms -[NX Daemon Server] - 2024-09-14T22:52:15.558Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.558Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.558Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.559Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.559Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.559Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.560Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.560Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.560Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.561Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.561Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.561Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.562Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.562Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.562Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.563Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.563Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.563Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.564Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.564Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.564Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.564Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.565Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.565Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.565Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.566Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.566Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.566Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.567Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.567Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.567Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.568Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.568Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.568Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.568Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.569Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.569Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.569Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.570Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.570Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.570Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.571Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.571Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.571Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.571Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.571Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.571Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.572Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.572Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.572Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.573Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.573Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.573Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.574Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.574Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.574Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.575Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:52:15.575Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.575Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.575Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.576Z - [REQUEST]: Responding to the client. handleGlob -[NX Daemon Server] - 2024-09-14T22:52:15.576Z - Done responding to the client handleGlob -[NX Daemon Server] - 2024-09-14T22:52:15.576Z - Handled GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.584Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.584Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.584Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.585Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.585Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.585Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.586Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.586Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.586Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.586Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.587Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.587Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.587Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.588Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.588Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.588Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.588Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.590Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.590Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:15.590Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:15.596Z - Time taken for 'build-project-configs' 51.113666996359825ms -[NX Daemon Server] - 2024-09-14T22:52:15.623Z - Time taken for 'total execution time for createProjectGraph()' 23.809125006198883ms -[NX Daemon Server] - 2024-09-14T22:52:16.446Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:52:16.447Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:52:16.450Z - Time taken for 'total for creating and serializing project graph' 0.6783329993486404ms -[NX Daemon Server] - 2024-09-14T22:52:16.453Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:52:16.453Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 6. -[NX Daemon Server] - 2024-09-14T22:52:16.460Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:52:16.461Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:52:16.461Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:52:16.461Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:52:16.508Z - Closed a connection. Number of open connections: 2 -[NX Daemon Server] - 2024-09-14T22:52:16.508Z - Established a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:52:16.508Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:52:16.509Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:52:16.509Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:52:16.509Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:52:16.511Z - Time taken for 'total for creating and serializing project graph' 0.10729199647903442ms -[NX Daemon Server] - 2024-09-14T22:52:16.512Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:52:16.512Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:52:16.514Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:52:16.514Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:52:16.516Z - Time taken for 'total for creating and serializing project graph' 0.07700000703334808ms -[NX Daemon Server] - 2024-09-14T22:52:16.517Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:52:16.517Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:52:16.519Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:52:23.318Z - [WATCHER]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js was modified -[NX Daemon Server] - 2024-09-14T22:52:23.319Z - [REQUEST]: Responding to the client. File watch changed -[NX Daemon Server] - 2024-09-14T22:52:23.319Z - Done responding to the client File watch changed -[NX Daemon Server] - 2024-09-14T22:52:23.319Z - Handled FILE-WATCH-CHANGED. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.319Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:52:23.319Z - Time taken for 'changed-projects' 0.2252499908208847ms -[NX Daemon Server] - 2024-09-14T22:52:23.421Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... -[NX Daemon Server] - 2024-09-14T22:52:23.421Z - [REQUEST]: libs/native-federation-node/src/lib/utils/loader-as-data-url.js -[NX Daemon Server] - 2024-09-14T22:52:23.421Z - [REQUEST]: -[NX Daemon Server] - 2024-09-14T22:52:23.439Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.439Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.439Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.440Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.440Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.440Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.440Z - Time taken for 'hash changed files from watcher' 1.8188329935073853ms -[NX Daemon Server] - 2024-09-14T22:52:23.440Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.440Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.440Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.441Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.441Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.441Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.441Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.441Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.442Z - Handled HASH_GLOB. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:52:23.442Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.442Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.442Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.442Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.442Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.442Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.443Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.443Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.443Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.444Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.444Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.444Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.444Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.444Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.444Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.445Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.445Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.445Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.445Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.445Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.445Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.446Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.446Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.446Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.446Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.446Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.446Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.447Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.448Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.448Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.448Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.448Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.448Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.448Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.449Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.449Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.449Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.449Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.449Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.449Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.450Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.450Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.450Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.450Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.450Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.450Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.451Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.451Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.451Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.451Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.451Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.452Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.452Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.452Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.452Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.452Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.452Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.453Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.453Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.453Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.453Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.453Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.453Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.454Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.454Z - [REQUEST]: Responding to the client. handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.454Z - Done responding to the client handleHashGlob -[NX Daemon Server] - 2024-09-14T22:52:23.454Z - Handled HASH_GLOB. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.460Z - Time taken for 'build-project-configs' 34.11920900642872ms -[NX Daemon Server] - 2024-09-14T22:52:23.476Z - Time taken for 'total execution time for createProjectGraph()' 13.28370800614357ms -[NX Daemon Server] - 2024-09-14T22:52:23.494Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:52:23.494Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:52:23.494Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:52:23.495Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:52:23.496Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:52:23.497Z - Time taken for 'total for creating and serializing project graph' 0.09354101121425629ms -[NX Daemon Server] - 2024-09-14T22:52:23.498Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:52:23.498Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1. Response time: 2. -[NX Daemon Server] - 2024-09-14T22:52:23.536Z - [REQUEST]: Responding to the client. handleHashTasks -[NX Daemon Server] - 2024-09-14T22:52:23.537Z - Done responding to the client handleHashTasks -[NX Daemon Server] - 2024-09-14T22:52:23.537Z - Handled HASH_TASKS. Handling time: 27. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:52:23.562Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:52:23.562Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:52:23.562Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.563Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.563Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.563Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.571Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:52:23.571Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:52:23.571Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.572Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.572Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.572Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.574Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:52:23.574Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:52:23.574Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.575Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.575Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.575Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.599Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.599Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.599Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.600Z - [REQUEST]: Responding to the client. outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:52:23.601Z - Done responding to the client outputsHashesMatch -[NX Daemon Server] - 2024-09-14T22:52:23.601Z - Handled OUTPUTS_HASHES_MATCH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:52:23.601Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.601Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:23.601Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:23.659Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:52:23.728Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:52:23.849Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:52:24.232Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.232Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.232Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:24.258Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.258Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.258Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:24.259Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.259Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.259Z - Handled RECORD_OUTPUTS_HASH. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:24.294Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:52:24.321Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:52:24.321Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:52:24.322Z - Time taken for 'total for creating and serializing project graph' 0.10887500643730164ms -[NX Daemon Server] - 2024-09-14T22:52:24.325Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:52:24.325Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 4. -[NX Daemon Server] - 2024-09-14T22:52:24.329Z - [REQUEST]: Responding to the client. handleContextFileData -[NX Daemon Server] - 2024-09-14T22:52:24.329Z - Done responding to the client handleContextFileData -[NX Daemon Server] - 2024-09-14T22:52:24.329Z - Handled GET_CONTEXT_FILE_DATA. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:24.329Z - Closed a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:52:24.374Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:52:24.375Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:52:24.375Z - Closed a connection. Number of open connections: 3 -[NX Daemon Server] - 2024-09-14T22:52:24.375Z - Established a connection. Number of open connections: 4 -[NX Daemon Server] - 2024-09-14T22:52:24.375Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:52:24.375Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:52:24.376Z - Time taken for 'total for creating and serializing project graph' 0.08254200220108032ms -[NX Daemon Server] - 2024-09-14T22:52:24.378Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:52:24.378Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:52:24.380Z - [REQUEST]: Client Request for Project Graph Received -[NX Daemon Server] - 2024-09-14T22:52:24.380Z - [REQUEST]: Responding to the client. project-graph -[NX Daemon Server] - 2024-09-14T22:52:24.382Z - Time taken for 'total for creating and serializing project graph' 0.10341599583625793ms -[NX Daemon Server] - 2024-09-14T22:52:24.383Z - Done responding to the client project-graph -[NX Daemon Server] - 2024-09-14T22:52:24.383Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 3. -[NX Daemon Server] - 2024-09-14T22:52:24.386Z - Established a connection. Number of open connections: 5 -[NX Daemon Server] - 2024-09-14T22:52:24.400Z - [WATCHER]: Processing file changes in outputs -[NX Daemon Server] - 2024-09-14T22:52:24.841Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.841Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.841Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:24.878Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.878Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:24.878Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:25.860Z - [REQUEST]: Responding to the client. recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:25.860Z - Done responding to the client recordOutputsHash -[NX Daemon Server] - 2024-09-14T22:52:25.861Z - Handled RECORD_OUTPUTS_HASH. Handling time: 0. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:52:25.865Z - [REQUEST]: Responding to the client. handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:52:25.866Z - Done responding to the client handleWriteTaskRunsToHistory -[NX Daemon Server] - 2024-09-14T22:52:25.866Z - Handled WRITE_TASK_RUNS_TO_HISTORY. Handling time: 1. Response time: 1. -[NX Daemon Server] - 2024-09-14T22:52:25.868Z - [REQUEST]: Responding to the client. handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:52:25.868Z - Done responding to the client handleGetTaskHistoryForHashes -[NX Daemon Server] - 2024-09-14T22:52:25.868Z - Handled GET_TASK_HISTORY_FOR_HASHES. Handling time: 1. Response time: 0. -[NX Daemon Server] - 2024-09-14T22:52:25.872Z - Closed a connection. Number of open connections: 4 diff --git a/.nx/workspace-data/d/server-process.json b/.nx/workspace-data/d/server-process.json deleted file mode 100644 index 759e1b28..00000000 --- a/.nx/workspace-data/d/server-process.json +++ /dev/null @@ -1 +0,0 @@ -{ "processId": 79160 } diff --git a/.nx/workspace-data/eslint-4393011795395336301.hash b/.nx/workspace-data/eslint-4393011795395336301.hash deleted file mode 100644 index caca64f4..00000000 --- a/.nx/workspace-data/eslint-4393011795395336301.hash +++ /dev/null @@ -1,5795 +0,0 @@ -{ - "1777010072159167306": { - "apps/mfe1": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "apps/mfe1" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "6688323759183675334": { - "apps/mfe1-e2e": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "apps/mfe1-e2e" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "10040768162410065464": { - "apps/mfe2": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "apps/mfe2" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "16172598546949073254": { - "apps/mfe2-e2e": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "apps/mfe2-e2e" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1192005640422197049": { - "apps/native-federation-e2e": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "apps/native-federation-e2e" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "170826848018673812": { - "apps/playground": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "apps/playground" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15934716638187756859": { - "apps/playground-e2e": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "apps/playground-e2e" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9975289447230057674": { - "libs/mf": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/mf" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "12232774312427807087": { - "libs/mf-runtime": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/mf-runtime" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15683154299965198892": { - "libs/mf-tools": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/mf-tools" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "2555826994052836282": { - "libs/native-federation": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "11078788997428896667": { - "libs/native-federation-core": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-core" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7725386150926514721": { - "libs/native-federation-esbuild": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-esbuild" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "13893375103237203799": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "2676213498393513201": { - "libs/native-federation-runtime": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-runtime" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7627459466152225769": { - "libs/playground-lib": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/playground-lib" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "6991698983405555874": {}, - "17322861879750530046": { - "libs/native-federation-runtime": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-runtime" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9053089441127535954": {}, - "11850492276164830384": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "17007286940510161873": {}, - "14966547291881313663": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "10916794465878448878": {}, - "14267929203094114320": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "11890612718766121923": {}, - "11050960329082566857": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "14103970517343186666": {}, - "17328882925876281017": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "13429181542519461316": {}, - "2594531411691163651": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "4873331242813515793": {}, - "4481715839575947809": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1242584551229809310": {}, - "10229399509673083733": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9620324896000082895": {}, - "1772713751829127508": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "10127006353026193701": {}, - "9990525426157804176": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "14643975313732797841": {}, - "15368901679914895876": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "8008926004896273218": {}, - "2336457179641771471": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7017087552458968589": {}, - "6603374855098455152": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "6485114223115536622": {}, - "14344602230866288701": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9464565733189242734": {}, - "3334870717549430122": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "3478309351284269888": {}, - "11822065126038443416": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "11628391999327847008": {}, - "14394258209519905122": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9840808626833982284": {}, - "282137346654115346": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "8327670680517496839": {}, - "11016384975389187394": {}, - "3619229927205937506": { - "libs/native-federation": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "769582396032565329": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "17415761591516778710": { - "libs/native-federation-runtime": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-runtime" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1546931755312716842": {}, - "14599747434797113814": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15805385970581377420": {}, - "14504835435719758248": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "12673617888535382739": {}, - "11700687500412803731": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "17497337979263188057": {}, - "1087769316867436132": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "12327321747274231321": {}, - "3243200321047815949": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "3546481377908899137": {}, - "9223364767193969300": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7338967275962427862": {}, - "17167336694365676364": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1608409616979427801": {}, - "6549304794273121889": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "5668664188700775416": {}, - "2038758617597057728": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "487546960429610166": {}, - "5048223087248139619": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9539974789809344468": {}, - "3808276165326081789": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "8737908875740382604": {}, - "8034279491883914489": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "5447214685255603632": {}, - "1649556942798955789": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1033575047580091028": {}, - "10448590238284232246": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "2238193924425940429": {}, - "2152804563015651595": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "14293084300955610110": {}, - "12143728067353163630": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "12426702111530850098": {}, - "12177350669181890586": {}, - "6826503571032558030": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15942541490689575373": {}, - "15713268112943286950": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "17510202073671820347": {}, - "7454367425849208322": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15278375975826556422": {}, - "7782985213761911748": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "11110068477496673315": {}, - "4908026733722897568": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "16221303963779878636": {}, - "17412969790637967045": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "14160382959366321564": {}, - "8648138176659336003": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "17884798217132521203": {}, - "7259792333718953883": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7746105027353764974": {}, - "16738775936832397111": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "13358907965720569299": {}, - "16975866716627897691": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "13324605230636469998": {}, - "8491605166424212678": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7797321669941920483": {}, - "9948566187086927920": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7436575979056196695": {}, - "6874925119067982045": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7663603963772389903": {}, - "11212887580733768569": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "11249529445699797054": {}, - "9348355911354768721": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7463949450313537064": {}, - "17668512000526957064": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "11178856502509437135": {}, - "2281853912176995765": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "12795336801379381523": {}, - "4560621445001319872": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "16357819754307052586": {}, - "7980516031871700338": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1887133791700513438": {}, - "12285018616475002487": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "3544682972426294545": {}, - "15862294579646770833": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "10231925091347372068": {}, - "5265057507374198045": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "3849942496807389027": {}, - "14225406958244989761": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "2184732546643997591": {}, - "8852575120116898730": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "4927997455642113140": {}, - "13871794104405638807": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1017423804741469629": {}, - "13058348133111532735": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9533216689170668099": {}, - "11921701248603409300": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9413863604675742247": {}, - "10950725277798301538": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "4683588951817763937": {}, - "1385678606056943372": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "16475627129514742974": {}, - "14009481302977868881": {}, - "9215903619359694120": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7616543251446684950": {}, - "16871856527518806073": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "214602753951797179": {}, - "2508497438212275947": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "5098254114728950586": {}, - "5605098650289197879": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "17241637373224679211": {}, - "1857342672814043921": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "68903868982061889": {}, - "825491930891612636": {}, - "7391802274313642935": {}, - "567513394773652856": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9060366156438848883": {}, - "5490436786701065648": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "12825016408209029144": {}, - "943827888314997939": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "5985253234158362954": {}, - "18402749283842217779": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "108797853688688691": {}, - "1926454950144837219": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "8103922984889202218": {}, - "13231567678832800076": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9086236993974273287": {}, - "15646311130205723368": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15311071236808194761": {}, - "10024169552497695165": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "2107067235189363204": {}, - "3422542484629500208": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "3410971934843676938": {}, - "13012013353040810674": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "5125950824829240022": {}, - "11346778079705762061": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9179446061770485552": {}, - "2875992090991858881": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "5724409427049547041": {}, - "11226523924536657021": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "17290467866836120933": {}, - "9437331595476117299": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15317028645805669802": {}, - "5645535331118851461": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "3622653427492015698": {}, - "7685651210925749781": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "10879651771458424714": {}, - "5464152416976156734": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "16902543991300167426": {}, - "3572130500625471110": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "8177987565360733405": {}, - "16931404436347223713": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "11528230830378322830": {}, - "15693517240185418628": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "10023098111182012143": {}, - "14008035002722837727": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "2792956528903469091": {}, - "4660386962823950699": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1916481555567654640": {}, - "11373891788634450403": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "12025335535741754474": {}, - "18083235077160009790": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "14693725571503717739": {}, - "69886990526865015": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "5143340617490795662": {}, - "7544854754916633298": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "8472282827529259792": {}, - "12906893869147067487": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "13073702260169859479": {}, - "6061427403102536357": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "6037018842584209405": {}, - "10517868181961660182": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15696931238773982961": {}, - "3806398201046022784": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1371857455298579543": {}, - "3071370046033015250": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9654410953194962496": {}, - "2246092142824452780": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "4182083687608396576": {}, - "16009597542334418518": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "1111059822978788961": {}, - "3621216897531927837": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "15320075327635412718": {}, - "10158803762316648242": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "16234117365239171665": {}, - "18032893553091416773": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "3759459222439650076": {}, - "15777835221243314018": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "8030678430889024885": {}, - "14174346499943861183": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "16057104288483580497": {}, - "667362783060916566": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "9279563932709197145": {}, - "3394062625288326896": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "11640786626700698471": {}, - "7160891924977487719": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "2372635500465662750": {}, - "7394987305073759939": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "7805777025677689474": {}, - "13290834474059619297": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "8830982788902642579": {}, - "6813335806869237061": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "14627134241671897913": {}, - "11954431013243616718": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "155370293817206920": {}, - "11427130782819461720": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "5818660120026464693": {}, - "2024085726398599509": { - "libs/native-federation-node": { - "targets": { - "lint": { - "command": "eslint .", - "cache": true, - "options": { - "cwd": "libs/native-federation-node" - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - } - } - } - } - }, - "6507517232956165984": {} -} \ No newline at end of file diff --git a/.nx/workspace-data/file-map.json b/.nx/workspace-data/file-map.json deleted file mode 100644 index cee1dfb3..00000000 --- a/.nx/workspace-data/file-map.json +++ /dev/null @@ -1,2399 +0,0 @@ -{ - "version": "6.0", - "nxVersion": "19.5.6", - "deps": { - "@angular/animations": "18.1.3", - "@angular/common": "18.1.3", - "@angular/compiler": "18.1.3", - "@angular/core": "18.1.3", - "@angular/forms": "18.1.3", - "@angular/platform-browser": "18.1.3", - "@angular/platform-browser-dynamic": "18.1.3", - "@angular/router": "18.1.3", - "@module-federation/vite": "^0.2.6", - "es-module-shims": "^1.5.12", - "rxjs": "^7.0.0", - "tslib": "^2.3.0", - "zone.js": "0.14.2", - "@angular-devkit/build-angular": "18.1.3", - "@angular-devkit/core": "18.1.3", - "@angular-devkit/schematics": "18.1.3", - "@angular-eslint/eslint-plugin": "18.2.0", - "@angular-eslint/eslint-plugin-template": "18.2.0", - "@angular-eslint/template-parser": "18.2.0", - "@angular/cli": "~18.1.0", - "@angular/compiler-cli": "18.1.3", - "@angular/language-service": "18.1.3", - "@nx/angular": "19.5.6", - "@nx/cypress": "19.5.6", - "@nx/devkit": "19.5.6", - "@nx/eslint": "19.5.6", - "@nx/eslint-plugin": "19.5.6", - "@nx/jest": "19.5.6", - "@nx/js": "19.5.6", - "@nx/node": "19.5.6", - "@nx/plugin": "19.5.6", - "@nx/webpack": "19.5.6", - "@nx/workspace": "19.5.6", - "@rollup/plugin-commonjs": "^25.0.3", - "@rollup/plugin-json": "^6.0.0", - "@rollup/plugin-node-resolve": "^15.1.0", - "@rollup/plugin-replace": "^5.0.2", - "@schematics/angular": "18.1.3", - "@swc-node/register": "1.9.2", - "@swc/cli": "0.3.12", - "@swc/core": "1.5.7", - "@swc/helpers": "0.5.12", - "@types/browser-sync": "^2.29.0", - "@types/cross-spawn": "^6.0.2", - "@types/jest": "29.5.11", - "@types/node": "^18.19.50", - "@types/npmlog": "^4.1.4", - "@typescript-eslint/eslint-plugin": "7.18.0", - "@typescript-eslint/parser": "7.18.0", - "@typescript-eslint/utils": "^7.16.0", - "acorn": "^8.8.1", - "autoprefixer": "^10.4.0", - "browser-sync": "^3.0.2", - "callsite": "^1.0.0", - "chalk": "^5.3.0", - "chokidar": "^3.5.3", - "cross-spawn": "^7.0.3", - "cypress": "13.13.2", - "dotenv": "10.0.0", - "esbuild": "^0.19.2", - "eslint": "8.57.0", - "eslint-config-prettier": "9.0.0", - "eslint-plugin-cypress": "2.13.4", - "jest": "29.7.0", - "jest-environment-jsdom": "29.7.0", - "jest-environment-node": "29.7.0", - "jest-preset-angular": "14.1.0", - "json5": "^2.2.0", - "jsonc-eslint-parser": "^2.1.0", - "mrmime": "^1.0.1", - "ng-packagr": "18.1.0", - "node-fetch": "^2.6.7", - "node-watch": "^0.7.3", - "npmlog": "^6.0.2", - "nx": "19.5.6", - "postcss": "^8.3.9", - "postcss-import": "14.1.0", - "postcss-preset-env": "7.5.0", - "postcss-url": "10.1.3", - "pre-commit": "^1.2.2", - "prettier": "2.6.2", - "rollup": "^3.27.0", - "rollup-plugin-esbuild": "^5.0.0", - "rollup-plugin-node-externals": "^6.1.1", - "semver": "^7.3.5", - "ts-jest": "29.1.1", - "ts-node": "10.9.1", - "typescript": "5.5.4", - "verdaccio": "^5.0.4", - "word-wrap": "^1.2.5" - }, - "pathMappings": { - "@angular-architects/build_angular": [ - "libs/build-angular/src/index.ts" - ], - "@angular-architects/module-federation": [ - "libs/mf/src/index.ts" - ], - "@angular-architects/module-federation-runtime": [ - "libs/mf-runtime/src/index.ts" - ], - "@angular-architects/module-federation-tools": [ - "libs/mf-tools/src/index.ts" - ], - "@angular-architects/native-federation": [ - "libs/native-federation/src/index.ts" - ], - "@angular-architects/playground-lib": [ - "libs/playground-lib/src/index.ts" - ], - "@softarc/native-federation": [ - "libs/native-federation-core/src/index.ts" - ], - "@softarc/native-federation-esbuild": [ - "libs/native-federation-esbuild/src/index.ts" - ], - "@softarc/native-federation-node": [ - "libs/native-federation-node/src/index.ts" - ], - "@softarc/native-federation-runtime": [ - "libs/native-federation-runtime/src/index.ts" - ], - "@softarc/native-federation/build": [ - "libs/native-federation-core/build.ts" - ] - }, - "nxJsonPlugins": [ - { - "name": "@nx/eslint/plugin", - "options": { - "targetName": "lint" - } - }, - { - "name": "@nx/jest/plugin", - "options": { - "targetName": "test" - } - }, - { - "name": "@nx/cypress/plugin", - "options": { - "targetName": "e2e", - "componentTestingTargetName": "component-test" - } - } - ], - "fileMap": { - "nonProjectFiles": [], - "projectFileMap": { - "native-federation-core": [ - { - "file": "libs/native-federation-core/.eslintrc.json", - "hash": "7114827781762637202" - }, - { - "file": "libs/native-federation-core/LICENSE", - "hash": "7758420778216951569" - }, - { - "file": "libs/native-federation-core/README.md", - "hash": "11736165307314962026" - }, - { - "file": "libs/native-federation-core/build.ts", - "hash": "3478234494392290248" - }, - { - "file": "libs/native-federation-core/jest.config.ts", - "hash": "15161370006173731093" - }, - { - "file": "libs/native-federation-core/package.json", - "hash": "8890551291596504755", - "deps": [ - "npm:json5", - "npm:npmlog", - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-core/project.json", - "hash": "15570335305564210254" - }, - { - "file": "libs/native-federation-core/src/build.ts", - "hash": "3825897503592397911" - }, - { - "file": "libs/native-federation-core/src/config.ts", - "hash": "6684958329083249121" - }, - { - "file": "libs/native-federation-core/src/index.ts", - "hash": "11205332278489509743", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-core/src/lib/config/configuration-context.ts", - "hash": "13893588198112851680" - }, - { - "file": "libs/native-federation-core/src/lib/config/federation-config.ts", - "hash": "16435484572941211275" - }, - { - "file": "libs/native-federation-core/src/lib/config/share-utils.ts", - "hash": "5438583451850952155" - }, - { - "file": "libs/native-federation-core/src/lib/config/with-native-federation.ts", - "hash": "12212785597493288016" - }, - { - "file": "libs/native-federation-core/src/lib/core/build-adapter.d.ts", - "hash": "6923443495044212725" - }, - { - "file": "libs/native-federation-core/src/lib/core/build-adapter.js", - "hash": "13790491971358888333", - "deps": [ - "npm:tslib" - ] - }, - { - "file": "libs/native-federation-core/src/lib/core/build-adapter.js.map", - "hash": "1524480673449592798" - }, - { - "file": "libs/native-federation-core/src/lib/core/build-adapter.ts", - "hash": "14017727503600494989" - }, - { - "file": "libs/native-federation-core/src/lib/core/build-for-federation.ts", - "hash": "6608596682472682250", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-core/src/lib/core/bundle-exposed-and-mappings.ts", - "hash": "16930765278935184658", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-core/src/lib/core/bundle-shared.ts", - "hash": "5364954429924928471", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-core/src/lib/core/default-skip-list.ts", - "hash": "11201906975713851422" - }, - { - "file": "libs/native-federation-core/src/lib/core/federation-builder.ts", - "hash": "10648757218373607148", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-core/src/lib/core/federation-options.ts", - "hash": "14133134840916883007" - }, - { - "file": "libs/native-federation-core/src/lib/core/get-externals.ts", - "hash": "2820082315938240441" - }, - { - "file": "libs/native-federation-core/src/lib/core/load-federation-config.ts", - "hash": "16180984485337399577" - }, - { - "file": "libs/native-federation-core/src/lib/core/write-federation-info.ts", - "hash": "15979897908797302916", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-core/src/lib/core/write-import-map.ts", - "hash": "2946982209827213726", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-core/src/lib/utils/build-result-map.ts", - "hash": "9830997709017265047" - }, - { - "file": "libs/native-federation-core/src/lib/utils/build-utils.ts", - "hash": "8399705909193836581" - }, - { - "file": "libs/native-federation-core/src/lib/utils/copy-src-map-if-exists.ts", - "hash": "11657913662857212790" - }, - { - "file": "libs/native-federation-core/src/lib/utils/hash-file.ts", - "hash": "16763045307826655315" - }, - { - "file": "libs/native-federation-core/src/lib/utils/logger.d.ts", - "hash": "18301826695488441398", - "deps": [ - "npm:npmlog" - ] - }, - { - "file": "libs/native-federation-core/src/lib/utils/logger.js", - "hash": "11926994927920784953", - "deps": [ - "npm:tslib", - "npm:npmlog" - ] - }, - { - "file": "libs/native-federation-core/src/lib/utils/logger.js.map", - "hash": "15248012182180915047" - }, - { - "file": "libs/native-federation-core/src/lib/utils/logger.ts", - "hash": "11342219083407311044", - "deps": [ - "npm:npmlog" - ] - }, - { - "file": "libs/native-federation-core/src/lib/utils/mapped-paths.d.ts", - "hash": "8638712466885998573" - }, - { - "file": "libs/native-federation-core/src/lib/utils/mapped-paths.js", - "hash": "12537251060421077581", - "deps": [ - "npm:tslib", - "npm:json5" - ] - }, - { - "file": "libs/native-federation-core/src/lib/utils/mapped-paths.js.map", - "hash": "1037305775830211945" - }, - { - "file": "libs/native-federation-core/src/lib/utils/mapped-paths.ts", - "hash": "10437434801029501091", - "deps": [ - "npm:json5" - ] - }, - { - "file": "libs/native-federation-core/src/lib/utils/normalize.ts", - "hash": "16868189492124184822" - }, - { - "file": "libs/native-federation-core/src/lib/utils/package-info.ts", - "hash": "13139453281576538297" - }, - { - "file": "libs/native-federation-core/stack.png", - "hash": "16314911600121714361" - }, - { - "file": "libs/native-federation-core/tsconfig.json", - "hash": "5840880287502376438" - }, - { - "file": "libs/native-federation-core/tsconfig.lib.json", - "hash": "2180276950213838822" - }, - { - "file": "libs/native-federation-core/tsconfig.spec.json", - "hash": "11550347367511341917" - } - ], - "native-federation-node": [ - { - "file": "libs/native-federation-node/.eslintrc.json", - "hash": "8543533485919716500" - }, - { - "file": "libs/native-federation-node/README.md", - "hash": "3462688886269188570" - }, - { - "file": "libs/native-federation-node/jest.config.ts", - "hash": "15624575272758145402" - }, - { - "file": "libs/native-federation-node/package.json", - "hash": "14032574807013294784" - }, - { - "file": "libs/native-federation-node/project.json", - "hash": "6119789342679211242" - }, - { - "file": "libs/native-federation-node/src/index.ts", - "hash": "6402075936814518620" - }, - { - "file": "libs/native-federation-node/src/lib/node/init-node-federation.ts", - "hash": "4606732673486783208", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation-node/tsconfig.json", - "hash": "12127065649008555896" - }, - { - "file": "libs/native-federation-node/tsconfig.lib.json", - "hash": "7198590754803779189" - }, - { - "file": "libs/native-federation-node/tsconfig.spec.json", - "hash": "11550347367511341917" - }, - { - "file": "libs/native-federation-node/src/lib/node/federation-resolver.ts.bak", - "hash": "18384387485088228863" - }, - { - "file": "libs/native-federation-node/src/lib/node/import-map-store.ts.bak", - "hash": "14011404869408775243" - }, - { - "file": "libs/native-federation-node/src/lib/utils/import-map-loader.js", - "hash": "3847574142012221696" - }, - { - "file": "libs/native-federation-node/src/lib/utils/loader-as-data-url.js", - "hash": "8823802938156466939" - }, - { - "file": "libs/native-federation-node/build/create-data-url.js", - "hash": "13733155795452932705" - } - ], - "angular-architects": [ - { - "file": ".editorconfig", - "hash": "5443105041930014821" - }, - { - "file": ".eslintignore", - "hash": "7663861978715868291" - }, - { - "file": ".eslintrc.base.json", - "hash": "17910040633970048764" - }, - { - "file": ".eslintrc.json", - "hash": "6866349471558141533" - }, - { - "file": ".github/workflows/ci.yml", - "hash": "17349908036326806432" - }, - { - "file": ".gitignore", - "hash": "11451021753167528831" - }, - { - "file": ".nx/workspace-data/d/server-process.json", - "hash": "9624555267643485828" - }, - { - "file": ".prettierignore", - "hash": "1439052030656726531" - }, - { - "file": ".prettierrc", - "hash": "16267754514737964994" - }, - { - "file": ".verdaccio/config.yml", - "hash": "14993594506392938393" - }, - { - "file": ".vscode/extensions.json", - "hash": "17918173840669689289" - }, - { - "file": ".vscode/settings.json", - "hash": "15487370664303915397" - }, - { - "file": "CHANGELOG.md", - "hash": "13907132854534110412" - }, - { - "file": "LICENSE", - "hash": "7758420778216951569" - }, - { - "file": "README.md", - "hash": "10037793730518408664" - }, - { - "file": "apps/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "error.png", - "hash": "4921821048776472421" - }, - { - "file": "jest.config.ts", - "hash": "12333515226966617182", - "deps": [ - "npm:@nx/jest" - ] - }, - { - "file": "jest.preset.js", - "hash": "2598197396351193289", - "deps": [ - "npm:@nx/jest" - ] - }, - { - "file": "migration-guide-13.md", - "hash": "12945130364490445732" - }, - { - "file": "migration-guide-14.md", - "hash": "17927702698187742749" - }, - { - "file": "migration-guide.md", - "hash": "202716588344322088" - }, - { - "file": "nx.json", - "hash": "14748359716242163413" - }, - { - "file": "package-lock.json", - "hash": "16013161838703171573" - }, - { - "file": "package.json", - "hash": "17082072074933197340", - "deps": [ - "npm:@angular-devkit/build-angular", - "npm:@angular-devkit/core", - "npm:@angular-devkit/schematics", - "npm:@angular-eslint/eslint-plugin", - "npm:@angular-eslint/eslint-plugin-template", - "npm:@angular-eslint/template-parser", - "npm:@angular/cli", - "npm:@angular/compiler-cli", - "npm:@angular/language-service", - "npm:@nx/angular", - "npm:@nx/cypress", - "npm:@nx/devkit", - "npm:@nx/eslint", - "npm:@nx/eslint-plugin", - "npm:@nx/jest", - "npm:@nx/js", - "npm:@nx/node", - "npm:@nx/plugin", - "npm:@nx/webpack", - "npm:@nx/workspace", - "npm:@rollup/plugin-commonjs", - "npm:@rollup/plugin-json", - "npm:@rollup/plugin-node-resolve", - "npm:@rollup/plugin-replace", - "npm:@schematics/angular", - "npm:@swc-node/register", - "npm:@swc/cli", - "npm:@swc/core", - "npm:@swc/helpers", - "npm:@types/browser-sync", - "npm:@types/cross-spawn", - "npm:@types/jest", - "npm:@types/node", - "npm:@types/npmlog", - "npm:@typescript-eslint/eslint-plugin", - "npm:@typescript-eslint/parser", - "npm:@typescript-eslint/utils", - "npm:acorn", - "npm:autoprefixer", - "npm:browser-sync", - "npm:callsite", - "npm:chalk", - "npm:chokidar", - "npm:cross-spawn", - "npm:cypress", - "npm:dotenv", - "npm:esbuild", - "npm:eslint", - "npm:eslint-config-prettier", - "npm:eslint-plugin-cypress", - "npm:jest", - "npm:jest-environment-jsdom", - "npm:jest-environment-node", - "npm:jest-preset-angular", - "npm:json5", - "npm:jsonc-eslint-parser", - "npm:mrmime", - "npm:ng-packagr", - "npm:node-fetch", - "npm:node-watch", - "npm:npmlog", - "npm:nx", - "npm:postcss", - "npm:postcss-import", - "npm:postcss-preset-env", - "npm:postcss-url", - "npm:pre-commit", - "npm:prettier", - "npm:rollup", - "npm:rollup-plugin-esbuild", - "npm:rollup-plugin-node-externals", - "npm:semver", - "npm:ts-jest", - "npm:ts-node", - "npm:tslib", - "npm:typescript", - "npm:verdaccio", - "npm:word-wrap", - "npm:@angular/animations", - "npm:@angular/common", - "npm:@angular/compiler", - "npm:@angular/core", - "npm:@angular/forms", - "npm:@angular/platform-browser", - "npm:@angular/platform-browser-dynamic", - "npm:@angular/router", - "npm:@module-federation/vite", - "npm:es-module-shims", - "npm:rxjs", - "npm:zone.js" - ] - }, - { - "file": "project.json", - "hash": "7711931737647048273" - }, - { - "file": "serve.js", - "hash": "433569147566244492", - "deps": [ - "npm:node-watch", - "npm:cross-spawn", - "npm:browser-sync" - ] - }, - { - "file": "tools/scripts/publish-utils.mjs", - "hash": "1125301969447031849", - "deps": [ - "npm:@nx/devkit", - "npm:chalk" - ] - }, - { - "file": "tools/scripts/publish.mjs", - "hash": "5057422669076497052", - "deps": [ - "npm:chalk" - ] - }, - { - "file": "tools/scripts/start-local-registry.ts", - "hash": "4635278801949197836", - "deps": [ - "npm:@nx/js", - "npm:nx" - ] - }, - { - "file": "tools/scripts/stop-local-registry.ts", - "hash": "11981317189752518388" - }, - { - "file": "tsconfig.base.json", - "hash": "10824370820702110208" - }, - { - "file": "update-local-mf.bat", - "hash": "7794625824132130727" - }, - { - "file": "update-local-nf.sh", - "hash": "10836544763897318353" - } - ], - "playground-e2e": [ - { - "file": "apps/playground-e2e/.eslintrc.json", - "hash": "15523834149352881398" - }, - { - "file": "apps/playground-e2e/cypress.json", - "hash": "2945068408340533698" - }, - { - "file": "apps/playground-e2e/project.json", - "hash": "5916162116066215731" - }, - { - "file": "apps/playground-e2e/src/fixtures/example.json", - "hash": "11614668686582597233" - }, - { - "file": "apps/playground-e2e/src/integration/app.spec.ts", - "hash": "7993232265068544918" - }, - { - "file": "apps/playground-e2e/src/plugins/index.js", - "hash": "1870053236038166983", - "deps": [ - "npm:@nx/cypress" - ] - }, - { - "file": "apps/playground-e2e/src/support/app.po.ts", - "hash": "11157016311132186162" - }, - { - "file": "apps/playground-e2e/src/support/commands.ts", - "hash": "7314691991044890572" - }, - { - "file": "apps/playground-e2e/src/support/index.ts", - "hash": "3666078656922506009" - }, - { - "file": "apps/playground-e2e/tsconfig.e2e.json", - "hash": "3552469080385459243" - }, - { - "file": "apps/playground-e2e/tsconfig.json", - "hash": "4500232260948002331" - } - ], - "mf-runtime": [ - { - "file": "libs/mf-runtime/.eslintrc.json", - "hash": "175195115239913026" - }, - { - "file": "libs/mf-runtime/LICENSE", - "hash": "7758420778216951569" - }, - { - "file": "libs/mf-runtime/README.md", - "hash": "12412615036262105308" - }, - { - "file": "libs/mf-runtime/jest.config.ts", - "hash": "9612740952625502688" - }, - { - "file": "libs/mf-runtime/ng-package.json", - "hash": "4763704790623561565" - }, - { - "file": "libs/mf-runtime/package.json", - "hash": "7602326703449532856", - "deps": [ - "npm:@angular/common", - "npm:@angular/core", - "npm:tslib" - ] - }, - { - "file": "libs/mf-runtime/project.json", - "hash": "13627132991519231411" - }, - { - "file": "libs/mf-runtime/src/index.ts", - "hash": "12492760458959359382" - }, - { - "file": "libs/mf-runtime/src/lib/loader/dynamic-federation.ts", - "hash": "3075543386323356510" - }, - { - "file": "libs/mf-runtime/src/lib/loader/webpack-runtime-api.d.ts", - "hash": "3156326977014599294" - }, - { - "file": "libs/mf-runtime/src/test-setup.ts", - "hash": "12935735732682149507", - "deps": [ - "npm:jest-preset-angular" - ] - }, - { - "file": "libs/mf-runtime/tsconfig.json", - "hash": "3499000021037492296" - }, - { - "file": "libs/mf-runtime/tsconfig.lib.json", - "hash": "5796668385415907511" - }, - { - "file": "libs/mf-runtime/tsconfig.lib.prod.json", - "hash": "174503844014784742" - }, - { - "file": "libs/mf-runtime/tsconfig.spec.json", - "hash": "2927375835638640771" - } - ], - "mfe1-e2e": [ - { - "file": "apps/mfe1-e2e/.eslintrc.json", - "hash": "15523834149352881398" - }, - { - "file": "apps/mfe1-e2e/cypress.json", - "hash": "8610955834233359644" - }, - { - "file": "apps/mfe1-e2e/project.json", - "hash": "619490513352918983" - }, - { - "file": "apps/mfe1-e2e/src/fixtures/example.json", - "hash": "11614668686582597233" - }, - { - "file": "apps/mfe1-e2e/src/integration/app.spec.ts", - "hash": "12393137190670595399" - }, - { - "file": "apps/mfe1-e2e/src/plugins/index.js", - "hash": "1870053236038166983", - "deps": [ - "npm:@nx/cypress" - ] - }, - { - "file": "apps/mfe1-e2e/src/support/app.po.ts", - "hash": "11157016311132186162" - }, - { - "file": "apps/mfe1-e2e/src/support/commands.ts", - "hash": "7314691991044890572" - }, - { - "file": "apps/mfe1-e2e/src/support/index.ts", - "hash": "9968213533773113880" - }, - { - "file": "apps/mfe1-e2e/tsconfig.json", - "hash": "17327834683392158647" - } - ], - "native-federation-e2e": [ - { - "file": "apps/native-federation-e2e/.eslintrc.json", - "hash": "942885824144343268" - }, - { - "file": "apps/native-federation-e2e/jest.config.ts", - "hash": "12996487241931656480" - }, - { - "file": "apps/native-federation-e2e/project.json", - "hash": "14943264082822272509" - }, - { - "file": "apps/native-federation-e2e/tests/native-federation.spec.ts", - "hash": "10443255764158200437", - "deps": [ - "npm:@nx/plugin" - ] - }, - { - "file": "apps/native-federation-e2e/tsconfig.json", - "hash": "4138663062042646066" - }, - { - "file": "apps/native-federation-e2e/tsconfig.spec.json", - "hash": "11550347367511341917" - } - ], - "native-federation": [ - { - "file": "libs/native-federation/.eslintrc.json", - "hash": "13512530575173493193" - }, - { - "file": "libs/native-federation/LICENSE", - "hash": "7758420778216951569" - }, - { - "file": "libs/native-federation/README.md", - "hash": "13537271861732708750" - }, - { - "file": "libs/native-federation/builders.json", - "hash": "18430679548004919998" - }, - { - "file": "libs/native-federation/collection.json", - "hash": "5027090635351726257" - }, - { - "file": "libs/native-federation/config.ts", - "hash": "16033633128888950320" - }, - { - "file": "libs/native-federation/docs/migrate.md", - "hash": "5157343858682760519" - }, - { - "file": "libs/native-federation/docs/share-faq.md", - "hash": "4467797737980067962" - }, - { - "file": "libs/native-federation/docs/update18.md", - "hash": "18166381890924451654" - }, - { - "file": "libs/native-federation/example.png", - "hash": "6556712668095050157" - }, - { - "file": "libs/native-federation/executors.json", - "hash": "8477065115816206143" - }, - { - "file": "libs/native-federation/generators.json", - "hash": "3274101171299636907" - }, - { - "file": "libs/native-federation/jest.config.ts", - "hash": "8071692576569058933" - }, - { - "file": "libs/native-federation/migrate-appbuilder.md", - "hash": "10325754656804810736" - }, - { - "file": "libs/native-federation/migration-collection.json", - "hash": "699580835525146387" - }, - { - "file": "libs/native-federation/package.json", - "hash": "18236942736760243086", - "deps": [ - "npm:@babel/core", - "native-federation-core", - "native-federation-runtime", - "npm:@types/browser-sync", - "npm:browser-sync", - "npm:esbuild", - "npm:mrmime", - "npm:npmlog", - "npm:process" - ] - }, - { - "file": "libs/native-federation/post-build.js", - "hash": "2604888089828899771" - }, - { - "file": "libs/native-federation/project.json", - "hash": "12770997268013303663" - }, - { - "file": "libs/native-federation/src/builders/build/builder.ts", - "hash": "16273367508097196842", - "deps": [ - "npm:mrmime", - "npm:@angular/build", - "npm:@angular-devkit/architect", - "npm:@angular-devkit/build-angular", - "native-federation-core", - "npm:@angular-devkit/core", - "npm:esbuild", - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation/src/builders/build/schema.d.ts", - "hash": "17965003766073454350", - "deps": [ - "npm:@angular-devkit/core", - "npm:es-module-shims" - ] - }, - { - "file": "libs/native-federation/src/builders/build/schema.json", - "hash": "10665191052693178270" - }, - { - "file": "libs/native-federation/src/builders/serve/builder.ts.bak", - "hash": "1008944657339764328" - }, - { - "file": "libs/native-federation/src/builders/serve/schema.json.bak", - "hash": "5698839761258322934" - }, - { - "file": "libs/native-federation/src/config.ts", - "hash": "3063405283952219036", - "deps": [ - "native-federation-core" - ] - }, - { - "file": "libs/native-federation/src/executors/build/executor.spec.ts", - "hash": "150297841976895364" - }, - { - "file": "libs/native-federation/src/executors/build/executor.ts", - "hash": "13975518423544778144" - }, - { - "file": "libs/native-federation/src/executors/build/schema.d.ts", - "hash": "17922418242936369517" - }, - { - "file": "libs/native-federation/src/executors/build/schema.json", - "hash": "15261243041175593186" - }, - { - "file": "libs/native-federation/src/generators/native-federation/files/src/index.ts__template__", - "hash": "12182040164740174869" - }, - { - "file": "libs/native-federation/src/generators/native-federation/generator.spec.ts", - "hash": "6779228167731980538", - "deps": [ - "npm:@nx/devkit" - ] - }, - { - "file": "libs/native-federation/src/generators/native-federation/generator.ts", - "hash": "1751931467118405122", - "deps": [ - "npm:@nx/devkit" - ] - }, - { - "file": "libs/native-federation/src/generators/native-federation/schema.d.ts", - "hash": "11653935308082428381" - }, - { - "file": "libs/native-federation/src/generators/native-federation/schema.json", - "hash": "16726087959595393817" - }, - { - "file": "libs/native-federation/src/index.ts", - "hash": "11205332278489509743", - "deps": [ - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation/src/patch-angular-build.ts", - "hash": "15439134822903826033" - }, - { - "file": "libs/native-federation/src/plugin/dev-externals-mixin.ts", - "hash": "11369102446635527831", - "deps": [ - "native-federation-core" - ] - }, - { - "file": "libs/native-federation/src/plugin/externals-skip-list.ts", - "hash": "1757544626396203511" - }, - { - "file": "libs/native-federation/src/plugin/index.ts", - "hash": "14441316182953850781", - "deps": [ - "npm:mrmime", - "native-federation-core", - "native-federation-runtime" - ] - }, - { - "file": "libs/native-federation/src/schematics/appbuilder/schema.d.ts", - "hash": "8786545951171042064" - }, - { - "file": "libs/native-federation/src/schematics/appbuilder/schema.json", - "hash": "2663907982125171479" - }, - { - "file": "libs/native-federation/src/schematics/appbuilder/schematic.ts", - "hash": "8822542153069134797", - "deps": [ - "npm:@angular-devkit/schematics" - ] - }, - { - "file": "libs/native-federation/src/schematics/init/files/federation.config.js__tmpl__", - "hash": "11121434622361890823" - }, - { - "file": "libs/native-federation/src/schematics/init/schema.d.ts", - "hash": "7934898858173717407" - }, - { - "file": "libs/native-federation/src/schematics/init/schema.json", - "hash": "12873990551767335182" - }, - { - "file": "libs/native-federation/src/schematics/init/schematic.ts", - "hash": "16894400278645953762", - "deps": [ - "npm:@angular-devkit/schematics", - "npm:@angular-devkit/core", - "npm:@schematics/angular" - ] - }, - { - "file": "libs/native-federation/src/schematics/remove/schema.d.ts", - "hash": "8786545951171042064" - }, - { - "file": "libs/native-federation/src/schematics/remove/schema.json", - "hash": "2663907982125171479" - }, - { - "file": "libs/native-federation/src/schematics/remove/schematic.ts", - "hash": "17008578818185320417", - "deps": [ - "npm:@angular-devkit/schematics" - ] - }, - { - "file": "libs/native-federation/src/schematics/update18/schema.json", - "hash": "3930707620884556402" - }, - { - "file": "libs/native-federation/src/schematics/update18/schematic.ts", - "hash": "3100296914799428707", - "deps": [ - "npm:@angular-devkit/schematics" - ] - }, - { - "file": "libs/native-federation/src/utils/angular-esbuild-adapter.ts", - "hash": "16121101424044823706", - "deps": [ - "native-federation-core", - "npm:esbuild", - "npm:@angular/build", - "npm:@angular-devkit/architect", - "npm:@angular-devkit/build-angular", - "npm:@babel/core", - "npm:json5" - ] - }, - { - "file": "libs/native-federation/src/utils/create-compiler-options.ts", - "hash": "16839830046297452778" - }, - { - "file": "libs/native-federation/src/utils/dev-server.ts", - "hash": "9093857060866342524", - "deps": [ - "npm:browser-sync", - "npm:mrmime" - ] - }, - { - "file": "libs/native-federation/src/utils/event-sorce.ts", - "hash": "13366590456660719786" - }, - { - "file": "libs/native-federation/src/utils/mem-resuts.ts", - "hash": "9556576696909391872", - "deps": [ - "npm:esbuild" - ] - }, - { - "file": "libs/native-federation/src/utils/patch-angular-build.ts", - "hash": "12847134559856588919" - }, - { - "file": "libs/native-federation/src/utils/rebuild-events.ts", - "hash": "9484301730251726771" - }, - { - "file": "libs/native-federation/src/utils/rollup.ts.bak", - "hash": "10872609531589763400" - }, - { - "file": "libs/native-federation/src/utils/rollup.ts.bak.bak", - "hash": "10872609531589763400" - }, - { - "file": "libs/native-federation/src/utils/shared-mappings-plugin.ts", - "hash": "12456398800041070536", - "deps": [ - "npm:esbuild", - "native-federation-core" - ] - }, - { - "file": "libs/native-federation/src/utils/updateIndexHtml.ts", - "hash": "399172373906215812", - "deps": [ - "native-federation-core" - ] - }, - { - "file": "libs/native-federation/tsconfig.json", - "hash": "14535644298105536286" - }, - { - "file": "libs/native-federation/tsconfig.lib.json", - "hash": "6318426813308796910" - }, - { - "file": "libs/native-federation/tsconfig.spec.json", - "hash": "8920410197173302166" - } - ], - "mf": [ - { - "file": "libs/mf/.babelrc", - "hash": "1185090046784686875" - }, - { - "file": "libs/mf/.eslintrc.json", - "hash": "13512530575173493193" - }, - { - "file": "libs/mf/LICENSE", - "hash": "7758420778216951569" - }, - { - "file": "libs/mf/README.md", - "hash": "12077762083838223537" - }, - { - "file": "libs/mf/builders.json", - "hash": "7593972920689544306" - }, - { - "file": "libs/mf/collection.json", - "hash": "2522246912433136903" - }, - { - "file": "libs/mf/executors.json", - "hash": "8477065115816206143" - }, - { - "file": "libs/mf/generators.json", - "hash": "13318963426103431003" - }, - { - "file": "libs/mf/jest.config.ts", - "hash": "10318224422677485542" - }, - { - "file": "libs/mf/nguniversal.ts", - "hash": "2993995579629484835" - }, - { - "file": "libs/mf/package.json", - "hash": "9548304482094986218", - "deps": [ - "mf-runtime", - "npm:word-wrap", - "npm:callsite", - "npm:node-fetch", - "npm:semver" - ] - }, - { - "file": "libs/mf/post-build.js", - "hash": "13993696094824542288" - }, - { - "file": "libs/mf/project.json", - "hash": "8852843751303712190" - }, - { - "file": "libs/mf/src/builders/build/builder.ts", - "hash": "12839483563996536097", - "deps": [ - "npm:@angular-devkit/architect", - "npm:rxjs" - ] - }, - { - "file": "libs/mf/src/builders/build/schema.d.ts", - "hash": "2789917978867272393", - "deps": [ - "npm:@angular-devkit/core" - ] - }, - { - "file": "libs/mf/src/builders/build/schema.json", - "hash": "13873810958118613548" - }, - { - "file": "libs/mf/src/executors/build/executor.spec.ts", - "hash": "14357623371195888682" - }, - { - "file": "libs/mf/src/executors/build/executor.ts", - "hash": "11841628902852102175" - }, - { - "file": "libs/mf/src/executors/build/schema.d.ts", - "hash": "17922418242936369517" - }, - { - "file": "libs/mf/src/executors/build/schema.json", - "hash": "15261243041175593186" - }, - { - "file": "libs/mf/src/generators/mf/files/src/index.ts__template__", - "hash": "12182040164740174869" - }, - { - "file": "libs/mf/src/generators/mf/generator.spec.ts", - "hash": "15525094002045902311", - "deps": [ - "npm:@nx/devkit" - ] - }, - { - "file": "libs/mf/src/generators/mf/generator.ts", - "hash": "7707988815082480119", - "deps": [ - "npm:@nx/devkit" - ] - }, - { - "file": "libs/mf/src/generators/mf/schema.d.ts", - "hash": "6198845997533523295" - }, - { - "file": "libs/mf/src/generators/mf/schema.json", - "hash": "5916442621771560667" - }, - { - "file": "libs/mf/src/index.ts", - "hash": "17129055320640037376", - "deps": [ - "mf-runtime" - ] - }, - { - "file": "libs/mf/src/nguniversal.ts", - "hash": "13954908387037707825" - }, - { - "file": "libs/mf/src/schematics/boot-async/schema.d.ts", - "hash": "6537114070884317618" - }, - { - "file": "libs/mf/src/schematics/boot-async/schema.json", - "hash": "8924774527231022367" - }, - { - "file": "libs/mf/src/schematics/boot-async/schematic.ts", - "hash": "4773555567716317633", - "deps": [ - "npm:rxjs", - "npm:@angular-devkit/schematics" - ] - }, - { - "file": "libs/mf/src/schematics/mf/files/webpack.config.js__tmpl__", - "hash": "2902053011616778981" - }, - { - "file": "libs/mf/src/schematics/mf/prod-config.ts", - "hash": "14372158448647502739" - }, - { - "file": "libs/mf/src/schematics/mf/schema.d.ts", - "hash": "10017039639976457441" - }, - { - "file": "libs/mf/src/schematics/mf/schema.json", - "hash": "17331294571544221212" - }, - { - "file": "libs/mf/src/schematics/mf/schematic.ts", - "hash": "11749611592444662945", - "deps": [ - "npm:@angular-devkit/schematics", - "npm:@angular-devkit/core", - "npm:json5", - "npm:semver", - "npm:@schematics/angular" - ] - }, - { - "file": "libs/mf/src/schematics/migrate-to-13/schema.d.ts", - "hash": "6537114070884317618" - }, - { - "file": "libs/mf/src/schematics/migrate-to-13/schema.json", - "hash": "3930707620884556402" - }, - { - "file": "libs/mf/src/schematics/migrate-to-13/schematic.ts", - "hash": "17572225284027086881", - "deps": [ - "npm:@angular-devkit/schematics" - ] - }, - { - "file": "libs/mf/src/schematics/migrate-to-14-3/schema.d.ts", - "hash": "8518900964489847873" - }, - { - "file": "libs/mf/src/schematics/migrate-to-14-3/schema.json", - "hash": "3930707620884556402" - }, - { - "file": "libs/mf/src/schematics/migrate-to-14-3/schematic.ts", - "hash": "16679559621930804400", - "deps": [ - "npm:@angular-devkit/schematics", - "npm:@schematics/angular" - ] - }, - { - "file": "libs/mf/src/schematics/nguniversal/schema.d.ts", - "hash": "2289304306867129814" - }, - { - "file": "libs/mf/src/schematics/nguniversal/schema.json", - "hash": "2663907982125171479" - }, - { - "file": "libs/mf/src/schematics/nguniversal/schematic.ts", - "hash": "14370622245120216170", - "deps": [ - "npm:@angular-devkit/schematics" - ] - }, - { - "file": "libs/mf/src/schematics/remove/schema.d.ts", - "hash": "12843678536116440589" - }, - { - "file": "libs/mf/src/schematics/remove/schema.json", - "hash": "319129010396344041" - }, - { - "file": "libs/mf/src/schematics/remove/schematic.ts", - "hash": "5133425674291401448", - "deps": [ - "npm:rxjs", - "npm:@angular-devkit/schematics" - ] - }, - { - "file": "libs/mf/src/server/colors.ts", - "hash": "9158618595259076348", - "deps": [ - "npm:chalk", - "npm:word-wrap" - ] - }, - { - "file": "libs/mf/src/server/index.ts", - "hash": "9068058999538770984" - }, - { - "file": "libs/mf/src/server/mf-dev-build-server.ts.bak", - "hash": "13457089513672844338" - }, - { - "file": "libs/mf/src/server/mf-dev-server.ts", - "hash": "16156868348211976228" - }, - { - "file": "libs/mf/src/server/task-queue.ts", - "hash": "14488235738588909434" - }, - { - "file": "libs/mf/src/server/tsconfig.json.bak", - "hash": "5615234166811910528" - }, - { - "file": "libs/mf/src/server/workspace.ts", - "hash": "13490573396718177299" - }, - { - "file": "libs/mf/src/universal/create-fetch.ts", - "hash": "6536139096603114816", - "deps": [ - "npm:node-fetch" - ] - }, - { - "file": "libs/mf/src/utils/create-config.ts", - "hash": "16018616927804527430", - "deps": [ - "npm:@angular-devkit/core" - ] - }, - { - "file": "libs/mf/src/utils/decl.d.ts", - "hash": "15630202611681815608" - }, - { - "file": "libs/mf/src/utils/modify-entry-plugin.ts", - "hash": "6063765617186155549" - }, - { - "file": "libs/mf/src/utils/share-utils.ts", - "hash": "12609381586772593763" - }, - { - "file": "libs/mf/src/utils/shared-mappings.ts", - "hash": "8873168137256387222", - "deps": [ - "npm:webpack", - "npm:json5" - ] - }, - { - "file": "libs/mf/src/utils/webpack.types.ts", - "hash": "4240802696222745781" - }, - { - "file": "libs/mf/src/utils/with-mf-plugin.ts", - "hash": "8429743818094557793", - "deps": [ - "npm:webpack" - ] - }, - { - "file": "libs/mf/src/webpack.ts", - "hash": "2158126450974934311" - }, - { - "file": "libs/mf/tsconfig.json", - "hash": "14992986858630247925" - }, - { - "file": "libs/mf/tsconfig.lib.json", - "hash": "3632393694954060084" - }, - { - "file": "libs/mf/tsconfig.spec.json", - "hash": "11550347367511341917" - }, - { - "file": "libs/mf/tutorial/.vscode/settings.json", - "hash": "12693258718958149204" - }, - { - "file": "libs/mf/tutorial/braindump-ssr.md", - "hash": "16697378097099022447" - }, - { - "file": "libs/mf/tutorial/mfe1.png", - "hash": "3027359933752069208" - }, - { - "file": "libs/mf/tutorial/result.png", - "hash": "14500411092722581143" - }, - { - "file": "libs/mf/tutorial/shell.png", - "hash": "8824622074420130149" - }, - { - "file": "libs/mf/tutorial/tutorial.md", - "hash": "7492546837301857147" - }, - { - "file": "libs/mf/webpack.ts", - "hash": "13593782947861866215" - } - ], - "mf-tools": [ - { - "file": "libs/mf-tools/.eslintrc.json", - "hash": "175195115239913026" - }, - { - "file": "libs/mf-tools/.vscode/settings.json", - "hash": "12693258718958149204" - }, - { - "file": "libs/mf-tools/.vscode/spellright.dict", - "hash": "3244421341483603138" - }, - { - "file": "libs/mf-tools/LICENSE", - "hash": "7758420778216951569" - }, - { - "file": "libs/mf-tools/README.md", - "hash": "5440793822835972244" - }, - { - "file": "libs/mf-tools/img/example.png", - "hash": "1566809714281274272" - }, - { - "file": "libs/mf-tools/jest.config.ts", - "hash": "13467769495205896344" - }, - { - "file": "libs/mf-tools/ng-package.json", - "hash": "14691658733956357199" - }, - { - "file": "libs/mf-tools/package.json", - "hash": "10469931137816693458", - "deps": [ - "npm:tslib" - ] - }, - { - "file": "libs/mf-tools/project.json", - "hash": "10421271103490957239" - }, - { - "file": "libs/mf-tools/src/index.ts", - "hash": "13048565832343884500" - }, - { - "file": "libs/mf-tools/src/lib/mf-tools.module.ts", - "hash": "17327201765062531293", - "deps": [ - "npm:@angular/core", - "npm:@angular/common" - ] - }, - { - "file": "libs/mf-tools/src/lib/utils/global-state.ts", - "hash": "16917954676084587166" - }, - { - "file": "libs/mf-tools/src/lib/web-components/bootstrap-utils.ts", - "hash": "7160773842118780085", - "deps": [ - "npm:@angular/core", - "npm:@angular/platform-browser", - "npm:@angular/router" - ] - }, - { - "file": "libs/mf-tools/src/lib/web-components/router-utils.ts", - "hash": "12992978891012721435", - "deps": [ - "npm:@angular/router" - ] - }, - { - "file": "libs/mf-tools/src/lib/web-components/web-component-wrapper.ts", - "hash": "1697960798188886742", - "deps": [ - "npm:@angular/core", - "npm:@angular/router", - "mf-runtime" - ] - }, - { - "file": "libs/mf-tools/src/test-setup.ts", - "hash": "12935735732682149507", - "deps": [ - "npm:jest-preset-angular" - ] - }, - { - "file": "libs/mf-tools/tsconfig.json", - "hash": "3499000021037492296" - }, - { - "file": "libs/mf-tools/tsconfig.lib.json", - "hash": "5796668385415907511" - }, - { - "file": "libs/mf-tools/tsconfig.lib.prod.json", - "hash": "174503844014784742" - }, - { - "file": "libs/mf-tools/tsconfig.spec.json", - "hash": "2927375835638640771" - }, - { - "file": "libs/mf-tools/tutorial/index.md", - "hash": "3728310032566731778" - } - ], - "native-federation-esbuild": [ - { - "file": "libs/native-federation-esbuild/.eslintrc.json", - "hash": "13512530575173493193" - }, - { - "file": "libs/native-federation-esbuild/LICENSE", - "hash": "7758420778216951569" - }, - { - "file": "libs/native-federation-esbuild/README.md", - "hash": "16068891872479171634" - }, - { - "file": "libs/native-federation-esbuild/jest.config.ts", - "hash": "147394353665443865" - }, - { - "file": "libs/native-federation-esbuild/package.json", - "hash": "10806330397783010221", - "deps": [ - "npm:@rollup/plugin-commonjs", - "npm:@rollup/plugin-node-resolve", - "npm:@rollup/plugin-replace", - "npm:rollup", - "npm:rollup-plugin-node-externals", - "npm:esbuild", - "npm:npmlog", - "npm:acorn" - ] - }, - { - "file": "libs/native-federation-esbuild/project.json", - "hash": "15186225820218134948" - }, - { - "file": "libs/native-federation-esbuild/src/index.ts", - "hash": "11973907381702119158" - }, - { - "file": "libs/native-federation-esbuild/src/lib/adapter.ts", - "hash": "13922891418032091864", - "deps": [ - "native-federation-core", - "npm:esbuild", - "npm:rollup", - "npm:@rollup/plugin-node-resolve", - "npm:rollup-plugin-node-externals", - "npm:@rollup/plugin-commonjs", - "npm:@rollup/plugin-replace" - ] - }, - { - "file": "libs/native-federation-esbuild/src/lib/collect-exports.ts", - "hash": "12543194919060196888", - "deps": [ - "npm:acorn" - ] - }, - { - "file": "libs/native-federation-esbuild/src/lib/react-replacements.ts", - "hash": "209095427575543275" - }, - { - "file": "libs/native-federation-esbuild/tsconfig.json", - "hash": "14992986858630247925" - }, - { - "file": "libs/native-federation-esbuild/tsconfig.lib.json", - "hash": "3632393694954060084" - }, - { - "file": "libs/native-federation-esbuild/tsconfig.spec.json", - "hash": "11550347367511341917" - } - ], - "mfe2": [ - { - "file": "apps/mfe2/.eslintrc.json", - "hash": "251138097496990787" - }, - { - "file": "apps/mfe2/federation.config.js", - "hash": "13185245147823609739" - }, - { - "file": "apps/mfe2/jest.config.ts", - "hash": "944477510652896822" - }, - { - "file": "apps/mfe2/project.json", - "hash": "12789757561990652785" - }, - { - "file": "apps/mfe2/src/app/app.component.css", - "hash": "3244421341483603138" - }, - { - "file": "apps/mfe2/src/app/app.component.html", - "hash": "10199512307611283904" - }, - { - "file": "apps/mfe2/src/app/app.component.spec.ts", - "hash": "9352951585666413733", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "apps/mfe2/src/app/app.component.ts", - "hash": "6801944026371039035", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "apps/mfe2/src/app/app.module.ts", - "hash": "10808297843432252648", - "deps": [ - "npm:@angular/core", - "npm:@angular/platform-browser" - ] - }, - { - "file": "apps/mfe2/src/app/nx-welcome.component.ts", - "hash": "829139521680489143", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "apps/mfe2/src/assets/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "apps/mfe2/src/assets/federation.manifest.json", - "hash": "16991730270574296955" - }, - { - "file": "apps/mfe2/src/bootstrap.ts", - "hash": "14896519517424602606", - "deps": [ - "npm:@angular/core", - "npm:@angular/platform-browser-dynamic" - ] - }, - { - "file": "apps/mfe2/src/environments/environment.prod.ts", - "hash": "10220522844224226756" - }, - { - "file": "apps/mfe2/src/environments/environment.ts", - "hash": "15801694716951284069" - }, - { - "file": "apps/mfe2/src/favicon.ico", - "hash": "9303420814833116677" - }, - { - "file": "apps/mfe2/src/index.html", - "hash": "10961492183090206913" - }, - { - "file": "apps/mfe2/src/main.ts", - "hash": "5498950677881426904", - "deps": [ - "native-federation" - ] - }, - { - "file": "apps/mfe2/src/polyfills.ts", - "hash": "8729394742574665793", - "deps": [ - "npm:zone.js", - "npm:es-module-shims" - ] - }, - { - "file": "apps/mfe2/src/styles.css", - "hash": "5195668842064076916" - }, - { - "file": "apps/mfe2/src/test-setup.ts", - "hash": "17711435995618823417", - "deps": [ - "npm:jest-preset-angular" - ] - }, - { - "file": "apps/mfe2/tsconfig.app.json", - "hash": "6569194456818436848" - }, - { - "file": "apps/mfe2/tsconfig.editor.json", - "hash": "6367495026318685054" - }, - { - "file": "apps/mfe2/tsconfig.json", - "hash": "17981161305287108769" - }, - { - "file": "apps/mfe2/tsconfig.spec.json", - "hash": "6658172359945877284" - } - ], - "native-federation-runtime": [ - { - "file": "libs/native-federation-runtime/.eslintrc.json", - "hash": "175195115239913026" - }, - { - "file": "libs/native-federation-runtime/LICENSE", - "hash": "7758420778216951569" - }, - { - "file": "libs/native-federation-runtime/README.md", - "hash": "14920532763820892928" - }, - { - "file": "libs/native-federation-runtime/jest.config.ts", - "hash": "3331688691708508943" - }, - { - "file": "libs/native-federation-runtime/ng-package.json", - "hash": "391636886085952891" - }, - { - "file": "libs/native-federation-runtime/package-lock.json", - "hash": "10131443217904763515" - }, - { - "file": "libs/native-federation-runtime/package.json", - "hash": "10558582854319893680" - }, - { - "file": "libs/native-federation-runtime/project.json", - "hash": "1960215352545257159" - }, - { - "file": "libs/native-federation-runtime/src/index.ts", - "hash": "11733051184005261876" - }, - { - "file": "libs/native-federation-runtime/src/lib/init-federation.ts", - "hash": "12605124436315247777" - }, - { - "file": "libs/native-federation-runtime/src/lib/load-remote-module.ts", - "hash": "18105934201798273343" - }, - { - "file": "libs/native-federation-runtime/src/lib/model/externals.ts", - "hash": "3354952666390859813" - }, - { - "file": "libs/native-federation-runtime/src/lib/model/federation-info.ts", - "hash": "15492652515816973011" - }, - { - "file": "libs/native-federation-runtime/src/lib/model/global-cache.ts", - "hash": "15192209624734190066" - }, - { - "file": "libs/native-federation-runtime/src/lib/model/import-map.ts", - "hash": "2937215898793350094" - }, - { - "file": "libs/native-federation-runtime/src/lib/model/remotes.ts", - "hash": "16606985014331254739" - }, - { - "file": "libs/native-federation-runtime/src/lib/test-setup.ts", - "hash": "12935735732682149507", - "deps": [ - "npm:jest-preset-angular" - ] - }, - { - "file": "libs/native-federation-runtime/src/lib/utils/add-import-map.ts", - "hash": "10185423321876014274" - }, - { - "file": "libs/native-federation-runtime/src/lib/utils/path-utils.ts", - "hash": "12184303916163369946" - }, - { - "file": "libs/native-federation-runtime/src/test-setup.ts", - "hash": "17711435995618823417", - "deps": [ - "npm:jest-preset-angular" - ] - }, - { - "file": "libs/native-federation-runtime/tsconfig.json", - "hash": "1658695516121167781" - }, - { - "file": "libs/native-federation-runtime/tsconfig.lib.json", - "hash": "5796668385415907511" - }, - { - "file": "libs/native-federation-runtime/tsconfig.lib.prod.json", - "hash": "174503844014784742" - }, - { - "file": "libs/native-federation-runtime/tsconfig.spec.json", - "hash": "2927375835638640771" - } - ], - "mfe1": [ - { - "file": "apps/mfe1/.eslintrc.json", - "hash": "251138097496990787" - }, - { - "file": "apps/mfe1/federation.config.js", - "hash": "11726088002829403721" - }, - { - "file": "apps/mfe1/jest.config.ts", - "hash": "13764996843634799987" - }, - { - "file": "apps/mfe1/project.json", - "hash": "12895201311906322038" - }, - { - "file": "apps/mfe1/src/app/app.component.css", - "hash": "3244421341483603138" - }, - { - "file": "apps/mfe1/src/app/app.component.html", - "hash": "10199512307611283904" - }, - { - "file": "apps/mfe1/src/app/app.component.spec.ts", - "hash": "6911117535540321767", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "apps/mfe1/src/app/app.component.ts", - "hash": "7992352070778668639", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "apps/mfe1/src/app/app.module.ts", - "hash": "744499547650684053", - "deps": [ - "npm:@angular/core", - "npm:@angular/platform-browser" - ] - }, - { - "file": "apps/mfe1/src/app/demo/demo.component.css", - "hash": "1016755280149560935" - }, - { - "file": "apps/mfe1/src/app/demo/demo.component.html", - "hash": "6559933493931435071" - }, - { - "file": "apps/mfe1/src/app/demo/demo.component.spec.ts", - "hash": "9722799810656735432", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "apps/mfe1/src/app/demo/demo.component.ts", - "hash": "16148017430358684987", - "deps": [ - "playground-lib", - "npm:@angular/common", - "npm:@angular/core" - ] - }, - { - "file": "apps/mfe1/src/app/nx-welcome.component.ts", - "hash": "5245851637923571264", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "apps/mfe1/src/assets/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "apps/mfe1/src/bootstrap.ts", - "hash": "14896519517424602606", - "deps": [ - "npm:@angular/core", - "npm:@angular/platform-browser-dynamic" - ] - }, - { - "file": "apps/mfe1/src/environments/environment.prod.ts", - "hash": "10220522844224226756" - }, - { - "file": "apps/mfe1/src/environments/environment.ts", - "hash": "15801694716951284069" - }, - { - "file": "apps/mfe1/src/favicon.ico", - "hash": "9303420814833116677" - }, - { - "file": "apps/mfe1/src/index.html", - "hash": "9136879220843058673" - }, - { - "file": "apps/mfe1/src/main.ts", - "hash": "2147724939352774111", - "deps": [ - "native-federation" - ] - }, - { - "file": "apps/mfe1/src/polyfills.ts", - "hash": "5753337927676035656", - "deps": [ - "npm:zone.js", - "npm:es-module-shims" - ] - }, - { - "file": "apps/mfe1/src/styles.css", - "hash": "5195668842064076916" - }, - { - "file": "apps/mfe1/src/test-setup.ts", - "hash": "17711435995618823417", - "deps": [ - "npm:jest-preset-angular" - ] - }, - { - "file": "apps/mfe1/tsconfig.app.json", - "hash": "6569194456818436848" - }, - { - "file": "apps/mfe1/tsconfig.editor.json", - "hash": "6367495026318685054" - }, - { - "file": "apps/mfe1/tsconfig.json", - "hash": "17981161305287108769" - }, - { - "file": "apps/mfe1/tsconfig.spec.json", - "hash": "6658172359945877284" - } - ], - "mfe2-e2e": [ - { - "file": "apps/mfe2-e2e/.eslintrc.json", - "hash": "15523834149352881398" - }, - { - "file": "apps/mfe2-e2e/cypress.json", - "hash": "17454894667494371866" - }, - { - "file": "apps/mfe2-e2e/project.json", - "hash": "17575689871100360623" - }, - { - "file": "apps/mfe2-e2e/src/fixtures/example.json", - "hash": "11614668686582597233" - }, - { - "file": "apps/mfe2-e2e/src/integration/app.spec.ts", - "hash": "10960588309802508115" - }, - { - "file": "apps/mfe2-e2e/src/plugins/index.js", - "hash": "1870053236038166983", - "deps": [ - "npm:@nx/cypress" - ] - }, - { - "file": "apps/mfe2-e2e/src/support/app.po.ts", - "hash": "11157016311132186162" - }, - { - "file": "apps/mfe2-e2e/src/support/commands.ts", - "hash": "7314691991044890572" - }, - { - "file": "apps/mfe2-e2e/src/support/index.ts", - "hash": "9968213533773113880" - }, - { - "file": "apps/mfe2-e2e/tsconfig.json", - "hash": "17327834683392158647" - } - ], - "playground-lib": [ - { - "file": "libs/playground-lib/.eslintrc.json", - "hash": "251138097496990787" - }, - { - "file": "libs/playground-lib/README.md", - "hash": "13175373940195899555" - }, - { - "file": "libs/playground-lib/jest.config.ts", - "hash": "10761321686770014003" - }, - { - "file": "libs/playground-lib/project.json", - "hash": "11525558380267898886" - }, - { - "file": "libs/playground-lib/src/index.ts", - "hash": "4257280204260279346" - }, - { - "file": "libs/playground-lib/src/lib/auth.component.ts", - "hash": "14162546185010018943", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "libs/playground-lib/src/lib/auth.service.ts", - "hash": "3164264548514085137", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "libs/playground-lib/src/lib/playground-lib.module.ts", - "hash": "11141576551844172440", - "deps": [ - "npm:@angular/core", - "npm:@angular/common" - ] - }, - { - "file": "libs/playground-lib/src/test-setup.ts", - "hash": "17711435995618823417", - "deps": [ - "npm:jest-preset-angular" - ] - }, - { - "file": "libs/playground-lib/tsconfig.json", - "hash": "12234268620382124197" - }, - { - "file": "libs/playground-lib/tsconfig.lib.json", - "hash": "14999110739244744162" - }, - { - "file": "libs/playground-lib/tsconfig.spec.json", - "hash": "6658172359945877284" - } - ], - "playground": [ - { - "file": "apps/playground/.eslintrc.json", - "hash": "251138097496990787" - }, - { - "file": "apps/playground/federation.config.js", - "hash": "3710068935049622761" - }, - { - "file": "apps/playground/jest.config.ts", - "hash": "13668978495352725113" - }, - { - "file": "apps/playground/project.json", - "hash": "1451434767386273048" - }, - { - "file": "apps/playground/src/app/app.component.css", - "hash": "17418684592000289094" - }, - { - "file": "apps/playground/src/app/app.component.html", - "hash": "7497086842130323323" - }, - { - "file": "apps/playground/src/app/app.component.spec.ts", - "hash": "16891600822015205682", - "deps": [ - "npm:@angular/core" - ] - }, - { - "file": "apps/playground/src/app/app.component.ts", - "hash": "14170716185574022594", - "deps": [ - "native-federation", - "playground-lib", - "npm:@angular/core" - ] - }, - { - "file": "apps/playground/src/app/app.module.ts", - "hash": "9676466020239194331", - "deps": [ - "npm:@angular/core", - "npm:@angular/platform-browser" - ] - }, - { - "file": "apps/playground/src/assets/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "apps/playground/src/bootstrap.ts", - "hash": "14896519517424602606", - "deps": [ - "npm:@angular/core", - "npm:@angular/platform-browser-dynamic" - ] - }, - { - "file": "apps/playground/src/environments/environment.prod.ts", - "hash": "10220522844224226756" - }, - { - "file": "apps/playground/src/environments/environment.ts", - "hash": "15801694716951284069" - }, - { - "file": "apps/playground/src/favicon.ico", - "hash": "9303420814833116677" - }, - { - "file": "apps/playground/src/index.html", - "hash": "18184154050788975158" - }, - { - "file": "apps/playground/src/main.ts", - "hash": "3349188418178751428", - "deps": [ - "native-federation" - ] - }, - { - "file": "apps/playground/src/polyfills.ts", - "hash": "5886890385542564182", - "deps": [ - "npm:zone.js", - "npm:es-module-shims" - ] - }, - { - "file": "apps/playground/src/styles.css", - "hash": "5195668842064076916" - }, - { - "file": "apps/playground/src/test-setup.ts", - "hash": "7608486994823320296", - "deps": [ - "npm:jest-preset-angular", - "npm:@angular/core", - "npm:@angular/platform-browser-dynamic" - ] - }, - { - "file": "apps/playground/tsconfig.app.json", - "hash": "17391533230824388092" - }, - { - "file": "apps/playground/tsconfig.editor.json", - "hash": "13708902743870995589" - }, - { - "file": "apps/playground/tsconfig.json", - "hash": "15074473844620366262" - }, - { - "file": "apps/playground/tsconfig.spec.json", - "hash": "9419262254794573494" - } - ] - } - } -} \ No newline at end of file diff --git a/.nx/workspace-data/jest-7930610538513362720.hash b/.nx/workspace-data/jest-7930610538513362720.hash deleted file mode 100644 index 169e59ad..00000000 --- a/.nx/workspace-data/jest-7930610538513362720.hash +++ /dev/null @@ -1,9569 +0,0 @@ -{ - "3825021991044159960": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "apps/mfe1" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/apps/mfe1" - ] - } - } - }, - "17080399563894739963": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "apps/mfe2" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/apps/mfe2" - ] - } - } - }, - "7978037817470029352": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "apps/native-federation-e2e" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/apps/native-federation-e2e" - ] - } - } - }, - "1574969867205487748": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "apps/playground" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/apps/playground" - ] - } - } - }, - "17742104216018725284": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "216234189815126262": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/mf" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/mf" - ] - } - } - }, - "8608016122623592479": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/mf-runtime" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/mf-runtime" - ] - } - } - }, - "9550422112233488466": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/mf-tools" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/mf-tools" - ] - } - } - }, - "13886747823149775686": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation" - ] - } - } - }, - "10174768705847783305": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-core" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-core" - ] - } - } - }, - "10948608148595643678": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-esbuild" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-esbuild" - ] - } - } - }, - "16426370927210889922": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "1450262948732724115": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-runtime" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-runtime" - ] - } - } - }, - "535248257973509269": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/playground-lib" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/playground-lib" - ] - } - } - }, - "8189576064832227344": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "2944951818089190439": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-runtime" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-runtime" - ] - } - } - }, - "13018401773402097411": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "16921654958351032696": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2910926844095458975": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7069874950065542930": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "1094646529618950090": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "8878335159333895788": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "928304215141053677": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "2786113304614778353": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "9602408064190641291": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6064198064012499179": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "11086198812248749417": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "16702168142128888833": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "3055925306007999380": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "18294379889295794623": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "399320900921045016": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "10467256761902482990": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "13495017963714239679": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "3978836947164103263": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "15374498128512274490": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "17457451208088463126": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "13535690808580190498": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "16269556010498843985": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10552069668780961226": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "12120829353580495371": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "1142148367727015886": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "12878428899506280479": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10133766108726941759": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7165490152469660702": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "8085233525682404557": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "12086330597191432166": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "14150121368475548275": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "5674776966179679921": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "3641793765688158192": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "2005978862807499446": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10637082313910851817": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "2849261723471622015": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "1254264528732599707": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6991586680170342551": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "10065871029388951915": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation" - ] - } - } - }, - "6496603965186190251": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12745352797559841028": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-runtime" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-runtime" - ] - } - } - }, - "9422219622888037718": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "14734023211076379854": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2878781866459921565": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "17341206666247686204": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "11479237588479353366": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "13834722404412045103": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "15692359988176483198": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "5649391943468220884": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "16330459199973973813": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "17748377448730236129": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12110139128358147748": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "8502036790229916684": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "5853346357950327": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "17263773979879493305": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "15400684330503763119": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6801574384373780177": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "16271505262507940300": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "17901929958720528200": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12591760057247897605": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "1192185732252802841": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "18385659996597414252": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "15673646329433681314": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "4765468298565846233": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "12123905129057958459": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "17902812907881188047": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "4172632245134734653": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "9287034862496080782": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "2912134768766956884": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "17597943534201845379": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "4644577618762842659": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "11062369230775951292": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "14578341483922656873": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2243625689124221054": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "18061734737988447874": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7171388038908893524": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "6422009038491066848": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "11421217119622569837": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "6448023791349666191": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "11139166664237550033": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10689103745126524202": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "4558427027571791686": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12174582115038620688": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7956985131472425397": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "17532407883571135386": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "17820384039531039537": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "3491067833891444276": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "13391561450167655810": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "4099231398336816868": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "13149199763064744151": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "18388602516554294401": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7312856529252609564": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "17679410769726285613": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "467667803425946381": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "14261117193803962747": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "8051904432170846337": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "15094272167475863718": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "1532189608349023656": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "5472940219801826812": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "15013856480487106402": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "14498982299541772066": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6909825132098522088": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10722481430655872054": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "14026495485294325905": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "6404208361121738623": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "2613599305123016492": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10613630240994957079": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "8306735083989641509": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "15764711198101567664": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "13531444485857856922": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "3045788403353265353": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "16440077699935140897": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "8315938574290859369": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "12729995207780142628": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "16288013546252103852": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "9058117880348576095": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "1042869890623617876": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "2126549849120649693": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "11938421952964861136": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "17572509494468686700": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12646011252983180802": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "5029992148696658267": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10561592826956256070": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "17373083873288273258": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "1793869644620249603": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "10766506347198494250": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "774307615770300542": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6524675402017890736": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "1079306009816695180": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7639222166881821297": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "8740184989404127689": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "4995544278812275236": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "3301664957555578619": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6335867017349423104": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "1945819261659946487": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2934628124727044202": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "5470492032571353760": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "14144150192899905678": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "5546551242903835016": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "5235983196734249660": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "15322894709401842605": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "8817991825892328905": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7846454462159041174": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12775762754980346237": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "1834438419361220472": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "8374429200609537905": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "8097733434930341310": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12069160742701321924": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "14052402864074281592": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "779984170848217082": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7833835284412263024": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "15259008243703225946": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "11945824596010257216": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "7366494711220965002": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6959539998167485839": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2227433218887922266": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "173693595207030116": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "3540233612186531789": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "9746257875933204612": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "87075189878277236": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "263041845631965702": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "8395023494172596244": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "12245415035246943101": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2556978340220437592": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "11894786385945035852": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "11467411134478397345": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "44363199105439065": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "17994635470950377434": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7455496128916830307": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2855415785259242194": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "1730488157862006663": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "9088232474980065122": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "14943591988035695749": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "8802970954036026222": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "15766956908713295527": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "18400439518400173900": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "858891750085658322": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "7723206475597991158": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7564083626612772170": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "5131648357201008841": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "16183601592102439050": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "4718439470045257575": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "5365082650286978434": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "16998267316971553448": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "5054816634121425228": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "5943397615157502428": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6983790448049973470": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "565470527904593010": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "4822470905287699989": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10728309312471872177": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "4126765134489845986": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "13712186771696780469": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6667464329748535700": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2800664990192556687": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "814124863641479963": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "8083011442038180534": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "11523513952831130009": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "6924375855465218208": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "1850281506113902103": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "11263406905629135917": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "10223804112953194037": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "4736486972026519199": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "2775442276890854804": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "5244459773477770066": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "6387572465959843526": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "877331639415335147": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "10754871757243658049": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "1237136802802074032": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "9174963823155455519": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10788187808925422147": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "5022801223285364293": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "13400400841018066703": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "9489779574287210184": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "11899223661973197703": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "8925411962445221566": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12955630541693117735": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "9487406191044233603": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "6600916435802854885": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "11966060240277456176": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "7182605264776822523": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "4759324916717763033": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "2806030821878833372": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "10293044510374813387": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "7293655118724690923": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "3927412312638270264": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "625800290343283850": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "11880705691786884880": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "12760197652099710859": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "4216047596334336151": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "4922314521739615334": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "7168745470791751020": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "11144742913229149795": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "11547183173970314671": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "10243495394555175042": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "9765101417953336794": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "3699002588698376170": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "10188267053197712994": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - }, - "15464591705532652108": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "." - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{projectRoot}/coverage" - ] - } - } - }, - "9099713813229341041": { - "targets": { - "test": { - "command": "jest", - "options": { - "cwd": "libs/native-federation-node" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ] - } - } - } -} \ No newline at end of file diff --git a/.nx/workspace-data/lockfile.hash b/.nx/workspace-data/lockfile.hash deleted file mode 100644 index a69d7175..00000000 --- a/.nx/workspace-data/lockfile.hash +++ /dev/null @@ -1 +0,0 @@ -8698883807116375014 \ No newline at end of file diff --git a/.nx/workspace-data/parsed-lock-file.json b/.nx/workspace-data/parsed-lock-file.json deleted file mode 100644 index 9d7f9000..00000000 --- a/.nx/workspace-data/parsed-lock-file.json +++ /dev/null @@ -1,40122 +0,0 @@ -{ - "externalNodes": { - "npm:@adobe/css-tools": { - "type": "npm", - "name": "npm:@adobe/css-tools", - "data": { - "version": "4.3.3", - "packageName": "@adobe/css-tools", - "hash": "sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==" - } - }, - "npm:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.3.0", - "packageName": "@ampproject/remapping", - "hash": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==" - } - }, - "npm:@angular-devkit/architect": { - "type": "npm", - "name": "npm:@angular-devkit/architect", - "data": { - "version": "0.1801.3", - "packageName": "@angular-devkit/architect", - "hash": "sha512-4yba7x315GKim7OuBgv89ZtG50hE3hw64KuRLSGuW+RvwcwLV24VanmdWmFiLC4RKYNSH13E0wZqDNJkrMQepw==" - } - }, - "npm:@angular-devkit/build-angular": { - "type": "npm", - "name": "npm:@angular-devkit/build-angular", - "data": { - "version": "18.1.3", - "packageName": "@angular-devkit/build-angular", - "hash": "sha512-1avnneitUEfC2A9HX24X6a7Ag8sHkxomVEBsggITFNQoGnZAZHCOBRzm3b9QiqTi1c1eH3p8teW8EAufEjFPKQ==" - } - }, - "npm:@babel/core@7.24.7": { - "type": "npm", - "name": "npm:@babel/core@7.24.7", - "data": { - "version": "7.24.7", - "packageName": "@babel/core", - "hash": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.24.9", - "packageName": "@babel/core", - "hash": "sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==" - } - }, - "npm:semver@6.3.1": { - "type": "npm", - "name": "npm:semver@6.3.1", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver@5.7.2": { - "type": "npm", - "name": "npm:semver@5.7.2", - "data": { - "version": "5.7.2", - "packageName": "semver", - "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" - } - }, - "npm:semver@7.5.4": { - "type": "npm", - "name": "npm:semver@7.5.4", - "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "7.6.2", - "packageName": "semver", - "hash": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==" - } - }, - "npm:@esbuild/aix-ppc64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==" - } - }, - "npm:@esbuild/aix-ppc64": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==" - } - }, - "npm:@esbuild/aix-ppc64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==" - } - }, - "npm:@esbuild/android-arm@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/android-arm", - "hash": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==" - } - }, - "npm:@esbuild/android-arm": { - "type": "npm", - "name": "npm:@esbuild/android-arm", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/android-arm", - "hash": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==" - } - }, - "npm:@esbuild/android-arm@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/android-arm", - "hash": "sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==" - } - }, - "npm:@esbuild/android-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==" - } - }, - "npm:@esbuild/android-arm64": { - "type": "npm", - "name": "npm:@esbuild/android-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==" - } - }, - "npm:@esbuild/android-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==" - } - }, - "npm:@esbuild/android-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/android-x64", - "hash": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==" - } - }, - "npm:@esbuild/android-x64": { - "type": "npm", - "name": "npm:@esbuild/android-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/android-x64", - "hash": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==" - } - }, - "npm:@esbuild/android-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/android-x64", - "hash": "sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==" - } - }, - "npm:@esbuild/darwin-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==" - } - }, - "npm:@esbuild/darwin-arm64": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==" - } - }, - "npm:@esbuild/darwin-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==" - } - }, - "npm:@esbuild/darwin-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==" - } - }, - "npm:@esbuild/darwin-x64": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==" - } - }, - "npm:@esbuild/darwin-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==" - } - }, - "npm:@esbuild/freebsd-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==" - } - }, - "npm:@esbuild/freebsd-arm64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==" - } - }, - "npm:@esbuild/freebsd-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==" - } - }, - "npm:@esbuild/freebsd-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==" - } - }, - "npm:@esbuild/freebsd-x64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==" - } - }, - "npm:@esbuild/freebsd-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==" - } - }, - "npm:@esbuild/linux-arm@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==" - } - }, - "npm:@esbuild/linux-arm": { - "type": "npm", - "name": "npm:@esbuild/linux-arm", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==" - } - }, - "npm:@esbuild/linux-arm@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==" - } - }, - "npm:@esbuild/linux-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==" - } - }, - "npm:@esbuild/linux-arm64": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==" - } - }, - "npm:@esbuild/linux-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==" - } - }, - "npm:@esbuild/linux-ia32@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==" - } - }, - "npm:@esbuild/linux-ia32": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==" - } - }, - "npm:@esbuild/linux-ia32@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==" - } - }, - "npm:@esbuild/linux-loong64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==" - } - }, - "npm:@esbuild/linux-loong64": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==" - } - }, - "npm:@esbuild/linux-loong64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==" - } - }, - "npm:@esbuild/linux-mips64el@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==" - } - }, - "npm:@esbuild/linux-mips64el": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==" - } - }, - "npm:@esbuild/linux-mips64el@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==" - } - }, - "npm:@esbuild/linux-ppc64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==" - } - }, - "npm:@esbuild/linux-ppc64": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==" - } - }, - "npm:@esbuild/linux-ppc64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==" - } - }, - "npm:@esbuild/linux-riscv64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==" - } - }, - "npm:@esbuild/linux-riscv64": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==" - } - }, - "npm:@esbuild/linux-riscv64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==" - } - }, - "npm:@esbuild/linux-s390x@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==" - } - }, - "npm:@esbuild/linux-s390x": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==" - } - }, - "npm:@esbuild/linux-s390x@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==" - } - }, - "npm:@esbuild/linux-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==" - } - }, - "npm:@esbuild/linux-x64": { - "type": "npm", - "name": "npm:@esbuild/linux-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==" - } - }, - "npm:@esbuild/linux-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==" - } - }, - "npm:@esbuild/netbsd-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==" - } - }, - "npm:@esbuild/netbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==" - } - }, - "npm:@esbuild/netbsd-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==" - } - }, - "npm:@esbuild/openbsd-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==" - } - }, - "npm:@esbuild/openbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==" - } - }, - "npm:@esbuild/openbsd-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==" - } - }, - "npm:@esbuild/sunos-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==" - } - }, - "npm:@esbuild/sunos-x64": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==" - } - }, - "npm:@esbuild/sunos-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==" - } - }, - "npm:@esbuild/win32-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==" - } - }, - "npm:@esbuild/win32-arm64": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==" - } - }, - "npm:@esbuild/win32-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==" - } - }, - "npm:@esbuild/win32-ia32@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==" - } - }, - "npm:@esbuild/win32-ia32": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==" - } - }, - "npm:@esbuild/win32-ia32@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==" - } - }, - "npm:@esbuild/win32-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==" - } - }, - "npm:@esbuild/win32-x64": { - "type": "npm", - "name": "npm:@esbuild/win32-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==" - } - }, - "npm:@esbuild/win32-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==" - } - }, - "npm:commander@2.20.3": { - "type": "npm", - "name": "npm:commander@2.20.3", - "data": { - "version": "2.20.3", - "packageName": "commander", - "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "8.3.0", - "packageName": "commander", - "hash": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" - } - }, - "npm:commander@6.2.1": { - "type": "npm", - "name": "npm:commander@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "commander", - "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" - } - }, - "npm:commander@12.1.0": { - "type": "npm", - "name": "npm:commander@12.1.0", - "data": { - "version": "12.1.0", - "packageName": "commander", - "hash": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==" - } - }, - "npm:commander@7.2.0": { - "type": "npm", - "name": "npm:commander@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:convert-source-map@2.0.0": { - "type": "npm", - "name": "npm:convert-source-map@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "1.9.0", - "packageName": "convert-source-map", - "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - } - }, - "npm:define-lazy-prop@3.0.0": { - "type": "npm", - "name": "npm:define-lazy-prop@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:esbuild@0.21.5": { - "type": "npm", - "name": "npm:esbuild@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "esbuild", - "hash": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.19.12", - "packageName": "esbuild", - "hash": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==" - } - }, - "npm:esbuild@0.23.0": { - "type": "npm", - "name": "npm:esbuild@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "esbuild", - "hash": "sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==" - } - }, - "npm:is-wsl@3.1.0": { - "type": "npm", - "name": "npm:is-wsl@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "is-wsl", - "hash": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:is-wsl@1.1.0": { - "type": "npm", - "name": "npm:is-wsl@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-wsl", - "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" - } - }, - "npm:jsonc-parser@3.3.1": { - "type": "npm", - "name": "npm:jsonc-parser@3.3.1", - "data": { - "version": "3.3.1", - "packageName": "jsonc-parser", - "hash": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==" - } - }, - "npm:jsonc-parser": { - "type": "npm", - "name": "npm:jsonc-parser", - "data": { - "version": "3.2.0", - "packageName": "jsonc-parser", - "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - } - }, - "npm:mrmime@2.0.0": { - "type": "npm", - "name": "npm:mrmime@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "mrmime", - "hash": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==" - } - }, - "npm:mrmime": { - "type": "npm", - "name": "npm:mrmime", - "data": { - "version": "1.0.1", - "packageName": "mrmime", - "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" - } - }, - "npm:open@10.1.0": { - "type": "npm", - "name": "npm:open@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "open", - "hash": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "npm:terser@5.29.2": { - "type": "npm", - "name": "npm:terser@5.29.2", - "data": { - "version": "5.29.2", - "packageName": "terser", - "hash": "sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.31.0", - "packageName": "terser", - "hash": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==" - } - }, - "npm:@angular-devkit/build-webpack": { - "type": "npm", - "name": "npm:@angular-devkit/build-webpack", - "data": { - "version": "0.1801.3", - "packageName": "@angular-devkit/build-webpack", - "hash": "sha512-JezRR72P4QAc4mnkT60/+kVANCYNKcr2sZyX0/9aBHJsR7lIqgOKz5Dft3FgWHwAJcQFtsZ7OLGVOW3P1LpFkw==" - } - }, - "npm:@angular-devkit/core": { - "type": "npm", - "name": "npm:@angular-devkit/core", - "data": { - "version": "18.1.3", - "packageName": "@angular-devkit/core", - "hash": "sha512-S0UzNNVLbHPaiSVXHjCd2wX+eERj/YR7jJCc40PHs1gINA7Gtd2q3VDm3bUEWe4P6fP6GNp43qSXmWJFQD0+Yg==" - } - }, - "npm:ajv@8.16.0": { - "type": "npm", - "name": "npm:ajv@8.16.0", - "data": { - "version": "8.16.0", - "packageName": "ajv", - "hash": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==" - } - }, - "npm:ajv@6.12.6": { - "type": "npm", - "name": "npm:ajv@6.12.6", - "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "8.12.0", - "packageName": "ajv", - "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" - } - }, - "npm:ajv-formats@3.0.1": { - "type": "npm", - "name": "npm:ajv-formats@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "ajv-formats", - "hash": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==" - } - }, - "npm:ajv-formats": { - "type": "npm", - "name": "npm:ajv-formats", - "data": { - "version": "2.1.1", - "packageName": "ajv-formats", - "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - } - }, - "npm:@angular-devkit/schematics": { - "type": "npm", - "name": "npm:@angular-devkit/schematics", - "data": { - "version": "18.1.3", - "packageName": "@angular-devkit/schematics", - "hash": "sha512-ElzCfiYW9P3xPRNRbPRSrOTGm+G7X8ta1ce3srqi00yPX39Y0WSM95SACqqF8j9dxL6BqazBMyAgNQUaVSbWjw==" - } - }, - "npm:@angular-eslint/bundled-angular-compiler": { - "type": "npm", - "name": "npm:@angular-eslint/bundled-angular-compiler", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/bundled-angular-compiler", - "hash": "sha512-p/YvlvDJscSAbNOOAbT/BRdscEfWpQunUK+KuWM6/PXL07tTVae5dmp8B8A5am7Cxvp+ZVLVLZG4LFYB1TX1cw==" - } - }, - "npm:@angular-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/eslint-plugin", - "hash": "sha512-vJ7pstQPqCqkvMrEsjjocvHdPBl/frs0+fqkckog2Sq0QisBEjUPkbImvId6dw7JzxSDSvttdAklakF97CE4VA==" - } - }, - "npm:@angular-eslint/eslint-plugin-template": { - "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin-template", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/eslint-plugin-template", - "hash": "sha512-YHh+AUY9ubLAdmIRXH8vSpv+8EQkGjdX3B9xdj/grnrVzgzu+5W86F/spGp2tEny9l85R3JZNqjaMpW/vwibfw==" - } - }, - "npm:@angular-eslint/template-parser": { - "type": "npm", - "name": "npm:@angular-eslint/template-parser", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/template-parser", - "hash": "sha512-1jKH2fL8ir1ajcgu/N0xIWVtlpJQmbJBRRe1+WbBoomykcu1KnLwCSue/LuUDQOf3CTmMHxQE0f+58VpafYoyA==" - } - }, - "npm:@angular-eslint/utils": { - "type": "npm", - "name": "npm:@angular-eslint/utils", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/utils", - "hash": "sha512-g+b0L4RCZaKYPz4bGRRifo7g5guVJi2kUWymlDYmCkq3NhZng1HQQbNpVF1n5o034zT5lnaC5HENwaKIZ1Y37Q==" - } - }, - "npm:@angular/animations": { - "type": "npm", - "name": "npm:@angular/animations", - "data": { - "version": "18.1.3", - "packageName": "@angular/animations", - "hash": "sha512-jF4jGHZxV/REnymB11wg5q/DMXewJ0byihmvNQ3OPLHGkWnvE9MdrX44vUzI7RkzqO0suaAg8shxJlkY3OHjeA==" - } - }, - "npm:@angular/build": { - "type": "npm", - "name": "npm:@angular/build", - "data": { - "version": "18.1.3", - "packageName": "@angular/build", - "hash": "sha512-jmTQC7lecJ6c2mJobb5nY2CN6jvdeFFHXN/jif0RkNI8dP60uV1QdMKJtTGbxEtAKXdMgOTReYICVYl6m9Q56Q==" - } - }, - "npm:rollup@4.18.0": { - "type": "npm", - "name": "npm:rollup@4.18.0", - "data": { - "version": "4.18.0", - "packageName": "rollup", - "hash": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==" - } - }, - "npm:rollup": { - "type": "npm", - "name": "npm:rollup", - "data": { - "version": "3.29.4", - "packageName": "rollup", - "hash": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==" - } - }, - "npm:rollup@4.20.0": { - "type": "npm", - "name": "npm:rollup@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "rollup", - "hash": "sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==" - } - }, - "npm:@angular/cli": { - "type": "npm", - "name": "npm:@angular/cli", - "data": { - "version": "18.1.3", - "packageName": "@angular/cli", - "hash": "sha512-vsEc3cGDUYcc+adfvBHSqKdI8uiaa86Y9pLWGHfqaD+N0q/k17d/47AFvXTDKLmKucMZrto/4088Y1y+yM9eOg==" - } - }, - "npm:ansi-escapes@7.0.0": { - "type": "npm", - "name": "npm:ansi-escapes@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "ansi-escapes", - "hash": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==" - } - }, - "npm:ansi-escapes": { - "type": "npm", - "name": "npm:ansi-escapes", - "data": { - "version": "4.3.2", - "packageName": "ansi-escapes", - "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" - } - }, - "npm:ansi-regex@6.0.1": { - "type": "npm", - "name": "npm:ansi-regex@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "ansi-regex", - "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:ansi-styles@3.2.1": { - "type": "npm", - "name": "npm:ansi-styles@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-styles@4.3.0": { - "type": "npm", - "name": "npm:ansi-styles@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:cli-cursor@5.0.0": { - "type": "npm", - "name": "npm:cli-cursor@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "cli-cursor", - "hash": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-truncate@4.0.0": { - "type": "npm", - "name": "npm:cli-truncate@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "cli-truncate", - "hash": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==" - } - }, - "npm:cli-truncate": { - "type": "npm", - "name": "npm:cli-truncate", - "data": { - "version": "2.1.0", - "packageName": "cli-truncate", - "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" - } - }, - "npm:emoji-regex@10.3.0": { - "type": "npm", - "name": "npm:emoji-regex@10.3.0", - "data": { - "version": "10.3.0", - "packageName": "emoji-regex", - "hash": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:eventemitter3@5.0.1": { - "type": "npm", - "name": "npm:eventemitter3@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "eventemitter3", - "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:is-fullwidth-code-point@4.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" - } - }, - "npm:is-fullwidth-code-point@5.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:listr2@8.2.3": { - "type": "npm", - "name": "npm:listr2@8.2.3", - "data": { - "version": "8.2.3", - "packageName": "listr2", - "hash": "sha512-Lllokma2mtoniUOS94CcOErHWAug5iu7HOmDrvWgpw8jyQH2fomgB+7lZS4HWZxytUuQwkGOwe49FvwVaA85Xw==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "3.14.0", - "packageName": "listr2", - "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" - } - }, - "npm:log-update@6.1.0": { - "type": "npm", - "name": "npm:log-update@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "log-update", - "hash": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==" - } - }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "4.0.0", - "packageName": "log-update", - "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" - } - }, - "npm:slice-ansi@7.1.0": { - "type": "npm", - "name": "npm:slice-ansi@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "slice-ansi", - "hash": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==" - } - }, - "npm:slice-ansi@5.0.0": { - "type": "npm", - "name": "npm:slice-ansi@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "slice-ansi", - "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" - } - }, - "npm:slice-ansi@4.0.0": { - "type": "npm", - "name": "npm:slice-ansi@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slice-ansi", - "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "data": { - "version": "3.0.0", - "packageName": "slice-ansi", - "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" - } - }, - "npm:npm-package-arg@11.0.2": { - "type": "npm", - "name": "npm:npm-package-arg@11.0.2", - "data": { - "version": "11.0.2", - "packageName": "npm-package-arg", - "hash": "sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "11.0.1", - "packageName": "npm-package-arg", - "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" - } - }, - "npm:onetime@7.0.0": { - "type": "npm", - "name": "npm:onetime@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "onetime", - "hash": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:proc-log@4.2.0": { - "type": "npm", - "name": "npm:proc-log@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "proc-log", - "hash": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==" - } - }, - "npm:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "3.0.0", - "packageName": "proc-log", - "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" - } - }, - "npm:restore-cursor@5.1.0": { - "type": "npm", - "name": "npm:restore-cursor@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "restore-cursor", - "hash": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:signal-exit@4.1.0": { - "type": "npm", - "name": "npm:signal-exit@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "signal-exit", - "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:string-width@7.2.0": { - "type": "npm", - "name": "npm:string-width@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "string-width", - "hash": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:strip-ansi@7.1.0": { - "type": "npm", - "name": "npm:strip-ansi@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "strip-ansi", - "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:wrap-ansi@9.0.0": { - "type": "npm", - "name": "npm:wrap-ansi@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrap-ansi@7.0.0": { - "type": "npm", - "name": "npm:wrap-ansi@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "6.2.0", - "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" - } - }, - "npm:@angular/common": { - "type": "npm", - "name": "npm:@angular/common", - "data": { - "version": "18.1.3", - "packageName": "@angular/common", - "hash": "sha512-TC71jVph4L+QaXlyJTrW27nbqis4sWwr9hD/RDSNkfY9XCvYDb2MjYjKrpbN03FWiv7lmcKT9zgse1fYENFsKQ==" - } - }, - "npm:@angular/compiler": { - "type": "npm", - "name": "npm:@angular/compiler", - "data": { - "version": "18.1.3", - "packageName": "@angular/compiler", - "hash": "sha512-Mrcd+YGsz02GVnVlVbzYp7EJIVoPOIHMvhll1OiylhjQElNVeJCLPIvjVYdylzOUDctXNlchkGf/LbA7BYMbXg==" - } - }, - "npm:@angular/compiler-cli": { - "type": "npm", - "name": "npm:@angular/compiler-cli", - "data": { - "version": "18.1.3", - "packageName": "@angular/compiler-cli", - "hash": "sha512-e9t5v/L1KqPLUQL+WU+d70MBBFcSRuwqbkluZgdDjdW5VelYjzlVzXdrzV6jFElP48T3kQCxJN1dAJkAvKjdOg==" - } - }, - "npm:@angular/core": { - "type": "npm", - "name": "npm:@angular/core", - "data": { - "version": "18.1.3", - "packageName": "@angular/core", - "hash": "sha512-1tFTyGLwio5oYAP2sMVDiOvy5wl/v0a4om7RTCpP2Bjro0ynuYe8FK7ilcmdyPXR1DF7GVdo/0R/eCIQJZ2PwA==" - } - }, - "npm:@angular/forms": { - "type": "npm", - "name": "npm:@angular/forms", - "data": { - "version": "18.1.3", - "packageName": "@angular/forms", - "hash": "sha512-4kic/9hpS0HkbTORIkrdox7K40EcVT9VIbBruPoxX7jbfiW5jFaJ/05hLRvRt9RF8Sd9G+g5Uohmkcq/5hmsng==" - } - }, - "npm:@angular/language-service": { - "type": "npm", - "name": "npm:@angular/language-service", - "data": { - "version": "18.1.3", - "packageName": "@angular/language-service", - "hash": "sha512-1s1VQHJ6Gh84lCqgSEU6pNuPBpvee1mhfIZEE2lqxFu/tLe5gqvtTescFaTFLWY6I4e2RGAOU8WtRnFgFNxzGg==" - } - }, - "npm:@angular/platform-browser": { - "type": "npm", - "name": "npm:@angular/platform-browser", - "data": { - "version": "18.1.3", - "packageName": "@angular/platform-browser", - "hash": "sha512-/k5Xt/WjOk6OlRqb1Wd0ZUQ3NjSbafQyDC9Icy0Mb8qJtiXZjA4VCMkZIiQD7cBxO0F/BsAiYnYNjWrIkCZICA==" - } - }, - "npm:@angular/platform-browser-dynamic": { - "type": "npm", - "name": "npm:@angular/platform-browser-dynamic", - "data": { - "version": "18.1.3", - "packageName": "@angular/platform-browser-dynamic", - "hash": "sha512-VhYfyPcdKrsLrkd5Lq7W+pqE49DZBpUeCqM/Q+s9rhTSiCCKe9Ikktq8yPZ9iHDpFr203P+T1EMHmILnLvf+gQ==" - } - }, - "npm:@angular/router": { - "type": "npm", - "name": "npm:@angular/router", - "data": { - "version": "18.1.3", - "packageName": "@angular/router", - "hash": "sha512-6fXiTgdUnaGGF32Un4+7LttG1N9rziansigvLBzFG//qYU0Ihk49phqDdWxz11iaJ+uK1YVafkjSFvV7z9cgDA==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.24.7", - "packageName": "@babel/code-frame", - "hash": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.25.2", - "packageName": "@babel/compat-data", - "hash": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==" - } - }, - "npm:@babel/generator@7.25.0": { - "type": "npm", - "name": "npm:@babel/generator@7.25.0", - "data": { - "version": "7.25.0", - "packageName": "@babel/generator", - "hash": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.24.7", - "packageName": "@babel/generator", - "hash": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==" - } - }, - "npm:@babel/helper-builder-binary-assignment-operator-visitor": { - "type": "npm", - "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.25.2", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==" - } - }, - "npm:@babel/helper-create-class-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-class-features-plugin", - "data": { - "version": "7.25.0", - "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==" - } - }, - "npm:@babel/helper-create-regexp-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-regexp-features-plugin", - "data": { - "version": "7.25.2", - "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==" - } - }, - "npm:@babel/helper-define-polyfill-provider": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider", - "data": { - "version": "0.6.2", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==" - } - }, - "npm:@babel/helper-environment-visitor": { - "type": "npm", - "name": "npm:@babel/helper-environment-visitor", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==" - } - }, - "npm:@babel/helper-member-expression-to-functions": { - "type": "npm", - "name": "npm:@babel/helper-member-expression-to-functions", - "data": { - "version": "7.24.8", - "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.25.2", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==" - } - }, - "npm:@babel/helper-optimise-call-expression": { - "type": "npm", - "name": "npm:@babel/helper-optimise-call-expression", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-optimise-call-expression", - "hash": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.24.8", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==" - } - }, - "npm:@babel/helper-remap-async-to-generator": { - "type": "npm", - "name": "npm:@babel/helper-remap-async-to-generator", - "data": { - "version": "7.25.0", - "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==" - } - }, - "npm:@babel/helper-replace-supers": { - "type": "npm", - "name": "npm:@babel/helper-replace-supers", - "data": { - "version": "7.25.0", - "packageName": "@babel/helper-replace-supers", - "hash": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==" - } - }, - "npm:@babel/helper-skip-transparent-expression-wrappers": { - "type": "npm", - "name": "npm:@babel/helper-skip-transparent-expression-wrappers", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-skip-transparent-expression-wrappers", - "hash": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.24.8", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.24.8", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==" - } - }, - "npm:@babel/helper-wrap-function": { - "type": "npm", - "name": "npm:@babel/helper-wrap-function", - "data": { - "version": "7.25.0", - "packageName": "@babel/helper-wrap-function", - "hash": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.25.0", - "packageName": "@babel/helpers", - "hash": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.24.7", - "packageName": "@babel/highlight", - "hash": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==" - } - }, - "npm:chalk@2.4.2": { - "type": "npm", - "name": "npm:chalk@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk@4.1.2": { - "type": "npm", - "name": "npm:chalk@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:chalk@3.0.0": { - "type": "npm", - "name": "npm:chalk@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chalk", - "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "5.3.0", - "packageName": "chalk", - "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" - } - }, - "npm:escape-string-regexp@1.0.5": { - "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escape-string-regexp@2.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } - }, - "npm:escape-string-regexp@5.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - } - }, - "npm:has-flag@3.0.0": { - "type": "npm", - "name": "npm:has-flag@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:supports-color@5.5.0": { - "type": "npm", - "name": "npm:supports-color@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "supports-color", - "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - } - }, - "npm:supports-color@7.2.0": { - "type": "npm", - "name": "npm:supports-color@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "8.1.1", - "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.25.3", - "packageName": "@babel/parser", - "hash": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==" - } - }, - "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "data": { - "version": "7.25.3", - "packageName": "@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "hash": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==" - } - }, - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==" - } - }, - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==" - } - }, - "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "hash": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==" - } - }, - "npm:@babel/plugin-proposal-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", - "data": { - "version": "7.24.0", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-LiT1RqZWeij7X+wGxCoYh3/3b8nVOX6/7BZ9wiQgAIyjoeQWdROaodJCgT+dwtbjHaz0r7bEbHJzjSbVfcOyjQ==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.0-placeholder-for-preset-env.2", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-class-static-block", - "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - } - }, - "npm:@babel/plugin-syntax-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-decorators", - "data": { - "version": "7.24.0", - "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-MXW3pQCu9gUiVGzqkGqsgiINDVYXoAnrY8FYF/rmb+OfufNF0zHMpHPN4ulRrinxYT8Vk/aZJxYqOKsDECjKAw==" - } - }, - "npm:@babel/plugin-syntax-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-dynamic-import", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-dynamic-import", - "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - } - }, - "npm:@babel/plugin-syntax-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-namespace-from", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-export-namespace-from", - "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - } - }, - "npm:@babel/plugin-syntax-import-assertions": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-assertions", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==" - } - }, - "npm:@babel/plugin-syntax-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==" - } - }, - "npm:@babel/plugin-syntax-import-meta": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-meta", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-import-meta", - "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" - } - }, - "npm:@babel/plugin-syntax-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-json-strings", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-json-strings", - "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" - } - }, - "npm:@babel/plugin-syntax-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-logical-assignment-operators", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-logical-assignment-operators", - "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - } - }, - "npm:@babel/plugin-syntax-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", - "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - } - }, - "npm:@babel/plugin-syntax-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-numeric-separator", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-numeric-separator", - "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - } - }, - "npm:@babel/plugin-syntax-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-object-rest-spread", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-object-rest-spread", - "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - } - }, - "npm:@babel/plugin-syntax-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-catch-binding", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-catch-binding", - "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - } - }, - "npm:@babel/plugin-syntax-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-chaining", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-chaining", - "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - } - }, - "npm:@babel/plugin-syntax-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-private-property-in-object", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-private-property-in-object", - "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - } - }, - "npm:@babel/plugin-syntax-top-level-await": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-top-level-await", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-top-level-await", - "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - } - }, - "npm:@babel/plugin-syntax-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" - } - }, - "npm:@babel/plugin-syntax-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-unicode-sets-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-syntax-unicode-sets-regex", - "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" - } - }, - "npm:@babel/plugin-transform-arrow-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-arrow-functions", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==" - } - }, - "npm:@babel/plugin-transform-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-generator-functions", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-async-generator-functions", - "hash": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==" - } - }, - "npm:@babel/plugin-transform-async-to-generator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-to-generator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==" - } - }, - "npm:@babel/plugin-transform-block-scoped-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoped-functions", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==" - } - }, - "npm:@babel/plugin-transform-block-scoping": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoping", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==" - } - }, - "npm:@babel/plugin-transform-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-properties", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-class-properties", - "hash": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==" - } - }, - "npm:@babel/plugin-transform-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-static-block", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-class-static-block", - "hash": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==" - } - }, - "npm:@babel/plugin-transform-classes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-classes", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==" - } - }, - "npm:@babel/plugin-transform-computed-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-computed-properties", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==" - } - }, - "npm:@babel/plugin-transform-destructuring": { - "type": "npm", - "name": "npm:@babel/plugin-transform-destructuring", - "data": { - "version": "7.24.8", - "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==" - } - }, - "npm:@babel/plugin-transform-dotall-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dotall-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==" - } - }, - "npm:@babel/plugin-transform-duplicate-keys": { - "type": "npm", - "name": "npm:@babel/plugin-transform-duplicate-keys", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==" - } - }, - "npm:@babel/plugin-transform-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dynamic-import", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-dynamic-import", - "hash": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==" - } - }, - "npm:@babel/plugin-transform-exponentiation-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-exponentiation-operator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==" - } - }, - "npm:@babel/plugin-transform-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-transform-export-namespace-from", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-export-namespace-from", - "hash": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==" - } - }, - "npm:@babel/plugin-transform-for-of": { - "type": "npm", - "name": "npm:@babel/plugin-transform-for-of", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==" - } - }, - "npm:@babel/plugin-transform-function-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-function-name", - "data": { - "version": "7.25.1", - "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==" - } - }, - "npm:@babel/plugin-transform-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-transform-json-strings", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-json-strings", - "hash": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==" - } - }, - "npm:@babel/plugin-transform-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-literals", - "data": { - "version": "7.25.2", - "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==" - } - }, - "npm:@babel/plugin-transform-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-transform-logical-assignment-operators", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-logical-assignment-operators", - "hash": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==" - } - }, - "npm:@babel/plugin-transform-member-expression-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-member-expression-literals", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==" - } - }, - "npm:@babel/plugin-transform-modules-amd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-amd", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.24.8", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==" - } - }, - "npm:@babel/plugin-transform-modules-systemjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-systemjs", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==" - } - }, - "npm:@babel/plugin-transform-modules-umd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-umd", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==" - } - }, - "npm:@babel/plugin-transform-named-capturing-groups-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-named-capturing-groups-regex", - "hash": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==" - } - }, - "npm:@babel/plugin-transform-new-target": { - "type": "npm", - "name": "npm:@babel/plugin-transform-new-target", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==" - } - }, - "npm:@babel/plugin-transform-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-nullish-coalescing-operator", - "hash": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==" - } - }, - "npm:@babel/plugin-transform-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-numeric-separator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-numeric-separator", - "hash": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==" - } - }, - "npm:@babel/plugin-transform-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-rest-spread", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-object-rest-spread", - "hash": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==" - } - }, - "npm:@babel/plugin-transform-object-super": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-super", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==" - } - }, - "npm:@babel/plugin-transform-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-catch-binding", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-optional-catch-binding", - "hash": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==" - } - }, - "npm:@babel/plugin-transform-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-chaining", - "data": { - "version": "7.24.8", - "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==" - } - }, - "npm:@babel/plugin-transform-parameters": { - "type": "npm", - "name": "npm:@babel/plugin-transform-parameters", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==" - } - }, - "npm:@babel/plugin-transform-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-methods", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-private-methods", - "hash": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==" - } - }, - "npm:@babel/plugin-transform-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-property-in-object", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-private-property-in-object", - "hash": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==" - } - }, - "npm:@babel/plugin-transform-property-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-property-literals", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==" - } - }, - "npm:@babel/plugin-transform-regenerator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-regenerator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==" - } - }, - "npm:@babel/plugin-transform-reserved-words": { - "type": "npm", - "name": "npm:@babel/plugin-transform-reserved-words", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==" - } - }, - "npm:@babel/plugin-transform-runtime": { - "type": "npm", - "name": "npm:@babel/plugin-transform-runtime", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==" - } - }, - "npm:@babel/plugin-transform-shorthand-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-shorthand-properties", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==" - } - }, - "npm:@babel/plugin-transform-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-spread", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==" - } - }, - "npm:@babel/plugin-transform-sticky-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-sticky-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==" - } - }, - "npm:@babel/plugin-transform-template-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-template-literals", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==" - } - }, - "npm:@babel/plugin-transform-typeof-symbol": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typeof-symbol", - "data": { - "version": "7.24.8", - "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==" - } - }, - "npm:@babel/plugin-transform-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typescript", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" - } - }, - "npm:@babel/plugin-transform-unicode-escapes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-escapes", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==" - } - }, - "npm:@babel/plugin-transform-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-property-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-unicode-property-regex", - "hash": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==" - } - }, - "npm:@babel/plugin-transform-unicode-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==" - } - }, - "npm:@babel/plugin-transform-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-sets-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-unicode-sets-regex", - "hash": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==" - } - }, - "npm:@babel/preset-env": { - "type": "npm", - "name": "npm:@babel/preset-env", - "data": { - "version": "7.24.7", - "packageName": "@babel/preset-env", - "hash": "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==" - } - }, - "npm:@babel/preset-modules": { - "type": "npm", - "name": "npm:@babel/preset-modules", - "data": { - "version": "0.1.6-no-external-plugins", - "packageName": "@babel/preset-modules", - "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" - } - }, - "npm:@babel/preset-typescript": { - "type": "npm", - "name": "npm:@babel/preset-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-typescript", - "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" - } - }, - "npm:@babel/regjsgen": { - "type": "npm", - "name": "npm:@babel/regjsgen", - "data": { - "version": "0.8.0", - "packageName": "@babel/regjsgen", - "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.24.7", - "packageName": "@babel/runtime", - "hash": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.25.0", - "packageName": "@babel/template", - "hash": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.25.3", - "packageName": "@babel/traverse", - "hash": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.25.2", - "packageName": "@babel/types", - "hash": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@colors/colors": { - "type": "npm", - "name": "npm:@colors/colors", - "data": { - "version": "1.5.0", - "packageName": "@colors/colors", - "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - } - }, - "npm:@cspotcode/source-map-support": { - "type": "npm", - "name": "npm:@cspotcode/source-map-support", - "data": { - "version": "0.8.1", - "packageName": "@cspotcode/source-map-support", - "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" - } - }, - "npm:@jridgewell/trace-mapping@0.3.9": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.25", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==" - } - }, - "npm:@csstools/postcss-color-function": { - "type": "npm", - "name": "npm:@csstools/postcss-color-function", - "data": { - "version": "1.1.1", - "packageName": "@csstools/postcss-color-function", - "hash": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==" - } - }, - "npm:@csstools/postcss-font-format-keywords": { - "type": "npm", - "name": "npm:@csstools/postcss-font-format-keywords", - "data": { - "version": "1.0.1", - "packageName": "@csstools/postcss-font-format-keywords", - "hash": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==" - } - }, - "npm:@csstools/postcss-hwb-function": { - "type": "npm", - "name": "npm:@csstools/postcss-hwb-function", - "data": { - "version": "1.0.2", - "packageName": "@csstools/postcss-hwb-function", - "hash": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==" - } - }, - "npm:@csstools/postcss-ic-unit": { - "type": "npm", - "name": "npm:@csstools/postcss-ic-unit", - "data": { - "version": "1.0.1", - "packageName": "@csstools/postcss-ic-unit", - "hash": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==" - } - }, - "npm:@csstools/postcss-is-pseudo-class": { - "type": "npm", - "name": "npm:@csstools/postcss-is-pseudo-class", - "data": { - "version": "2.0.7", - "packageName": "@csstools/postcss-is-pseudo-class", - "hash": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==" - } - }, - "npm:@csstools/postcss-normalize-display-values": { - "type": "npm", - "name": "npm:@csstools/postcss-normalize-display-values", - "data": { - "version": "1.0.1", - "packageName": "@csstools/postcss-normalize-display-values", - "hash": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==" - } - }, - "npm:@csstools/postcss-oklab-function": { - "type": "npm", - "name": "npm:@csstools/postcss-oklab-function", - "data": { - "version": "1.1.1", - "packageName": "@csstools/postcss-oklab-function", - "hash": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==" - } - }, - "npm:@csstools/postcss-progressive-custom-properties": { - "type": "npm", - "name": "npm:@csstools/postcss-progressive-custom-properties", - "data": { - "version": "1.3.0", - "packageName": "@csstools/postcss-progressive-custom-properties", - "hash": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==" - } - }, - "npm:@csstools/postcss-stepped-value-functions": { - "type": "npm", - "name": "npm:@csstools/postcss-stepped-value-functions", - "data": { - "version": "1.0.1", - "packageName": "@csstools/postcss-stepped-value-functions", - "hash": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==" - } - }, - "npm:@csstools/postcss-unset-value": { - "type": "npm", - "name": "npm:@csstools/postcss-unset-value", - "data": { - "version": "1.0.2", - "packageName": "@csstools/postcss-unset-value", - "hash": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==" - } - }, - "npm:@csstools/selector-specificity": { - "type": "npm", - "name": "npm:@csstools/selector-specificity", - "data": { - "version": "2.2.0", - "packageName": "@csstools/selector-specificity", - "hash": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==" - } - }, - "npm:@cypress/request": { - "type": "npm", - "name": "npm:@cypress/request", - "data": { - "version": "3.0.1", - "packageName": "@cypress/request", - "hash": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==" - } - }, - "npm:@cypress/xvfb": { - "type": "npm", - "name": "npm:@cypress/xvfb", - "data": { - "version": "1.2.4", - "packageName": "@cypress/xvfb", - "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" - } - }, - "npm:debug@3.2.7": { - "type": "npm", - "name": "npm:debug@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "debug", - "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - } - }, - "npm:debug@2.6.9": { - "type": "npm", - "name": "npm:debug@2.6.9", - "data": { - "version": "2.6.9", - "packageName": "debug", - "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug@3.1.0": { - "type": "npm", - "name": "npm:debug@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "debug", - "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" - } - }, - "npm:@discoveryjs/json-ext": { - "type": "npm", - "name": "npm:@discoveryjs/json-ext", - "data": { - "version": "0.5.7", - "packageName": "@discoveryjs/json-ext", - "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" - } - }, - "npm:@emnapi/core": { - "type": "npm", - "name": "npm:@emnapi/core", - "data": { - "version": "1.2.0", - "packageName": "@emnapi/core", - "hash": "sha512-E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==" - } - }, - "npm:@emnapi/runtime": { - "type": "npm", - "name": "npm:@emnapi/runtime", - "data": { - "version": "1.2.0", - "packageName": "@emnapi/runtime", - "hash": "sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==" - } - }, - "npm:@emnapi/wasi-threads": { - "type": "npm", - "name": "npm:@emnapi/wasi-threads", - "data": { - "version": "1.0.1", - "packageName": "@emnapi/wasi-threads", - "hash": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==" - } - }, - "npm:@esbuild/openbsd-arm64": { - "type": "npm", - "name": "npm:@esbuild/openbsd-arm64", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/openbsd-arm64", - "hash": "sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.4.0", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" - } - }, - "npm:@eslint-community/regexpp": { - "type": "npm", - "name": "npm:@eslint-community/regexpp", - "data": { - "version": "4.10.0", - "packageName": "@eslint-community/regexpp", - "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "2.1.4", - "packageName": "@eslint/eslintrc", - "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" - } - }, - "npm:brace-expansion@1.1.11": { - "type": "npm", - "name": "npm:brace-expansion@1.1.11", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "2.0.1", - "packageName": "brace-expansion", - "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" - } - }, - "npm:globals@13.24.0": { - "type": "npm", - "name": "npm:globals@13.24.0", - "data": { - "version": "13.24.0", - "packageName": "globals", - "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:json-schema-traverse@0.4.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:minimatch@3.1.2": { - "type": "npm", - "name": "npm:minimatch@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "minimatch", - "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - } - }, - "npm:minimatch@9.0.4": { - "type": "npm", - "name": "npm:minimatch@9.0.4", - "data": { - "version": "9.0.4", - "packageName": "minimatch", - "hash": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==" - } - }, - "npm:minimatch@5.1.6": { - "type": "npm", - "name": "npm:minimatch@5.1.6", - "data": { - "version": "5.1.6", - "packageName": "minimatch", - "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" - } - }, - "npm:minimatch@9.0.5": { - "type": "npm", - "name": "npm:minimatch@9.0.5", - "data": { - "version": "9.0.5", - "packageName": "minimatch", - "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" - } - }, - "npm:minimatch@7.4.6": { - "type": "npm", - "name": "npm:minimatch@7.4.6", - "data": { - "version": "7.4.6", - "packageName": "minimatch", - "hash": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "9.0.3", - "packageName": "minimatch", - "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" - } - }, - "npm:minimatch@3.0.8": { - "type": "npm", - "name": "npm:minimatch@3.0.8", - "data": { - "version": "3.0.8", - "packageName": "minimatch", - "hash": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==" - } - }, - "npm:type-fest@0.20.2": { - "type": "npm", - "name": "npm:type-fest@0.20.2", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.21.3", - "packageName": "type-fest", - "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } - }, - "npm:@eslint/js": { - "type": "npm", - "name": "npm:@eslint/js", - "data": { - "version": "8.57.0", - "packageName": "@eslint/js", - "hash": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==" - } - }, - "npm:@humanwhocodes/config-array": { - "type": "npm", - "name": "npm:@humanwhocodes/config-array", - "data": { - "version": "0.11.14", - "packageName": "@humanwhocodes/config-array", - "hash": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==" - } - }, - "npm:@humanwhocodes/module-importer": { - "type": "npm", - "name": "npm:@humanwhocodes/module-importer", - "data": { - "version": "1.0.1", - "packageName": "@humanwhocodes/module-importer", - "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - } - }, - "npm:@humanwhocodes/object-schema": { - "type": "npm", - "name": "npm:@humanwhocodes/object-schema", - "data": { - "version": "2.0.3", - "packageName": "@humanwhocodes/object-schema", - "hash": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==" - } - }, - "npm:@inquirer/checkbox": { - "type": "npm", - "name": "npm:@inquirer/checkbox", - "data": { - "version": "2.4.7", - "packageName": "@inquirer/checkbox", - "hash": "sha512-5YwCySyV1UEgqzz34gNsC38eKxRBtlRDpJLlKcRtTjlYA/yDKuc1rfw+hjw+2WJxbAZtaDPsRl5Zk7J14SBoBw==" - } - }, - "npm:@inquirer/core@9.0.10": { - "type": "npm", - "name": "npm:@inquirer/core@9.0.10", - "data": { - "version": "9.0.10", - "packageName": "@inquirer/core", - "hash": "sha512-TdESOKSVwf6+YWDz8GhS6nKscwzkIyakEzCLJ5Vh6O3Co2ClhCJ0A4MG909MUWfaWdpJm7DE45ii51/2Kat9tA==" - } - }, - "npm:@inquirer/core": { - "type": "npm", - "name": "npm:@inquirer/core", - "data": { - "version": "8.2.4", - "packageName": "@inquirer/core", - "hash": "sha512-7vsXSfxtrrbwMTirfaKwPcjqJy7pzeuF/bP62yo1NQrRJ5HjmMlrhZml/Ljm9ODc1RnbhJlTeSnCkjtFddKjwA==" - } - }, - "npm:@types/node@22.1.0": { - "type": "npm", - "name": "npm:@types/node@22.1.0", - "data": { - "version": "22.1.0", - "packageName": "@types/node", - "hash": "sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==" - } - }, - "npm:@types/node@20.14.14": { - "type": "npm", - "name": "npm:@types/node@20.14.14", - "data": { - "version": "20.14.14", - "packageName": "@types/node", - "hash": "sha512-d64f00982fS9YoOgJkAMolK7MN8Iq3TDdVjchbYHdEmjth/DHowx82GnoA+tVUAN+7vxfYUgAzi+JXbKNd2SDQ==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "18.19.50", - "packageName": "@types/node", - "hash": "sha512-xonK+NRrMBRtkL1hVCc3G+uXtjh1Al4opBLjqVmipe5ZAaBYWW6cNAiBVZ1BvmkBhep698rP3UM3aRAdSALuhg==" - } - }, - "npm:cli-spinners@2.9.2": { - "type": "npm", - "name": "npm:cli-spinners@2.9.2", - "data": { - "version": "2.9.2", - "packageName": "cli-spinners", - "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.6.1", - "packageName": "cli-spinners", - "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" - } - }, - "npm:undici-types@6.13.0": { - "type": "npm", - "name": "npm:undici-types@6.13.0", - "data": { - "version": "6.13.0", - "packageName": "undici-types", - "hash": "sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==" - } - }, - "npm:undici-types": { - "type": "npm", - "name": "npm:undici-types", - "data": { - "version": "5.26.5", - "packageName": "undici-types", - "hash": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" - } - }, - "npm:@inquirer/confirm": { - "type": "npm", - "name": "npm:@inquirer/confirm", - "data": { - "version": "3.1.11", - "packageName": "@inquirer/confirm", - "hash": "sha512-3wWw10VPxQP279FO4bzWsf8YjIAq7NdwATJ4xS2h1uwsXZu/RmtOVV95rZ7yllS1h/dzu+uLewjMAzNDEj8h2w==" - } - }, - "npm:@inquirer/editor": { - "type": "npm", - "name": "npm:@inquirer/editor", - "data": { - "version": "2.1.22", - "packageName": "@inquirer/editor", - "hash": "sha512-K1QwTu7GCK+nKOVRBp5HY9jt3DXOfPGPr6WRDrPImkcJRelG9UTx2cAtK1liXmibRrzJlTWOwqgWT3k2XnS62w==" - } - }, - "npm:@inquirer/expand": { - "type": "npm", - "name": "npm:@inquirer/expand", - "data": { - "version": "2.1.22", - "packageName": "@inquirer/expand", - "hash": "sha512-wTZOBkzH+ItPuZ3ZPa9lynBsdMp6kQ9zbjVPYEtSBG7UulGjg2kQiAnUjgyG4SlntpTce5bOmXAPvE4sguXjpA==" - } - }, - "npm:@inquirer/figures": { - "type": "npm", - "name": "npm:@inquirer/figures", - "data": { - "version": "1.0.5", - "packageName": "@inquirer/figures", - "hash": "sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==" - } - }, - "npm:@inquirer/input": { - "type": "npm", - "name": "npm:@inquirer/input", - "data": { - "version": "2.2.9", - "packageName": "@inquirer/input", - "hash": "sha512-7Z6N+uzkWM7+xsE+3rJdhdG/+mQgejOVqspoW+w0AbSZnL6nq5tGMEVASaYVWbkoSzecABWwmludO2evU3d31g==" - } - }, - "npm:@inquirer/password": { - "type": "npm", - "name": "npm:@inquirer/password", - "data": { - "version": "2.1.22", - "packageName": "@inquirer/password", - "hash": "sha512-5Fxt1L9vh3rAKqjYwqsjU4DZsEvY/2Gll+QkqR4yEpy6wvzLxdSgFhUcxfDAOtO4BEoTreWoznC0phagwLU5Kw==" - } - }, - "npm:@inquirer/prompts": { - "type": "npm", - "name": "npm:@inquirer/prompts", - "data": { - "version": "5.0.7", - "packageName": "@inquirer/prompts", - "hash": "sha512-GFcigCxJTKCH3aECzMIu4FhgLJWnFvMXzpI4CCSoELWFtkOOU2P+goYA61+OKpGrB8fPE7q6n8zAXBSlZRrHjQ==" - } - }, - "npm:@inquirer/rawlist": { - "type": "npm", - "name": "npm:@inquirer/rawlist", - "data": { - "version": "2.2.4", - "packageName": "@inquirer/rawlist", - "hash": "sha512-pb6w9pWrm7EfnYDgQObOurh2d2YH07+eDo3xQBsNAM2GRhliz6wFXGi1thKQ4bN6B0xDd6C3tBsjdr3obsCl3Q==" - } - }, - "npm:@inquirer/select": { - "type": "npm", - "name": "npm:@inquirer/select", - "data": { - "version": "2.4.7", - "packageName": "@inquirer/select", - "hash": "sha512-JH7XqPEkBpNWp3gPCqWqY8ECbyMoFcCZANlL6pV9hf59qK6dGmkOlx1ydyhY+KZ0c5X74+W6Mtp+nm2QX0/MAQ==" - } - }, - "npm:@inquirer/type": { - "type": "npm", - "name": "npm:@inquirer/type", - "data": { - "version": "1.5.2", - "packageName": "@inquirer/type", - "hash": "sha512-w9qFkumYDCNyDZmNQjf/n6qQuvQ4dMC3BJesY4oF+yr0CxR5vxujflAVeIcS6U336uzi9GM0kAfZlLrZ9UTkpA==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:@istanbuljs/load-nyc-config": { - "type": "npm", - "name": "npm:@istanbuljs/load-nyc-config", - "data": { - "version": "1.1.0", - "packageName": "@istanbuljs/load-nyc-config", - "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" - } - }, - "npm:argparse@1.0.10": { - "type": "npm", - "name": "npm:argparse@1.0.10", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:js-yaml@3.14.1": { - "type": "npm", - "name": "npm:js-yaml@3.14.1", - "data": { - "version": "3.14.1", - "packageName": "js-yaml", - "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "4.1.0", - "packageName": "js-yaml", - "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - } - }, - "npm:@istanbuljs/schema": { - "type": "npm", - "name": "npm:@istanbuljs/schema", - "data": { - "version": "0.1.3", - "packageName": "@istanbuljs/schema", - "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" - } - }, - "npm:@jest/console": { - "type": "npm", - "name": "npm:@jest/console", - "data": { - "version": "29.7.0", - "packageName": "@jest/console", - "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" - } - }, - "npm:color-convert@2.0.1": { - "type": "npm", - "name": "npm:color-convert@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:color-name@1.1.4": { - "type": "npm", - "name": "npm:color-name@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, - "npm:@jest/core": { - "type": "npm", - "name": "npm:@jest/core", - "data": { - "version": "29.7.0", - "packageName": "@jest/core", - "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" - } - }, - "npm:@jest/environment": { - "type": "npm", - "name": "npm:@jest/environment", - "data": { - "version": "29.7.0", - "packageName": "@jest/environment", - "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "npm:@jest/expect-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/fake-timers": { - "type": "npm", - "name": "npm:@jest/fake-timers", - "data": { - "version": "29.7.0", - "packageName": "@jest/fake-timers", - "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" - } - }, - "npm:@jest/globals": { - "type": "npm", - "name": "npm:@jest/globals", - "data": { - "version": "29.7.0", - "packageName": "@jest/globals", - "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" - } - }, - "npm:@jest/reporters": { - "type": "npm", - "name": "npm:@jest/reporters", - "data": { - "version": "29.7.0", - "packageName": "@jest/reporters", - "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "29.6.3", - "packageName": "@jest/schemas", - "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" - } - }, - "npm:@jest/source-map": { - "type": "npm", - "name": "npm:@jest/source-map", - "data": { - "version": "29.6.3", - "packageName": "@jest/source-map", - "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" - } - }, - "npm:@jest/test-result": { - "type": "npm", - "name": "npm:@jest/test-result", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-result", - "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" - } - }, - "npm:@jest/test-sequencer": { - "type": "npm", - "name": "npm:@jest/test-sequencer", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-sequencer", - "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" - } - }, - "npm:@jest/transform": { - "type": "npm", - "name": "npm:@jest/transform", - "data": { - "version": "29.7.0", - "packageName": "@jest/transform", - "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" - } - }, - "npm:@jest/types": { - "type": "npm", - "name": "npm:@jest/types", - "data": { - "version": "29.6.3", - "packageName": "@jest/types", - "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.5", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.2", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.2.1", - "packageName": "@jridgewell/set-array", - "hash": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.6", - "packageName": "@jridgewell/source-map", - "hash": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.4.15", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - } - }, - "npm:@jsonjoy.com/base64": { - "type": "npm", - "name": "npm:@jsonjoy.com/base64", - "data": { - "version": "1.1.2", - "packageName": "@jsonjoy.com/base64", - "hash": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==" - } - }, - "npm:@jsonjoy.com/json-pack": { - "type": "npm", - "name": "npm:@jsonjoy.com/json-pack", - "data": { - "version": "1.0.4", - "packageName": "@jsonjoy.com/json-pack", - "hash": "sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==" - } - }, - "npm:@jsonjoy.com/util": { - "type": "npm", - "name": "npm:@jsonjoy.com/util", - "data": { - "version": "1.3.0", - "packageName": "@jsonjoy.com/util", - "hash": "sha512-Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw==" - } - }, - "npm:@leichtgewicht/ip-codec": { - "type": "npm", - "name": "npm:@leichtgewicht/ip-codec", - "data": { - "version": "2.0.5", - "packageName": "@leichtgewicht/ip-codec", - "hash": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==" - } - }, - "npm:@listr2/prompt-adapter-inquirer": { - "type": "npm", - "name": "npm:@listr2/prompt-adapter-inquirer", - "data": { - "version": "2.0.13", - "packageName": "@listr2/prompt-adapter-inquirer", - "hash": "sha512-nAl6teTt7EWSjttNavAnv3uFR3w3vPP3OTYmHyPNHzKhAj2NoBDHmbS3MGpvvO8KXXPASnHjEGrrKrdKTMKPnQ==" - } - }, - "npm:@lmdb/lmdb-darwin-arm64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-darwin-arm64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-darwin-arm64", - "hash": "sha512-vgTwzNUD3Hy4aqtGhX2+nV/usI0mwy3hDRuTjs8VcK0BLiMVEpNQXgzwlWEgPmA8AAPloUgyOs2nK5clJF5oIg==" - } - }, - "npm:@lmdb/lmdb-darwin-x64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-darwin-x64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-darwin-x64", - "hash": "sha512-qOt0hAhj2ZLY6aEWu85rzt5zcyCAQITMhCMEPNlo1tuYekpVAdkQNiwXxEkCjBYvwTskvXuwXOOUpjuSc+aJnA==" - } - }, - "npm:@lmdb/lmdb-linux-arm": { - "type": "npm", - "name": "npm:@lmdb/lmdb-linux-arm", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-linux-arm", - "hash": "sha512-Ggd/UXpE+alMncbELCXA3OKpDj9bDBR3qVO7WRTxstloDglRAHfZmUJgTkeaNKjFO1JHqS7AKy0jba9XebZB1w==" - } - }, - "npm:@lmdb/lmdb-linux-arm64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-linux-arm64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-linux-arm64", - "hash": "sha512-Qy4cFXFe9h1wAWMsojex8x1ifvw2kqiZv686YiRTdQEzAfc3vJASHFcD/QejHUCx7YHMYdnUoCS45rG2AiGDTQ==" - } - }, - "npm:@lmdb/lmdb-linux-x64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-linux-x64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-linux-x64", - "hash": "sha512-c+noT9IofktxktFllKHFmci8ka2SYGSLN17pj/KSl1hg7mmfAiGp4xxFxEwMLTb+SX95vP1DFiR++1I3WLVxvA==" - } - }, - "npm:@lmdb/lmdb-win32-x64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-win32-x64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-win32-x64", - "hash": "sha512-CO3MFV8gUx16NU/CyyuumAKblESwvoGVA2XhQKZ976OTOxaTbb8F8D3f0iiZ4MYqsN74jIrFuCmXpPnpjbhfOQ==" - } - }, - "npm:@module-federation/bridge-react-webpack-plugin": { - "type": "npm", - "name": "npm:@module-federation/bridge-react-webpack-plugin", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/bridge-react-webpack-plugin", - "hash": "sha512-6G1qTo1HWvRcN5fzE+SZgvgzSPoq5YqNx8hFL8BttJmnd3wj4SUOFiikAsXhdVrzSK+Zuzg6pipkiLH1m+pbtw==" - } - }, - "npm:@module-federation/dts-plugin": { - "type": "npm", - "name": "npm:@module-federation/dts-plugin", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/dts-plugin", - "hash": "sha512-qY1Wbqo0yu9nh6KR8K19t5T4tYtlUbmcNdcaCweISCyAbH99TrhpQkJ89NY0TLtnxQ6uayIYayqAWS7vzyDXVw==" - } - }, - "npm:fs-extra@9.1.0": { - "type": "npm", - "name": "npm:fs-extra@9.1.0", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:fs-extra@3.0.1": { - "type": "npm", - "name": "npm:fs-extra@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "fs-extra", - "hash": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==" - } - }, - "npm:fs-extra@10.1.0": { - "type": "npm", - "name": "npm:fs-extra@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "11.2.0", - "packageName": "fs-extra", - "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" - } - }, - "npm:fs-extra@8.1.0": { - "type": "npm", - "name": "npm:fs-extra@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "fs-extra", - "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - } - }, - "npm:@module-federation/enhanced": { - "type": "npm", - "name": "npm:@module-federation/enhanced", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/enhanced", - "hash": "sha512-6fGM/GiKw6LZiBe6DF8Petz6ih/Yyf3q2htLrx+hrWoDWfWEoWlLvoCUsVkY2UgMCLKid7Fm3Auc4w8A4aRjvQ==" - } - }, - "npm:@module-federation/managers": { - "type": "npm", - "name": "npm:@module-federation/managers", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/managers", - "hash": "sha512-S5GXqt2Vrs1+uNXHw7UzZ7m3fs8H3nxNsNGQ0j5+HiT5yA7uRTY1AZJZCGAHzG6XImJ1DzL/SW1acM2Hwj0aAw==" - } - }, - "npm:@module-federation/manifest": { - "type": "npm", - "name": "npm:@module-federation/manifest", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/manifest", - "hash": "sha512-kw4PeAldkOuGCWfCnDzZwPHUx5qv9+WztY5+TEbsgXc5E+/e2NDA6Gg3eT8zUGeexeGdab3f+DuN9ZClZJYVGA==" - } - }, - "npm:@module-federation/rspack": { - "type": "npm", - "name": "npm:@module-federation/rspack", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/rspack", - "hash": "sha512-5Bofm3cY7OOwO2DT5TevITd+HAA03zsY1wwsMb1BP6NkS/ukUtsjuRo2Anua0RkHBEIx+Dv5rpqOn7qSlOm1Fg==" - } - }, - "npm:@module-federation/runtime": { - "type": "npm", - "name": "npm:@module-federation/runtime", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/runtime", - "hash": "sha512-8xmA/+z1zD09F5qU8VnSWLExqTCVWoHOguXsCX79kkqp7i0c+D2YaebWzlQ2kku+DU+0VIzXpQ3BBcumZ3v3wQ==" - } - }, - "npm:@module-federation/runtime-tools": { - "type": "npm", - "name": "npm:@module-federation/runtime-tools", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/runtime-tools", - "hash": "sha512-RSNtyhcNvnTQIdzRUIOGue6WQA/9mL9cY/n0dEd357L/lmLCvfHiZbowlkacckDzyApariUHxzkHrU2Q6kzoew==" - } - }, - "npm:@module-federation/sdk": { - "type": "npm", - "name": "npm:@module-federation/sdk", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/sdk", - "hash": "sha512-eGMnJxdRDgt6dtMv8gkAlzEbTPWVHb3AHUNUG0w56wcbIF0RHC6kmvpHpSQyq4DVGWv3U4g/ZiH5BvBlqEelDQ==" - } - }, - "npm:@module-federation/third-party-dts-extractor": { - "type": "npm", - "name": "npm:@module-federation/third-party-dts-extractor", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/third-party-dts-extractor", - "hash": "sha512-VGXvdsRlljbFUfGeA448CxR7i6fLWJN07ViRuNXYYXc19e4bQVhBHzrf7eCv9ahcf/tA/8YYCS2h11ixbD691A==" - } - }, - "npm:@module-federation/vite": { - "type": "npm", - "name": "npm:@module-federation/vite", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/vite", - "hash": "sha512-9sGbJjUwfOUoDReaE/HcnYcfB4ZmsUIyvmmZnzwTD0WEbJFQBvz1+sEPNBh0hTIuPE5Jqs0D4ueoXTNAU/7DQA==" - } - }, - "npm:@module-federation/webpack-bundler-runtime": { - "type": "npm", - "name": "npm:@module-federation/webpack-bundler-runtime", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/webpack-bundler-runtime", - "hash": "sha512-tiW1kD/V3QNul1/O3Y3lwQv/r4sUU4jvWZykrLvHYt2vuoGe1d4tHnSIFEVEAi9FSpuDwdRK2+NaWBr92gIS7Q==" - } - }, - "npm:@mole-inc/bin-wrapper": { - "type": "npm", - "name": "npm:@mole-inc/bin-wrapper", - "data": { - "version": "8.0.1", - "packageName": "@mole-inc/bin-wrapper", - "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-darwin-arm64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-darwin-arm64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-darwin-arm64", - "hash": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-darwin-x64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-darwin-x64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-darwin-x64", - "hash": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-linux-arm": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-linux-arm", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-linux-arm", - "hash": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-linux-arm64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-linux-arm64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-linux-arm64", - "hash": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-linux-x64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-linux-x64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-linux-x64", - "hash": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-win32-x64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-win32-x64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-win32-x64", - "hash": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==" - } - }, - "npm:@napi-rs/wasm-runtime": { - "type": "npm", - "name": "npm:@napi-rs/wasm-runtime", - "data": { - "version": "0.2.4", - "packageName": "@napi-rs/wasm-runtime", - "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" - } - }, - "npm:@ngtools/webpack": { - "type": "npm", - "name": "npm:@ngtools/webpack", - "data": { - "version": "18.1.3", - "packageName": "@ngtools/webpack", - "hash": "sha512-VmqOO8CcXKL06anNYlL0OkrqIuBNZQu5n0YVP4z8oneJhDBqwK2++dK0WpcNyIFcg3HsQ7w3BuqUWJ4iPiWxEQ==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.5", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.5", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.8", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - } - }, - "npm:@npmcli/agent": { - "type": "npm", - "name": "npm:@npmcli/agent", - "data": { - "version": "2.2.2", - "packageName": "@npmcli/agent", - "hash": "sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==" - } - }, - "npm:http-proxy-agent@7.0.2": { - "type": "npm", - "name": "npm:http-proxy-agent@7.0.2", - "data": { - "version": "7.0.2", - "packageName": "http-proxy-agent", - "hash": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:lru-cache@10.2.2": { - "type": "npm", - "name": "npm:lru-cache@10.2.2", - "data": { - "version": "10.2.2", - "packageName": "lru-cache", - "hash": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==" - } - }, - "npm:lru-cache@6.0.0": { - "type": "npm", - "name": "npm:lru-cache@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "lru-cache", - "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - } - }, - "npm:lru-cache@7.18.3": { - "type": "npm", - "name": "npm:lru-cache@7.18.3", - "data": { - "version": "7.18.3", - "packageName": "lru-cache", - "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" - } - }, - "npm:lru-cache@10.2.0": { - "type": "npm", - "name": "npm:lru-cache@10.2.0", - "data": { - "version": "10.2.0", - "packageName": "lru-cache", - "hash": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==" - } - }, - "npm:lru-cache@4.1.5": { - "type": "npm", - "name": "npm:lru-cache@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "lru-cache", - "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "3.1.0", - "packageName": "@npmcli/fs", - "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" - } - }, - "npm:@npmcli/git": { - "type": "npm", - "name": "npm:@npmcli/git", - "data": { - "version": "5.0.7", - "packageName": "@npmcli/git", - "hash": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==" - } - }, - "npm:isexe@3.1.1": { - "type": "npm", - "name": "npm:isexe@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "isexe", - "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:which@4.0.0": { - "type": "npm", - "name": "npm:which@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "which", - "hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==" - } - }, - "npm:which@1.3.1": { - "type": "npm", - "name": "npm:which@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "which", - "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - } - }, - "npm:which@1.2.14": { - "type": "npm", - "name": "npm:which@1.2.14", - "data": { - "version": "1.2.14", - "packageName": "which", - "hash": "sha512-16uPglFkRPzgiUXYMi1Jf8Z5EzN1iB4V0ZtMXcHZnwsBtQhhHeCqoWw7tsUY42hJGNDWtUsVLTjakIa5BgAxCw==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:@npmcli/installed-package-contents": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents", - "data": { - "version": "2.1.0", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==" - } - }, - "npm:@npmcli/node-gyp": { - "type": "npm", - "name": "npm:@npmcli/node-gyp", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/node-gyp", - "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" - } - }, - "npm:@npmcli/package-json": { - "type": "npm", - "name": "npm:@npmcli/package-json", - "data": { - "version": "5.1.1", - "packageName": "@npmcli/package-json", - "hash": "sha512-uTq5j/UqUzbOaOxVy+osfOhpqOiLfUZ0Ut33UbcyyAPJbZcJsf4Mrsyb8r58FoIFlofw0iOFsuCA/oDK14VDJQ==" - } - }, - "npm:glob@10.4.1": { - "type": "npm", - "name": "npm:glob@10.4.1", - "data": { - "version": "10.4.1", - "packageName": "glob", - "hash": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==" - } - }, - "npm:glob@8.1.0": { - "type": "npm", - "name": "npm:glob@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:glob@10.3.10": { - "type": "npm", - "name": "npm:glob@10.3.10", - "data": { - "version": "10.3.10", - "packageName": "glob", - "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.2.3", - "packageName": "glob", - "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" - } - }, - "npm:glob@6.0.4": { - "type": "npm", - "name": "npm:glob@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "glob", - "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" - } - }, - "npm:glob@10.4.5": { - "type": "npm", - "name": "npm:glob@10.4.5", - "data": { - "version": "10.4.5", - "packageName": "glob", - "hash": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==" - } - }, - "npm:jackspeak@3.1.2": { - "type": "npm", - "name": "npm:jackspeak@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "jackspeak", - "hash": "sha512-kWmLKn2tRtfYMF/BakihVVRzBKOxz4gJMiL2Rj91WnAB5TPZumSH99R/Yf1qE1u4uRimvCSJfm6hnxohXeEXjQ==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "2.3.6", - "packageName": "jackspeak", - "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" - } - }, - "npm:jackspeak@3.4.3": { - "type": "npm", - "name": "npm:jackspeak@3.4.3", - "data": { - "version": "3.4.3", - "packageName": "jackspeak", - "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" - } - }, - "npm:@npmcli/promise-spawn": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn", - "data": { - "version": "7.0.2", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==" - } - }, - "npm:@npmcli/redact": { - "type": "npm", - "name": "npm:@npmcli/redact", - "data": { - "version": "2.0.0", - "packageName": "@npmcli/redact", - "hash": "sha512-SEjCPAVHWYUIQR+Yn03kJmrJjZDtJLYpj300m3HV9OTRZNpC5YpbMsM3eTkECyT4aWj8lDr9WeY6TWefpubtYQ==" - } - }, - "npm:@npmcli/run-script": { - "type": "npm", - "name": "npm:@npmcli/run-script", - "data": { - "version": "8.1.0", - "packageName": "@npmcli/run-script", - "hash": "sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==" - } - }, - "npm:@nrwl/angular": { - "type": "npm", - "name": "npm:@nrwl/angular", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/angular", - "hash": "sha512-ilS6ZjsEOToeTiKHixd9+wLvslUZ1cdvNIgvsUZ3VHK4OmGxTzGJXaV+1+CSgYDpSp4+MC/Di8EfzUteCn9mFw==" - } - }, - "npm:@nrwl/cypress": { - "type": "npm", - "name": "npm:@nrwl/cypress", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/cypress", - "hash": "sha512-yVMSVjDcOdqiiJjHaHme/3FtyFgT4mK7+GZExoJzGevHDrReeN22a2+3W7Rr/cEi/qTDdnNfODn5QdSpWfbuLQ==" - } - }, - "npm:@nrwl/devkit": { - "type": "npm", - "name": "npm:@nrwl/devkit", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/devkit", - "hash": "sha512-H7LGlwAktfL2GR4scwCfehuppmzcHJJt4C2PpiGEsfA74MKBw2/VGX15b29Mf36XbGS+Bx9vjvooZEt5HPCusw==" - } - }, - "npm:@nrwl/eslint-plugin-nx": { - "type": "npm", - "name": "npm:@nrwl/eslint-plugin-nx", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/eslint-plugin-nx", - "hash": "sha512-pHIJHXOVJRC+wBI9zK0RnwKAh7NC9TKCdIm5KsYNFHTLswUxHnxzmP86hKTVcZO7o10NeYzBWD7QAQvqYgIQoA==" - } - }, - "npm:@nrwl/jest": { - "type": "npm", - "name": "npm:@nrwl/jest", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/jest", - "hash": "sha512-/redyU+er4f0xjLgWttdyOZw0yOozGzwDuUWYu0vR9SCmKXyhQf3kUHw6yR3/qOLiN32VbzAmiq67NvGhoRgFw==" - } - }, - "npm:@nrwl/js": { - "type": "npm", - "name": "npm:@nrwl/js", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/js", - "hash": "sha512-mfTBvon1v/Ts1Crvv25raXGxpQe3cgPTNCP+D5SG6Vpe/vbLOYiBi90UhHIKXKZOQ73RRx+Wojgn+Zv5pDo13A==" - } - }, - "npm:@nrwl/node": { - "type": "npm", - "name": "npm:@nrwl/node", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/node", - "hash": "sha512-eiQqeHNtR40cdD0WX33ZUwom3Malt7C7zq+iU5DTLlbeC6ciZGz9pYkeNZ6JJZOEPEUGM5O+7gtWUb+Ig7ZyMQ==" - } - }, - "npm:@nrwl/nx-plugin": { - "type": "npm", - "name": "npm:@nrwl/nx-plugin", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/nx-plugin", - "hash": "sha512-GGEmE2iEgYQEIYroJQO5ICwhFAaKmdRunZBeSEQdkpG2QSKEGsg/sl7VG+QgukO5mLk0VULKF7niRdr2foVdiw==" - } - }, - "npm:@nrwl/tao": { - "type": "npm", - "name": "npm:@nrwl/tao", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/tao", - "hash": "sha512-p1bxEjW32bIHAiTp+PVdJpa2V9En2s9FigepHXyvmT2Aipisz96CKiDjexhPTjOZHUKtqA9FgmOIuVl3sBME3g==" - } - }, - "npm:@nrwl/web": { - "type": "npm", - "name": "npm:@nrwl/web", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/web", - "hash": "sha512-2TJB0zSBjDtl2AaZToTvSLej4ed5YO5nJ9iFsv764WDLI0D/WsciUiZHNdXSIhU0lf2yrs7CmIYZFWAdnXzxKA==" - } - }, - "npm:@nrwl/webpack": { - "type": "npm", - "name": "npm:@nrwl/webpack", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/webpack", - "hash": "sha512-2tHi4QKDAjs9f7lzoELmzh5D1aT+XOn6PTK47V4n+Y878HgRQuv9NMRd7WhH5nAAlOKQYonsTc9e4doEJ6T9aQ==" - } - }, - "npm:@nrwl/workspace": { - "type": "npm", - "name": "npm:@nrwl/workspace", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/workspace", - "hash": "sha512-k0Pria840szB3dIDCXOMbD4jbnaLCeGRYthE5duG5nPxTCbeMMu7pU1t0sv9IgpQZ/JrHeWliknWgaTlIguPug==" - } - }, - "npm:@nx/angular": { - "type": "npm", - "name": "npm:@nx/angular", - "data": { - "version": "19.5.6", - "packageName": "@nx/angular", - "hash": "sha512-86fZmTx7Omo7FJuRyuNvEiUHUSuwEaGFeh/UkWt3Crf5C0pAlPYzpcm3B7B7e0RwGiWII9Mc9ZLwnPTv4jgZdA==" - } - }, - "npm:@nx/cypress": { - "type": "npm", - "name": "npm:@nx/cypress", - "data": { - "version": "19.5.6", - "packageName": "@nx/cypress", - "hash": "sha512-3yUZ0AR5e9Ea7vk/6Zjje1QHyPXGycdnWOzOZuOJ6Wloeqj/EWWGoIEsSt+XAfzCiK/oWnlXpsbkrGJZYYgbdQ==" - } - }, - "npm:@nx/devkit": { - "type": "npm", - "name": "npm:@nx/devkit", - "data": { - "version": "19.5.6", - "packageName": "@nx/devkit", - "hash": "sha512-zSToXLkhbAOQmqVTgUNHdLO0uOZz/iGwqEK4tuAhU5hhqTcpN1TZUI9BlINvtFJBLvbNroGrnIh0gTq9CPzVHw==" - } - }, - "npm:@nx/eslint": { - "type": "npm", - "name": "npm:@nx/eslint", - "data": { - "version": "19.5.6", - "packageName": "@nx/eslint", - "hash": "sha512-WLUo4f+ndMVWZ5QqqZiZNCmbLCqEqPBopvGWJg6uUJyrm5HiFsks+1nRp7BxFzj0SwmdmSRzQFvMgorw7lAgCQ==" - } - }, - "npm:@nx/eslint-plugin": { - "type": "npm", - "name": "npm:@nx/eslint-plugin", - "data": { - "version": "19.5.6", - "packageName": "@nx/eslint-plugin", - "hash": "sha512-5yZJbAoS35blBvY1riAxzemBGJJJW36FVm304ccPyJXvXA7Wa7yMbtwuVagJ9E7w4fodmCcWOAvrCDUTSakBug==" - } - }, - "npm:typescript@5.4.5": { - "type": "npm", - "name": "npm:typescript@5.4.5", - "data": { - "version": "5.4.5", - "packageName": "typescript", - "hash": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "5.5.4", - "packageName": "typescript", - "hash": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==" - } - }, - "npm:@nx/jest": { - "type": "npm", - "name": "npm:@nx/jest", - "data": { - "version": "19.5.6", - "packageName": "@nx/jest", - "hash": "sha512-UkGEl7iAt3MEz+BB4Xp3u641LrMeOytTcbljjyYtR84YtJaYgc8CFmornnw8KVqfavQS+v/nrv8lMbbYQHkWpQ==" - } - }, - "npm:@nx/js": { - "type": "npm", - "name": "npm:@nx/js", - "data": { - "version": "19.5.6", - "packageName": "@nx/js", - "hash": "sha512-NNf6Zh4Z8k3dmkXkCUYrReH9ZpdAhvUQjwrWUHtmc5MnWTsQL12a01MwbMi4ReMzDLDjffDXjJFxYmbNYKaRzw==" - } - }, - "npm:fast-glob@3.2.7": { - "type": "npm", - "name": "npm:fast-glob@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "fast-glob", - "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "npm:ora@5.3.0": { - "type": "npm", - "name": "npm:ora@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:source-map@0.6.1": { - "type": "npm", - "name": "npm:source-map@0.6.1", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.7.4", - "packageName": "source-map", - "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" - } - }, - "npm:source-map-support@0.5.19": { - "type": "npm", - "name": "npm:source-map-support@0.5.19", - "data": { - "version": "0.5.19", - "packageName": "source-map-support", - "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" - } - }, - "npm:source-map-support@0.5.13": { - "type": "npm", - "name": "npm:source-map-support@0.5.13", - "data": { - "version": "0.5.13", - "packageName": "source-map-support", - "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:@nx/linter": { - "type": "npm", - "name": "npm:@nx/linter", - "data": { - "version": "19.5.6", - "packageName": "@nx/linter", - "hash": "sha512-OS0DZ1TDTvWaZe7ijLT6jkQZCCBg4OseFmP2Y6bqE/oRdyoRv95gCT2MGmyJQXkLoX5j9DMfc4nYXS0VHFYqdg==" - } - }, - "npm:@nx/node": { - "type": "npm", - "name": "npm:@nx/node", - "data": { - "version": "19.5.6", - "packageName": "@nx/node", - "hash": "sha512-nWWoZCdomYOo0JmJMiP1UWlAnCdrvqLxXgWS6MNbQTT0rhJSn6em5S9N4TuHA7+aCDInvzNEL8YcVTm1xCbtug==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-evEpUq571PQkhaLBR7ul5iqE2l97QS7Q37/rxoBuwJzyQ/QKHfNu5t032bR3KLyEOrv7golT10jMeoQlNeF7eQ==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-o1tu0dOW7TZ80VN9N11FQL/3gHd1+t6NqtEmRClN0/sAh2MZyiBdbXv7UeN5HoKE7HAusiVFIxK3c1lxOvFtsQ==" - } - }, - "npm:@nx/nx-freebsd-x64": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-IUL0ROGpLUol9cuVJ7VeUvaB/ptxg7DOjMef1+LJeOgxl/SFNa0bj0kKpA/AQwujz6cLI7Ei7xLTVQOboNh1DA==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-TGf1+cpWg5QiPEGW5kgxa1fVNyASMuqu+LvQ9CKhNYNz5EPD15yr/k6C0tOjgSXro3wi8TikTeG0Ln2hpmn6pw==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-4hZI5NmnBEAzr3NV/BtlPjbSVffLWGGCJ5tB/JB/NpW/vMtzOPCZ4RvsHuJMPprqHcXOdUnBgZFEcLbEMUXz0A==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-n0oIBblMN+nlcBUbrFUkRSyzKZVR+G1lzdZ3PuHVwLC664hkbijEBAdF2E321yRfv5ohQVY0UIYDZVFN2XhFUg==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-IuoNo1bDHyJEeHom/n2m4+AA+UQ+Rlryvt9+bTdADclSFjmBLYCgbJwQRy7q9+vQk2mpQm0pQJv4d3XKCpDH+g==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-FXtB8m/CSRkXLtDOAGfImO9OCUDIwYBssnvCVqX6PyPTBaVWo/GvX1O9WRbXSqSVIaJJTPn1aY/p6vptlGbDFw==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-aIDU84rjvxoqyUDIdN4VwS91Yec8bAtXOxjOFlF2acY2tXh0RjzmM+mkEP44nVAzFy0V1/cjzBKb6643FsEqdA==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-zWB/2TjhNYKHbuPh++5hYitno3EpSFXrPND0I0VLec27WW7voRY9XQFFznA3omForU4FfmVhITcKCqzIb3EtpA==" - } - }, - "npm:@nx/plugin": { - "type": "npm", - "name": "npm:@nx/plugin", - "data": { - "version": "19.5.6", - "packageName": "@nx/plugin", - "hash": "sha512-2es5qj8/YarRyctkcRhFdmwRgyHJMfGd/WBOaAsA88c8gqwB9nwRQcSAUmuHkyr4jVwo7xSLCZT4WvRRiZv1Pg==" - } - }, - "npm:@nx/web": { - "type": "npm", - "name": "npm:@nx/web", - "data": { - "version": "19.5.6", - "packageName": "@nx/web", - "hash": "sha512-mCw2KpVj8FPieRFn98bMJxF4s1RCMTciC78NKFiC0Dmg0KFmhFUw6geWe8anhhjbTxqFvLENMJQIn9K4dlaL1A==" - } - }, - "npm:@nx/webpack": { - "type": "npm", - "name": "npm:@nx/webpack", - "data": { - "version": "19.5.6", - "packageName": "@nx/webpack", - "hash": "sha512-7xMYx0MIxf4kuhiIyF7QEee7AgK1wzroO2wl+9fU8sjKhvDgW9k8huMCNkOcScptB3SP4CiM9b7S5c/pwr75hQ==" - } - }, - "npm:@types/retry@0.12.0": { - "type": "npm", - "name": "npm:@types/retry@0.12.0", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.2", - "packageName": "@types/retry", - "hash": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==" - } - }, - "npm:array-union@3.0.1": { - "type": "npm", - "name": "npm:array-union@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "array-union", - "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" - } - }, - "npm:array-union": { - "type": "npm", - "name": "npm:array-union", - "data": { - "version": "2.1.0", - "packageName": "array-union", - "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - } - }, - "npm:body-parser@1.20.2": { - "type": "npm", - "name": "npm:body-parser@1.20.2", - "data": { - "version": "1.20.2", - "packageName": "body-parser", - "hash": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "1.20.1", - "packageName": "body-parser", - "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" - } - }, - "npm:connect-history-api-fallback@2.0.0": { - "type": "npm", - "name": "npm:connect-history-api-fallback@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" - } - }, - "npm:connect-history-api-fallback": { - "type": "npm", - "name": "npm:connect-history-api-fallback", - "data": { - "version": "1.6.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - } - }, - "npm:cookie@0.6.0": { - "type": "npm", - "name": "npm:cookie@0.6.0", - "data": { - "version": "0.6.0", - "packageName": "cookie", - "hash": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.4.2", - "packageName": "cookie", - "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" - } - }, - "npm:cookie@0.5.0": { - "type": "npm", - "name": "npm:cookie@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "cookie", - "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - } - }, - "npm:copy-webpack-plugin@10.2.4": { - "type": "npm", - "name": "npm:copy-webpack-plugin@10.2.4", - "data": { - "version": "10.2.4", - "packageName": "copy-webpack-plugin", - "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" - } - }, - "npm:copy-webpack-plugin": { - "type": "npm", - "name": "npm:copy-webpack-plugin", - "data": { - "version": "12.0.2", - "packageName": "copy-webpack-plugin", - "hash": "sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==" - } - }, - "npm:cosmiconfig@7.1.0": { - "type": "npm", - "name": "npm:cosmiconfig@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "cosmiconfig", - "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "6.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" - } - }, - "npm:cosmiconfig@9.0.0": { - "type": "npm", - "name": "npm:cosmiconfig@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" - } - }, - "npm:css-loader@6.11.0": { - "type": "npm", - "name": "npm:css-loader@6.11.0", - "data": { - "version": "6.11.0", - "packageName": "css-loader", - "hash": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==" - } - }, - "npm:css-loader": { - "type": "npm", - "name": "npm:css-loader", - "data": { - "version": "7.1.2", - "packageName": "css-loader", - "hash": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==" - } - }, - "npm:destroy@1.2.0": { - "type": "npm", - "name": "npm:destroy@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "destroy", - "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - } - }, - "npm:destroy": { - "type": "npm", - "name": "npm:destroy", - "data": { - "version": "1.0.4", - "packageName": "destroy", - "hash": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" - } - }, - "npm:express@4.19.2": { - "type": "npm", - "name": "npm:express@4.19.2", - "data": { - "version": "4.19.2", - "packageName": "express", - "hash": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "4.18.2", - "packageName": "express", - "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" - } - }, - "npm:finalhandler@1.2.0": { - "type": "npm", - "name": "npm:finalhandler@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "finalhandler", - "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.1.0", - "packageName": "finalhandler", - "hash": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==" - } - }, - "npm:glob-parent@6.0.2": { - "type": "npm", - "name": "npm:glob-parent@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:globby@12.2.0": { - "type": "npm", - "name": "npm:globby@12.2.0", - "data": { - "version": "12.2.0", - "packageName": "globby", - "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" - } - }, - "npm:globby@14.0.2": { - "type": "npm", - "name": "npm:globby@14.0.2", - "data": { - "version": "14.0.2", - "packageName": "globby", - "hash": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:http-proxy-middleware@2.0.6": { - "type": "npm", - "name": "npm:http-proxy-middleware@2.0.6", - "data": { - "version": "2.0.6", - "packageName": "http-proxy-middleware", - "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - } - }, - "npm:http-proxy-middleware": { - "type": "npm", - "name": "npm:http-proxy-middleware", - "data": { - "version": "3.0.0", - "packageName": "http-proxy-middleware", - "hash": "sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==" - } - }, - "npm:ipaddr.js@2.2.0": { - "type": "npm", - "name": "npm:ipaddr.js@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "ipaddr.js", - "hash": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:less@4.1.3": { - "type": "npm", - "name": "npm:less@4.1.3", - "data": { - "version": "4.1.3", - "packageName": "less", - "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" - } - }, - "npm:less": { - "type": "npm", - "name": "npm:less", - "data": { - "version": "4.2.0", - "packageName": "less", - "hash": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==" - } - }, - "npm:less-loader@11.1.0": { - "type": "npm", - "name": "npm:less-loader@11.1.0", - "data": { - "version": "11.1.0", - "packageName": "less-loader", - "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" - } - }, - "npm:less-loader": { - "type": "npm", - "name": "npm:less-loader", - "data": { - "version": "12.2.0", - "packageName": "less-loader", - "hash": "sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==" - } - }, - "npm:loader-utils@2.0.4": { - "type": "npm", - "name": "npm:loader-utils@2.0.4", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "3.3.1", - "packageName": "loader-utils", - "hash": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==" - } - }, - "npm:make-dir@2.1.0": { - "type": "npm", - "name": "npm:make-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-dir@4.0.0": { - "type": "npm", - "name": "npm:make-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "make-dir", - "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:mini-css-extract-plugin@2.4.7": { - "type": "npm", - "name": "npm:mini-css-extract-plugin@2.4.7", - "data": { - "version": "2.4.7", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" - } - }, - "npm:mini-css-extract-plugin": { - "type": "npm", - "name": "npm:mini-css-extract-plugin", - "data": { - "version": "2.9.0", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==" - } - }, - "npm:ms@2.0.0": { - "type": "npm", - "name": "npm:ms@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ms", - "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - }, - "npm:ms@2.1.3": { - "type": "npm", - "name": "npm:ms@2.1.3", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.2", - "packageName": "ms", - "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - }, - "npm:on-finished@2.4.1": { - "type": "npm", - "name": "npm:on-finished@2.4.1", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" - } - }, - "npm:p-retry@4.6.2": { - "type": "npm", - "name": "npm:p-retry@4.6.2", - "data": { - "version": "4.6.2", - "packageName": "p-retry", - "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "6.2.0", - "packageName": "p-retry", - "hash": "sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:pify@3.0.0": { - "type": "npm", - "name": "npm:pify@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pify", - "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, - "npm:postcss-loader@6.2.1": { - "type": "npm", - "name": "npm:postcss-loader@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "postcss-loader", - "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" - } - }, - "npm:postcss-loader": { - "type": "npm", - "name": "npm:postcss-loader", - "data": { - "version": "8.1.1", - "packageName": "postcss-loader", - "hash": "sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==" - } - }, - "npm:qs@6.11.0": { - "type": "npm", - "name": "npm:qs@6.11.0", - "data": { - "version": "6.11.0", - "packageName": "qs", - "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.10.4", - "packageName": "qs", - "hash": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==" - } - }, - "npm:retry@0.13.1": { - "type": "npm", - "name": "npm:retry@0.13.1", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" - } - }, - "npm:sass-loader@12.6.0": { - "type": "npm", - "name": "npm:sass-loader@12.6.0", - "data": { - "version": "12.6.0", - "packageName": "sass-loader", - "hash": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==" - } - }, - "npm:sass-loader": { - "type": "npm", - "name": "npm:sass-loader", - "data": { - "version": "14.2.1", - "packageName": "sass-loader", - "hash": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==" - } - }, - "npm:send@0.18.0": { - "type": "npm", - "name": "npm:send@0.18.0", - "data": { - "version": "0.18.0", - "packageName": "send", - "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.16.2", - "packageName": "send", - "hash": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==" - } - }, - "npm:serve-static@1.15.0": { - "type": "npm", - "name": "npm:serve-static@1.15.0", - "data": { - "version": "1.15.0", - "packageName": "serve-static", - "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "1.13.2", - "packageName": "serve-static", - "hash": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==" - } - }, - "npm:slash@4.0.0": { - "type": "npm", - "name": "npm:slash@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slash", - "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - }, - "npm:slash@5.1.0": { - "type": "npm", - "name": "npm:slash@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:statuses@2.0.1": { - "type": "npm", - "name": "npm:statuses@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - } - }, - "npm:statuses@1.5.0": { - "type": "npm", - "name": "npm:statuses@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } - }, - "npm:statuses@1.4.0": { - "type": "npm", - "name": "npm:statuses@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "statuses", - "hash": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "1.3.1", - "packageName": "statuses", - "hash": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==" - } - }, - "npm:webpack-dev-middleware@5.3.4": { - "type": "npm", - "name": "npm:webpack-dev-middleware@5.3.4", - "data": { - "version": "5.3.4", - "packageName": "webpack-dev-middleware", - "hash": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==" - } - }, - "npm:webpack-dev-middleware": { - "type": "npm", - "name": "npm:webpack-dev-middleware", - "data": { - "version": "7.2.1", - "packageName": "webpack-dev-middleware", - "hash": "sha512-hRLz+jPQXo999Nx9fXVdKlg/aehsw1ajA9skAneGmT03xwmyuhvF93p6HUKKbWhXdcERtGTzUCtIQr+2IQegrA==" - } - }, - "npm:webpack-dev-server@4.15.2": { - "type": "npm", - "name": "npm:webpack-dev-server@4.15.2", - "data": { - "version": "4.15.2", - "packageName": "webpack-dev-server", - "hash": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==" - } - }, - "npm:webpack-dev-server": { - "type": "npm", - "name": "npm:webpack-dev-server", - "data": { - "version": "5.0.4", - "packageName": "webpack-dev-server", - "hash": "sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==" - } - }, - "npm:@nx/workspace": { - "type": "npm", - "name": "npm:@nx/workspace", - "data": { - "version": "19.5.6", - "packageName": "@nx/workspace", - "hash": "sha512-VkyHzSPI+++kLgftE6HA/jXcbn3zZwDYjhsrmSqwutj8BTuKhxs1YIL2gkzYVoTytF1wpWl3nk5MzqMGclptjA==" - } - }, - "npm:@phenomnomnominal/tsquery": { - "type": "npm", - "name": "npm:@phenomnomnominal/tsquery", - "data": { - "version": "5.0.1", - "packageName": "@phenomnomnominal/tsquery", - "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@rollup/plugin-commonjs": { - "type": "npm", - "name": "npm:@rollup/plugin-commonjs", - "data": { - "version": "25.0.7", - "packageName": "@rollup/plugin-commonjs", - "hash": "sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==" - } - }, - "npm:@rollup/plugin-json": { - "type": "npm", - "name": "npm:@rollup/plugin-json", - "data": { - "version": "6.1.0", - "packageName": "@rollup/plugin-json", - "hash": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==" - } - }, - "npm:@rollup/plugin-node-resolve": { - "type": "npm", - "name": "npm:@rollup/plugin-node-resolve", - "data": { - "version": "15.2.3", - "packageName": "@rollup/plugin-node-resolve", - "hash": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==" - } - }, - "npm:@rollup/plugin-replace": { - "type": "npm", - "name": "npm:@rollup/plugin-replace", - "data": { - "version": "5.0.5", - "packageName": "@rollup/plugin-replace", - "hash": "sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==" - } - }, - "npm:@rollup/pluginutils": { - "type": "npm", - "name": "npm:@rollup/pluginutils", - "data": { - "version": "5.1.0", - "packageName": "@rollup/pluginutils", - "hash": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==" - } - }, - "npm:picomatch@2.3.1": { - "type": "npm", - "name": "npm:picomatch@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "4.0.2", - "packageName": "picomatch", - "hash": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==" - } - }, - "npm:@rollup/rollup-android-arm-eabi": { - "type": "npm", - "name": "npm:@rollup/rollup-android-arm-eabi", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-android-arm-eabi", - "hash": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==" - } - }, - "npm:@rollup/rollup-android-arm-eabi@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-android-arm-eabi@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-android-arm-eabi", - "hash": "sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==" - } - }, - "npm:@rollup/rollup-android-arm64": { - "type": "npm", - "name": "npm:@rollup/rollup-android-arm64", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-android-arm64", - "hash": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==" - } - }, - "npm:@rollup/rollup-android-arm64@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-android-arm64@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-android-arm64", - "hash": "sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==" - } - }, - "npm:@rollup/rollup-darwin-arm64": { - "type": "npm", - "name": "npm:@rollup/rollup-darwin-arm64", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-darwin-arm64", - "hash": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==" - } - }, - "npm:@rollup/rollup-darwin-arm64@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-darwin-arm64@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-darwin-arm64", - "hash": "sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==" - } - }, - "npm:@rollup/rollup-darwin-x64": { - "type": "npm", - "name": "npm:@rollup/rollup-darwin-x64", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-darwin-x64", - "hash": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==" - } - }, - "npm:@rollup/rollup-darwin-x64@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-darwin-x64@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-darwin-x64", - "hash": "sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==" - } - }, - "npm:@rollup/rollup-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm-gnueabihf", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-arm-gnueabihf", - "hash": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==" - } - }, - "npm:@rollup/rollup-linux-arm-gnueabihf@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm-gnueabihf@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-arm-gnueabihf", - "hash": "sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==" - } - }, - "npm:@rollup/rollup-linux-arm-musleabihf": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm-musleabihf", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-arm-musleabihf", - "hash": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==" - } - }, - "npm:@rollup/rollup-linux-arm-musleabihf@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm-musleabihf@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-arm-musleabihf", - "hash": "sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==" - } - }, - "npm:@rollup/rollup-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm64-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-arm64-gnu", - "hash": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==" - } - }, - "npm:@rollup/rollup-linux-arm64-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm64-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-arm64-gnu", - "hash": "sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==" - } - }, - "npm:@rollup/rollup-linux-arm64-musl": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm64-musl", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-arm64-musl", - "hash": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==" - } - }, - "npm:@rollup/rollup-linux-arm64-musl@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm64-musl@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-arm64-musl", - "hash": "sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==" - } - }, - "npm:@rollup/rollup-linux-powerpc64le-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-powerpc64le-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-powerpc64le-gnu", - "hash": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==" - } - }, - "npm:@rollup/rollup-linux-powerpc64le-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-powerpc64le-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-powerpc64le-gnu", - "hash": "sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==" - } - }, - "npm:@rollup/rollup-linux-riscv64-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-riscv64-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-riscv64-gnu", - "hash": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==" - } - }, - "npm:@rollup/rollup-linux-riscv64-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-riscv64-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-riscv64-gnu", - "hash": "sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==" - } - }, - "npm:@rollup/rollup-linux-s390x-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-s390x-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-s390x-gnu", - "hash": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==" - } - }, - "npm:@rollup/rollup-linux-s390x-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-s390x-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-s390x-gnu", - "hash": "sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==" - } - }, - "npm:@rollup/rollup-linux-x64-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-x64-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-x64-gnu", - "hash": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==" - } - }, - "npm:@rollup/rollup-linux-x64-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-x64-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-x64-gnu", - "hash": "sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==" - } - }, - "npm:@rollup/rollup-linux-x64-musl": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-x64-musl", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-x64-musl", - "hash": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==" - } - }, - "npm:@rollup/rollup-linux-x64-musl@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-x64-musl@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-x64-musl", - "hash": "sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==" - } - }, - "npm:@rollup/rollup-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-arm64-msvc", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-win32-arm64-msvc", - "hash": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==" - } - }, - "npm:@rollup/rollup-win32-arm64-msvc@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-arm64-msvc@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-win32-arm64-msvc", - "hash": "sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==" - } - }, - "npm:@rollup/rollup-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-ia32-msvc", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-win32-ia32-msvc", - "hash": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==" - } - }, - "npm:@rollup/rollup-win32-ia32-msvc@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-ia32-msvc@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-win32-ia32-msvc", - "hash": "sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==" - } - }, - "npm:@rollup/rollup-win32-x64-msvc": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-x64-msvc", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-win32-x64-msvc", - "hash": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==" - } - }, - "npm:@rollup/rollup-win32-x64-msvc@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-x64-msvc@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-win32-x64-msvc", - "hash": "sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==" - } - }, - "npm:@rollup/wasm-node": { - "type": "npm", - "name": "npm:@rollup/wasm-node", - "data": { - "version": "4.18.0", - "packageName": "@rollup/wasm-node", - "hash": "sha512-DkLoyblRMhJw9ZogW9zCpyH0CNJ+7GaM7Ty+Vl+G21z/Gr7uKBaXqcJqwWUiNYVxTOgxZrxhDG6pmOFxOuswvw==" - } - }, - "npm:@schematics/angular": { - "type": "npm", - "name": "npm:@schematics/angular", - "data": { - "version": "18.1.3", - "packageName": "@schematics/angular", - "hash": "sha512-VyoL7O+3eL+BazmoWzexFpVy9k0MoOAmff3XqKLhP3/V7eXPc9s7znIDpPp28QF0V/Y2xMaGDWhqTx2CFcz4Qg==" - } - }, - "npm:@sigstore/bundle": { - "type": "npm", - "name": "npm:@sigstore/bundle", - "data": { - "version": "2.3.2", - "packageName": "@sigstore/bundle", - "hash": "sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==" - } - }, - "npm:@sigstore/core": { - "type": "npm", - "name": "npm:@sigstore/core", - "data": { - "version": "1.1.0", - "packageName": "@sigstore/core", - "hash": "sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==" - } - }, - "npm:@sigstore/protobuf-specs": { - "type": "npm", - "name": "npm:@sigstore/protobuf-specs", - "data": { - "version": "0.3.2", - "packageName": "@sigstore/protobuf-specs", - "hash": "sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==" - } - }, - "npm:@sigstore/sign": { - "type": "npm", - "name": "npm:@sigstore/sign", - "data": { - "version": "2.3.2", - "packageName": "@sigstore/sign", - "hash": "sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==" - } - }, - "npm:@sigstore/tuf": { - "type": "npm", - "name": "npm:@sigstore/tuf", - "data": { - "version": "2.3.4", - "packageName": "@sigstore/tuf", - "hash": "sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==" - } - }, - "npm:@sigstore/verify": { - "type": "npm", - "name": "npm:@sigstore/verify", - "data": { - "version": "1.2.1", - "packageName": "@sigstore/verify", - "hash": "sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.27.8", - "packageName": "@sinclair/typebox", - "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" - } - }, - "npm:@sindresorhus/is": { - "type": "npm", - "name": "npm:@sindresorhus/is", - "data": { - "version": "4.6.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" - } - }, - "npm:@sindresorhus/merge-streams": { - "type": "npm", - "name": "npm:@sindresorhus/merge-streams", - "data": { - "version": "2.3.0", - "packageName": "@sindresorhus/merge-streams", - "hash": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==" - } - }, - "npm:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.1", - "packageName": "@sinonjs/commons", - "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" - } - }, - "npm:@sinonjs/fake-timers": { - "type": "npm", - "name": "npm:@sinonjs/fake-timers", - "data": { - "version": "10.3.0", - "packageName": "@sinonjs/fake-timers", - "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" - } - }, - "npm:@socket.io/component-emitter": { - "type": "npm", - "name": "npm:@socket.io/component-emitter", - "data": { - "version": "3.1.0", - "packageName": "@socket.io/component-emitter", - "hash": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" - } - }, - "npm:@softarc/native-federation": { - "type": "npm", - "name": "npm:@softarc/native-federation", - "data": { - "version": "2.0.10", - "packageName": "@softarc/native-federation", - "hash": "sha512-SCjAd8F2nO7VPr9TEadpbqQWI8RHd+9HAYbdjJxKXNtmi9Nz5EnIZshTRgnQlMth59FrKlQ2fyoyRWcmYKNe0g==" - } - }, - "npm:@softarc/native-federation-runtime": { - "type": "npm", - "name": "npm:@softarc/native-federation-runtime", - "data": { - "version": "2.0.10", - "packageName": "@softarc/native-federation-runtime", - "hash": "sha512-8CETrqtLkYL1i6bwmqNe/1GwNVQYfayf3b2PSHJ4/n1QR2Dk84RhbpnAPgGVG7XqzRhDYwV2xsJyhVJdWkxQ3A==" - } - }, - "npm:@swc-node/core": { - "type": "npm", - "name": "npm:@swc-node/core", - "data": { - "version": "1.13.3", - "packageName": "@swc-node/core", - "hash": "sha512-OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==" - } - }, - "npm:@swc-node/register": { - "type": "npm", - "name": "npm:@swc-node/register", - "data": { - "version": "1.9.2", - "packageName": "@swc-node/register", - "hash": "sha512-BBjg0QNuEEmJSoU/++JOXhrjWdu3PTyYeJWsvchsI0Aqtj8ICkz/DqlwtXbmZVZ5vuDPpTfFlwDBZe81zgShMA==" - } - }, - "npm:@swc-node/sourcemap-support": { - "type": "npm", - "name": "npm:@swc-node/sourcemap-support", - "data": { - "version": "0.5.1", - "packageName": "@swc-node/sourcemap-support", - "hash": "sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==" - } - }, - "npm:@swc/cli": { - "type": "npm", - "name": "npm:@swc/cli", - "data": { - "version": "0.3.12", - "packageName": "@swc/cli", - "hash": "sha512-h7bvxT+4+UDrLWJLFHt6V+vNAcUNii2G4aGSSotKz1ECEk4MyEh5CWxmeSscwuz5K3i+4DWTgm4+4EyMCQKn+g==" - } - }, - "npm:@swc/core": { - "type": "npm", - "name": "npm:@swc/core", - "data": { - "version": "1.5.7", - "packageName": "@swc/core", - "hash": "sha512-U4qJRBefIJNJDRCCiVtkfa/hpiZ7w0R6kASea+/KLp+vkus3zcLSB8Ub8SvKgTIxjWpwsKcZlPf5nrv4ls46SQ==" - } - }, - "npm:@swc/core-darwin-arm64": { - "type": "npm", - "name": "npm:@swc/core-darwin-arm64", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-darwin-arm64", - "hash": "sha512-bZLVHPTpH3h6yhwVl395k0Mtx8v6CGhq5r4KQdAoPbADU974Mauz1b6ViHAJ74O0IVE5vyy7tD3OpkQxL/vMDQ==" - } - }, - "npm:@swc/core-darwin-x64": { - "type": "npm", - "name": "npm:@swc/core-darwin-x64", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-darwin-x64", - "hash": "sha512-RpUyu2GsviwTc2qVajPL0l8nf2vKj5wzO3WkLSHAHEJbiUZk83NJrZd1RVbEknIMO7+Uyjh54hEh8R26jSByaw==" - } - }, - "npm:@swc/core-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@swc/core-linux-arm-gnueabihf", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-arm-gnueabihf", - "hash": "sha512-cTZWTnCXLABOuvWiv6nQQM0hP6ZWEkzdgDvztgHI/+u/MvtzJBN5lBQ2lue/9sSFYLMqzqff5EHKlFtrJCA9dQ==" - } - }, - "npm:@swc/core-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-gnu", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-arm64-gnu", - "hash": "sha512-hoeTJFBiE/IJP30Be7djWF8Q5KVgkbDtjySmvYLg9P94bHg9TJPSQoC72tXx/oXOgXvElDe/GMybru0UxhKx4g==" - } - }, - "npm:@swc/core-linux-arm64-musl": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-musl", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-arm64-musl", - "hash": "sha512-+NDhK+IFTiVK1/o7EXdCeF2hEzCiaRSrb9zD7X2Z7inwWlxAntcSuzZW7Y6BRqGQH89KA91qYgwbnjgTQ22PiQ==" - } - }, - "npm:@swc/core-linux-x64-gnu": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-gnu", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-x64-gnu", - "hash": "sha512-25GXpJmeFxKB+7pbY7YQLhWWjkYlR+kHz5I3j9WRl3Lp4v4UD67OGXwPe+DIcHqcouA1fhLhsgHJWtsaNOMBNg==" - } - }, - "npm:@swc/core-linux-x64-musl": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-musl", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-x64-musl", - "hash": "sha512-0VN9Y5EAPBESmSPPsCJzplZHV26akC0sIgd3Hc/7S/1GkSMoeuVL+V9vt+F/cCuzr4VidzSkqftdP3qEIsXSpg==" - } - }, - "npm:@swc/core-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-arm64-msvc", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-win32-arm64-msvc", - "hash": "sha512-RtoNnstBwy5VloNCvmvYNApkTmuCe4sNcoYWpmY7C1+bPR+6SOo8im1G6/FpNem8AR5fcZCmXHWQ+EUmRWJyuA==" - } - }, - "npm:@swc/core-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-ia32-msvc", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-win32-ia32-msvc", - "hash": "sha512-Xm0TfvcmmspvQg1s4+USL3x8D+YPAfX2JHygvxAnCJ0EHun8cm2zvfNBcsTlnwYb0ybFWXXY129aq1wgFC9TpQ==" - } - }, - "npm:@swc/core-win32-x64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-x64-msvc", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-win32-x64-msvc", - "hash": "sha512-tp43WfJLCsKLQKBmjmY/0vv1slVywR5Q4qKjF5OIY8QijaEW7/8VwPyUyVoJZEnDgv9jKtUTG5PzqtIYPZGnyg==" - } - }, - "npm:@swc/types@0.1.7": { - "type": "npm", - "name": "npm:@swc/types@0.1.7", - "data": { - "version": "0.1.7", - "packageName": "@swc/types", - "hash": "sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==" - } - }, - "npm:@swc/types": { - "type": "npm", - "name": "npm:@swc/types", - "data": { - "version": "0.1.12", - "packageName": "@swc/types", - "hash": "sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==" - } - }, - "npm:@swc/counter": { - "type": "npm", - "name": "npm:@swc/counter", - "data": { - "version": "0.1.3", - "packageName": "@swc/counter", - "hash": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==" - } - }, - "npm:@swc/helpers": { - "type": "npm", - "name": "npm:@swc/helpers", - "data": { - "version": "0.5.12", - "packageName": "@swc/helpers", - "hash": "sha512-KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==" - } - }, - "npm:@szmarczak/http-timer": { - "type": "npm", - "name": "npm:@szmarczak/http-timer", - "data": { - "version": "4.0.6", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" - } - }, - "npm:@tokenizer/token": { - "type": "npm", - "name": "npm:@tokenizer/token", - "data": { - "version": "0.3.0", - "packageName": "@tokenizer/token", - "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - } - }, - "npm:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "npm:@trysound/sax": { - "type": "npm", - "name": "npm:@trysound/sax", - "data": { - "version": "0.2.0", - "packageName": "@trysound/sax", - "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - } - }, - "npm:@tsconfig/node10": { - "type": "npm", - "name": "npm:@tsconfig/node10", - "data": { - "version": "1.0.9", - "packageName": "@tsconfig/node10", - "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" - } - }, - "npm:@tsconfig/node12": { - "type": "npm", - "name": "npm:@tsconfig/node12", - "data": { - "version": "1.0.11", - "packageName": "@tsconfig/node12", - "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - } - }, - "npm:@tsconfig/node14": { - "type": "npm", - "name": "npm:@tsconfig/node14", - "data": { - "version": "1.0.3", - "packageName": "@tsconfig/node14", - "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - } - }, - "npm:@tsconfig/node16": { - "type": "npm", - "name": "npm:@tsconfig/node16", - "data": { - "version": "1.0.4", - "packageName": "@tsconfig/node16", - "hash": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" - } - }, - "npm:@tufjs/canonical-json": { - "type": "npm", - "name": "npm:@tufjs/canonical-json", - "data": { - "version": "2.0.0", - "packageName": "@tufjs/canonical-json", - "hash": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==" - } - }, - "npm:@tufjs/models": { - "type": "npm", - "name": "npm:@tufjs/models", - "data": { - "version": "2.0.1", - "packageName": "@tufjs/models", - "hash": "sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==" - } - }, - "npm:@tybys/wasm-util": { - "type": "npm", - "name": "npm:@tybys/wasm-util", - "data": { - "version": "0.9.0", - "packageName": "@tybys/wasm-util", - "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__core", - "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.6.8", - "packageName": "@types/babel__generator", - "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.4.4", - "packageName": "@types/babel__template", - "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__traverse", - "hash": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.19.5", - "packageName": "@types/body-parser", - "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" - } - }, - "npm:@types/bonjour": { - "type": "npm", - "name": "npm:@types/bonjour", - "data": { - "version": "3.5.13", - "packageName": "@types/bonjour", - "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" - } - }, - "npm:@types/browser-sync": { - "type": "npm", - "name": "npm:@types/browser-sync", - "data": { - "version": "2.29.0", - "packageName": "@types/browser-sync", - "hash": "sha512-d2V8FDX/LbDCSm343N2VChzDxvll0h76I8oSigYpdLgPDmcdcR6fywTggKBkUiDM3qAbHOq7NZvepj/HJM5e2g==" - } - }, - "npm:@types/cacheable-request": { - "type": "npm", - "name": "npm:@types/cacheable-request", - "data": { - "version": "6.0.3", - "packageName": "@types/cacheable-request", - "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.38", - "packageName": "@types/connect", - "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" - } - }, - "npm:@types/connect-history-api-fallback": { - "type": "npm", - "name": "npm:@types/connect-history-api-fallback", - "data": { - "version": "1.5.4", - "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" - } - }, - "npm:@types/cookie": { - "type": "npm", - "name": "npm:@types/cookie", - "data": { - "version": "0.4.1", - "packageName": "@types/cookie", - "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" - } - }, - "npm:@types/cors": { - "type": "npm", - "name": "npm:@types/cors", - "data": { - "version": "2.8.17", - "packageName": "@types/cors", - "hash": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==" - } - }, - "npm:@types/cross-spawn": { - "type": "npm", - "name": "npm:@types/cross-spawn", - "data": { - "version": "6.0.6", - "packageName": "@types/cross-spawn", - "hash": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "8.56.10", - "packageName": "@types/eslint", - "hash": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==" - } - }, - "npm:@types/eslint-scope": { - "type": "npm", - "name": "npm:@types/eslint-scope", - "data": { - "version": "3.7.7", - "packageName": "@types/eslint-scope", - "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.5", - "packageName": "@types/estree", - "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "4.17.21", - "packageName": "@types/express", - "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "4.19.3", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==" - } - }, - "npm:@types/graceful-fs": { - "type": "npm", - "name": "npm:@types/graceful-fs", - "data": { - "version": "4.1.9", - "packageName": "@types/graceful-fs", - "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" - } - }, - "npm:@types/http-cache-semantics": { - "type": "npm", - "name": "npm:@types/http-cache-semantics", - "data": { - "version": "4.0.4", - "packageName": "@types/http-cache-semantics", - "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" - } - }, - "npm:@types/http-errors": { - "type": "npm", - "name": "npm:@types/http-errors", - "data": { - "version": "2.0.4", - "packageName": "@types/http-errors", - "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" - } - }, - "npm:@types/http-proxy": { - "type": "npm", - "name": "npm:@types/http-proxy", - "data": { - "version": "1.17.14", - "packageName": "@types/http-proxy", - "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" - } - }, - "npm:@types/istanbul-lib-coverage": { - "type": "npm", - "name": "npm:@types/istanbul-lib-coverage", - "data": { - "version": "2.0.6", - "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" - } - }, - "npm:@types/istanbul-lib-report": { - "type": "npm", - "name": "npm:@types/istanbul-lib-report", - "data": { - "version": "3.0.3", - "packageName": "@types/istanbul-lib-report", - "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" - } - }, - "npm:@types/istanbul-reports": { - "type": "npm", - "name": "npm:@types/istanbul-reports", - "data": { - "version": "3.0.4", - "packageName": "@types/istanbul-reports", - "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.5.11", - "packageName": "@types/jest", - "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" - } - }, - "npm:@types/jsdom": { - "type": "npm", - "name": "npm:@types/jsdom", - "data": { - "version": "20.0.1", - "packageName": "@types/jsdom", - "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" - } - }, - "npm:parse5@7.1.2": { - "type": "npm", - "name": "npm:parse5@7.1.2", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "4.0.0", - "packageName": "parse5", - "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.15", - "packageName": "@types/json-schema", - "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - } - }, - "npm:@types/keyv": { - "type": "npm", - "name": "npm:@types/keyv", - "data": { - "version": "3.1.4", - "packageName": "@types/keyv", - "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" - } - }, - "npm:@types/lodash": { - "type": "npm", - "name": "npm:@types/lodash", - "data": { - "version": "4.17.0", - "packageName": "@types/lodash", - "hash": "sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==" - } - }, - "npm:@types/micromatch": { - "type": "npm", - "name": "npm:@types/micromatch", - "data": { - "version": "2.3.35", - "packageName": "@types/micromatch", - "hash": "sha512-J749bHo/Zu56w0G0NI/IGHLQPiSsjx//0zJhfEVAN95K/xM5C8ZDmhkXtU3qns0sBOao7HuQzr8XV1/2o5LbXA==" - } - }, - "npm:@types/mime": { - "type": "npm", - "name": "npm:@types/mime", - "data": { - "version": "3.0.4", - "packageName": "@types/mime", - "hash": "sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==" - } - }, - "npm:@types/mime@1.3.5": { - "type": "npm", - "name": "npm:@types/mime@1.3.5", - "data": { - "version": "1.3.5", - "packageName": "@types/mime", - "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" - } - }, - "npm:@types/mute-stream": { - "type": "npm", - "name": "npm:@types/mute-stream", - "data": { - "version": "0.0.4", - "packageName": "@types/mute-stream", - "hash": "sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==" - } - }, - "npm:@types/node-forge": { - "type": "npm", - "name": "npm:@types/node-forge", - "data": { - "version": "1.3.11", - "packageName": "@types/node-forge", - "hash": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==" - } - }, - "npm:@types/npmlog": { - "type": "npm", - "name": "npm:@types/npmlog", - "data": { - "version": "4.1.6", - "packageName": "@types/npmlog", - "hash": "sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==" - } - }, - "npm:@types/parse-glob": { - "type": "npm", - "name": "npm:@types/parse-glob", - "data": { - "version": "3.0.32", - "packageName": "@types/parse-glob", - "hash": "sha512-n4xmml2WKR12XeQprN8L/sfiVPa8FHS3k+fxp4kSr/PA2GsGUgFND+bvISJxM0y5QdvzNEGjEVU3eIrcKks/pA==" - } - }, - "npm:@types/parse-json": { - "type": "npm", - "name": "npm:@types/parse-json", - "data": { - "version": "4.0.2", - "packageName": "@types/parse-json", - "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.9.15", - "packageName": "@types/qs", - "hash": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.7", - "packageName": "@types/range-parser", - "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - } - }, - "npm:@types/resolve": { - "type": "npm", - "name": "npm:@types/resolve", - "data": { - "version": "1.20.2", - "packageName": "@types/resolve", - "hash": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==" - } - }, - "npm:@types/responselike": { - "type": "npm", - "name": "npm:@types/responselike", - "data": { - "version": "1.0.3", - "packageName": "@types/responselike", - "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" - } - }, - "npm:@types/send": { - "type": "npm", - "name": "npm:@types/send", - "data": { - "version": "0.17.4", - "packageName": "@types/send", - "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" - } - }, - "npm:@types/serve-index": { - "type": "npm", - "name": "npm:@types/serve-index", - "data": { - "version": "1.9.4", - "packageName": "@types/serve-index", - "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "1.15.5", - "packageName": "@types/serve-static", - "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" - } - }, - "npm:@types/sinonjs__fake-timers": { - "type": "npm", - "name": "npm:@types/sinonjs__fake-timers", - "data": { - "version": "8.1.1", - "packageName": "@types/sinonjs__fake-timers", - "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" - } - }, - "npm:@types/sizzle": { - "type": "npm", - "name": "npm:@types/sizzle", - "data": { - "version": "2.3.8", - "packageName": "@types/sizzle", - "hash": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==" - } - }, - "npm:@types/sockjs": { - "type": "npm", - "name": "npm:@types/sockjs", - "data": { - "version": "0.3.36", - "packageName": "@types/sockjs", - "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "2.0.3", - "packageName": "@types/stack-utils", - "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" - } - }, - "npm:@types/tough-cookie": { - "type": "npm", - "name": "npm:@types/tough-cookie", - "data": { - "version": "4.0.5", - "packageName": "@types/tough-cookie", - "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" - } - }, - "npm:@types/wrap-ansi": { - "type": "npm", - "name": "npm:@types/wrap-ansi", - "data": { - "version": "3.0.0", - "packageName": "@types/wrap-ansi", - "hash": "sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==" - } - }, - "npm:@types/ws": { - "type": "npm", - "name": "npm:@types/ws", - "data": { - "version": "8.5.10", - "packageName": "@types/ws", - "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "17.0.32", - "packageName": "@types/yargs", - "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" - } - }, - "npm:@types/yargs-parser": { - "type": "npm", - "name": "npm:@types/yargs-parser", - "data": { - "version": "21.0.3", - "packageName": "@types/yargs-parser", - "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" - } - }, - "npm:@types/yauzl": { - "type": "npm", - "name": "npm:@types/yauzl", - "data": { - "version": "2.10.3", - "packageName": "@types/yauzl", - "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==" - } - }, - "npm:@typescript-eslint/type-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==" - } - }, - "npm:@ungap/structured-clone": { - "type": "npm", - "name": "npm:@ungap/structured-clone", - "data": { - "version": "1.2.0", - "packageName": "@ungap/structured-clone", - "hash": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" - } - }, - "npm:@verdaccio/commons-api": { - "type": "npm", - "name": "npm:@verdaccio/commons-api", - "data": { - "version": "10.2.0", - "packageName": "@verdaccio/commons-api", - "hash": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==" - } - }, - "npm:http-status-codes@2.2.0": { - "type": "npm", - "name": "npm:http-status-codes@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "http-status-codes", - "hash": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==" - } - }, - "npm:http-status-codes": { - "type": "npm", - "name": "npm:http-status-codes", - "data": { - "version": "2.3.0", - "packageName": "http-status-codes", - "hash": "sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==" - } - }, - "npm:@verdaccio/config": { - "type": "npm", - "name": "npm:@verdaccio/config", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/config", - "hash": "sha512-mB3qaf8wW4sUgS0h3Z4TXYH/V9spjjFA33kNqWl78IMJHipBddbyBvdmfh/vo/NGtfju8DrDbRZlhKCl6293Qg==" - } - }, - "npm:@verdaccio/core": { - "type": "npm", - "name": "npm:@verdaccio/core", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/core", - "hash": "sha512-kS7/x5y9knbkSksHeawRV5Af8p/g0qk9GgQOZjuvOtv08kMFSttYk/eDglE9++SbvqP34+sDraUIMB/C3tZ2fw==" - } - }, - "npm:yallist@4.0.0": { - "type": "npm", - "name": "npm:yallist@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yallist@2.1.2": { - "type": "npm", - "name": "npm:yallist@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "yallist", - "hash": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:@verdaccio/file-locking": { - "type": "npm", - "name": "npm:@verdaccio/file-locking", - "data": { - "version": "10.3.1", - "packageName": "@verdaccio/file-locking", - "hash": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==" - } - }, - "npm:@verdaccio/file-locking@12.0.0-next.1": { - "type": "npm", - "name": "npm:@verdaccio/file-locking@12.0.0-next.1", - "data": { - "version": "12.0.0-next.1", - "packageName": "@verdaccio/file-locking", - "hash": "sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==" - } - }, - "npm:@verdaccio/local-storage": { - "type": "npm", - "name": "npm:@verdaccio/local-storage", - "data": { - "version": "10.3.3", - "packageName": "@verdaccio/local-storage", - "hash": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==" - } - }, - "npm:async@3.2.4": { - "type": "npm", - "name": "npm:async@3.2.4", - "data": { - "version": "3.2.4", - "packageName": "async", - "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.5", - "packageName": "async", - "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - } - }, - "npm:async@2.6.4": { - "type": "npm", - "name": "npm:async@2.6.4", - "data": { - "version": "2.6.4", - "packageName": "async", - "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" - } - }, - "npm:mkdirp@1.0.4": { - "type": "npm", - "name": "npm:mkdirp@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "0.5.6", - "packageName": "mkdirp", - "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" - } - }, - "npm:@verdaccio/logger-7": { - "type": "npm", - "name": "npm:@verdaccio/logger-7", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/logger-7", - "hash": "sha512-UgbZnnapLmvcVMz7HzJhsyMTFLhVcAKTwKW/5dtaSwD2XrP721YawdTwJEPZnhcNrTcD9dUvRGfW4Dr/5QzJcg==" - } - }, - "npm:@verdaccio/logger-commons": { - "type": "npm", - "name": "npm:@verdaccio/logger-commons", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/logger-commons", - "hash": "sha512-RTA4K6KvoCrgqA1aVP4n8IDZfUQtaza2FcPjEsBShLQg0rHFJi/5/yQg+J4MpOvYlKbrusOy9pwN86h9pCe+CA==" - } - }, - "npm:@verdaccio/logger-prettify": { - "type": "npm", - "name": "npm:@verdaccio/logger-prettify", - "data": { - "version": "7.0.0-next.1", - "packageName": "@verdaccio/logger-prettify", - "hash": "sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==" - } - }, - "npm:dayjs@1.11.7": { - "type": "npm", - "name": "npm:dayjs@1.11.7", - "data": { - "version": "1.11.7", - "packageName": "dayjs", - "hash": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" - } - }, - "npm:dayjs": { - "type": "npm", - "name": "npm:dayjs", - "data": { - "version": "1.11.10", - "packageName": "dayjs", - "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - } - }, - "npm:@verdaccio/middleware": { - "type": "npm", - "name": "npm:@verdaccio/middleware", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/middleware", - "hash": "sha512-NBQxi6ag2zSIoUUmnQn/n0YwJDnnHqqtyV5c73YTdQV5RSPn5i2YKz+8DSA+iJYa2ff8G4fx8hOdJR+QZZQ24w==" - } - }, - "npm:mime@2.6.0": { - "type": "npm", - "name": "npm:mime@2.6.0", - "data": { - "version": "2.6.0", - "packageName": "mime", - "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime@2.5.2": { - "type": "npm", - "name": "npm:mime@2.5.2", - "data": { - "version": "2.5.2", - "packageName": "mime", - "hash": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" - } - }, - "npm:mime@1.4.1": { - "type": "npm", - "name": "npm:mime@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "mime", - "hash": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" - } - }, - "npm:mime@3.0.0": { - "type": "npm", - "name": "npm:mime@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "mime", - "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" - } - }, - "npm:@verdaccio/search": { - "type": "npm", - "name": "npm:@verdaccio/search", - "data": { - "version": "7.0.0-next.2", - "packageName": "@verdaccio/search", - "hash": "sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==" - } - }, - "npm:@verdaccio/signature": { - "type": "npm", - "name": "npm:@verdaccio/signature", - "data": { - "version": "7.0.0-next.3", - "packageName": "@verdaccio/signature", - "hash": "sha512-egs1VmEe+COUUZ83I6gzDy79Jo3b/AExPvp9EDuJHkmwxJj+9gb231Rv4wk+UoNPrQRNLljUepQwVrDmbqP5DQ==" - } - }, - "npm:@verdaccio/streams": { - "type": "npm", - "name": "npm:@verdaccio/streams", - "data": { - "version": "10.2.1", - "packageName": "@verdaccio/streams", - "hash": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==" - } - }, - "npm:@verdaccio/tarball": { - "type": "npm", - "name": "npm:@verdaccio/tarball", - "data": { - "version": "12.0.0-next-7.10", - "packageName": "@verdaccio/tarball", - "hash": "sha512-kxctkPREUpe0oRDsTelKcLsWGv2llRBcK2AlyCAX7UENKGWvVqITTk81PkVpzlwXOpcRWdLJQmEE+dtXGwLr6Q==" - } - }, - "npm:@verdaccio/ui-theme": { - "type": "npm", - "name": "npm:@verdaccio/ui-theme", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/ui-theme", - "hash": "sha512-I1War/XBg3WzzAojXDtEDjZw/1qPKW0d8EIsJD3h6Xi5Atzvz/xBTbHjgbwApjmISyDWQ8Vevp8zOtGO33zLSw==" - } - }, - "npm:@verdaccio/url": { - "type": "npm", - "name": "npm:@verdaccio/url", - "data": { - "version": "12.0.0-next-7.10", - "packageName": "@verdaccio/url", - "hash": "sha512-AiFG+W/H1iD+iXkh4b6zm3AsZdGdI7tiAPCHymN7jSV6dAvWTuhIEK30mmFyCSmOE0iwyn8ZN4xqsf9Qcu1emw==" - } - }, - "npm:@verdaccio/utils": { - "type": "npm", - "name": "npm:@verdaccio/utils", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/utils", - "hash": "sha512-3sGyBj0leN3RjwPJPDkdsD9j1ahzQccHPj86IlIJqUJFhAcOT/nD6z9+W3sBAiro6Q2psWyWHxBJ8H3LhtlLeA==" - } - }, - "npm:@vitejs/plugin-basic-ssl": { - "type": "npm", - "name": "npm:@vitejs/plugin-basic-ssl", - "data": { - "version": "1.1.0", - "packageName": "@vitejs/plugin-basic-ssl", - "hash": "sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" - } - }, - "npm:@webassemblyjs/helper-api-error": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" - } - }, - "npm:@webassemblyjs/helper-buffer": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" - } - }, - "npm:@webassemblyjs/helper-numbers": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-numbers", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-numbers", - "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" - } - }, - "npm:@webassemblyjs/helper-wasm-section": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==" - } - }, - "npm:@webassemblyjs/ieee754": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" - } - }, - "npm:@webassemblyjs/leb128": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" - } - }, - "npm:@webassemblyjs/utf8": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" - } - }, - "npm:@webassemblyjs/wasm-edit": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==" - } - }, - "npm:@xtuc/ieee754": { - "type": "npm", - "name": "npm:@xtuc/ieee754", - "data": { - "version": "1.2.0", - "packageName": "@xtuc/ieee754", - "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - } - }, - "npm:@xtuc/long": { - "type": "npm", - "name": "npm:@xtuc/long", - "data": { - "version": "4.2.2", - "packageName": "@xtuc/long", - "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.0-rc.46", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.7", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" - } - }, - "npm:abab": { - "type": "npm", - "name": "npm:abab", - "data": { - "version": "2.0.6", - "packageName": "abab", - "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - } - }, - "npm:abbrev": { - "type": "npm", - "name": "npm:abbrev", - "data": { - "version": "2.0.0", - "packageName": "abbrev", - "hash": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==" - } - }, - "npm:abort-controller": { - "type": "npm", - "name": "npm:abort-controller", - "data": { - "version": "3.0.0", - "packageName": "abort-controller", - "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "1.3.8", - "packageName": "accepts", - "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.11.3", - "packageName": "acorn", - "hash": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" - } - }, - "npm:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-attributes": { - "type": "npm", - "name": "npm:acorn-import-attributes", - "data": { - "version": "1.9.5", - "packageName": "acorn-import-attributes", - "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.3.2", - "packageName": "acorn-walk", - "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" - } - }, - "npm:address": { - "type": "npm", - "name": "npm:address", - "data": { - "version": "1.2.2", - "packageName": "address", - "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" - } - }, - "npm:adjust-sourcemap-loader": { - "type": "npm", - "name": "npm:adjust-sourcemap-loader", - "data": { - "version": "4.0.0", - "packageName": "adjust-sourcemap-loader", - "hash": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==" - } - }, - "npm:adm-zip": { - "type": "npm", - "name": "npm:adm-zip", - "data": { - "version": "0.5.15", - "packageName": "adm-zip", - "hash": "sha512-jYPWSeOA8EFoZnucrKCNihqBjoEGQSU4HKgHYQgKNEQ0pQF9a/DYuo/+fAxY76k4qe75LUlLWpAM1QWcBMTOKw==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "7.1.1", - "packageName": "agent-base", - "hash": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==" - } - }, - "npm:agent-base@6.0.2": { - "type": "npm", - "name": "npm:agent-base@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "5.1.0", - "packageName": "ajv-keywords", - "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - } - }, - "npm:ajv-keywords@3.5.2": { - "type": "npm", - "name": "npm:ajv-keywords@3.5.2", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ansi-colors": { - "type": "npm", - "name": "npm:ansi-colors", - "data": { - "version": "4.1.3", - "packageName": "ansi-colors", - "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" - } - }, - "npm:ansi-html-community": { - "type": "npm", - "name": "npm:ansi-html-community", - "data": { - "version": "0.0.8", - "packageName": "ansi-html-community", - "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - } - }, - "npm:any-promise": { - "type": "npm", - "name": "npm:any-promise", - "data": { - "version": "1.3.0", - "packageName": "any-promise", - "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.3", - "packageName": "anymatch", - "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" - } - }, - "npm:apache-md5": { - "type": "npm", - "name": "npm:apache-md5", - "data": { - "version": "1.1.8", - "packageName": "apache-md5", - "hash": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==" - } - }, - "npm:aproba": { - "type": "npm", - "name": "npm:aproba", - "data": { - "version": "2.0.0", - "packageName": "aproba", - "hash": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" - } - }, - "npm:arch": { - "type": "npm", - "name": "npm:arch", - "data": { - "version": "2.2.0", - "packageName": "arch", - "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" - } - }, - "npm:are-we-there-yet": { - "type": "npm", - "name": "npm:are-we-there-yet", - "data": { - "version": "3.0.1", - "packageName": "are-we-there-yet", - "hash": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==" - } - }, - "npm:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "4.1.3", - "packageName": "arg", - "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - } - }, - "npm:aria-query": { - "type": "npm", - "name": "npm:aria-query", - "data": { - "version": "5.3.0", - "packageName": "aria-query", - "hash": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==" - } - }, - "npm:array-flatten": { - "type": "npm", - "name": "npm:array-flatten", - "data": { - "version": "1.1.1", - "packageName": "array-flatten", - "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - } - }, - "npm:asn1": { - "type": "npm", - "name": "npm:asn1", - "data": { - "version": "0.2.6", - "packageName": "asn1", - "hash": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==" - } - }, - "npm:assert-plus": { - "type": "npm", - "name": "npm:assert-plus", - "data": { - "version": "1.0.0", - "packageName": "assert-plus", - "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "2.0.0", - "packageName": "astral-regex", - "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - } - }, - "npm:async-each-series": { - "type": "npm", - "name": "npm:async-each-series", - "data": { - "version": "0.1.1", - "packageName": "async-each-series", - "hash": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - } - }, - "npm:at-least-node": { - "type": "npm", - "name": "npm:at-least-node", - "data": { - "version": "1.0.0", - "packageName": "at-least-node", - "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - } - }, - "npm:atomic-sleep": { - "type": "npm", - "name": "npm:atomic-sleep", - "data": { - "version": "1.0.0", - "packageName": "atomic-sleep", - "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" - } - }, - "npm:autoprefixer": { - "type": "npm", - "name": "npm:autoprefixer", - "data": { - "version": "10.4.19", - "packageName": "autoprefixer", - "hash": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==" - } - }, - "npm:aws-sign2": { - "type": "npm", - "name": "npm:aws-sign2", - "data": { - "version": "0.7.0", - "packageName": "aws-sign2", - "hash": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" - } - }, - "npm:aws4": { - "type": "npm", - "name": "npm:aws4", - "data": { - "version": "1.12.0", - "packageName": "aws4", - "hash": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "1.7.2", - "packageName": "axios", - "hash": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==" - } - }, - "npm:form-data@4.0.0": { - "type": "npm", - "name": "npm:form-data@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" - } - }, - "npm:proxy-from-env@1.1.0": { - "type": "npm", - "name": "npm:proxy-from-env@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.0.0", - "packageName": "proxy-from-env", - "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" - } - }, - "npm:axobject-query": { - "type": "npm", - "name": "npm:axobject-query", - "data": { - "version": "4.1.0", - "packageName": "axobject-query", - "hash": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==" - } - }, - "npm:babel-jest": { - "type": "npm", - "name": "npm:babel-jest", - "data": { - "version": "29.7.0", - "packageName": "babel-jest", - "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" - } - }, - "npm:babel-loader": { - "type": "npm", - "name": "npm:babel-loader", - "data": { - "version": "9.1.3", - "packageName": "babel-loader", - "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" - } - }, - "npm:find-cache-dir@4.0.0": { - "type": "npm", - "name": "npm:find-cache-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "find-cache-dir", - "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:find-up@6.3.0": { - "type": "npm", - "name": "npm:find-up@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "find-up", - "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" - } - }, - "npm:find-up@5.0.0": { - "type": "npm", - "name": "npm:find-up@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:locate-path@7.2.0": { - "type": "npm", - "name": "npm:locate-path@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "locate-path", - "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" - } - }, - "npm:locate-path@6.0.0": { - "type": "npm", - "name": "npm:locate-path@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "npm:p-limit@4.0.0": { - "type": "npm", - "name": "npm:p-limit@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "p-limit", - "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-locate@6.0.0": { - "type": "npm", - "name": "npm:p-locate@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "p-locate", - "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" - } - }, - "npm:p-locate@5.0.0": { - "type": "npm", - "name": "npm:p-locate@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:path-exists@5.0.0": { - "type": "npm", - "name": "npm:path-exists@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-exists", - "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:pkg-dir@7.0.0": { - "type": "npm", - "name": "npm:pkg-dir@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "pkg-dir", - "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" - } - }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, - "npm:yocto-queue@1.0.0": { - "type": "npm", - "name": "npm:yocto-queue@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "yocto-queue", - "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:babel-plugin-const-enum": { - "type": "npm", - "name": "npm:babel-plugin-const-enum", - "data": { - "version": "1.2.0", - "packageName": "babel-plugin-const-enum", - "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" - } - }, - "npm:babel-plugin-istanbul": { - "type": "npm", - "name": "npm:babel-plugin-istanbul", - "data": { - "version": "6.1.1", - "packageName": "babel-plugin-istanbul", - "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" - } - }, - "npm:istanbul-lib-instrument@5.2.1": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "6.0.2", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==" - } - }, - "npm:babel-plugin-jest-hoist": { - "type": "npm", - "name": "npm:babel-plugin-jest-hoist", - "data": { - "version": "29.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-plugin-macros": { - "type": "npm", - "name": "npm:babel-plugin-macros", - "data": { - "version": "2.8.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" - } - }, - "npm:babel-plugin-macros@3.1.0": { - "type": "npm", - "name": "npm:babel-plugin-macros@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" - } - }, - "npm:babel-plugin-polyfill-corejs2": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs2", - "data": { - "version": "0.4.10", - "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==" - } - }, - "npm:babel-plugin-polyfill-corejs3": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3", - "data": { - "version": "0.10.4", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==" - } - }, - "npm:babel-plugin-polyfill-regenerator": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-regenerator", - "data": { - "version": "0.6.2", - "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==" - } - }, - "npm:babel-plugin-transform-typescript-metadata": { - "type": "npm", - "name": "npm:babel-plugin-transform-typescript-metadata", - "data": { - "version": "0.3.2", - "packageName": "babel-plugin-transform-typescript-metadata", - "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.0.1", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" - } - }, - "npm:babel-preset-jest": { - "type": "npm", - "name": "npm:babel-preset-jest", - "data": { - "version": "29.6.3", - "packageName": "babel-preset-jest", - "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:base64id": { - "type": "npm", - "name": "npm:base64id", - "data": { - "version": "2.0.0", - "packageName": "base64id", - "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" - } - }, - "npm:basic-auth": { - "type": "npm", - "name": "npm:basic-auth", - "data": { - "version": "2.0.1", - "packageName": "basic-auth", - "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" - } - }, - "npm:safe-buffer@5.1.2": { - "type": "npm", - "name": "npm:safe-buffer@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:batch": { - "type": "npm", - "name": "npm:batch", - "data": { - "version": "0.6.1", - "packageName": "batch", - "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" - } - }, - "npm:bcrypt-pbkdf": { - "type": "npm", - "name": "npm:bcrypt-pbkdf", - "data": { - "version": "1.0.2", - "packageName": "bcrypt-pbkdf", - "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" - } - }, - "npm:bcryptjs": { - "type": "npm", - "name": "npm:bcryptjs", - "data": { - "version": "2.4.3", - "packageName": "bcryptjs", - "hash": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:bin-check": { - "type": "npm", - "name": "npm:bin-check", - "data": { - "version": "4.1.0", - "packageName": "bin-check", - "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" - } - }, - "npm:bin-version": { - "type": "npm", - "name": "npm:bin-version", - "data": { - "version": "6.0.0", - "packageName": "bin-version", - "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" - } - }, - "npm:bin-version-check": { - "type": "npm", - "name": "npm:bin-version-check", - "data": { - "version": "5.1.0", - "packageName": "bin-version-check", - "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" - } - }, - "npm:execa@5.1.1": { - "type": "npm", - "name": "npm:execa@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - } - }, - "npm:execa@4.1.0": { - "type": "npm", - "name": "npm:execa@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "execa", - "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "0.7.0", - "packageName": "execa", - "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" - } - }, - "npm:get-stream@6.0.1": { - "type": "npm", - "name": "npm:get-stream@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - } - }, - "npm:get-stream@5.2.0": { - "type": "npm", - "name": "npm:get-stream@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "get-stream", - "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "3.0.0", - "packageName": "get-stream", - "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" - } - }, - "npm:is-stream@2.0.1": { - "type": "npm", - "name": "npm:is-stream@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "is-stream", - "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" - } - }, - "npm:binary-extensions": { - "type": "npm", - "name": "npm:binary-extensions", - "data": { - "version": "2.3.0", - "packageName": "binary-extensions", - "hash": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:blob-util": { - "type": "npm", - "name": "npm:blob-util", - "data": { - "version": "2.0.2", - "packageName": "blob-util", - "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" - } - }, - "npm:bluebird": { - "type": "npm", - "name": "npm:bluebird", - "data": { - "version": "3.7.2", - "packageName": "bluebird", - "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - } - }, - "npm:raw-body@2.5.1": { - "type": "npm", - "name": "npm:raw-body@2.5.1", - "data": { - "version": "2.5.1", - "packageName": "raw-body", - "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "2.5.2", - "packageName": "raw-body", - "hash": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==" - } - }, - "npm:bonjour-service": { - "type": "npm", - "name": "npm:bonjour-service", - "data": { - "version": "1.2.1", - "packageName": "bonjour-service", - "hash": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:browser-sync": { - "type": "npm", - "name": "npm:browser-sync", - "data": { - "version": "3.0.2", - "packageName": "browser-sync", - "hash": "sha512-PC9c7aWJFVR4IFySrJxOqLwB9ENn3/TaXCXtAa0SzLwocLN3qMjN+IatbjvtCX92BjNXsY6YWg9Eb7F3Wy255g==" - } - }, - "npm:browser-sync-client": { - "type": "npm", - "name": "npm:browser-sync-client", - "data": { - "version": "3.0.2", - "packageName": "browser-sync-client", - "hash": "sha512-tBWdfn9L0wd2Pjuz/NWHtNEKthVb1Y67vg8/qyGNtCqetNz5lkDkFnrsx5UhPNPYUO8vci50IWC/BhYaQskDiQ==" - } - }, - "npm:browser-sync-ui": { - "type": "npm", - "name": "npm:browser-sync-ui", - "data": { - "version": "3.0.2", - "packageName": "browser-sync-ui", - "hash": "sha512-V3FwWAI+abVbFLTyJjXJlCMBwjc3GXf/BPGfwO2fMFACWbIGW9/4SrBOFYEOOtqzCjQE0Di+U3VIb7eES4omNA==" - } - }, - "npm:jsonfile@3.0.1": { - "type": "npm", - "name": "npm:jsonfile@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "jsonfile", - "hash": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsonfile@4.0.0": { - "type": "npm", - "name": "npm:jsonfile@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "jsonfile", - "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" - } - }, - "npm:universalify@0.1.2": { - "type": "npm", - "name": "npm:universalify@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "2.0.1", - "packageName": "universalify", - "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.23.3", - "packageName": "browserslist", - "hash": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==" - } - }, - "npm:bs-logger": { - "type": "npm", - "name": "npm:bs-logger", - "data": { - "version": "0.2.6", - "packageName": "bs-logger", - "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" - } - }, - "npm:bs-recipes": { - "type": "npm", - "name": "npm:bs-recipes", - "data": { - "version": "1.3.4", - "packageName": "bs-recipes", - "hash": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==" - } - }, - "npm:bser": { - "type": "npm", - "name": "npm:bser", - "data": { - "version": "2.1.1", - "packageName": "bser", - "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" - } - }, - "npm:btoa": { - "type": "npm", - "name": "npm:btoa", - "data": { - "version": "1.2.1", - "packageName": "btoa", - "hash": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:buffer@6.0.3": { - "type": "npm", - "name": "npm:buffer@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "buffer", - "hash": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==" - } - }, - "npm:buffer-crc32": { - "type": "npm", - "name": "npm:buffer-crc32", - "data": { - "version": "0.2.13", - "packageName": "buffer-crc32", - "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - } - }, - "npm:buffer-equal-constant-time": { - "type": "npm", - "name": "npm:buffer-equal-constant-time", - "data": { - "version": "1.0.1", - "packageName": "buffer-equal-constant-time", - "hash": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:builtin-modules": { - "type": "npm", - "name": "npm:builtin-modules", - "data": { - "version": "3.3.0", - "packageName": "builtin-modules", - "hash": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "5.0.1", - "packageName": "builtins", - "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" - } - }, - "npm:bundle-name": { - "type": "npm", - "name": "npm:bundle-name", - "data": { - "version": "4.1.0", - "packageName": "bundle-name", - "hash": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:bytes@3.0.0": { - "type": "npm", - "name": "npm:bytes@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "bytes", - "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "18.0.2", - "packageName": "cacache", - "hash": "sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw==" - } - }, - "npm:cache-content-type": { - "type": "npm", - "name": "npm:cache-content-type", - "data": { - "version": "1.0.1", - "packageName": "cache-content-type", - "hash": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==" - } - }, - "npm:cacheable-lookup": { - "type": "npm", - "name": "npm:cacheable-lookup", - "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - } - }, - "npm:cacheable-request": { - "type": "npm", - "name": "npm:cacheable-request", - "data": { - "version": "7.0.4", - "packageName": "cacheable-request", - "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" - } - }, - "npm:cachedir": { - "type": "npm", - "name": "npm:cachedir", - "data": { - "version": "2.4.0", - "packageName": "cachedir", - "hash": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.7", - "packageName": "call-bind", - "hash": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==" - } - }, - "npm:callsite": { - "type": "npm", - "name": "npm:callsite", - "data": { - "version": "1.0.0", - "packageName": "callsite", - "hash": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camelcase": { - "type": "npm", - "name": "npm:camelcase", - "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.3.0": { - "type": "npm", - "name": "npm:camelcase@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "camelcase", - "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" - } - }, - "npm:caniuse-api": { - "type": "npm", - "name": "npm:caniuse-api", - "data": { - "version": "3.0.0", - "packageName": "caniuse-api", - "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001650", - "packageName": "caniuse-lite", - "hash": "sha512-fgEc7hP/LB7iicdXHUI9VsBsMZmUmlVJeQP2qqQW+3lkqVhbmjEU8zp+h5stWeilX+G7uXuIUIIlWlDw9jdt8g==" - } - }, - "npm:caseless": { - "type": "npm", - "name": "npm:caseless", - "data": { - "version": "0.12.0", - "packageName": "caseless", - "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - } - }, - "npm:char-regex": { - "type": "npm", - "name": "npm:char-regex", - "data": { - "version": "1.0.2", - "packageName": "char-regex", - "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - } - }, - "npm:chardet": { - "type": "npm", - "name": "npm:chardet", - "data": { - "version": "0.7.0", - "packageName": "chardet", - "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - } - }, - "npm:check-more-types": { - "type": "npm", - "name": "npm:check-more-types", - "data": { - "version": "2.24.0", - "packageName": "check-more-types", - "hash": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "3.6.0", - "packageName": "chokidar", - "hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "2.0.0", - "packageName": "chownr", - "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - } - }, - "npm:chrome-trace-event": { - "type": "npm", - "name": "npm:chrome-trace-event", - "data": { - "version": "1.0.4", - "packageName": "chrome-trace-event", - "hash": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.9.0", - "packageName": "ci-info", - "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.2.3", - "packageName": "cjs-module-lexer", - "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:cli-table3": { - "type": "npm", - "name": "npm:cli-table3", - "data": { - "version": "0.6.3", - "packageName": "cli-table3", - "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" - } - }, - "npm:cli-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "4.1.0", - "packageName": "cli-width", - "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" - } - }, - "npm:clipanion": { - "type": "npm", - "name": "npm:clipanion", - "data": { - "version": "3.2.1", - "packageName": "clipanion", - "hash": "sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:clone-response": { - "type": "npm", - "name": "npm:clone-response", - "data": { - "version": "1.0.3", - "packageName": "clone-response", - "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - } - }, - "npm:collect-v8-coverage": { - "type": "npm", - "name": "npm:collect-v8-coverage", - "data": { - "version": "1.0.2", - "packageName": "collect-v8-coverage", - "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" - } - }, - "npm:color-support": { - "type": "npm", - "name": "npm:color-support", - "data": { - "version": "1.1.3", - "packageName": "color-support", - "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" - } - }, - "npm:colord": { - "type": "npm", - "name": "npm:colord", - "data": { - "version": "2.9.3", - "packageName": "colord", - "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:columnify": { - "type": "npm", - "name": "npm:columnify", - "data": { - "version": "1.6.0", - "packageName": "columnify", - "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:common-path-prefix": { - "type": "npm", - "name": "npm:common-path-prefix", - "data": { - "version": "3.0.0", - "packageName": "common-path-prefix", - "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - } - }, - "npm:common-tags": { - "type": "npm", - "name": "npm:common-tags", - "data": { - "version": "1.8.2", - "packageName": "common-tags", - "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" - } - }, - "npm:commondir": { - "type": "npm", - "name": "npm:commondir", - "data": { - "version": "1.0.1", - "packageName": "commondir", - "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - } - }, - "npm:compressible": { - "type": "npm", - "name": "npm:compressible", - "data": { - "version": "2.0.18", - "packageName": "compressible", - "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" - } - }, - "npm:compression": { - "type": "npm", - "name": "npm:compression", - "data": { - "version": "1.7.4", - "packageName": "compression", - "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - } - }, - "npm:concat-stream": { - "type": "npm", - "name": "npm:concat-stream", - "data": { - "version": "1.6.2", - "packageName": "concat-stream", - "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" - } - }, - "npm:readable-stream@2.3.8": { - "type": "npm", - "name": "npm:readable-stream@2.3.8", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, - "npm:readable-stream@4.5.2": { - "type": "npm", - "name": "npm:readable-stream@4.5.2", - "data": { - "version": "4.5.2", - "packageName": "readable-stream", - "hash": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:string_decoder@1.1.1": { - "type": "npm", - "name": "npm:string_decoder@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "string_decoder", - "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:confusing-browser-globals": { - "type": "npm", - "name": "npm:confusing-browser-globals", - "data": { - "version": "1.0.11", - "packageName": "confusing-browser-globals", - "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" - } - }, - "npm:connect": { - "type": "npm", - "name": "npm:connect", - "data": { - "version": "3.6.6", - "packageName": "connect", - "hash": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==" - } - }, - "npm:console-control-strings": { - "type": "npm", - "name": "npm:console-control-strings", - "data": { - "version": "1.1.0", - "packageName": "console-control-strings", - "hash": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "0.5.4", - "packageName": "content-disposition", - "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.5", - "packageName": "content-type", - "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.0.6", - "packageName": "cookie-signature", - "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - } - }, - "npm:cookies": { - "type": "npm", - "name": "npm:cookies", - "data": { - "version": "0.9.1", - "packageName": "cookies", - "hash": "sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==" - } - }, - "npm:cookies@0.8.0": { - "type": "npm", - "name": "npm:cookies@0.8.0", - "data": { - "version": "0.8.0", - "packageName": "cookies", - "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" - } - }, - "npm:copy-anything": { - "type": "npm", - "name": "npm:copy-anything", - "data": { - "version": "2.0.6", - "packageName": "copy-anything", - "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" - } - }, - "npm:path-type@5.0.0": { - "type": "npm", - "name": "npm:path-type@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-type", - "hash": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==" - } - }, - "npm:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:core-js": { - "type": "npm", - "name": "npm:core-js", - "data": { - "version": "3.35.0", - "packageName": "core-js", - "hash": "sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==" - } - }, - "npm:core-js-compat": { - "type": "npm", - "name": "npm:core-js-compat", - "data": { - "version": "3.37.1", - "packageName": "core-js-compat", - "hash": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==" - } - }, - "npm:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.2", - "packageName": "core-util-is", - "hash": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - } - }, - "npm:cors": { - "type": "npm", - "name": "npm:cors", - "data": { - "version": "2.8.5", - "packageName": "cors", - "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" - } - }, - "npm:corser": { - "type": "npm", - "name": "npm:corser", - "data": { - "version": "2.0.1", - "packageName": "corser", - "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:create-require": { - "type": "npm", - "name": "npm:create-require", - "data": { - "version": "1.1.1", - "packageName": "create-require", - "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - } - }, - "npm:critters": { - "type": "npm", - "name": "npm:critters", - "data": { - "version": "0.0.24", - "packageName": "critters", - "hash": "sha512-Oyqew0FGM0wYUSNqR0L6AteO5MpMoUU0rhKRieXeiKs+PmRTxiJMyaunYB2KF6fQ3dzChXKCpbFOEJx3OQ1v/Q==" - } - }, - "npm:cron-parser": { - "type": "npm", - "name": "npm:cron-parser", - "data": { - "version": "4.9.0", - "packageName": "cron-parser", - "hash": "sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:cross-spawn@5.1.0": { - "type": "npm", - "name": "npm:cross-spawn@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "cross-spawn", - "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" - } - }, - "npm:css-blank-pseudo": { - "type": "npm", - "name": "npm:css-blank-pseudo", - "data": { - "version": "3.0.3", - "packageName": "css-blank-pseudo", - "hash": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==" - } - }, - "npm:css-declaration-sorter": { - "type": "npm", - "name": "npm:css-declaration-sorter", - "data": { - "version": "7.2.0", - "packageName": "css-declaration-sorter", - "hash": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==" - } - }, - "npm:css-has-pseudo": { - "type": "npm", - "name": "npm:css-has-pseudo", - "data": { - "version": "3.0.4", - "packageName": "css-has-pseudo", - "hash": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==" - } - }, - "npm:css-minimizer-webpack-plugin": { - "type": "npm", - "name": "npm:css-minimizer-webpack-plugin", - "data": { - "version": "5.0.1", - "packageName": "css-minimizer-webpack-plugin", - "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" - } - }, - "npm:css-prefers-color-scheme": { - "type": "npm", - "name": "npm:css-prefers-color-scheme", - "data": { - "version": "6.0.3", - "packageName": "css-prefers-color-scheme", - "hash": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "5.1.0", - "packageName": "css-select", - "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" - } - }, - "npm:css-tree": { - "type": "npm", - "name": "npm:css-tree", - "data": { - "version": "2.3.1", - "packageName": "css-tree", - "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" - } - }, - "npm:css-tree@2.2.1": { - "type": "npm", - "name": "npm:css-tree@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "css-tree", - "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "6.1.0", - "packageName": "css-what", - "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - } - }, - "npm:cssdb": { - "type": "npm", - "name": "npm:cssdb", - "data": { - "version": "6.6.3", - "packageName": "cssdb", - "hash": "sha512-7GDvDSmE+20+WcSMhP17Q1EVWUrLlbxxpMDqG731n8P99JhnQZHR9YvtjPvEHfjFUjvQJvdpKCjlKOX+xe4UVA==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssnano": { - "type": "npm", - "name": "npm:cssnano", - "data": { - "version": "6.1.2", - "packageName": "cssnano", - "hash": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==" - } - }, - "npm:cssnano-preset-default": { - "type": "npm", - "name": "npm:cssnano-preset-default", - "data": { - "version": "6.1.2", - "packageName": "cssnano-preset-default", - "hash": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==" - } - }, - "npm:cssnano-utils": { - "type": "npm", - "name": "npm:cssnano-utils", - "data": { - "version": "4.0.2", - "packageName": "cssnano-utils", - "hash": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==" - } - }, - "npm:csso": { - "type": "npm", - "name": "npm:csso", - "data": { - "version": "5.0.5", - "packageName": "csso", - "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" - } - }, - "npm:mdn-data@2.0.28": { - "type": "npm", - "name": "npm:mdn-data@2.0.28", - "data": { - "version": "2.0.28", - "packageName": "mdn-data", - "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" - } - }, - "npm:mdn-data": { - "type": "npm", - "name": "npm:mdn-data", - "data": { - "version": "2.0.30", - "packageName": "mdn-data", - "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" - } - }, - "npm:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssom@0.3.8": { - "type": "npm", - "name": "npm:cssom@0.3.8", - "data": { - "version": "0.3.8", - "packageName": "cssom", - "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:cuint": { - "type": "npm", - "name": "npm:cuint", - "data": { - "version": "0.2.2", - "packageName": "cuint", - "hash": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==" - } - }, - "npm:cypress": { - "type": "npm", - "name": "npm:cypress", - "data": { - "version": "13.13.2", - "packageName": "cypress", - "hash": "sha512-PvJQU33933NvS1StfzEb8/mu2kMy4dABwCF+yd5Bi7Qly1HOVf+Bufrygee/tlmty/6j5lX+KIi8j9Q3JUMbhA==" - } - }, - "npm:human-signals@1.1.1": { - "type": "npm", - "name": "npm:human-signals@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "human-signals", - "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "npm:dashdash": { - "type": "npm", - "name": "npm:dashdash", - "data": { - "version": "1.14.1", - "packageName": "dashdash", - "hash": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==" - } - }, - "npm:data-urls": { - "type": "npm", - "name": "npm:data-urls", - "data": { - "version": "3.0.2", - "packageName": "data-urls", - "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" - } - }, - "npm:date-format": { - "type": "npm", - "name": "npm:date-format", - "data": { - "version": "4.0.14", - "packageName": "date-format", - "hash": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:decompress-response": { - "type": "npm", - "name": "npm:decompress-response", - "data": { - "version": "6.0.0", - "packageName": "decompress-response", - "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" - } - }, - "npm:mimic-response@3.1.0": { - "type": "npm", - "name": "npm:mimic-response@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "mimic-response", - "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - }, - "npm:mimic-response": { - "type": "npm", - "name": "npm:mimic-response", - "data": { - "version": "1.0.1", - "packageName": "mimic-response", - "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - }, - "npm:deep-equal": { - "type": "npm", - "name": "npm:deep-equal", - "data": { - "version": "1.0.1", - "packageName": "deep-equal", - "hash": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.4", - "packageName": "deep-is", - "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - } - }, - "npm:deepmerge": { - "type": "npm", - "name": "npm:deepmerge", - "data": { - "version": "4.3.1", - "packageName": "deepmerge", - "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" - } - }, - "npm:default-browser": { - "type": "npm", - "name": "npm:default-browser", - "data": { - "version": "5.2.1", - "packageName": "default-browser", - "hash": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==" - } - }, - "npm:default-browser-id": { - "type": "npm", - "name": "npm:default-browser-id", - "data": { - "version": "5.0.0", - "packageName": "default-browser-id", - "hash": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==" - } - }, - "npm:default-gateway": { - "type": "npm", - "name": "npm:default-gateway", - "data": { - "version": "6.0.3", - "packageName": "default-gateway", - "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:defer-to-connect": { - "type": "npm", - "name": "npm:defer-to-connect", - "data": { - "version": "2.0.1", - "packageName": "defer-to-connect", - "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.4", - "packageName": "define-data-property", - "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - } - }, - "npm:delegates": { - "type": "npm", - "name": "npm:delegates", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:depd@1.1.2": { - "type": "npm", - "name": "npm:depd@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "depd", - "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - } - }, - "npm:dependency-graph": { - "type": "npm", - "name": "npm:dependency-graph", - "data": { - "version": "1.0.0", - "packageName": "dependency-graph", - "hash": "sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==" - } - }, - "npm:dequal": { - "type": "npm", - "name": "npm:dequal", - "data": { - "version": "2.0.3", - "packageName": "dequal", - "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - } - }, - "npm:detect-libc": { - "type": "npm", - "name": "npm:detect-libc", - "data": { - "version": "2.0.3", - "packageName": "detect-libc", - "hash": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:detect-node": { - "type": "npm", - "name": "npm:detect-node", - "data": { - "version": "2.1.0", - "packageName": "detect-node", - "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - } - }, - "npm:detect-port": { - "type": "npm", - "name": "npm:detect-port", - "data": { - "version": "1.5.1", - "packageName": "detect-port", - "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" - } - }, - "npm:dev-ip": { - "type": "npm", - "name": "npm:dev-ip", - "data": { - "version": "1.0.1", - "packageName": "dev-ip", - "hash": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==" - } - }, - "npm:diff": { - "type": "npm", - "name": "npm:diff", - "data": { - "version": "4.0.2", - "packageName": "diff", - "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "npm:dns-packet": { - "type": "npm", - "name": "npm:dns-packet", - "data": { - "version": "5.6.1", - "packageName": "dns-packet", - "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "2.0.0", - "packageName": "dom-serializer", - "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.3.0", - "packageName": "domelementtype", - "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "5.0.3", - "packageName": "domhandler", - "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "3.1.0", - "packageName": "domutils", - "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "10.0.0", - "packageName": "dotenv", - "hash": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" - } - }, - "npm:dotenv@16.4.5": { - "type": "npm", - "name": "npm:dotenv@16.4.5", - "data": { - "version": "16.4.5", - "packageName": "dotenv", - "hash": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "11.0.6", - "packageName": "dotenv-expand", - "hash": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==" - } - }, - "npm:duplexer": { - "type": "npm", - "name": "npm:duplexer", - "data": { - "version": "0.1.2", - "packageName": "duplexer", - "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - } - }, - "npm:duplexify": { - "type": "npm", - "name": "npm:duplexify", - "data": { - "version": "4.1.3", - "packageName": "duplexify", - "hash": "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:easy-extender": { - "type": "npm", - "name": "npm:easy-extender", - "data": { - "version": "2.3.4", - "packageName": "easy-extender", - "hash": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==" - } - }, - "npm:eazy-logger": { - "type": "npm", - "name": "npm:eazy-logger", - "data": { - "version": "4.0.1", - "packageName": "eazy-logger", - "hash": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==" - } - }, - "npm:ecc-jsbn": { - "type": "npm", - "name": "npm:ecc-jsbn", - "data": { - "version": "0.1.2", - "packageName": "ecc-jsbn", - "hash": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==" - } - }, - "npm:jsbn@0.1.1": { - "type": "npm", - "name": "npm:jsbn@0.1.1", - "data": { - "version": "0.1.1", - "packageName": "jsbn", - "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - } - }, - "npm:jsbn": { - "type": "npm", - "name": "npm:jsbn", - "data": { - "version": "1.1.0", - "packageName": "jsbn", - "hash": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" - } - }, - "npm:ecdsa-sig-formatter": { - "type": "npm", - "name": "npm:ecdsa-sig-formatter", - "data": { - "version": "1.0.11", - "packageName": "ecdsa-sig-formatter", - "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - } - }, - "npm:ejs": { - "type": "npm", - "name": "npm:ejs", - "data": { - "version": "3.1.9", - "packageName": "ejs", - "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.5.5", - "packageName": "electron-to-chromium", - "hash": "sha512-QR7/A7ZkMS8tZuoftC/jfqNkZLQO779SSW3YuZHP4eXpj3EffGLFcB/Xu9AAZQzLccTiCV+EmUo3ha4mQ9wnlA==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "1.0.2", - "packageName": "encodeurl", - "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - } - }, - "npm:encoding": { - "type": "npm", - "name": "npm:encoding", - "data": { - "version": "0.1.13", - "packageName": "encoding", - "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - } - }, - "npm:iconv-lite@0.6.3": { - "type": "npm", - "name": "npm:iconv-lite@0.6.3", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.4", - "packageName": "end-of-stream", - "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - } - }, - "npm:engine.io": { - "type": "npm", - "name": "npm:engine.io", - "data": { - "version": "6.5.4", - "packageName": "engine.io", - "hash": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==" - } - }, - "npm:engine.io-client": { - "type": "npm", - "name": "npm:engine.io-client", - "data": { - "version": "6.5.3", - "packageName": "engine.io-client", - "hash": "sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==" - } - }, - "npm:ws@8.11.0": { - "type": "npm", - "name": "npm:ws@8.11.0", - "data": { - "version": "8.11.0", - "packageName": "ws", - "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.17.1", - "packageName": "ws", - "hash": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==" - } - }, - "npm:engine.io-parser": { - "type": "npm", - "name": "npm:engine.io-parser", - "data": { - "version": "5.2.2", - "packageName": "engine.io-parser", - "hash": "sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.17.1", - "packageName": "enhanced-resolve", - "hash": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "4.5.0", - "packageName": "entities", - "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - } - }, - "npm:env-paths": { - "type": "npm", - "name": "npm:env-paths", - "data": { - "version": "2.2.1", - "packageName": "env-paths", - "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - } - }, - "npm:envinfo": { - "type": "npm", - "name": "npm:envinfo", - "data": { - "version": "7.11.0", - "packageName": "envinfo", - "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" - } - }, - "npm:environment": { - "type": "npm", - "name": "npm:environment", - "data": { - "version": "1.1.0", - "packageName": "environment", - "hash": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==" - } - }, - "npm:err-code": { - "type": "npm", - "name": "npm:err-code", - "data": { - "version": "2.0.3", - "packageName": "err-code", - "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - } - }, - "npm:errno": { - "type": "npm", - "name": "npm:errno", - "data": { - "version": "0.1.8", - "packageName": "errno", - "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:error-inject": { - "type": "npm", - "name": "npm:error-inject", - "data": { - "version": "1.0.0", - "packageName": "error-inject", - "hash": "sha512-JM8N6PytDbmIYm1IhPWlo8vr3NtfjhDY/1MhD/a5b/aad/USE8a0+NsqE9d5n+GVGmuNkPQWm4bFQWv18d8tMg==" - } - }, - "npm:es-define-property": { - "type": "npm", - "name": "npm:es-define-property", - "data": { - "version": "1.0.0", - "packageName": "es-define-property", - "hash": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==" - } - }, - "npm:es-errors": { - "type": "npm", - "name": "npm:es-errors", - "data": { - "version": "1.3.0", - "packageName": "es-errors", - "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.4.1", - "packageName": "es-module-lexer", - "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" - } - }, - "npm:es-module-shims": { - "type": "npm", - "name": "npm:es-module-shims", - "data": { - "version": "1.8.3", - "packageName": "es-module-shims", - "hash": "sha512-NOE2WomYkoXeae8FcwPwZApxDwKerEWGOiqNo/P2JCBkJgKCLA5+PMZs8sr/1SPk9a8E+hUE9Wc+YZyGEiWHkw==" - } - }, - "npm:esbuild-wasm": { - "type": "npm", - "name": "npm:esbuild-wasm", - "data": { - "version": "0.21.5", - "packageName": "esbuild-wasm", - "hash": "sha512-L/FlOPMMFtw+6qPAbuPvJXdrOYOp9yx/PEwSrIZW0qghY4vgV003evdYDwqQ/9ENMQI0B6RMod9xT4FHtto6OQ==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.1.2", - "packageName": "escalade", - "hash": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "8.57.0", - "packageName": "eslint", - "hash": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "9.0.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==" - } - }, - "npm:eslint-plugin-cypress": { - "type": "npm", - "name": "npm:eslint-plugin-cypress", - "data": { - "version": "2.13.4", - "packageName": "eslint-plugin-cypress", - "hash": "sha512-A6CMdzFkGMkIWwVmS7DOBJfO1L2V5qcU2svlueycMJHn4MpoIhASxnDt+rI8zeA7qy9ExEGrMj1WhHcde1VrPQ==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "8.0.2", - "packageName": "eslint-scope", - "hash": "sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==" - } - }, - "npm:eslint-scope@7.2.2": { - "type": "npm", - "name": "npm:eslint-scope@7.2.2", - "data": { - "version": "7.2.2", - "packageName": "eslint-scope", - "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" - } - }, - "npm:eslint-scope@5.1.1": { - "type": "npm", - "name": "npm:eslint-scope@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "3.4.3", - "packageName": "eslint-visitor-keys", - "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "9.6.1", - "packageName": "espree", - "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.5.0", - "packageName": "esquery", - "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estraverse@4.3.0": { - "type": "npm", - "name": "npm:estraverse@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:estree-walker": { - "type": "npm", - "name": "npm:estree-walker", - "data": { - "version": "2.0.2", - "packageName": "estree-walker", - "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - } - }, - "npm:event-target-shim": { - "type": "npm", - "name": "npm:event-target-shim", - "data": { - "version": "5.0.1", - "packageName": "event-target-shim", - "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - } - }, - "npm:eventemitter2": { - "type": "npm", - "name": "npm:eventemitter2", - "data": { - "version": "6.4.7", - "packageName": "eventemitter2", - "hash": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" - } - }, - "npm:events": { - "type": "npm", - "name": "npm:events", - "data": { - "version": "3.3.0", - "packageName": "events", - "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - } - }, - "npm:npm-run-path@2.0.2": { - "type": "npm", - "name": "npm:npm-run-path@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "npm-run-path", - "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:path-key@2.0.1": { - "type": "npm", - "name": "npm:path-key@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:shebang-command@1.2.0": { - "type": "npm", - "name": "npm:shebang-command@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "npm:shebang-regex@1.0.0": { - "type": "npm", - "name": "npm:shebang-regex@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:executable": { - "type": "npm", - "name": "npm:executable", - "data": { - "version": "4.1.1", - "packageName": "executable", - "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" - } - }, - "npm:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - } - }, - "npm:expand-tilde": { - "type": "npm", - "name": "npm:expand-tilde", - "data": { - "version": "2.0.2", - "packageName": "expand-tilde", - "hash": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==" - } - }, - "npm:expect": { - "type": "npm", - "name": "npm:expect", - "data": { - "version": "29.7.0", - "packageName": "expect", - "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" - } - }, - "npm:exponential-backoff": { - "type": "npm", - "name": "npm:exponential-backoff", - "data": { - "version": "3.1.1", - "packageName": "exponential-backoff", - "hash": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" - } - }, - "npm:express-rate-limit": { - "type": "npm", - "name": "npm:express-rate-limit", - "data": { - "version": "5.5.1", - "packageName": "express-rate-limit", - "hash": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==" - } - }, - "npm:ext-list": { - "type": "npm", - "name": "npm:ext-list", - "data": { - "version": "2.2.2", - "packageName": "ext-list", - "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" - } - }, - "npm:ext-name": { - "type": "npm", - "name": "npm:ext-name", - "data": { - "version": "5.0.0", - "packageName": "ext-name", - "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" - } - }, - "npm:extend": { - "type": "npm", - "name": "npm:extend", - "data": { - "version": "3.0.2", - "packageName": "extend", - "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - } - }, - "npm:external-editor": { - "type": "npm", - "name": "npm:external-editor", - "data": { - "version": "3.1.0", - "packageName": "external-editor", - "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" - } - }, - "npm:tmp@0.0.33": { - "type": "npm", - "name": "npm:tmp@0.0.33", - "data": { - "version": "0.0.33", - "packageName": "tmp", - "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.2.3", - "packageName": "tmp", - "hash": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==" - } - }, - "npm:extract-zip": { - "type": "npm", - "name": "npm:extract-zip", - "data": { - "version": "2.0.1", - "packageName": "extract-zip", - "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" - } - }, - "npm:extsprintf": { - "type": "npm", - "name": "npm:extsprintf", - "data": { - "version": "1.3.0", - "packageName": "extsprintf", - "hash": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - } - }, - "npm:fast-redact": { - "type": "npm", - "name": "npm:fast-redact", - "data": { - "version": "3.4.0", - "packageName": "fast-redact", - "hash": "sha512-2gwPvyna0zwBdxKnng1suu/dTL5s8XEy2ZqH8mwDUwJdDkV8w5kp+JV26mupdK68HmPMbm6yjW9m7/Ys/BHEHg==" - } - }, - "npm:fast-safe-stringify": { - "type": "npm", - "name": "npm:fast-safe-stringify", - "data": { - "version": "2.1.1", - "packageName": "fast-safe-stringify", - "hash": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.17.1", - "packageName": "fastq", - "hash": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==" - } - }, - "npm:faye-websocket": { - "type": "npm", - "name": "npm:faye-websocket", - "data": { - "version": "0.11.4", - "packageName": "faye-websocket", - "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.2", - "packageName": "fb-watchman", - "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" - } - }, - "npm:fd-slicer": { - "type": "npm", - "name": "npm:fd-slicer", - "data": { - "version": "1.1.0", - "packageName": "fd-slicer", - "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "6.0.1", - "packageName": "file-entry-cache", - "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - } - }, - "npm:file-type": { - "type": "npm", - "name": "npm:file-type", - "data": { - "version": "17.1.6", - "packageName": "file-type", - "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" - } - }, - "npm:filelist": { - "type": "npm", - "name": "npm:filelist", - "data": { - "version": "1.0.4", - "packageName": "filelist", - "hash": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==" - } - }, - "npm:filename-reserved-regex": { - "type": "npm", - "name": "npm:filename-reserved-regex", - "data": { - "version": "3.0.0", - "packageName": "filename-reserved-regex", - "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" - } - }, - "npm:filenamify": { - "type": "npm", - "name": "npm:filenamify", - "data": { - "version": "5.1.1", - "packageName": "filenamify", - "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "npm:find-file-up": { - "type": "npm", - "name": "npm:find-file-up", - "data": { - "version": "2.0.1", - "packageName": "find-file-up", - "hash": "sha512-qVdaUhYO39zmh28/JLQM5CoYN9byEOKEH4qfa8K1eNV17W0UUMJ9WgbR/hHFH+t5rcl+6RTb5UC7ck/I+uRkpQ==" - } - }, - "npm:find-pkg": { - "type": "npm", - "name": "npm:find-pkg", - "data": { - "version": "2.0.0", - "packageName": "find-pkg", - "hash": "sha512-WgZ+nKbELDa6N3i/9nrHeNznm+lY3z4YfhDDWgW+5P0pdmMj26bxaxU11ookgY3NyP9GC7HvZ9etp0jRFqGEeQ==" - } - }, - "npm:find-versions": { - "type": "npm", - "name": "npm:find-versions", - "data": { - "version": "5.1.0", - "packageName": "find-versions", - "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.2.0", - "packageName": "flat-cache", - "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.3.1", - "packageName": "flatted", - "hash": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.6", - "packageName": "follow-redirects", - "hash": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.1.1", - "packageName": "foreground-child", - "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" - } - }, - "npm:forever-agent": { - "type": "npm", - "name": "npm:forever-agent", - "data": { - "version": "0.6.1", - "packageName": "forever-agent", - "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - } - }, - "npm:fork-ts-checker-webpack-plugin": { - "type": "npm", - "name": "npm:fork-ts-checker-webpack-plugin", - "data": { - "version": "7.2.13", - "packageName": "fork-ts-checker-webpack-plugin", - "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" - } - }, - "npm:schema-utils@3.3.0": { - "type": "npm", - "name": "npm:schema-utils@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "schema-utils", - "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "4.2.0", - "packageName": "schema-utils", - "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:fraction.js": { - "type": "npm", - "name": "npm:fraction.js", - "data": { - "version": "4.3.7", - "packageName": "fraction.js", - "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "0.5.2", - "packageName": "fresh", - "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - } - }, - "npm:front-matter": { - "type": "npm", - "name": "npm:front-matter", - "data": { - "version": "4.0.2", - "packageName": "front-matter", - "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" - } - }, - "npm:fs-constants": { - "type": "npm", - "name": "npm:fs-constants", - "data": { - "version": "1.0.0", - "packageName": "fs-constants", - "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "3.0.3", - "packageName": "fs-minipass", - "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" - } - }, - "npm:fs-minipass@2.1.0": { - "type": "npm", - "name": "npm:fs-minipass@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - } - }, - "npm:fs-monkey": { - "type": "npm", - "name": "npm:fs-monkey", - "data": { - "version": "1.0.6", - "packageName": "fs-monkey", - "hash": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - } - }, - "npm:fsevents": { - "type": "npm", - "name": "npm:fsevents", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.2", - "packageName": "function-bind", - "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - } - }, - "npm:gauge": { - "type": "npm", - "name": "npm:gauge", - "data": { - "version": "4.0.4", - "packageName": "gauge", - "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-east-asian-width": { - "type": "npm", - "name": "npm:get-east-asian-width", - "data": { - "version": "1.2.0", - "packageName": "get-east-asian-width", - "hash": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.2.4", - "packageName": "get-intrinsic", - "hash": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==" - } - }, - "npm:get-package-type": { - "type": "npm", - "name": "npm:get-package-type", - "data": { - "version": "0.1.0", - "packageName": "get-package-type", - "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - } - }, - "npm:getos": { - "type": "npm", - "name": "npm:getos", - "data": { - "version": "3.2.1", - "packageName": "getos", - "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" - } - }, - "npm:getpass": { - "type": "npm", - "name": "npm:getpass", - "data": { - "version": "0.1.7", - "packageName": "getpass", - "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:global-dirs": { - "type": "npm", - "name": "npm:global-dirs", - "data": { - "version": "3.0.1", - "packageName": "global-dirs", - "hash": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==" - } - }, - "npm:ini@2.0.0": { - "type": "npm", - "name": "npm:ini@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ini", - "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" - } - }, - "npm:ini@1.3.8": { - "type": "npm", - "name": "npm:ini@1.3.8", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "4.1.3", - "packageName": "ini", - "hash": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==" - } - }, - "npm:global-modules": { - "type": "npm", - "name": "npm:global-modules", - "data": { - "version": "1.0.0", - "packageName": "global-modules", - "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" - } - }, - "npm:global-prefix": { - "type": "npm", - "name": "npm:global-prefix", - "data": { - "version": "1.0.2", - "packageName": "global-prefix", - "hash": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.0.1", - "packageName": "gopd", - "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" - } - }, - "npm:got": { - "type": "npm", - "name": "npm:got", - "data": { - "version": "11.8.6", - "packageName": "got", - "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:graphemer": { - "type": "npm", - "name": "npm:graphemer", - "data": { - "version": "1.4.0", - "packageName": "graphemer", - "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - } - }, - "npm:handle-thing": { - "type": "npm", - "name": "npm:handle-thing", - "data": { - "version": "2.0.1", - "packageName": "handle-thing", - "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - } - }, - "npm:handlebars": { - "type": "npm", - "name": "npm:handlebars", - "data": { - "version": "4.7.8", - "packageName": "handlebars", - "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" - } - }, - "npm:harmony-reflect": { - "type": "npm", - "name": "npm:harmony-reflect", - "data": { - "version": "1.6.2", - "packageName": "harmony-reflect", - "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.2", - "packageName": "has-property-descriptors", - "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.0.3", - "packageName": "has-proto", - "hash": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.0.3", - "packageName": "has-symbols", - "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.2", - "packageName": "has-tostringtag", - "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" - } - }, - "npm:has-unicode": { - "type": "npm", - "name": "npm:has-unicode", - "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.2", - "packageName": "hasown", - "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:homedir-polyfill": { - "type": "npm", - "name": "npm:homedir-polyfill", - "data": { - "version": "1.0.3", - "packageName": "homedir-polyfill", - "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" - } - }, - "npm:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "7.0.1", - "packageName": "hosted-git-info", - "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" - } - }, - "npm:hpack.js": { - "type": "npm", - "name": "npm:hpack.js", - "data": { - "version": "2.1.6", - "packageName": "hpack.js", - "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.5.2", - "packageName": "html-entities", - "hash": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==" - } - }, - "npm:html-escaper": { - "type": "npm", - "name": "npm:html-escaper", - "data": { - "version": "2.0.2", - "packageName": "html-escaper", - "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - } - }, - "npm:htmlparser2": { - "type": "npm", - "name": "npm:htmlparser2", - "data": { - "version": "8.0.2", - "packageName": "htmlparser2", - "hash": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" - } - }, - "npm:http-assert": { - "type": "npm", - "name": "npm:http-assert", - "data": { - "version": "1.5.0", - "packageName": "http-assert", - "hash": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==" - } - }, - "npm:http-errors@1.8.1": { - "type": "npm", - "name": "npm:http-errors@1.8.1", - "data": { - "version": "1.8.1", - "packageName": "http-errors", - "hash": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "2.0.0", - "packageName": "http-errors", - "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" - } - }, - "npm:http-errors@1.6.3": { - "type": "npm", - "name": "npm:http-errors@1.6.3", - "data": { - "version": "1.6.3", - "packageName": "http-errors", - "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" - } - }, - "npm:http-cache-semantics": { - "type": "npm", - "name": "npm:http-cache-semantics", - "data": { - "version": "4.1.1", - "packageName": "http-cache-semantics", - "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - } - }, - "npm:http-deceiver": { - "type": "npm", - "name": "npm:http-deceiver", - "data": { - "version": "1.2.7", - "packageName": "http-deceiver", - "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - } - }, - "npm:http-parser-js": { - "type": "npm", - "name": "npm:http-parser-js", - "data": { - "version": "0.5.8", - "packageName": "http-parser-js", - "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:http-server": { - "type": "npm", - "name": "npm:http-server", - "data": { - "version": "14.1.1", - "packageName": "http-server", - "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" - } - }, - "npm:http-signature": { - "type": "npm", - "name": "npm:http-signature", - "data": { - "version": "1.3.6", - "packageName": "http-signature", - "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" - } - }, - "npm:http2-wrapper": { - "type": "npm", - "name": "npm:http2-wrapper", - "data": { - "version": "1.0.3", - "packageName": "http2-wrapper", - "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "7.0.5", - "packageName": "https-proxy-agent", - "hash": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==" - } - }, - "npm:https-proxy-agent@5.0.1": { - "type": "npm", - "name": "npm:https-proxy-agent@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:hyperdyperid": { - "type": "npm", - "name": "npm:hyperdyperid", - "data": { - "version": "1.2.0", - "packageName": "hyperdyperid", - "hash": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==" - } - }, - "npm:icss-utils": { - "type": "npm", - "name": "npm:icss-utils", - "data": { - "version": "5.1.0", - "packageName": "icss-utils", - "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - } - }, - "npm:identity-obj-proxy": { - "type": "npm", - "name": "npm:identity-obj-proxy", - "data": { - "version": "3.0.0", - "packageName": "identity-obj-proxy", - "hash": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.1", - "packageName": "ignore", - "hash": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==" - } - }, - "npm:ignore-walk": { - "type": "npm", - "name": "npm:ignore-walk", - "data": { - "version": "6.0.5", - "packageName": "ignore-walk", - "hash": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==" - } - }, - "npm:image-size": { - "type": "npm", - "name": "npm:image-size", - "data": { - "version": "0.5.5", - "packageName": "image-size", - "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" - } - }, - "npm:immutable": { - "type": "npm", - "name": "npm:immutable", - "data": { - "version": "3.8.2", - "packageName": "immutable", - "hash": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==" - } - }, - "npm:immutable@4.3.5": { - "type": "npm", - "name": "npm:immutable@4.3.5", - "data": { - "version": "4.3.5", - "packageName": "immutable", - "hash": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.0", - "packageName": "import-fresh", - "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:inflight": { - "type": "npm", - "name": "npm:inflight", - "data": { - "version": "1.0.6", - "packageName": "inflight", - "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:inherits@2.0.3": { - "type": "npm", - "name": "npm:inherits@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "inherits", - "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - } - }, - "npm:injection-js": { - "type": "npm", - "name": "npm:injection-js", - "data": { - "version": "2.4.0", - "packageName": "injection-js", - "hash": "sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==" - } - }, - "npm:ip-address": { - "type": "npm", - "name": "npm:ip-address", - "data": { - "version": "9.0.5", - "packageName": "ip-address", - "hash": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==" - } - }, - "npm:sprintf-js@1.1.3": { - "type": "npm", - "name": "npm:sprintf-js@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "sprintf-js", - "hash": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-binary-path": { - "type": "npm", - "name": "npm:is-binary-path", - "data": { - "version": "2.1.0", - "packageName": "is-binary-path", - "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - } - }, - "npm:is-builtin-module": { - "type": "npm", - "name": "npm:is-builtin-module", - "data": { - "version": "3.2.1", - "packageName": "is-builtin-module", - "hash": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==" - } - }, - "npm:is-ci": { - "type": "npm", - "name": "npm:is-ci", - "data": { - "version": "3.0.1", - "packageName": "is-ci", - "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.13.1", - "packageName": "is-core-module", - "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-docker@3.0.0": { - "type": "npm", - "name": "npm:is-docker@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-docker", - "hash": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - } - }, - "npm:is-generator-fn": { - "type": "npm", - "name": "npm:is-generator-fn", - "data": { - "version": "2.1.0", - "packageName": "is-generator-fn", - "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - } - }, - "npm:is-generator-function": { - "type": "npm", - "name": "npm:is-generator-function", - "data": { - "version": "1.0.10", - "packageName": "is-generator-function", - "hash": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-inside-container": { - "type": "npm", - "name": "npm:is-inside-container", - "data": { - "version": "1.0.0", - "packageName": "is-inside-container", - "hash": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==" - } - }, - "npm:is-installed-globally": { - "type": "npm", - "name": "npm:is-installed-globally", - "data": { - "version": "0.4.0", - "packageName": "is-installed-globally", - "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-lambda": { - "type": "npm", - "name": "npm:is-lambda", - "data": { - "version": "1.0.1", - "packageName": "is-lambda", - "hash": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" - } - }, - "npm:is-module": { - "type": "npm", - "name": "npm:is-module", - "data": { - "version": "1.0.0", - "packageName": "is-module", - "hash": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" - } - }, - "npm:is-network-error": { - "type": "npm", - "name": "npm:is-network-error", - "data": { - "version": "1.1.0", - "packageName": "is-network-error", - "hash": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-number-like": { - "type": "npm", - "name": "npm:is-number-like", - "data": { - "version": "1.0.8", - "packageName": "is-number-like", - "hash": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "3.0.3", - "packageName": "is-path-inside", - "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:is-plain-obj@1.1.0": { - "type": "npm", - "name": "npm:is-plain-obj@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" - } - }, - "npm:is-plain-object": { - "type": "npm", - "name": "npm:is-plain-object", - "data": { - "version": "2.0.4", - "packageName": "is-plain-object", - "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - } - }, - "npm:is-potential-custom-element-name": { - "type": "npm", - "name": "npm:is-potential-custom-element-name", - "data": { - "version": "1.0.1", - "packageName": "is-potential-custom-element-name", - "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - } - }, - "npm:is-promise": { - "type": "npm", - "name": "npm:is-promise", - "data": { - "version": "2.2.2", - "packageName": "is-promise", - "hash": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" - } - }, - "npm:is-reference": { - "type": "npm", - "name": "npm:is-reference", - "data": { - "version": "1.2.1", - "packageName": "is-reference", - "hash": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==" - } - }, - "npm:is-typedarray": { - "type": "npm", - "name": "npm:is-typedarray", - "data": { - "version": "1.0.0", - "packageName": "is-typedarray", - "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-what": { - "type": "npm", - "name": "npm:is-what", - "data": { - "version": "3.14.1", - "packageName": "is-what", - "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" - } - }, - "npm:is-windows": { - "type": "npm", - "name": "npm:is-windows", - "data": { - "version": "1.0.2", - "packageName": "is-windows", - "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - } - }, - "npm:isomorphic-ws": { - "type": "npm", - "name": "npm:isomorphic-ws", - "data": { - "version": "5.0.0", - "packageName": "isomorphic-ws", - "hash": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==" - } - }, - "npm:isstream": { - "type": "npm", - "name": "npm:isstream", - "data": { - "version": "0.1.2", - "packageName": "isstream", - "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - } - }, - "npm:istanbul-lib-coverage": { - "type": "npm", - "name": "npm:istanbul-lib-coverage", - "data": { - "version": "3.2.2", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" - } - }, - "npm:istanbul-lib-report": { - "type": "npm", - "name": "npm:istanbul-lib-report", - "data": { - "version": "3.0.1", - "packageName": "istanbul-lib-report", - "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" - } - }, - "npm:istanbul-lib-source-maps": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps", - "data": { - "version": "4.0.1", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" - } - }, - "npm:istanbul-reports": { - "type": "npm", - "name": "npm:istanbul-reports", - "data": { - "version": "3.1.7", - "packageName": "istanbul-reports", - "hash": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.8.7", - "packageName": "jake", - "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.7.0", - "packageName": "jest", - "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" - } - }, - "npm:jest-changed-files": { - "type": "npm", - "name": "npm:jest-changed-files", - "data": { - "version": "29.7.0", - "packageName": "jest-changed-files", - "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" - } - }, - "npm:jest-circus": { - "type": "npm", - "name": "npm:jest-circus", - "data": { - "version": "29.7.0", - "packageName": "jest-circus", - "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" - } - }, - "npm:dedent@1.5.1": { - "type": "npm", - "name": "npm:dedent@1.5.1", - "data": { - "version": "1.5.1", - "packageName": "dedent", - "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" - } - }, - "npm:jest-cli": { - "type": "npm", - "name": "npm:jest-cli", - "data": { - "version": "29.7.0", - "packageName": "jest-cli", - "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" - } - }, - "npm:jest-config": { - "type": "npm", - "name": "npm:jest-config", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "29.7.0", - "packageName": "jest-diff", - "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" - } - }, - "npm:jest-docblock": { - "type": "npm", - "name": "npm:jest-docblock", - "data": { - "version": "29.7.0", - "packageName": "jest-docblock", - "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" - } - }, - "npm:jest-each": { - "type": "npm", - "name": "npm:jest-each", - "data": { - "version": "29.7.0", - "packageName": "jest-each", - "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" - } - }, - "npm:jest-environment-jsdom": { - "type": "npm", - "name": "npm:jest-environment-jsdom", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-jsdom", - "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" - } - }, - "npm:jest-environment-node": { - "type": "npm", - "name": "npm:jest-environment-node", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-get-type": { - "type": "npm", - "name": "npm:jest-get-type", - "data": { - "version": "29.6.3", - "packageName": "jest-get-type", - "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" - } - }, - "npm:jest-haste-map": { - "type": "npm", - "name": "npm:jest-haste-map", - "data": { - "version": "29.7.0", - "packageName": "jest-haste-map", - "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" - } - }, - "npm:jest-leak-detector": { - "type": "npm", - "name": "npm:jest-leak-detector", - "data": { - "version": "29.7.0", - "packageName": "jest-leak-detector", - "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" - } - }, - "npm:jest-matcher-utils": { - "type": "npm", - "name": "npm:jest-matcher-utils", - "data": { - "version": "29.7.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" - } - }, - "npm:jest-message-util": { - "type": "npm", - "name": "npm:jest-message-util", - "data": { - "version": "29.7.0", - "packageName": "jest-message-util", - "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" - } - }, - "npm:jest-mock": { - "type": "npm", - "name": "npm:jest-mock", - "data": { - "version": "29.7.0", - "packageName": "jest-mock", - "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" - } - }, - "npm:jest-pnp-resolver": { - "type": "npm", - "name": "npm:jest-pnp-resolver", - "data": { - "version": "1.2.3", - "packageName": "jest-pnp-resolver", - "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" - } - }, - "npm:jest-preset-angular": { - "type": "npm", - "name": "npm:jest-preset-angular", - "data": { - "version": "14.1.0", - "packageName": "jest-preset-angular", - "hash": "sha512-UJwPtpsAMl30UtBjHW0Ai0hhoKsNURC1dXH5tSYjumUsWR7iDke+oBEykz7uXv4rN+PWgeNIqkxo4KHQjOITlw==" - } - }, - "npm:jest-regex-util": { - "type": "npm", - "name": "npm:jest-regex-util", - "data": { - "version": "29.6.3", - "packageName": "jest-regex-util", - "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "npm:jest-resolve-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:resolve.exports@2.0.2": { - "type": "npm", - "name": "npm:resolve.exports@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "1.1.0", - "packageName": "resolve.exports", - "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" - } - }, - "npm:jest-runner": { - "type": "npm", - "name": "npm:jest-runner", - "data": { - "version": "29.7.0", - "packageName": "jest-runner", - "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" - } - }, - "npm:jest-runtime": { - "type": "npm", - "name": "npm:jest-runtime", - "data": { - "version": "29.7.0", - "packageName": "jest-runtime", - "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" - } - }, - "npm:jest-snapshot": { - "type": "npm", - "name": "npm:jest-snapshot", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-util": { - "type": "npm", - "name": "npm:jest-util", - "data": { - "version": "29.7.0", - "packageName": "jest-util", - "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" - } - }, - "npm:jest-validate": { - "type": "npm", - "name": "npm:jest-validate", - "data": { - "version": "29.7.0", - "packageName": "jest-validate", - "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" - } - }, - "npm:jest-watcher": { - "type": "npm", - "name": "npm:jest-watcher", - "data": { - "version": "29.7.0", - "packageName": "jest-watcher", - "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" - } - }, - "npm:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest-worker@27.5.1": { - "type": "npm", - "name": "npm:jest-worker@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-worker", - "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - } - }, - "npm:jiti": { - "type": "npm", - "name": "npm:jiti", - "data": { - "version": "1.21.0", - "packageName": "jiti", - "hash": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==" - } - }, - "npm:joycon": { - "type": "npm", - "name": "npm:joycon", - "data": { - "version": "3.1.1", - "packageName": "joycon", - "hash": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:jsdom": { - "type": "npm", - "name": "npm:jsdom", - "data": { - "version": "20.0.3", - "packageName": "jsdom", - "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "2.5.2", - "packageName": "jsesc", - "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - } - }, - "npm:jsesc@0.5.0": { - "type": "npm", - "name": "npm:jsesc@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "jsesc", - "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "3.0.2", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==" - } - }, - "npm:json-parse-even-better-errors@2.3.1": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-schema": { - "type": "npm", - "name": "npm:json-schema", - "data": { - "version": "0.4.0", - "packageName": "json-schema", - "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - } - }, - "npm:json-stringify-safe": { - "type": "npm", - "name": "npm:json-stringify-safe", - "data": { - "version": "5.0.1", - "packageName": "json-stringify-safe", - "hash": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonc-eslint-parser": { - "type": "npm", - "name": "npm:jsonc-eslint-parser", - "data": { - "version": "2.4.0", - "packageName": "jsonc-eslint-parser", - "hash": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==" - } - }, - "npm:jsonparse": { - "type": "npm", - "name": "npm:jsonparse", - "data": { - "version": "1.3.1", - "packageName": "jsonparse", - "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" - } - }, - "npm:JSONStream": { - "type": "npm", - "name": "npm:JSONStream", - "data": { - "version": "1.3.5", - "packageName": "JSONStream", - "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - } - }, - "npm:jsonwebtoken": { - "type": "npm", - "name": "npm:jsonwebtoken", - "data": { - "version": "9.0.2", - "packageName": "jsonwebtoken", - "hash": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==" - } - }, - "npm:jsprim": { - "type": "npm", - "name": "npm:jsprim", - "data": { - "version": "2.0.2", - "packageName": "jsprim", - "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" - } - }, - "npm:jwa": { - "type": "npm", - "name": "npm:jwa", - "data": { - "version": "1.4.1", - "packageName": "jwa", - "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" - } - }, - "npm:jws": { - "type": "npm", - "name": "npm:jws", - "data": { - "version": "3.2.2", - "packageName": "jws", - "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" - } - }, - "npm:karma-source-map-support": { - "type": "npm", - "name": "npm:karma-source-map-support", - "data": { - "version": "1.4.0", - "packageName": "karma-source-map-support", - "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" - } - }, - "npm:keygrip": { - "type": "npm", - "name": "npm:keygrip", - "data": { - "version": "1.1.0", - "packageName": "keygrip", - "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:kleur@4.1.5": { - "type": "npm", - "name": "npm:kleur@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "kleur", - "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" - } - }, - "npm:klona": { - "type": "npm", - "name": "npm:klona", - "data": { - "version": "2.0.6", - "packageName": "klona", - "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" - } - }, - "npm:koa": { - "type": "npm", - "name": "npm:koa", - "data": { - "version": "2.11.0", - "packageName": "koa", - "hash": "sha512-EpR9dElBTDlaDgyhDMiLkXrPwp6ZqgAIBvhhmxQ9XN4TFgW+gEz6tkcsNI6BnUbUftrKDjVFj4lW2/J2aNBMMA==" - } - }, - "npm:koa-compose": { - "type": "npm", - "name": "npm:koa-compose", - "data": { - "version": "4.1.0", - "packageName": "koa-compose", - "hash": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==" - } - }, - "npm:koa-compose@3.2.1": { - "type": "npm", - "name": "npm:koa-compose@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "koa-compose", - "hash": "sha512-8gen2cvKHIZ35eDEik5WOo8zbVp9t4cP8p4hW4uE55waxolLRexKKrqfCpwhGVppnB40jWeF8bZeTVg99eZgPw==" - } - }, - "npm:koa-convert": { - "type": "npm", - "name": "npm:koa-convert", - "data": { - "version": "1.2.0", - "packageName": "koa-convert", - "hash": "sha512-K9XqjmEDStGX09v3oxR7t5uPRy0jqJdvodHa6wxWTHrTfDq0WUNnYTOOUZN6g8OM8oZQXprQASbiIXG2Ez8ehA==" - } - }, - "npm:launch-editor": { - "type": "npm", - "name": "npm:launch-editor", - "data": { - "version": "2.6.1", - "packageName": "launch-editor", - "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" - } - }, - "npm:lazy-ass": { - "type": "npm", - "name": "npm:lazy-ass", - "data": { - "version": "1.6.0", - "packageName": "lazy-ass", - "hash": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==" - } - }, - "npm:leven": { - "type": "npm", - "name": "npm:leven", - "data": { - "version": "3.1.0", - "packageName": "leven", - "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:license-webpack-plugin": { - "type": "npm", - "name": "npm:license-webpack-plugin", - "data": { - "version": "4.0.2", - "packageName": "license-webpack-plugin", - "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" - } - }, - "npm:lilconfig": { - "type": "npm", - "name": "npm:lilconfig", - "data": { - "version": "3.1.1", - "packageName": "lilconfig", - "hash": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==" - } - }, - "npm:limiter": { - "type": "npm", - "name": "npm:limiter", - "data": { - "version": "1.1.5", - "packageName": "limiter", - "hash": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "2.0.4", - "packageName": "lines-and-columns", - "hash": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==" - } - }, - "npm:lines-and-columns@1.2.4": { - "type": "npm", - "name": "npm:lines-and-columns@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "lines-and-columns", - "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - } - }, - "npm:lmdb": { - "type": "npm", - "name": "npm:lmdb", - "data": { - "version": "3.0.12", - "packageName": "lmdb", - "hash": "sha512-JnoEulTgveoC64vlYJ9sufGLuNkk6TcxSYpKxSC9aM42I61jIv3pQH0fgb6qW7HV0+FNqA3g1WCQQYfhfawGoQ==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.3.0", - "packageName": "loader-runner", - "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" - } - }, - "npm:lockfile": { - "type": "npm", - "name": "npm:lockfile", - "data": { - "version": "1.0.4", - "packageName": "lockfile", - "hash": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:lodash-es": { - "type": "npm", - "name": "npm:lodash-es", - "data": { - "version": "4.17.21", - "packageName": "lodash-es", - "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - } - }, - "npm:lodash.clonedeepwith": { - "type": "npm", - "name": "npm:lodash.clonedeepwith", - "data": { - "version": "4.5.0", - "packageName": "lodash.clonedeepwith", - "hash": "sha512-QRBRSxhbtsX1nc0baxSkkK5WlVTTm/s48DSukcGcWZwIyI8Zz+lB+kFiELJXtzfH4Aj6kMWQ1VWW4U5uUDgZMA==" - } - }, - "npm:lodash.debounce": { - "type": "npm", - "name": "npm:lodash.debounce", - "data": { - "version": "4.0.8", - "packageName": "lodash.debounce", - "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - } - }, - "npm:lodash.includes": { - "type": "npm", - "name": "npm:lodash.includes", - "data": { - "version": "4.3.0", - "packageName": "lodash.includes", - "hash": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" - } - }, - "npm:lodash.isboolean": { - "type": "npm", - "name": "npm:lodash.isboolean", - "data": { - "version": "3.0.3", - "packageName": "lodash.isboolean", - "hash": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - } - }, - "npm:lodash.isfinite": { - "type": "npm", - "name": "npm:lodash.isfinite", - "data": { - "version": "3.3.2", - "packageName": "lodash.isfinite", - "hash": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==" - } - }, - "npm:lodash.isinteger": { - "type": "npm", - "name": "npm:lodash.isinteger", - "data": { - "version": "4.0.4", - "packageName": "lodash.isinteger", - "hash": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" - } - }, - "npm:lodash.isnumber": { - "type": "npm", - "name": "npm:lodash.isnumber", - "data": { - "version": "3.0.3", - "packageName": "lodash.isnumber", - "hash": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - } - }, - "npm:lodash.isplainobject": { - "type": "npm", - "name": "npm:lodash.isplainobject", - "data": { - "version": "4.0.6", - "packageName": "lodash.isplainobject", - "hash": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" - } - }, - "npm:lodash.isstring": { - "type": "npm", - "name": "npm:lodash.isstring", - "data": { - "version": "4.0.1", - "packageName": "lodash.isstring", - "hash": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.once": { - "type": "npm", - "name": "npm:lodash.once", - "data": { - "version": "4.1.1", - "packageName": "lodash.once", - "hash": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:log4js": { - "type": "npm", - "name": "npm:log4js", - "data": { - "version": "6.9.1", - "packageName": "log4js", - "hash": "sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==" - } - }, - "npm:long-timeout": { - "type": "npm", - "name": "npm:long-timeout", - "data": { - "version": "0.1.1", - "packageName": "long-timeout", - "hash": "sha512-BFRuQUqc7x2NWxfJBCyUrN8iYUYznzL9JROmRz1gZ6KlOIgmoD+njPVbb+VNn2nGMKggMsK79iUNErillsrx7w==" - } - }, - "npm:lowdb": { - "type": "npm", - "name": "npm:lowdb", - "data": { - "version": "1.0.0", - "packageName": "lowdb", - "hash": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==" - } - }, - "npm:lowercase-keys": { - "type": "npm", - "name": "npm:lowercase-keys", - "data": { - "version": "2.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - }, - "npm:luxon": { - "type": "npm", - "name": "npm:luxon", - "data": { - "version": "3.5.0", - "packageName": "luxon", - "hash": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.10", - "packageName": "magic-string", - "hash": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==" - } - }, - "npm:make-error": { - "type": "npm", - "name": "npm:make-error", - "data": { - "version": "1.3.6", - "packageName": "make-error", - "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "13.0.1", - "packageName": "make-fetch-happen", - "hash": "sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "0.3.0", - "packageName": "media-typer", - "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - } - }, - "npm:memfs": { - "type": "npm", - "name": "npm:memfs", - "data": { - "version": "3.5.3", - "packageName": "memfs", - "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" - } - }, - "npm:memfs@4.11.1": { - "type": "npm", - "name": "npm:memfs@4.11.1", - "data": { - "version": "4.11.1", - "packageName": "memfs", - "hash": "sha512-LZcMTBAgqUUKNXZagcZxvXXfgF1bHX7Y7nQ0QyEiNbRJgE29GhgPd8Yna1VQcLlPiHt/5RFJMWYN9Uv/VPNvjQ==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.1", - "packageName": "merge-descriptors", - "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - } - }, - "npm:merge-stream": { - "type": "npm", - "name": "npm:merge-stream", - "data": { - "version": "2.0.0", - "packageName": "merge-stream", - "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:methods": { - "type": "npm", - "name": "npm:methods", - "data": { - "version": "1.1.2", - "packageName": "methods", - "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.5", - "packageName": "micromatch", - "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:mimic-function": { - "type": "npm", - "name": "npm:mimic-function", - "data": { - "version": "5.0.1", - "packageName": "mimic-function", - "hash": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==" - } - }, - "npm:minimalistic-assert": { - "type": "npm", - "name": "npm:minimalistic-assert", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-assert", - "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "7.1.2", - "packageName": "minipass", - "hash": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" - } - }, - "npm:minipass@3.3.6": { - "type": "npm", - "name": "npm:minipass@3.3.6", - "data": { - "version": "3.3.6", - "packageName": "minipass", - "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" - } - }, - "npm:minipass@5.0.0": { - "type": "npm", - "name": "npm:minipass@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "2.0.1", - "packageName": "minipass-collect", - "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "3.0.5", - "packageName": "minipass-fetch", - "hash": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-json-stream": { - "type": "npm", - "name": "npm:minipass-json-stream", - "data": { - "version": "1.0.1", - "packageName": "minipass-json-stream", - "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass-sized": { - "type": "npm", - "name": "npm:minipass-sized", - "data": { - "version": "1.0.3", - "packageName": "minipass-sized", - "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:mitt": { - "type": "npm", - "name": "npm:mitt", - "data": { - "version": "1.2.0", - "packageName": "mitt", - "hash": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" - } - }, - "npm:msgpackr": { - "type": "npm", - "name": "npm:msgpackr", - "data": { - "version": "1.11.0", - "packageName": "msgpackr", - "hash": "sha512-I8qXuuALqJe5laEBYoFykChhSXLikZmUhccjGsPuSJ/7uPip2TJ7lwdIQwWSAi0jGZDXv4WOP8Qg65QZRuXxXw==" - } - }, - "npm:msgpackr-extract": { - "type": "npm", - "name": "npm:msgpackr-extract", - "data": { - "version": "3.0.3", - "packageName": "msgpackr-extract", - "hash": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==" - } - }, - "npm:multicast-dns": { - "type": "npm", - "name": "npm:multicast-dns", - "data": { - "version": "7.2.5", - "packageName": "multicast-dns", - "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" - } - }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "1.0.0", - "packageName": "mute-stream", - "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" - } - }, - "npm:mv": { - "type": "npm", - "name": "npm:mv", - "data": { - "version": "2.1.1", - "packageName": "mv", - "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" - } - }, - "npm:rimraf@2.4.5": { - "type": "npm", - "name": "npm:rimraf@2.4.5", - "data": { - "version": "2.4.5", - "packageName": "rimraf", - "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@5.0.10": { - "type": "npm", - "name": "npm:rimraf@5.0.10", - "data": { - "version": "5.0.10", - "packageName": "rimraf", - "hash": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==" - } - }, - "npm:nanoclone": { - "type": "npm", - "name": "npm:nanoclone", - "data": { - "version": "0.2.1", - "packageName": "nanoclone", - "hash": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.7", - "packageName": "nanoid", - "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - } - }, - "npm:ncp": { - "type": "npm", - "name": "npm:ncp", - "data": { - "version": "2.0.0", - "packageName": "ncp", - "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" - } - }, - "npm:needle": { - "type": "npm", - "name": "npm:needle", - "data": { - "version": "3.3.1", - "packageName": "needle", - "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - } - }, - "npm:neo-async": { - "type": "npm", - "name": "npm:neo-async", - "data": { - "version": "2.6.2", - "packageName": "neo-async", - "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - } - }, - "npm:ng-packagr": { - "type": "npm", - "name": "npm:ng-packagr", - "data": { - "version": "18.1.0", - "packageName": "ng-packagr", - "hash": "sha512-QfqiCIuRX7VhdHqE1goZIuaFh0aMmFTF6r+gP+iq7YyIookXlZWswEZYcnpyRw52Q1RHFdUJRm7foBRFyEXTLA==" - } - }, - "npm:nice-napi": { - "type": "npm", - "name": "npm:nice-napi", - "data": { - "version": "1.0.2", - "packageName": "nice-napi", - "hash": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==" - } - }, - "npm:node-addon-api@3.2.1": { - "type": "npm", - "name": "npm:node-addon-api@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "node-addon-api", - "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" - } - }, - "npm:node-addon-api": { - "type": "npm", - "name": "npm:node-addon-api", - "data": { - "version": "6.1.0", - "packageName": "node-addon-api", - "hash": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" - } - }, - "npm:node-abort-controller": { - "type": "npm", - "name": "npm:node-abort-controller", - "data": { - "version": "3.1.1", - "packageName": "node-abort-controller", - "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.7.0", - "packageName": "node-fetch", - "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" - } - }, - "npm:tr46@0.0.3": { - "type": "npm", - "name": "npm:tr46@0.0.3", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:webidl-conversions@3.0.1": { - "type": "npm", - "name": "npm:webidl-conversions@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "7.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - } - }, - "npm:whatwg-url@5.0.0": { - "type": "npm", - "name": "npm:whatwg-url@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:node-forge": { - "type": "npm", - "name": "npm:node-forge", - "data": { - "version": "1.3.1", - "packageName": "node-forge", - "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "10.1.0", - "packageName": "node-gyp", - "hash": "sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.8.1", - "packageName": "node-gyp-build", - "hash": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==" - } - }, - "npm:node-gyp-build-optional-packages": { - "type": "npm", - "name": "npm:node-gyp-build-optional-packages", - "data": { - "version": "5.2.2", - "packageName": "node-gyp-build-optional-packages", - "hash": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==" - } - }, - "npm:node-int64": { - "type": "npm", - "name": "npm:node-int64", - "data": { - "version": "0.4.0", - "packageName": "node-int64", - "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" - } - }, - "npm:node-machine-id": { - "type": "npm", - "name": "npm:node-machine-id", - "data": { - "version": "1.1.12", - "packageName": "node-machine-id", - "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.18", - "packageName": "node-releases", - "hash": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" - } - }, - "npm:node-schedule": { - "type": "npm", - "name": "npm:node-schedule", - "data": { - "version": "2.1.1", - "packageName": "node-schedule", - "hash": "sha512-OXdegQq03OmXEjt2hZP33W2YPs/E5BcFQks46+G2gAxs4gHOIVD1u7EqlYLYSKsaIpyKCK9Gbk0ta1/gjRSMRQ==" - } - }, - "npm:node-watch": { - "type": "npm", - "name": "npm:node-watch", - "data": { - "version": "0.7.4", - "packageName": "node-watch", - "hash": "sha512-RinNxoz4W1cep1b928fuFhvAQ5ag/+1UlMDV7rbyGthBIgsiEouS4kvRayvvboxii4m8eolKOIBo3OjDqbc+uQ==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "7.2.1", - "packageName": "nopt", - "hash": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==" - } - }, - "npm:normalize-package-data": { - "type": "npm", - "name": "npm:normalize-package-data", - "data": { - "version": "6.0.1", - "packageName": "normalize-package-data", - "hash": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:normalize-range": { - "type": "npm", - "name": "npm:normalize-range", - "data": { - "version": "0.1.2", - "packageName": "normalize-range", - "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:npm-bundled": { - "type": "npm", - "name": "npm:npm-bundled", - "data": { - "version": "3.0.1", - "packageName": "npm-bundled", - "hash": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==" - } - }, - "npm:npm-install-checks": { - "type": "npm", - "name": "npm:npm-install-checks", - "data": { - "version": "6.3.0", - "packageName": "npm-install-checks", - "hash": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==" - } - }, - "npm:npm-normalize-package-bin": { - "type": "npm", - "name": "npm:npm-normalize-package-bin", - "data": { - "version": "3.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" - } - }, - "npm:npm-packlist": { - "type": "npm", - "name": "npm:npm-packlist", - "data": { - "version": "8.0.2", - "packageName": "npm-packlist", - "hash": "sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==" - } - }, - "npm:npm-pick-manifest": { - "type": "npm", - "name": "npm:npm-pick-manifest", - "data": { - "version": "9.0.1", - "packageName": "npm-pick-manifest", - "hash": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==" - } - }, - "npm:npm-registry-fetch": { - "type": "npm", - "name": "npm:npm-registry-fetch", - "data": { - "version": "17.0.1", - "packageName": "npm-registry-fetch", - "hash": "sha512-fLu9MTdZTlJAHUek/VLklE6EpIiP3VZpTiuN7OOMCt2Sd67NCpSEetMaxHHEZiZxllp8ZLsUpvbEszqTFEc+wA==" - } - }, - "npm:npmlog": { - "type": "npm", - "name": "npm:npmlog", - "data": { - "version": "6.0.2", - "packageName": "npmlog", - "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "2.1.1", - "packageName": "nth-check", - "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.7", - "packageName": "nwsapi", - "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "19.5.6", - "packageName": "nx", - "hash": "sha512-qjP17aa5ViXSpo0bDgJ7O3b8EY/0+PbX7ZIKvG1g6qasohtfM1y4Sx2bbSow0zCKU0+r1LnR53Q0lyX4OOgtUg==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.13.1", - "packageName": "object-inspect", - "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" - } - }, - "npm:obuf": { - "type": "npm", - "name": "npm:obuf", - "data": { - "version": "1.1.2", - "packageName": "obuf", - "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - } - }, - "npm:on-exit-leak-free": { - "type": "npm", - "name": "npm:on-exit-leak-free", - "data": { - "version": "0.2.0", - "packageName": "on-exit-leak-free", - "hash": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==" - } - }, - "npm:on-headers": { - "type": "npm", - "name": "npm:on-headers", - "data": { - "version": "1.0.2", - "packageName": "on-headers", - "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:only": { - "type": "npm", - "name": "npm:only", - "data": { - "version": "0.0.2", - "packageName": "only", - "hash": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==" - } - }, - "npm:opener": { - "type": "npm", - "name": "npm:opener", - "data": { - "version": "1.5.2", - "packageName": "opener", - "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - } - }, - "npm:opn": { - "type": "npm", - "name": "npm:opn", - "data": { - "version": "5.3.0", - "packageName": "opn", - "hash": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.9.4", - "packageName": "optionator", - "hash": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==" - } - }, - "npm:ordered-binary": { - "type": "npm", - "name": "npm:ordered-binary", - "data": { - "version": "1.5.1", - "packageName": "ordered-binary", - "hash": "sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==" - } - }, - "npm:os-filter-obj": { - "type": "npm", - "name": "npm:os-filter-obj", - "data": { - "version": "2.0.0", - "packageName": "os-filter-obj", - "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" - } - }, - "npm:os-shim": { - "type": "npm", - "name": "npm:os-shim", - "data": { - "version": "0.1.3", - "packageName": "os-shim", - "hash": "sha512-jd0cvB8qQ5uVt0lvCIexBaROw1KyKm5sbulg2fWOHjETisuCzWyt+eTZKEMs8v6HwzoGs8xik26jg7eCM6pS+A==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - } - }, - "npm:ospath": { - "type": "npm", - "name": "npm:ospath", - "data": { - "version": "1.2.2", - "packageName": "ospath", - "hash": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==" - } - }, - "npm:p-cancelable": { - "type": "npm", - "name": "npm:p-cancelable", - "data": { - "version": "2.1.1", - "packageName": "p-cancelable", - "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:package-json-from-dist": { - "type": "npm", - "name": "npm:package-json-from-dist", - "data": { - "version": "1.0.0", - "packageName": "package-json-from-dist", - "hash": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==" - } - }, - "npm:pacote": { - "type": "npm", - "name": "npm:pacote", - "data": { - "version": "18.0.6", - "packageName": "pacote", - "hash": "sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:parse-node-version": { - "type": "npm", - "name": "npm:parse-node-version", - "data": { - "version": "1.0.1", - "packageName": "parse-node-version", - "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" - } - }, - "npm:parse-passwd": { - "type": "npm", - "name": "npm:parse-passwd", - "data": { - "version": "1.0.0", - "packageName": "parse-passwd", - "hash": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==" - } - }, - "npm:parse5-html-rewriting-stream": { - "type": "npm", - "name": "npm:parse5-html-rewriting-stream", - "data": { - "version": "7.0.0", - "packageName": "parse5-html-rewriting-stream", - "hash": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==" - } - }, - "npm:parse5-sax-parser": { - "type": "npm", - "name": "npm:parse5-sax-parser", - "data": { - "version": "7.0.0", - "packageName": "parse5-sax-parser", - "hash": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:path-is-absolute": { - "type": "npm", - "name": "npm:path-is-absolute", - "data": { - "version": "1.0.1", - "packageName": "path-is-absolute", - "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.11.1", - "packageName": "path-scurry", - "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "0.1.7", - "packageName": "path-to-regexp", - "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - } - }, - "npm:peek-readable": { - "type": "npm", - "name": "npm:peek-readable", - "data": { - "version": "5.0.0", - "packageName": "peek-readable", - "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" - } - }, - "npm:pend": { - "type": "npm", - "name": "npm:pend", - "data": { - "version": "1.2.0", - "packageName": "pend", - "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - } - }, - "npm:performance-now": { - "type": "npm", - "name": "npm:performance-now", - "data": { - "version": "2.1.0", - "packageName": "performance-now", - "hash": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.0.1", - "packageName": "picocolors", - "hash": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" - } - }, - "npm:pino": { - "type": "npm", - "name": "npm:pino", - "data": { - "version": "7.11.0", - "packageName": "pino", - "hash": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==" - } - }, - "npm:pino-abstract-transport": { - "type": "npm", - "name": "npm:pino-abstract-transport", - "data": { - "version": "1.0.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==" - } - }, - "npm:pino-abstract-transport@0.5.0": { - "type": "npm", - "name": "npm:pino-abstract-transport@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==" - } - }, - "npm:pino-std-serializers": { - "type": "npm", - "name": "npm:pino-std-serializers", - "data": { - "version": "4.0.0", - "packageName": "pino-std-serializers", - "hash": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" - } - }, - "npm:sonic-boom@2.8.0": { - "type": "npm", - "name": "npm:sonic-boom@2.8.0", - "data": { - "version": "2.8.0", - "packageName": "sonic-boom", - "hash": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==" - } - }, - "npm:sonic-boom": { - "type": "npm", - "name": "npm:sonic-boom", - "data": { - "version": "3.3.0", - "packageName": "sonic-boom", - "hash": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.6", - "packageName": "pirates", - "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" - } - }, - "npm:piscina": { - "type": "npm", - "name": "npm:piscina", - "data": { - "version": "4.6.1", - "packageName": "piscina", - "hash": "sha512-z30AwWGtQE+Apr+2WBZensP2lIvwoaMcOPkQlIEmSGMJNUvaYACylPYrQM6wSdUNJlnDVMSpLv7xTMJqlVshOA==" - } - }, - "npm:pkginfo": { - "type": "npm", - "name": "npm:pkginfo", - "data": { - "version": "0.4.1", - "packageName": "pkginfo", - "hash": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==" - } - }, - "npm:portfinder": { - "type": "npm", - "name": "npm:portfinder", - "data": { - "version": "1.0.32", - "packageName": "portfinder", - "hash": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==" - } - }, - "npm:portscanner": { - "type": "npm", - "name": "npm:portscanner", - "data": { - "version": "2.2.0", - "packageName": "portscanner", - "hash": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.38", - "packageName": "postcss", - "hash": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==" - } - }, - "npm:postcss-attribute-case-insensitive": { - "type": "npm", - "name": "npm:postcss-attribute-case-insensitive", - "data": { - "version": "5.0.2", - "packageName": "postcss-attribute-case-insensitive", - "hash": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==" - } - }, - "npm:postcss-calc": { - "type": "npm", - "name": "npm:postcss-calc", - "data": { - "version": "9.0.1", - "packageName": "postcss-calc", - "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" - } - }, - "npm:postcss-clamp": { - "type": "npm", - "name": "npm:postcss-clamp", - "data": { - "version": "4.1.0", - "packageName": "postcss-clamp", - "hash": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==" - } - }, - "npm:postcss-color-functional-notation": { - "type": "npm", - "name": "npm:postcss-color-functional-notation", - "data": { - "version": "4.2.4", - "packageName": "postcss-color-functional-notation", - "hash": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==" - } - }, - "npm:postcss-color-hex-alpha": { - "type": "npm", - "name": "npm:postcss-color-hex-alpha", - "data": { - "version": "8.0.4", - "packageName": "postcss-color-hex-alpha", - "hash": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==" - } - }, - "npm:postcss-color-rebeccapurple": { - "type": "npm", - "name": "npm:postcss-color-rebeccapurple", - "data": { - "version": "7.1.1", - "packageName": "postcss-color-rebeccapurple", - "hash": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==" - } - }, - "npm:postcss-colormin": { - "type": "npm", - "name": "npm:postcss-colormin", - "data": { - "version": "6.1.0", - "packageName": "postcss-colormin", - "hash": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==" - } - }, - "npm:postcss-convert-values": { - "type": "npm", - "name": "npm:postcss-convert-values", - "data": { - "version": "6.1.0", - "packageName": "postcss-convert-values", - "hash": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==" - } - }, - "npm:postcss-custom-media": { - "type": "npm", - "name": "npm:postcss-custom-media", - "data": { - "version": "8.0.2", - "packageName": "postcss-custom-media", - "hash": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==" - } - }, - "npm:postcss-custom-properties": { - "type": "npm", - "name": "npm:postcss-custom-properties", - "data": { - "version": "12.1.11", - "packageName": "postcss-custom-properties", - "hash": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==" - } - }, - "npm:postcss-custom-selectors": { - "type": "npm", - "name": "npm:postcss-custom-selectors", - "data": { - "version": "6.0.3", - "packageName": "postcss-custom-selectors", - "hash": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==" - } - }, - "npm:postcss-dir-pseudo-class": { - "type": "npm", - "name": "npm:postcss-dir-pseudo-class", - "data": { - "version": "6.0.5", - "packageName": "postcss-dir-pseudo-class", - "hash": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==" - } - }, - "npm:postcss-discard-comments": { - "type": "npm", - "name": "npm:postcss-discard-comments", - "data": { - "version": "6.0.2", - "packageName": "postcss-discard-comments", - "hash": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==" - } - }, - "npm:postcss-discard-duplicates": { - "type": "npm", - "name": "npm:postcss-discard-duplicates", - "data": { - "version": "6.0.3", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==" - } - }, - "npm:postcss-discard-empty": { - "type": "npm", - "name": "npm:postcss-discard-empty", - "data": { - "version": "6.0.3", - "packageName": "postcss-discard-empty", - "hash": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==" - } - }, - "npm:postcss-discard-overridden": { - "type": "npm", - "name": "npm:postcss-discard-overridden", - "data": { - "version": "6.0.2", - "packageName": "postcss-discard-overridden", - "hash": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==" - } - }, - "npm:postcss-double-position-gradients": { - "type": "npm", - "name": "npm:postcss-double-position-gradients", - "data": { - "version": "3.1.2", - "packageName": "postcss-double-position-gradients", - "hash": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==" - } - }, - "npm:postcss-env-function": { - "type": "npm", - "name": "npm:postcss-env-function", - "data": { - "version": "4.0.6", - "packageName": "postcss-env-function", - "hash": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==" - } - }, - "npm:postcss-focus-visible": { - "type": "npm", - "name": "npm:postcss-focus-visible", - "data": { - "version": "6.0.4", - "packageName": "postcss-focus-visible", - "hash": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==" - } - }, - "npm:postcss-focus-within": { - "type": "npm", - "name": "npm:postcss-focus-within", - "data": { - "version": "5.0.4", - "packageName": "postcss-focus-within", - "hash": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==" - } - }, - "npm:postcss-font-variant": { - "type": "npm", - "name": "npm:postcss-font-variant", - "data": { - "version": "5.0.0", - "packageName": "postcss-font-variant", - "hash": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==" - } - }, - "npm:postcss-gap-properties": { - "type": "npm", - "name": "npm:postcss-gap-properties", - "data": { - "version": "3.0.5", - "packageName": "postcss-gap-properties", - "hash": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==" - } - }, - "npm:postcss-image-set-function": { - "type": "npm", - "name": "npm:postcss-image-set-function", - "data": { - "version": "4.0.7", - "packageName": "postcss-image-set-function", - "hash": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==" - } - }, - "npm:postcss-import": { - "type": "npm", - "name": "npm:postcss-import", - "data": { - "version": "14.1.0", - "packageName": "postcss-import", - "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" - } - }, - "npm:postcss-initial": { - "type": "npm", - "name": "npm:postcss-initial", - "data": { - "version": "4.0.1", - "packageName": "postcss-initial", - "hash": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==" - } - }, - "npm:postcss-lab-function": { - "type": "npm", - "name": "npm:postcss-lab-function", - "data": { - "version": "4.2.1", - "packageName": "postcss-lab-function", - "hash": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==" - } - }, - "npm:postcss-logical": { - "type": "npm", - "name": "npm:postcss-logical", - "data": { - "version": "5.0.4", - "packageName": "postcss-logical", - "hash": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==" - } - }, - "npm:postcss-media-minmax": { - "type": "npm", - "name": "npm:postcss-media-minmax", - "data": { - "version": "5.0.0", - "packageName": "postcss-media-minmax", - "hash": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==" - } - }, - "npm:postcss-media-query-parser": { - "type": "npm", - "name": "npm:postcss-media-query-parser", - "data": { - "version": "0.2.3", - "packageName": "postcss-media-query-parser", - "hash": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==" - } - }, - "npm:postcss-merge-longhand": { - "type": "npm", - "name": "npm:postcss-merge-longhand", - "data": { - "version": "6.0.5", - "packageName": "postcss-merge-longhand", - "hash": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==" - } - }, - "npm:postcss-merge-rules": { - "type": "npm", - "name": "npm:postcss-merge-rules", - "data": { - "version": "6.1.1", - "packageName": "postcss-merge-rules", - "hash": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==" - } - }, - "npm:postcss-minify-font-values": { - "type": "npm", - "name": "npm:postcss-minify-font-values", - "data": { - "version": "6.1.0", - "packageName": "postcss-minify-font-values", - "hash": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==" - } - }, - "npm:postcss-minify-gradients": { - "type": "npm", - "name": "npm:postcss-minify-gradients", - "data": { - "version": "6.0.3", - "packageName": "postcss-minify-gradients", - "hash": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==" - } - }, - "npm:postcss-minify-params": { - "type": "npm", - "name": "npm:postcss-minify-params", - "data": { - "version": "6.1.0", - "packageName": "postcss-minify-params", - "hash": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==" - } - }, - "npm:postcss-minify-selectors": { - "type": "npm", - "name": "npm:postcss-minify-selectors", - "data": { - "version": "6.0.4", - "packageName": "postcss-minify-selectors", - "hash": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==" - } - }, - "npm:postcss-modules-extract-imports": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports", - "data": { - "version": "3.1.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==" - } - }, - "npm:postcss-modules-local-by-default": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default", - "data": { - "version": "4.0.5", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==" - } - }, - "npm:postcss-modules-scope": { - "type": "npm", - "name": "npm:postcss-modules-scope", - "data": { - "version": "3.2.0", - "packageName": "postcss-modules-scope", - "hash": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==" - } - }, - "npm:postcss-modules-values": { - "type": "npm", - "name": "npm:postcss-modules-values", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - } - }, - "npm:postcss-nesting": { - "type": "npm", - "name": "npm:postcss-nesting", - "data": { - "version": "10.2.0", - "packageName": "postcss-nesting", - "hash": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==" - } - }, - "npm:postcss-normalize-charset": { - "type": "npm", - "name": "npm:postcss-normalize-charset", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-charset", - "hash": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==" - } - }, - "npm:postcss-normalize-display-values": { - "type": "npm", - "name": "npm:postcss-normalize-display-values", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-display-values", - "hash": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==" - } - }, - "npm:postcss-normalize-positions": { - "type": "npm", - "name": "npm:postcss-normalize-positions", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-positions", - "hash": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==" - } - }, - "npm:postcss-normalize-repeat-style": { - "type": "npm", - "name": "npm:postcss-normalize-repeat-style", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==" - } - }, - "npm:postcss-normalize-string": { - "type": "npm", - "name": "npm:postcss-normalize-string", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-string", - "hash": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==" - } - }, - "npm:postcss-normalize-timing-functions": { - "type": "npm", - "name": "npm:postcss-normalize-timing-functions", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==" - } - }, - "npm:postcss-normalize-unicode": { - "type": "npm", - "name": "npm:postcss-normalize-unicode", - "data": { - "version": "6.1.0", - "packageName": "postcss-normalize-unicode", - "hash": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==" - } - }, - "npm:postcss-normalize-url": { - "type": "npm", - "name": "npm:postcss-normalize-url", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-url", - "hash": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==" - } - }, - "npm:postcss-normalize-whitespace": { - "type": "npm", - "name": "npm:postcss-normalize-whitespace", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-whitespace", - "hash": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==" - } - }, - "npm:postcss-opacity-percentage": { - "type": "npm", - "name": "npm:postcss-opacity-percentage", - "data": { - "version": "1.1.3", - "packageName": "postcss-opacity-percentage", - "hash": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==" - } - }, - "npm:postcss-ordered-values": { - "type": "npm", - "name": "npm:postcss-ordered-values", - "data": { - "version": "6.0.2", - "packageName": "postcss-ordered-values", - "hash": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==" - } - }, - "npm:postcss-overflow-shorthand": { - "type": "npm", - "name": "npm:postcss-overflow-shorthand", - "data": { - "version": "3.0.4", - "packageName": "postcss-overflow-shorthand", - "hash": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==" - } - }, - "npm:postcss-page-break": { - "type": "npm", - "name": "npm:postcss-page-break", - "data": { - "version": "3.0.4", - "packageName": "postcss-page-break", - "hash": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==" - } - }, - "npm:postcss-place": { - "type": "npm", - "name": "npm:postcss-place", - "data": { - "version": "7.0.5", - "packageName": "postcss-place", - "hash": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==" - } - }, - "npm:postcss-preset-env": { - "type": "npm", - "name": "npm:postcss-preset-env", - "data": { - "version": "7.5.0", - "packageName": "postcss-preset-env", - "hash": "sha512-0BJzWEfCdTtK2R3EiKKSdkE51/DI/BwnhlnicSW482Ym6/DGHud8K0wGLcdjip1epVX0HKo4c8zzTeV/SkiejQ==" - } - }, - "npm:postcss-pseudo-class-any-link": { - "type": "npm", - "name": "npm:postcss-pseudo-class-any-link", - "data": { - "version": "7.1.6", - "packageName": "postcss-pseudo-class-any-link", - "hash": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==" - } - }, - "npm:postcss-reduce-initial": { - "type": "npm", - "name": "npm:postcss-reduce-initial", - "data": { - "version": "6.1.0", - "packageName": "postcss-reduce-initial", - "hash": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==" - } - }, - "npm:postcss-reduce-transforms": { - "type": "npm", - "name": "npm:postcss-reduce-transforms", - "data": { - "version": "6.0.2", - "packageName": "postcss-reduce-transforms", - "hash": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==" - } - }, - "npm:postcss-replace-overflow-wrap": { - "type": "npm", - "name": "npm:postcss-replace-overflow-wrap", - "data": { - "version": "4.0.0", - "packageName": "postcss-replace-overflow-wrap", - "hash": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==" - } - }, - "npm:postcss-selector-not": { - "type": "npm", - "name": "npm:postcss-selector-not", - "data": { - "version": "5.0.0", - "packageName": "postcss-selector-not", - "hash": "sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "6.0.16", - "packageName": "postcss-selector-parser", - "hash": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==" - } - }, - "npm:postcss-svgo": { - "type": "npm", - "name": "npm:postcss-svgo", - "data": { - "version": "6.0.3", - "packageName": "postcss-svgo", - "hash": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==" - } - }, - "npm:postcss-unique-selectors": { - "type": "npm", - "name": "npm:postcss-unique-selectors", - "data": { - "version": "6.0.4", - "packageName": "postcss-unique-selectors", - "hash": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==" - } - }, - "npm:postcss-url": { - "type": "npm", - "name": "npm:postcss-url", - "data": { - "version": "10.1.3", - "packageName": "postcss-url", - "hash": "sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:pre-commit": { - "type": "npm", - "name": "npm:pre-commit", - "data": { - "version": "1.2.2", - "packageName": "pre-commit", - "hash": "sha512-qokTiqxD6GjODy5ETAIgzsRgnBWWQHQH2ghy86PU7mIn/wuWeTwF3otyNQZxWBwVn8XNr8Tdzj/QfUXpH+gRZA==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "2.6.2", - "packageName": "prettier", - "hash": "sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==" - } - }, - "npm:pretty-bytes": { - "type": "npm", - "name": "npm:pretty-bytes", - "data": { - "version": "5.6.0", - "packageName": "pretty-bytes", - "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "29.7.0", - "packageName": "pretty-format", - "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" - } - }, - "npm:process": { - "type": "npm", - "name": "npm:process", - "data": { - "version": "0.11.10", - "packageName": "process", - "hash": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" - } - }, - "npm:process-nextick-args": { - "type": "npm", - "name": "npm:process-nextick-args", - "data": { - "version": "2.0.1", - "packageName": "process-nextick-args", - "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - } - }, - "npm:process-warning": { - "type": "npm", - "name": "npm:process-warning", - "data": { - "version": "1.0.0", - "packageName": "process-warning", - "hash": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:property-expr": { - "type": "npm", - "name": "npm:property-expr", - "data": { - "version": "2.0.6", - "packageName": "property-expr", - "hash": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:prr": { - "type": "npm", - "name": "npm:prr", - "data": { - "version": "1.0.1", - "packageName": "prr", - "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" - } - }, - "npm:pseudomap": { - "type": "npm", - "name": "npm:pseudomap", - "data": { - "version": "1.0.2", - "packageName": "pseudomap", - "hash": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - } - }, - "npm:psl": { - "type": "npm", - "name": "npm:psl", - "data": { - "version": "1.9.0", - "packageName": "psl", - "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.0", - "packageName": "pump", - "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.3.1", - "packageName": "punycode", - "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.0.4", - "packageName": "pure-rand", - "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" - } - }, - "npm:querystringify": { - "type": "npm", - "name": "npm:querystringify", - "data": { - "version": "2.2.0", - "packageName": "querystringify", - "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - } - }, - "npm:queue-microtask": { - "type": "npm", - "name": "npm:queue-microtask", - "data": { - "version": "1.2.3", - "packageName": "queue-microtask", - "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - } - }, - "npm:quick-format-unescaped": { - "type": "npm", - "name": "npm:quick-format-unescaped", - "data": { - "version": "4.0.4", - "packageName": "quick-format-unescaped", - "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" - } - }, - "npm:quick-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "5.1.1", - "packageName": "quick-lru", - "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - } - }, - "npm:rambda": { - "type": "npm", - "name": "npm:rambda", - "data": { - "version": "9.2.1", - "packageName": "rambda", - "hash": "sha512-6Dp+QQVQuAuhwBlbIvL2FjJVHCKF29W+n9ca/BMTVDqpj+Q7KKqUh7UAINEna8aaB2/oRvPuL5hViCTQARa70Q==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, - "npm:read-cache": { - "type": "npm", - "name": "npm:read-cache", - "data": { - "version": "1.0.0", - "packageName": "read-cache", - "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" - } - }, - "npm:readable-web-to-node-stream": { - "type": "npm", - "name": "npm:readable-web-to-node-stream", - "data": { - "version": "3.0.2", - "packageName": "readable-web-to-node-stream", - "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "3.6.0", - "packageName": "readdirp", - "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - } - }, - "npm:real-require": { - "type": "npm", - "name": "npm:real-require", - "data": { - "version": "0.1.0", - "packageName": "real-require", - "hash": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==" - } - }, - "npm:reflect-metadata": { - "type": "npm", - "name": "npm:reflect-metadata", - "data": { - "version": "0.2.2", - "packageName": "reflect-metadata", - "hash": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==" - } - }, - "npm:regenerate": { - "type": "npm", - "name": "npm:regenerate", - "data": { - "version": "1.4.2", - "packageName": "regenerate", - "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - } - }, - "npm:regenerate-unicode-properties": { - "type": "npm", - "name": "npm:regenerate-unicode-properties", - "data": { - "version": "10.1.1", - "packageName": "regenerate-unicode-properties", - "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.14.1", - "packageName": "regenerator-runtime", - "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - } - }, - "npm:regenerator-transform": { - "type": "npm", - "name": "npm:regenerator-transform", - "data": { - "version": "0.15.2", - "packageName": "regenerator-transform", - "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" - } - }, - "npm:regex-parser": { - "type": "npm", - "name": "npm:regex-parser", - "data": { - "version": "2.3.0", - "packageName": "regex-parser", - "hash": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==" - } - }, - "npm:regexpu-core": { - "type": "npm", - "name": "npm:regexpu-core", - "data": { - "version": "5.3.2", - "packageName": "regexpu-core", - "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" - } - }, - "npm:regjsparser": { - "type": "npm", - "name": "npm:regjsparser", - "data": { - "version": "0.9.1", - "packageName": "regjsparser", - "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" - } - }, - "npm:request-progress": { - "type": "npm", - "name": "npm:request-progress", - "data": { - "version": "3.0.0", - "packageName": "request-progress", - "hash": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.8", - "packageName": "resolve", - "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" - } - }, - "npm:resolve-alpn": { - "type": "npm", - "name": "npm:resolve-alpn", - "data": { - "version": "1.2.1", - "packageName": "resolve-alpn", - "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - } - }, - "npm:resolve-cwd": { - "type": "npm", - "name": "npm:resolve-cwd", - "data": { - "version": "3.0.0", - "packageName": "resolve-cwd", - "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" - } - }, - "npm:resolve-dir": { - "type": "npm", - "name": "npm:resolve-dir", - "data": { - "version": "1.0.1", - "packageName": "resolve-dir", - "hash": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==" - } - }, - "npm:resolve-url-loader": { - "type": "npm", - "name": "npm:resolve-url-loader", - "data": { - "version": "5.0.0", - "packageName": "resolve-url-loader", - "hash": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==" - } - }, - "npm:resp-modifier": { - "type": "npm", - "name": "npm:resp-modifier", - "data": { - "version": "6.0.2", - "packageName": "resp-modifier", - "hash": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==" - } - }, - "npm:responselike": { - "type": "npm", - "name": "npm:responselike", - "data": { - "version": "2.0.1", - "packageName": "responselike", - "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.0.4", - "packageName": "reusify", - "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.4.1", - "packageName": "rfdc", - "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" - } - }, - "npm:rollup-plugin-esbuild": { - "type": "npm", - "name": "npm:rollup-plugin-esbuild", - "data": { - "version": "5.0.0", - "packageName": "rollup-plugin-esbuild", - "hash": "sha512-1cRIOHAPh8WQgdQQyyvFdeOdxuiyk+zB5zJ5+YOwrZP4cJ0MT3Fs48pQxrZeyZHcn+klFherytILVfE4aYrneg==" - } - }, - "npm:rollup-plugin-node-externals": { - "type": "npm", - "name": "npm:rollup-plugin-node-externals", - "data": { - "version": "6.1.2", - "packageName": "rollup-plugin-node-externals", - "hash": "sha512-2TWan0u0/zHcgPrKpIPgKSY8OMqwDAYD380I0hxx7iUQw8mrN34DWwG9sQUMEo5Yy4xd6/5QEAySYgiKN9fdBQ==" - } - }, - "npm:run-applescript": { - "type": "npm", - "name": "npm:run-applescript", - "data": { - "version": "7.0.0", - "packageName": "run-applescript", - "hash": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.2.0", - "packageName": "run-parallel", - "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - } - }, - "npm:rx": { - "type": "npm", - "name": "npm:rx", - "data": { - "version": "4.1.0", - "packageName": "rx", - "hash": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==" - } - }, - "npm:rxjs": { - "type": "npm", - "name": "npm:rxjs", - "data": { - "version": "7.8.1", - "packageName": "rxjs", - "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" - } - }, - "npm:safe-stable-stringify": { - "type": "npm", - "name": "npm:safe-stable-stringify", - "data": { - "version": "2.4.3", - "packageName": "safe-stable-stringify", - "hash": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:sass": { - "type": "npm", - "name": "npm:sass", - "data": { - "version": "1.77.6", - "packageName": "sass", - "hash": "sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.3.0", - "packageName": "sax", - "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - } - }, - "npm:sax@1.2.4": { - "type": "npm", - "name": "npm:sax@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "sax", - "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:secure-compare": { - "type": "npm", - "name": "npm:secure-compare", - "data": { - "version": "3.0.1", - "packageName": "secure-compare", - "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" - } - }, - "npm:select-hose": { - "type": "npm", - "name": "npm:select-hose", - "data": { - "version": "2.0.0", - "packageName": "select-hose", - "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - } - }, - "npm:selfsigned": { - "type": "npm", - "name": "npm:selfsigned", - "data": { - "version": "2.4.1", - "packageName": "selfsigned", - "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" - } - }, - "npm:semver-regex": { - "type": "npm", - "name": "npm:semver-regex", - "data": { - "version": "4.0.5", - "packageName": "semver-regex", - "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" - } - }, - "npm:semver-truncate": { - "type": "npm", - "name": "npm:semver-truncate", - "data": { - "version": "3.0.0", - "packageName": "semver-truncate", - "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" - } - }, - "npm:setprototypeof@1.1.0": { - "type": "npm", - "name": "npm:setprototypeof@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "setprototypeof", - "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.2", - "packageName": "serialize-javascript", - "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" - } - }, - "npm:server-destroy": { - "type": "npm", - "name": "npm:server-destroy", - "data": { - "version": "1.0.1", - "packageName": "server-destroy", - "hash": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" - } - }, - "npm:set-blocking": { - "type": "npm", - "name": "npm:set-blocking", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.2.2", - "packageName": "set-function-length", - "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.1", - "packageName": "shell-quote", - "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.6", - "packageName": "side-channel", - "hash": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==" - } - }, - "npm:sigstore": { - "type": "npm", - "name": "npm:sigstore", - "data": { - "version": "2.3.1", - "packageName": "sigstore", - "hash": "sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - } - }, - "npm:socket.io": { - "type": "npm", - "name": "npm:socket.io", - "data": { - "version": "4.7.5", - "packageName": "socket.io", - "hash": "sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==" - } - }, - "npm:socket.io-adapter": { - "type": "npm", - "name": "npm:socket.io-adapter", - "data": { - "version": "2.5.4", - "packageName": "socket.io-adapter", - "hash": "sha512-wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==" - } - }, - "npm:socket.io-client": { - "type": "npm", - "name": "npm:socket.io-client", - "data": { - "version": "4.7.5", - "packageName": "socket.io-client", - "hash": "sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==" - } - }, - "npm:socket.io-parser": { - "type": "npm", - "name": "npm:socket.io-parser", - "data": { - "version": "4.2.4", - "packageName": "socket.io-parser", - "hash": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==" - } - }, - "npm:sockjs": { - "type": "npm", - "name": "npm:sockjs", - "data": { - "version": "0.3.24", - "packageName": "sockjs", - "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - } - }, - "npm:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.8.3", - "packageName": "socks", - "hash": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==" - } - }, - "npm:socks-proxy-agent": { - "type": "npm", - "name": "npm:socks-proxy-agent", - "data": { - "version": "8.0.3", - "packageName": "socks-proxy-agent", - "hash": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "1.1.2", - "packageName": "sort-keys", - "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" - } - }, - "npm:sort-keys-length": { - "type": "npm", - "name": "npm:sort-keys-length", - "data": { - "version": "1.0.1", - "packageName": "sort-keys-length", - "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" - } - }, - "npm:sorted-array-functions": { - "type": "npm", - "name": "npm:sorted-array-functions", - "data": { - "version": "1.3.0", - "packageName": "sorted-array-functions", - "hash": "sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.2.0", - "packageName": "source-map-js", - "hash": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==" - } - }, - "npm:source-map-loader": { - "type": "npm", - "name": "npm:source-map-loader", - "data": { - "version": "5.0.0", - "packageName": "source-map-loader", - "hash": "sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==" - } - }, - "npm:spawn-sync": { - "type": "npm", - "name": "npm:spawn-sync", - "data": { - "version": "1.0.15", - "packageName": "spawn-sync", - "hash": "sha512-9DWBgrgYZzNghseho0JOuh+5fg9u6QWhAWa51QC7+U5rCheZ/j1DrEZnyE0RBBRqZ9uEXGPgSSM0nky6burpVw==" - } - }, - "npm:spdx-correct": { - "type": "npm", - "name": "npm:spdx-correct", - "data": { - "version": "3.2.0", - "packageName": "spdx-correct", - "hash": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==" - } - }, - "npm:spdx-exceptions": { - "type": "npm", - "name": "npm:spdx-exceptions", - "data": { - "version": "2.5.0", - "packageName": "spdx-exceptions", - "hash": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==" - } - }, - "npm:spdx-expression-parse": { - "type": "npm", - "name": "npm:spdx-expression-parse", - "data": { - "version": "3.0.1", - "packageName": "spdx-expression-parse", - "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" - } - }, - "npm:spdx-license-ids": { - "type": "npm", - "name": "npm:spdx-license-ids", - "data": { - "version": "3.0.18", - "packageName": "spdx-license-ids", - "hash": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==" - } - }, - "npm:spdy": { - "type": "npm", - "name": "npm:spdy", - "data": { - "version": "4.0.2", - "packageName": "spdy", - "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - } - }, - "npm:spdy-transport": { - "type": "npm", - "name": "npm:spdy-transport", - "data": { - "version": "3.0.0", - "packageName": "spdy-transport", - "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "4.2.0", - "packageName": "split2", - "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" - } - }, - "npm:sshpk": { - "type": "npm", - "name": "npm:sshpk", - "data": { - "version": "1.18.0", - "packageName": "sshpk", - "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "10.0.5", - "packageName": "ssri", - "hash": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.6", - "packageName": "stack-utils", - "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" - } - }, - "npm:steno": { - "type": "npm", - "name": "npm:steno", - "data": { - "version": "0.4.4", - "packageName": "steno", - "hash": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==" - } - }, - "npm:stream-shift": { - "type": "npm", - "name": "npm:stream-shift", - "data": { - "version": "1.0.3", - "packageName": "stream-shift", - "hash": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==" - } - }, - "npm:stream-throttle": { - "type": "npm", - "name": "npm:stream-throttle", - "data": { - "version": "0.1.3", - "packageName": "stream-throttle", - "hash": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==" - } - }, - "npm:streamroller": { - "type": "npm", - "name": "npm:streamroller", - "data": { - "version": "3.1.5", - "packageName": "streamroller", - "hash": "sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@4.2.3", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:strip-bom@3.0.0": { - "type": "npm", - "name": "npm:strip-bom@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-eof": { - "type": "npm", - "name": "npm:strip-eof", - "data": { - "version": "1.0.0", - "packageName": "strip-eof", - "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:strip-outer": { - "type": "npm", - "name": "npm:strip-outer", - "data": { - "version": "2.0.0", - "packageName": "strip-outer", - "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" - } - }, - "npm:strong-log-transformer": { - "type": "npm", - "name": "npm:strong-log-transformer", - "data": { - "version": "2.1.0", - "packageName": "strong-log-transformer", - "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" - } - }, - "npm:strtok3": { - "type": "npm", - "name": "npm:strtok3", - "data": { - "version": "7.0.0", - "packageName": "strtok3", - "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" - } - }, - "npm:style-loader": { - "type": "npm", - "name": "npm:style-loader", - "data": { - "version": "3.3.4", - "packageName": "style-loader", - "hash": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==" - } - }, - "npm:stylehacks": { - "type": "npm", - "name": "npm:stylehacks", - "data": { - "version": "6.1.1", - "packageName": "stylehacks", - "hash": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==" - } - }, - "npm:stylus": { - "type": "npm", - "name": "npm:stylus", - "data": { - "version": "0.59.0", - "packageName": "stylus", - "hash": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==" - } - }, - "npm:stylus-loader": { - "type": "npm", - "name": "npm:stylus-loader", - "data": { - "version": "7.1.3", - "packageName": "stylus-loader", - "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:svgo": { - "type": "npm", - "name": "npm:svgo", - "data": { - "version": "3.3.2", - "packageName": "svgo", - "hash": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==" - } - }, - "npm:symbol-observable": { - "type": "npm", - "name": "npm:symbol-observable", - "data": { - "version": "4.0.0", - "packageName": "symbol-observable", - "hash": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==" - } - }, - "npm:symbol-tree": { - "type": "npm", - "name": "npm:symbol-tree", - "data": { - "version": "3.2.4", - "packageName": "symbol-tree", - "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "2.2.1", - "packageName": "tapable", - "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.2.0", - "packageName": "tar", - "hash": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==" - } - }, - "npm:tar-stream": { - "type": "npm", - "name": "npm:tar-stream", - "data": { - "version": "2.2.0", - "packageName": "tar-stream", - "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.10", - "packageName": "terser-webpack-plugin", - "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" - } - }, - "npm:test-exclude": { - "type": "npm", - "name": "npm:test-exclude", - "data": { - "version": "6.0.0", - "packageName": "test-exclude", - "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - } - }, - "npm:thingies": { - "type": "npm", - "name": "npm:thingies", - "data": { - "version": "1.21.0", - "packageName": "thingies", - "hash": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==" - } - }, - "npm:thread-stream": { - "type": "npm", - "name": "npm:thread-stream", - "data": { - "version": "0.15.2", - "packageName": "thread-stream", - "hash": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==" - } - }, - "npm:throttleit": { - "type": "npm", - "name": "npm:throttleit", - "data": { - "version": "1.0.1", - "packageName": "throttleit", - "hash": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - } - }, - "npm:thunky": { - "type": "npm", - "name": "npm:thunky", - "data": { - "version": "1.1.0", - "packageName": "thunky", - "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - } - }, - "npm:tmpl": { - "type": "npm", - "name": "npm:tmpl", - "data": { - "version": "1.0.5", - "packageName": "tmpl", - "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - } - }, - "npm:to-fast-properties": { - "type": "npm", - "name": "npm:to-fast-properties", - "data": { - "version": "2.0.0", - "packageName": "to-fast-properties", - "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:token-types": { - "type": "npm", - "name": "npm:token-types", - "data": { - "version": "5.0.1", - "packageName": "token-types", - "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" - } - }, - "npm:toposort": { - "type": "npm", - "name": "npm:toposort", - "data": { - "version": "2.0.2", - "packageName": "toposort", - "hash": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "4.1.3", - "packageName": "tough-cookie", - "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" - } - }, - "npm:tree-dump": { - "type": "npm", - "name": "npm:tree-dump", - "data": { - "version": "1.0.2", - "packageName": "tree-dump", - "hash": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==" - } - }, - "npm:tree-kill": { - "type": "npm", - "name": "npm:tree-kill", - "data": { - "version": "1.2.2", - "packageName": "tree-kill", - "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" - } - }, - "npm:trim-repeated": { - "type": "npm", - "name": "npm:trim-repeated", - "data": { - "version": "2.0.0", - "packageName": "trim-repeated", - "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" - } - }, - "npm:ts-api-utils": { - "type": "npm", - "name": "npm:ts-api-utils", - "data": { - "version": "1.3.0", - "packageName": "ts-api-utils", - "hash": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==" - } - }, - "npm:ts-jest": { - "type": "npm", - "name": "npm:ts-jest", - "data": { - "version": "29.1.1", - "packageName": "ts-jest", - "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" - } - }, - "npm:ts-loader": { - "type": "npm", - "name": "npm:ts-loader", - "data": { - "version": "9.5.1", - "packageName": "ts-loader", - "hash": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==" - } - }, - "npm:ts-node": { - "type": "npm", - "name": "npm:ts-node", - "data": { - "version": "10.9.1", - "packageName": "ts-node", - "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:tsconfig-paths-webpack-plugin": { - "type": "npm", - "name": "npm:tsconfig-paths-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "tsconfig-paths-webpack-plugin", - "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.6.3", - "packageName": "tslib", - "hash": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" - } - }, - "npm:tsscmp": { - "type": "npm", - "name": "npm:tsscmp", - "data": { - "version": "1.0.6", - "packageName": "tsscmp", - "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" - } - }, - "npm:tuf-js": { - "type": "npm", - "name": "npm:tuf-js", - "data": { - "version": "2.2.1", - "packageName": "tuf-js", - "hash": "sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==" - } - }, - "npm:tunnel-agent": { - "type": "npm", - "name": "npm:tunnel-agent", - "data": { - "version": "0.6.0", - "packageName": "tunnel-agent", - "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" - } - }, - "npm:tweetnacl": { - "type": "npm", - "name": "npm:tweetnacl", - "data": { - "version": "0.14.5", - "packageName": "tweetnacl", - "hash": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - } - }, - "npm:typanion": { - "type": "npm", - "name": "npm:typanion", - "data": { - "version": "3.14.0", - "packageName": "typanion", - "hash": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-detect": { - "type": "npm", - "name": "npm:type-detect", - "data": { - "version": "4.0.8", - "packageName": "type-detect", - "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "1.6.18", - "packageName": "type-is", - "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - } - }, - "npm:typed-assert": { - "type": "npm", - "name": "npm:typed-assert", - "data": { - "version": "1.0.9", - "packageName": "typed-assert", - "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" - } - }, - "npm:typedarray": { - "type": "npm", - "name": "npm:typedarray", - "data": { - "version": "0.0.6", - "packageName": "typedarray", - "hash": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - } - }, - "npm:ua-parser-js": { - "type": "npm", - "name": "npm:ua-parser-js", - "data": { - "version": "1.0.37", - "packageName": "ua-parser-js", - "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" - } - }, - "npm:uglify-js": { - "type": "npm", - "name": "npm:uglify-js", - "data": { - "version": "3.17.4", - "packageName": "uglify-js", - "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" - } - }, - "npm:undici": { - "type": "npm", - "name": "npm:undici", - "data": { - "version": "6.19.2", - "packageName": "undici", - "hash": "sha512-JfjKqIauur3Q6biAtHJ564e3bWa8VvT+7cSiOJHFbX4Erv6CLGDpg8z+Fmg/1OI/47RA+GI2QZaF48SSaLvyBA==" - } - }, - "npm:unicode-canonical-property-names-ecmascript": { - "type": "npm", - "name": "npm:unicode-canonical-property-names-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-canonical-property-names-ecmascript", - "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - } - }, - "npm:unicode-match-property-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-match-property-ecmascript", - "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - } - }, - "npm:unicode-match-property-value-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-value-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-match-property-value-ecmascript", - "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - } - }, - "npm:unicode-property-aliases-ecmascript": { - "type": "npm", - "name": "npm:unicode-property-aliases-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-property-aliases-ecmascript", - "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - } - }, - "npm:unicorn-magic": { - "type": "npm", - "name": "npm:unicorn-magic", - "data": { - "version": "0.1.0", - "packageName": "unicorn-magic", - "hash": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==" - } - }, - "npm:union": { - "type": "npm", - "name": "npm:union", - "data": { - "version": "0.5.0", - "packageName": "union", - "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "3.0.0", - "packageName": "unique-filename", - "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "4.0.0", - "packageName": "unique-slug", - "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" - } - }, - "npm:unix-crypt-td-js": { - "type": "npm", - "name": "npm:unix-crypt-td-js", - "data": { - "version": "1.1.4", - "packageName": "unix-crypt-td-js", - "hash": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - } - }, - "npm:untildify": { - "type": "npm", - "name": "npm:untildify", - "data": { - "version": "4.0.0", - "packageName": "untildify", - "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" - } - }, - "npm:upath": { - "type": "npm", - "name": "npm:upath", - "data": { - "version": "2.0.1", - "packageName": "upath", - "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.1.0", - "packageName": "update-browserslist-db", - "hash": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.1", - "packageName": "url-join", - "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - } - }, - "npm:utils-merge": { - "type": "npm", - "name": "npm:utils-merge", - "data": { - "version": "1.0.1", - "packageName": "utils-merge", - "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, - "npm:v8-compile-cache-lib": { - "type": "npm", - "name": "npm:v8-compile-cache-lib", - "data": { - "version": "3.0.1", - "packageName": "v8-compile-cache-lib", - "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.2.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" - } - }, - "npm:validate-npm-package-license": { - "type": "npm", - "name": "npm:validate-npm-package-license", - "data": { - "version": "3.0.4", - "packageName": "validate-npm-package-license", - "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "5.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" - } - }, - "npm:validator": { - "type": "npm", - "name": "npm:validator", - "data": { - "version": "13.11.0", - "packageName": "validator", - "hash": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - } - }, - "npm:verdaccio": { - "type": "npm", - "name": "npm:verdaccio", - "data": { - "version": "5.29.2", - "packageName": "verdaccio", - "hash": "sha512-Ra9Bv8mMsGaFnvFJl80gSNg6yhHRFUYATA03xpVrfqC1Z1IDZt/f0jZ94tPnfyaY1ljUS5jKsZsj6ihN/ZSVbQ==" - } - }, - "npm:verdaccio-audit": { - "type": "npm", - "name": "npm:verdaccio-audit", - "data": { - "version": "12.0.0-next-7.10", - "packageName": "verdaccio-audit", - "hash": "sha512-inL8J7c4y9BpFIkqLsw9yrdh8/CBKWbBrREiQHQ9ZnD7jLkHxTWsWW8jt4aUt9t2azc6eO5rUIqdo1W6VsYKeA==" - } - }, - "npm:verdaccio-htpasswd": { - "type": "npm", - "name": "npm:verdaccio-htpasswd", - "data": { - "version": "12.0.0-next-7.10", - "packageName": "verdaccio-htpasswd", - "hash": "sha512-+P7kxWgWSxRyTlP+IFySwgvQjt529zXTetNmupUgYtu09qCZMffdZ74aGASuCvWa4Vcqavmytzg8McqCNheFiA==" - } - }, - "npm:verror": { - "type": "npm", - "name": "npm:verror", - "data": { - "version": "1.10.0", - "packageName": "verror", - "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" - } - }, - "npm:vite": { - "type": "npm", - "name": "npm:vite", - "data": { - "version": "5.3.2", - "packageName": "vite", - "hash": "sha512-6lA7OBHBlXUxiJxbO5aAY2fsHHzDr1q7DvXYnyZycRs2Dz+dXBWuhpWHvmljTRTpQC2uvGmUFFkSHF2vGo90MA==" - } - }, - "npm:w3c-xmlserializer": { - "type": "npm", - "name": "npm:w3c-xmlserializer", - "data": { - "version": "4.0.0", - "packageName": "w3c-xmlserializer", - "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" - } - }, - "npm:walker": { - "type": "npm", - "name": "npm:walker", - "data": { - "version": "1.0.8", - "packageName": "walker", - "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" - } - }, - "npm:watchpack": { - "type": "npm", - "name": "npm:watchpack", - "data": { - "version": "2.4.1", - "packageName": "watchpack", - "hash": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==" - } - }, - "npm:wbuf": { - "type": "npm", - "name": "npm:wbuf", - "data": { - "version": "1.7.3", - "packageName": "wbuf", - "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" - } - }, - "npm:weak-lru-cache": { - "type": "npm", - "name": "npm:weak-lru-cache", - "data": { - "version": "1.2.2", - "packageName": "weak-lru-cache", - "hash": "sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==" - } - }, - "npm:webpack": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.92.1", - "packageName": "webpack", - "hash": "sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA==" - } - }, - "npm:webpack-merge": { - "type": "npm", - "name": "npm:webpack-merge", - "data": { - "version": "5.10.0", - "packageName": "webpack-merge", - "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" - } - }, - "npm:webpack-node-externals": { - "type": "npm", - "name": "npm:webpack-node-externals", - "data": { - "version": "3.0.0", - "packageName": "webpack-node-externals", - "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" - } - }, - "npm:webpack-sources": { - "type": "npm", - "name": "npm:webpack-sources", - "data": { - "version": "3.2.3", - "packageName": "webpack-sources", - "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - } - }, - "npm:webpack-subresource-integrity": { - "type": "npm", - "name": "npm:webpack-subresource-integrity", - "data": { - "version": "5.1.0", - "packageName": "webpack-subresource-integrity", - "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" - } - }, - "npm:websocket-driver": { - "type": "npm", - "name": "npm:websocket-driver", - "data": { - "version": "0.7.4", - "packageName": "websocket-driver", - "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - } - }, - "npm:websocket-extensions": { - "type": "npm", - "name": "npm:websocket-extensions", - "data": { - "version": "0.1.4", - "packageName": "websocket-extensions", - "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-mimetype": { - "type": "npm", - "name": "npm:whatwg-mimetype", - "data": { - "version": "3.0.0", - "packageName": "whatwg-mimetype", - "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - } - }, - "npm:wide-align": { - "type": "npm", - "name": "npm:wide-align", - "data": { - "version": "1.1.5", - "packageName": "wide-align", - "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" - } - }, - "npm:wildcard": { - "type": "npm", - "name": "npm:wildcard", - "data": { - "version": "2.0.1", - "packageName": "wildcard", - "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" - } - }, - "npm:word-wrap": { - "type": "npm", - "name": "npm:word-wrap", - "data": { - "version": "1.2.5", - "packageName": "word-wrap", - "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" - } - }, - "npm:wordwrap": { - "type": "npm", - "name": "npm:wordwrap", - "data": { - "version": "1.0.0", - "packageName": "wordwrap", - "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:xmlchars": { - "type": "npm", - "name": "npm:xmlchars", - "data": { - "version": "2.2.0", - "packageName": "xmlchars", - "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - } - }, - "npm:xmlhttprequest-ssl": { - "type": "npm", - "name": "npm:xmlhttprequest-ssl", - "data": { - "version": "2.0.0", - "packageName": "xmlhttprequest-ssl", - "hash": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" - } - }, - "npm:xxhashjs": { - "type": "npm", - "name": "npm:xxhashjs", - "data": { - "version": "0.2.2", - "packageName": "xxhashjs", - "hash": "sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yauzl": { - "type": "npm", - "name": "npm:yauzl", - "data": { - "version": "2.10.0", - "packageName": "yauzl", - "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" - } - }, - "npm:ylru": { - "type": "npm", - "name": "npm:ylru", - "data": { - "version": "1.4.0", - "packageName": "ylru", - "hash": "sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==" - } - }, - "npm:yn": { - "type": "npm", - "name": "npm:yn", - "data": { - "version": "3.1.1", - "packageName": "yn", - "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" - } - }, - "npm:yoctocolors-cjs": { - "type": "npm", - "name": "npm:yoctocolors-cjs", - "data": { - "version": "2.1.2", - "packageName": "yoctocolors-cjs", - "hash": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==" - } - }, - "npm:yup": { - "type": "npm", - "name": "npm:yup", - "data": { - "version": "0.32.11", - "packageName": "yup", - "hash": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==" - } - }, - "npm:zone.js": { - "type": "npm", - "name": "npm:zone.js", - "data": { - "version": "0.14.2", - "packageName": "zone.js", - "hash": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==" - } - } - }, - "dependencies": [ - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@angular-devkit/architect", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/architect", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:browser-sync", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ng-packagr", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/build-webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular/build", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/core@7.24.7", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@discoveryjs/json-ext", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@ngtools/webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@vitejs/plugin-basic-ssl", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:copy-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:critters", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:esbuild-wasm", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:karma-source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:less-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:license-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:mini-css-extract-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:mrmime@2.0.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:open@10.1.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:parse5-html-rewriting-stream", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:postcss-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:resolve-url-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:sass-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:source-map-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:terser@5.29.2", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:undici", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-subresource-integrity", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:esbuild@0.21.5", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/aix-ppc64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-arm@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/darwin-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/darwin-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/freebsd-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/freebsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-arm@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-ia32@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-loong64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-mips64el@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-ppc64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-riscv64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-s390x@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/netbsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/openbsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/sunos-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-ia32@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:is-wsl@3.1.0", - "target": "npm:is-inside-container", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:default-browser", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:define-lazy-prop@3.0.0", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:is-inside-container", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:is-wsl@3.1.0", - "type": "static" - }, - { - "source": "npm:terser@5.29.2", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser@5.29.2", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser@5.29.2", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser@5.29.2", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:ajv@8.16.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:ajv-formats@3.0.1", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:ajv@8.16.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.16.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.16.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.16.0", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-formats@3.0.1", - "target": "npm:ajv@8.16.0", - "type": "static" - }, - { - "source": "npm:ajv-formats@3.0.1", - "target": "npm:ajv@8.16.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@angular-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@angular-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:axobject-query", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:eslint-scope", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular/animations", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/animations", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@babel/core@7.24.7", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@inquirer/confirm", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@vitejs/plugin-basic-ssl", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:critters", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:esbuild@0.21.5", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:lmdb", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:mrmime@2.0.0", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:parse5-html-rewriting-stream", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:rollup@4.18.0", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:undici", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/aix-ppc64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-arm@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/darwin-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/darwin-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/freebsd-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/freebsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-arm@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-ia32@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-loong64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-mips64el@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-ppc64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-riscv64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-s390x@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/netbsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/openbsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/sunos-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-ia32@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-android-arm-eabi", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-android-arm64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-darwin-arm64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-darwin-x64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm-musleabihf", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-powerpc64le-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@inquirer/prompts", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@listr2/prompt-adapter-inquirer", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:listr2@8.2.3", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:npm-package-arg@11.0.2", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:symbol-observable", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:ansi-escapes@7.0.0", - "target": "npm:environment", - "type": "static" - }, - { - "source": "npm:cli-cursor@5.0.0", - "target": "npm:restore-cursor@5.1.0", - "type": "static" - }, - { - "source": "npm:cli-truncate@4.0.0", - "target": "npm:slice-ansi@5.0.0", - "type": "static" - }, - { - "source": "npm:cli-truncate@4.0.0", - "target": "npm:string-width@7.2.0", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:cli-truncate@4.0.0", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:eventemitter3@5.0.1", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:log-update@6.1.0", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:wrap-ansi@9.0.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:ansi-escapes@7.0.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:cli-cursor@5.0.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:slice-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:wrap-ansi@9.0.0", - "type": "static" - }, - { - "source": "npm:is-fullwidth-code-point@5.0.0", - "target": "npm:get-east-asian-width", - "type": "static" - }, - { - "source": "npm:slice-ansi@7.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi@7.1.0", - "target": "npm:is-fullwidth-code-point@5.0.0", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.2", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.2", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.2", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.2", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:onetime@7.0.0", - "target": "npm:mimic-function", - "type": "static" - }, - { - "source": "npm:restore-cursor@5.1.0", - "target": "npm:onetime@7.0.0", - "type": "static" - }, - { - "source": "npm:restore-cursor@5.1.0", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:slice-ansi@5.0.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi@5.0.0", - "target": "npm:is-fullwidth-code-point@4.0.0", - "type": "static" - }, - { - "source": "npm:string-width@7.2.0", - "target": "npm:emoji-regex@10.3.0", - "type": "static" - }, - { - "source": "npm:string-width@7.2.0", - "target": "npm:get-east-asian-width", - "type": "static" - }, - { - "source": "npm:string-width@7.2.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@9.0.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@9.0.0", - "target": "npm:string-width@7.2.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@9.0.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/compiler", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/compiler", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:reflect-metadata", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:zone.js", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/animations", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator@7.25.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@babel/helper-environment-visitor", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-optimise-call-expression", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-split-export-declaration", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - }, - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - }, - { - "source": "npm:@babel/parser", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:regenerator-transform", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - }, - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator@7.25.0", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:jsesc", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - }, - { - "source": "npm:@cspotcode/source-map-support", - "target": "npm:@jridgewell/trace-mapping@0.3.9", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-color-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-color-function", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-color-function", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-font-format-keywords", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-font-format-keywords", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-hwb-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-hwb-function", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-ic-unit", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-ic-unit", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-ic-unit", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-is-pseudo-class", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-is-pseudo-class", - "target": "npm:@csstools/selector-specificity", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-is-pseudo-class", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-normalize-display-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-oklab-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-oklab-function", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-oklab-function", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-progressive-custom-properties", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-progressive-custom-properties", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-stepped-value-functions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-stepped-value-functions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-unset-value", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/selector-specificity", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:http-signature", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:@emnapi/wasi-threads", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@emnapi/runtime", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@emnapi/wasi-threads", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:globals@13.24.0", - "target": "npm:type-fest@0.20.2", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:@humanwhocodes/object-schema", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/node@22.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@types/node@22.1.0", - "target": "npm:undici-types@6.13.0", - "type": "static" - }, - { - "source": "npm:@inquirer/confirm", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/confirm", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@types/node@20.14.14", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@types/node@20.14.14", - "target": "npm:undici-types", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:external-editor", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/node@22.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@types/node@22.1.0", - "target": "npm:undici-types@6.13.0", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/node@22.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@types/node@22.1.0", - "target": "npm:undici-types@6.13.0", - "type": "static" - }, - { - "source": "npm:@inquirer/input", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/input", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/node@22.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@types/node@22.1.0", - "target": "npm:undici-types@6.13.0", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/node@22.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@types/node@22.1.0", - "target": "npm:undici-types@6.13.0", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/checkbox", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/confirm", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/editor", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/expand", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/input", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/password", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/rawlist", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/select", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/node@22.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@types/node@22.1.0", - "target": "npm:undici-types@6.13.0", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/node@22.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:yoctocolors-cjs", - "type": "static" - }, - { - "source": "npm:@types/node@22.1.0", - "target": "npm:undici-types@6.13.0", - "type": "static" - }, - { - "source": "npm:@inquirer/type", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi-cjs", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-changed-files", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve-dependencies", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@sinonjs/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:write-file-atomic", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/yargs", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/base64", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:@jsonjoy.com/base64", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:@jsonjoy.com/util", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:hyperdyperid", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:thingies", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/util", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@listr2/prompt-adapter-inquirer", - "target": "npm:@inquirer/prompts", - "type": "static" - }, - { - "source": "npm:@listr2/prompt-adapter-inquirer", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@module-federation/bridge-react-webpack-plugin", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:@module-federation/managers", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:@module-federation/third-party-dts-extractor", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:adm-zip", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:isomorphic-ws", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:koa", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:lodash.clonedeepwith", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:log4js", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:node-schedule", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:rambda", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/bridge-react-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/dts-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/managers", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/manifest", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/rspack", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/runtime-tools", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:btoa", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:upath", - "type": "static" - }, - { - "source": "npm:@module-federation/managers", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/managers", - "target": "npm:find-pkg", - "type": "static" - }, - { - "source": "npm:@module-federation/managers", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:@module-federation/dts-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:@module-federation/managers", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:find-pkg", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/bridge-react-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/dts-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/managers", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/manifest", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/runtime-tools", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/runtime", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/runtime-tools", - "target": "npm:@module-federation/runtime", - "type": "static" - }, - { - "source": "npm:@module-federation/runtime-tools", - "target": "npm:@module-federation/webpack-bundler-runtime", - "type": "static" - }, - { - "source": "npm:@module-federation/third-party-dts-extractor", - "target": "npm:find-pkg", - "type": "static" - }, - { - "source": "npm:@module-federation/third-party-dts-extractor", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@module-federation/third-party-dts-extractor", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:@module-federation/vite", - "target": "npm:@softarc/native-federation", - "type": "static" - }, - { - "source": "npm:@module-federation/webpack-bundler-runtime", - "target": "npm:@module-federation/runtime", - "type": "static" - }, - { - "source": "npm:@module-federation/webpack-bundler-runtime", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-version-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:ext-name", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:file-type", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:filenamify", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:os-filter-obj", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/core", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@tybys/wasm-util", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:http-proxy-agent@7.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:lru-cache@10.2.2", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:socks-proxy-agent", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.2", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@npmcli/fs", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:lru-cache@10.2.2", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:glob@10.4.1", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:jackspeak@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:minimatch@9.0.4", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:jackspeak@3.1.2", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak@3.1.2", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.4", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/package-json", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:@nrwl/angular", - "target": "npm:@nx/angular", - "type": "static" - }, - { - "source": "npm:@nrwl/angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nrwl/cypress", - "target": "npm:@nx/cypress", - "type": "static" - }, - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nrwl/eslint-plugin-nx", - "target": "npm:@nx/eslint-plugin", - "type": "static" - }, - { - "source": "npm:@nrwl/jest", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nrwl/js", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nrwl/node", - "target": "npm:@nx/node", - "type": "static" - }, - { - "source": "npm:@nrwl/nx-plugin", - "target": "npm:@nx/plugin", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nrwl/web", - "target": "npm:@nx/web", - "type": "static" - }, - { - "source": "npm:@nrwl/webpack", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "npm:@nrwl/workspace", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@module-federation/enhanced", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nrwl/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/web", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nrwl/cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:typescript@5.4.5", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nrwl/eslint-plugin-nx", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:confusing-browser-globals", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:jsonc-eslint-parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nrwl/jest", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:identity-obj-proxy", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:verdaccio", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nrwl/js", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-const-enum", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-transform-typescript-metadata", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fast-glob@3.2.7", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ora@5.3.0", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:source-map-support@0.5.19", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@nx/linter", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nrwl/node", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nrwl/nx-plugin", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nrwl/web", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:http-server", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@module-federation/enhanced", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nrwl/webpack", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:copy-webpack-plugin@10.2.4", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:css-loader@6.11.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:css-minimizer-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:express@4.19.2", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:fork-ts-checker-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less@4.1.3", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less-loader@11.1.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:license-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:mini-css-extract-plugin@2.4.7", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss-import", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss-loader@6.2.1", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:sass-loader@12.6.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:source-map-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:stylus-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:ts-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tsconfig-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-dev-server@4.15.2", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-node-externals", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-subresource-integrity", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:destroy@1.2.0", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:globby@12.2.0", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:body-parser@1.20.2", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:cookie@0.6.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:finalhandler@1.2.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:serve-static@1.15.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:array-union@3.0.1", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:slash@4.0.0", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:copy-anything", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:needle", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:less-loader@11.1.0", - "target": "npm:less@4.1.3", - "type": "static" - }, - { - "source": "npm:less-loader@11.1.0", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:less-loader@11.1.0", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin@2.4.7", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin@2.4.7", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:on-finished@2.4.1", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:p-retry@4.6.2", - "target": "npm:@types/retry@0.12.0", - "type": "static" - }, - { - "source": "npm:p-retry@4.6.2", - "target": "npm:retry@0.13.1", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:qs@6.11.0", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:destroy@1.2.0", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:bonjour-service", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:connect-history-api-fallback@2.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:express@4.19.2", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:http-proxy-middleware@2.0.6", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:ipaddr.js@2.2.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:launch-editor", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:p-retry@4.6.2", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:webpack-dev-middleware@5.3.4", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nrwl/workspace", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:is-reference", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-json", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-json", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:@types/resolve", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:is-builtin-module", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:is-module", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-replace", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-replace", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-replace", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:@rollup/wasm-node", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@rollup/wasm-node", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@sigstore/bundle", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/core", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:tuf-js", - "type": "static" - }, - { - "source": "npm:@sigstore/verify", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:@sigstore/verify", - "target": "npm:@sigstore/core", - "type": "static" - }, - { - "source": "npm:@sigstore/verify", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sinonjs/commons", - "target": "npm:type-detect", - "type": "static" - }, - { - "source": "npm:@sinonjs/fake-timers", - "target": "npm:@sinonjs/commons", - "type": "static" - }, - { - "source": "npm:@softarc/native-federation", - "target": "npm:@softarc/native-federation-runtime", - "type": "static" - }, - { - "source": "npm:@softarc/native-federation", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@softarc/native-federation", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "npm:@softarc/native-federation-runtime", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@swc-node/core", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc-node/core", - "target": "npm:@swc/types", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc-node/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc-node/sourcemap-support", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@swc-node/sourcemap-support", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@swc-node/sourcemap-support", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@mole-inc/bin-wrapper", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@swc/counter", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/counter", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/types@0.1.7", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-arm64", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-x64", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:@swc/types@0.1.7", - "target": "npm:@swc/counter", - "type": "static" - }, - { - "source": "npm:@swc/helpers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@swc/types", - "target": "npm:@swc/counter", - "type": "static" - }, - { - "source": "npm:@szmarczak/http-timer", - "target": "npm:defer-to-connect", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:@tufjs/canonical-json", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.4", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.4", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:@tybys/wasm-util", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/bonjour", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/browser-sync", - "target": "npm:@types/micromatch", - "type": "static" - }, - { - "source": "npm:@types/browser-sync", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/browser-sync", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/browser-sync", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:@types/connect", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cors", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cross-spawn", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - }, - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/http-proxy", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:parse5@7.1.2", - "type": "static" - }, - { - "source": "npm:parse5@7.1.2", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:@types/keyv", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/micromatch", - "target": "npm:@types/parse-glob", - "type": "static" - }, - { - "source": "npm:@types/mute-stream", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/node", - "target": "npm:undici-types", - "type": "static" - }, - { - "source": "npm:@types/node-forge", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/npmlog", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/responselike", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/mime@1.3.5", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/serve-index", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/sockjs", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/ws", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - }, - { - "source": "npm:@types/yauzl", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:minimatch@9.0.5", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:ts-api-utils", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.5", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:@verdaccio/commons-api", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:@verdaccio/commons-api", - "target": "npm:http-status-codes@2.2.0", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:minimatch@7.4.6", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:yup", - "type": "static" - }, - { - "source": "npm:minimatch@7.4.6", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:http-status-codes", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:@verdaccio/file-locking", - "target": "npm:lockfile", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/commons-api", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/file-locking", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/streams", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:async@3.2.4", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:lowdb", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-7", - "target": "npm:@verdaccio/logger-commons", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-7", - "target": "npm:pino", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:@verdaccio/logger-prettify", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:dayjs@1.11.7", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:pino-abstract-transport", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:sonic-boom", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:express-rate-limit", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:mime@2.6.0", - "type": "static" - }, - { - "source": "npm:@verdaccio/signature", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/signature", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:minimatch@7.4.6", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minimatch@7.4.6", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:@vitejs/plugin-basic-ssl", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/floating-point-hex-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ieee754", - "target": "npm:@xtuc/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/leb128", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-section", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-opt", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@xtuc/long", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:acorn-import-attributes", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-jsx", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:adjust-sourcemap-loader", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:adjust-sourcemap-loader", - "target": "npm:regex-parser", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-formats", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ajv-formats", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ajv-keywords", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ajv-keywords", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:aria-query", - "target": "npm:dequal", - "type": "static" - }, - { - "source": "npm:asn1", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:fraction.js", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:normalize-range", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:proxy-from-env@1.1.0", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:find-cache-dir@4.0.0", - "target": "npm:common-path-prefix", - "type": "static" - }, - { - "source": "npm:find-cache-dir@4.0.0", - "target": "npm:pkg-dir@7.0.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.2.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - }, - { - "source": "npm:locate-path@7.2.0", - "target": "npm:p-locate@6.0.0", - "type": "static" - }, - { - "source": "npm:p-limit@4.0.0", - "target": "npm:yocto-queue@1.0.0", - "type": "static" - }, - { - "source": "npm:p-locate@6.0.0", - "target": "npm:p-limit@4.0.0", - "type": "static" - }, - { - "source": "npm:pkg-dir@7.0.0", - "target": "npm:find-up@6.3.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument@5.2.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__traverse", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-transform-typescript-metadata", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-bigint", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-plugin-jest-hoist", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:basic-auth", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:bcrypt-pbkdf", - "target": "npm:tweetnacl", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:execa@5.1.1", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:find-versions", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:bin-version", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver-truncate", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:destroy@1.2.0", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body@2.5.1", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:on-finished@2.4.1", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:qs@6.11.0", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:multicast-dns", - "type": "static" - }, - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:browser-sync-client", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:browser-sync-ui", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:bs-recipes", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:dev-ip", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:easy-extender", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:eazy-logger", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:fs-extra@3.0.1", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:opn", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:portscanner", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:resp-modifier", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:rx", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:socket.io", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:ua-parser-js", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:mitt", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:async-each-series", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:socket.io-client", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:stream-throttle", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:jsonfile@3.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:jsonfile@3.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - }, - { - "source": "npm:bs-logger", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:bser", - "target": "npm:node-int64", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:builtins", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:bundle-name", - "target": "npm:run-applescript", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@10.2.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:cache-content-type", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:cache-content-type", - "target": "npm:ylru", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:clone-response", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.uniq", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:clipanion", - "target": "npm:typanion", - "type": "static" - }, - { - "source": "npm:clipanion", - "target": "npm:typanion", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - }, - { - "source": "npm:clone-response", - "target": "npm:mimic-response", - "type": "static" - }, - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - }, - { - "source": "npm:compressible", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:typedarray", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:string_decoder@1.1.1", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:keygrip", - "type": "static" - }, - { - "source": "npm:copy-anything", - "target": "npm:is-what", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:globby@14.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:@sindresorhus/merge-streams", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:path-type@5.0.0", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:slash@5.1.0", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:unicorn-magic", - "type": "static" - }, - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:postcss-media-query-parser", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:cron-parser", - "target": "npm:luxon", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - }, - { - "source": "npm:css-blank-pseudo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-blank-pseudo", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:css-declaration-sorter", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-has-pseudo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-has-pseudo", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:cssnano", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:css-prefers-color-scheme", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:cssnano-preset-default", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:lilconfig", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:css-declaration-sorter", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-calc", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-colormin", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-convert-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-comments", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-duplicates", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-empty", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-overridden", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-longhand", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-rules", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-font-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-gradients", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-params", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-charset", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-positions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-repeat-style", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-string", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-timing-functions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-unicode", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-url", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-ordered-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-initial", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-transforms", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-svgo", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-unique-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-utils", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:csso", - "target": "npm:css-tree@2.2.1", - "type": "static" - }, - { - "source": "npm:css-tree@2.2.1", - "target": "npm:mdn-data@2.0.28", - "type": "static" - }, - { - "source": "npm:css-tree@2.2.1", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/request", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/xvfb", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sinonjs__fake-timers", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sizzle", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:blob-util", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cachedir", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:check-more-types", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:commander@6.2.1", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:common-tags", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:dayjs", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:eventemitter2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:getos", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-installed-globally", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lazy-ass", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:ospath", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:request-progress", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:untildify", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:human-signals@1.1.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:dashdash", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:debug", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:decompress-response", - "target": "npm:mimic-response@3.1.0", - "type": "static" - }, - { - "source": "npm:default-browser", - "target": "npm:bundle-name", - "type": "static" - }, - { - "source": "npm:default-browser", - "target": "npm:default-browser-id", - "type": "static" - }, - { - "source": "npm:default-gateway", - "target": "npm:execa@5.1.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:address", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:dns-packet", - "target": "npm:@leichtgewicht/ip-codec", - "type": "static" - }, - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dotenv-expand", - "target": "npm:dotenv@16.4.5", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:stream-shift", - "type": "static" - }, - { - "source": "npm:easy-extender", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:eazy-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:jsbn@0.1.1", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:ecdsa-sig-formatter", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - }, - { - "source": "npm:encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:ws@8.11.0", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:ws@8.11.0", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:xmlhttprequest-ssl", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:enquirer", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:errno", - "target": "npm:prr", - "type": "static" - }, - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - }, - { - "source": "npm:es-define-property", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/aix-ppc64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ia32", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-loong64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-mips64el", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ppc64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-riscv64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-s390x", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/netbsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openbsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/sunos-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-ia32", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-x64", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/config-array", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/module-importer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@ungap/structured-clone", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope@7.2.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:find-up@5.0.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - }, - { - "source": "npm:eslint-config-prettier", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-cypress", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-cypress", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:globals@13.24.0", - "target": "npm:type-fest@0.20.2", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:eslint-scope@7.2.2", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@7.2.2", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:find-up@5.0.0", - "target": "npm:locate-path@6.0.0", - "type": "static" - }, - { - "source": "npm:find-up@5.0.0", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:globals@13.24.0", - "target": "npm:type-fest@0.20.2", - "type": "static" - }, - { - "source": "npm:locate-path@6.0.0", - "target": "npm:p-locate@5.0.0", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:p-locate@5.0.0", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-eof", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:lru-cache@4.1.5", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:pseudomap", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:yallist@2.1.2", - "type": "static" - }, - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key@2.0.1", - "type": "static" - }, - { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - }, - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:executable", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:expand-tilde", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie@0.5.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler@1.2.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static@1.15.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:on-finished@2.4.1", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:qs@6.11.0", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:destroy@1.2.0", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:ext-list", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:ext-list", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:sort-keys-length", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:chardet", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:tmp@0.0.33", - "type": "static" - }, - { - "source": "npm:tmp@0.0.33", - "target": "npm:os-tmpdir", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:@types/yauzl", - "type": "static" - }, - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - }, - { - "source": "npm:faye-websocket", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - }, - { - "source": "npm:fd-slicer", - "target": "npm:pend", - "type": "static" - }, - { - "source": "npm:figures", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:readable-web-to-node-stream", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:strtok3", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:token-types", - "type": "static" - }, - { - "source": "npm:filelist", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:filename-reserved-regex", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:strip-outer", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:trim-repeated", - "type": "static" - }, - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:find-file-up", - "target": "npm:resolve-dir", - "type": "static" - }, - { - "source": "npm:find-pkg", - "target": "npm:find-file-up", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - }, - { - "source": "npm:find-versions", - "target": "npm:semver-regex", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:node-abort-controller", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-keywords@3.5.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords@3.5.2", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:front-matter", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:wide-align", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:getos", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:getpass", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:global-dirs", - "target": "npm:ini@2.0.0", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:global-prefix", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:resolve-dir", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:ini@1.3.8", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:gopd", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - }, - { - "source": "npm:has-property-descriptors", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:homedir-polyfill", - "target": "npm:parse-passwd", - "type": "static" - }, - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache@10.2.0", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:wbuf", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:string_decoder@1.1.1", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:http-assert", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:http-assert", - "target": "npm:http-errors@1.8.1", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:@tootallnate/once", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:basic-auth", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:corser", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:opener", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:portfinder", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:secure-compare", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:union", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:url-join", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:jsprim", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:sshpk", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:resolve-alpn", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:icss-utils", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:identity-obj-proxy", - "target": "npm:harmony-reflect", - "type": "static" - }, - { - "source": "npm:ignore-walk", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:injection-js", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:ip-address", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:ip-address", - "target": "npm:sprintf-js@1.1.3", - "type": "static" - }, - { - "source": "npm:is-binary-path", - "target": "npm:binary-extensions", - "type": "static" - }, - { - "source": "npm:is-builtin-module", - "target": "npm:builtin-modules", - "type": "static" - }, - { - "source": "npm:is-ci", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - }, - { - "source": "npm:is-generator-function", - "target": "npm:has-tostringtag", - "type": "static" - }, - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - }, - { - "source": "npm:is-inside-container", - "target": "npm:is-docker@3.0.0", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:global-dirs", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:is-number-like", - "target": "npm:lodash.isfinite", - "type": "static" - }, - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - }, - { - "source": "npm:is-reference", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:isomorphic-ws", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:make-dir@4.0.0", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:jest-cli", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:execa@5.1.1", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent@1.5.1", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:is-generator-fn", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-each", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:stack-utils", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:yaml", - "type": "static" - }, - { - "source": "npm:dedent@1.5.1", - "target": "npm:babel-plugin-macros@3.1.0", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-docblock", - "target": "npm:detect-newline", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:stack-utils", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-pnp-resolver", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/platform-browser-dynamic", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:esbuild-wasm", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:ts-jest", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports@2.0.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-docblock", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-leak-detector", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/globals", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/source-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:strip-bom", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.3.0", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn-globals", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssom", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssstyle", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:data-urls", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:decimal.js", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:domexception", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:https-proxy-agent@5.0.1", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:is-potential-custom-element-name", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:nwsapi", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:parse5@7.1.2", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:saxes", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:symbol-tree", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:w3c-xmlserializer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:parse5@7.1.2", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isboolean", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isinteger", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isnumber", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:verror", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:buffer-equal-constant-time", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:ecdsa-sig-formatter", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:jwa", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:karma-source-map-support", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:keygrip", - "target": "npm:tsscmp", - "type": "static" - }, - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:cache-content-type", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:cookies@0.8.0", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:debug@3.1.0", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:error-inject", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:http-assert", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:http-errors@1.8.1", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:koa-compose", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:koa-convert", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:only", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:vary", - "type": "static" - }, - { - "source": "npm:koa-convert", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:koa-convert", - "target": "npm:koa-compose@3.2.1", - "type": "static" - }, - { - "source": "npm:koa-compose@3.2.1", - "target": "npm:any-promise", - "type": "static" - }, - { - "source": "npm:cookies@0.8.0", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:cookies@0.8.0", - "target": "npm:keygrip", - "type": "static" - }, - { - "source": "npm:debug@3.1.0", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:toidentifier", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:shell-quote", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:copy-anything", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:needle", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:less-loader", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:less-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.2", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:license-webpack-plugin", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:msgpackr", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:node-addon-api", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:node-gyp-build-optional-packages", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:ordered-binary", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:weak-lru-cache", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-darwin-arm64", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-darwin-x64", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-linux-arm", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-linux-arm64", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-linux-x64", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-win32-x64", - "type": "static" - }, - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - }, - { - "source": "npm:lockfile", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:slice-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:streamroller", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:steno", - "type": "static" - }, - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - }, - { - "source": "npm:magic-string", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:make-dir", - "target": "npm:semver@6.3.1", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:@npmcli/agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - }, - { - "source": "npm:memfs", - "target": "npm:fs-monkey", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:minimatch", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:minipass-flush", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass-sized", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:msgpackr", - "target": "npm:msgpackr-extract", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:node-gyp-build-optional-packages", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-darwin-arm64", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-darwin-x64", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-linux-arm", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-linux-arm64", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-linux-x64", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-win32-x64", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:dns-packet", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:thunky", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:ncp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:rimraf@2.4.5", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:path-is-absolute", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:rimraf@2.4.5", - "target": "npm:glob@6.0.4", - "type": "static" - }, - { - "source": "npm:needle", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:needle", - "target": "npm:sax", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:@rollup/plugin-json", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:@rollup/plugin-node-resolve", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:@rollup/wasm-node", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:commander@12.1.0", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:dependency-graph", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:esbuild@0.23.0", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:injection-js", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:rollup@4.18.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/aix-ppc64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/android-arm@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/android-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/android-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/darwin-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/darwin-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/freebsd-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/freebsd-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-arm@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-ia32@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-loong64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-mips64el@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-ppc64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-riscv64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-s390x@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/netbsd-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/openbsd-arm64", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/openbsd-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/sunos-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/win32-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/win32-ia32@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/win32-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-android-arm-eabi", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-android-arm64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-darwin-arm64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-darwin-x64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm-musleabihf", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-powerpc64le-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:nice-napi", - "target": "npm:node-addon-api@3.2.1", - "type": "static" - }, - { - "source": "npm:nice-napi", - "target": "npm:node-gyp-build", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:tr46@0.0.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:webidl-conversions@3.0.1", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:exponential-backoff", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:glob@10.4.1", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@4.0.0", - "type": "static" - }, - { - "source": "npm:node-gyp-build-optional-packages", - "target": "npm:detect-libc", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:jackspeak@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:minimatch@9.0.4", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:jackspeak@3.1.2", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak@3.1.2", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.4", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - }, - { - "source": "npm:node-schedule", - "target": "npm:cron-parser", - "type": "static" - }, - { - "source": "npm:node-schedule", - "target": "npm:long-timeout", - "type": "static" - }, - { - "source": "npm:node-schedule", - "target": "npm:sorted-array-functions", - "type": "static" - }, - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - }, - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-install-checks", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - }, - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:@npmcli/redact", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:npm-run-path", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:are-we-there-yet", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:gauge", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:set-blocking", - "type": "static" - }, - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@swc-node/register", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@napi-rs/wasm-runtime", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nrwl/tao", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv@16.4.5", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:front-matter", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ora@5.3.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - }, - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - }, - { - "source": "npm:opn", - "target": "npm:is-wsl@1.1.0", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:word-wrap", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:os-filter-obj", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - }, - { - "source": "npm:p-locate", - "target": "npm:p-limit@2.3.0", - "type": "static" - }, - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - }, - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:is-network-error", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry@0.13.1", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/package-json", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors@2.3.1", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns@1.2.4", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:parse5@7.1.2", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:parse5-sax-parser", - "type": "static" - }, - { - "source": "npm:parse5@7.1.2", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:parse5-sax-parser", - "target": "npm:parse5@7.1.2", - "type": "static" - }, - { - "source": "npm:parse5@7.1.2", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.2.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:fast-redact", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:on-exit-leak-free", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-abstract-transport@0.5.0", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-std-serializers", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:quick-format-unescaped", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:safe-stable-stringify", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:sonic-boom@2.8.0", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:thread-stream", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport", - "target": "npm:readable-stream@4.5.2", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:buffer@6.0.3", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport@0.5.0", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport@0.5.0", - "target": "npm:split2", - "type": "static" - }, - { - "source": "npm:sonic-boom@2.8.0", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:piscina", - "target": "npm:nice-napi", - "type": "static" - }, - { - "source": "npm:pkg-dir", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:async@2.6.4", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:async@2.6.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:portscanner", - "target": "npm:async@2.6.4", - "type": "static" - }, - { - "source": "npm:portscanner", - "target": "npm:is-number-like", - "type": "static" - }, - { - "source": "npm:async@2.6.4", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:postcss-attribute-case-insensitive", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-attribute-case-insensitive", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-clamp", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-clamp", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-color-functional-notation", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-color-functional-notation", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-color-hex-alpha", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-color-hex-alpha", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-color-rebeccapurple", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-color-rebeccapurple", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-custom-media", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-custom-media", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-custom-properties", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-custom-properties", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-custom-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-custom-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-dir-pseudo-class", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-dir-pseudo-class", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-discard-comments", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-duplicates", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-empty", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-discard-overridden", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-double-position-gradients", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-double-position-gradients", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:postcss-double-position-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-env-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-env-function", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-focus-visible", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-focus-visible", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-focus-within", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-focus-within", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-font-variant", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-gap-properties", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-image-set-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-image-set-function", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:read-cache", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:postcss-initial", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-lab-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-lab-function", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:postcss-lab-function", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:cosmiconfig@9.0.0", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:postcss-logical", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-media-minmax", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:stylehacks", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-extract-imports", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-values", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-nesting", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-nesting", - "target": "npm:@csstools/selector-specificity", - "type": "static" - }, - { - "source": "npm:postcss-nesting", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-charset", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-opacity-percentage", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-overflow-shorthand", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-overflow-shorthand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-page-break", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-place", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-place", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-color-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-font-format-keywords", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-hwb-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-ic-unit", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-is-pseudo-class", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-oklab-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-stepped-value-functions", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-unset-value", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:css-blank-pseudo", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:css-has-pseudo", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:css-prefers-color-scheme", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:cssdb", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-attribute-case-insensitive", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-clamp", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-color-functional-notation", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-color-hex-alpha", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-color-rebeccapurple", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-custom-media", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-custom-properties", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-custom-selectors", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-dir-pseudo-class", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-double-position-gradients", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-env-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-focus-visible", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-focus-within", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-font-variant", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-gap-properties", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-image-set-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-initial", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-lab-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-logical", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-media-minmax", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-nesting", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-opacity-percentage", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-overflow-shorthand", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-page-break", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-place", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-pseudo-class-any-link", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-replace-overflow-wrap", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-selector-not", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-pseudo-class-any-link", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-pseudo-class-any-link", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-replace-overflow-wrap", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-selector-not", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-selector-not", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:svgo", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:mime@2.5.2", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:minimatch@3.0.8", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:xxhashjs", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:minimatch@3.0.8", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:pre-commit", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:pre-commit", - "target": "npm:spawn-sync", - "type": "static" - }, - { - "source": "npm:pre-commit", - "target": "npm:which@1.2.14", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:lru-cache@4.1.5", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.2.14", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:pseudomap", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:yallist@2.1.2", - "type": "static" - }, - { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - }, - { - "source": "npm:which@1.2.14", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - }, - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - }, - { - "source": "npm:read-cache", - "target": "npm:pify", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - }, - { - "source": "npm:readable-web-to-node-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:readdirp", - "target": "npm:picomatch@2.3.1", - "type": "static" - }, - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - }, - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - }, - { - "source": "npm:request-progress", - "target": "npm:throttleit", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - }, - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:global-modules", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:adjust-sourcemap-loader", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:resp-modifier", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:resp-modifier", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:responselike", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:rollup", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:joycon", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:rollup-plugin-node-externals", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", - "type": "static" - }, - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:immutable@4.3.5", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:saxes", - "target": "npm:xmlchars", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:@types/node-forge", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:node-forge", - "type": "static" - }, - { - "source": "npm:semver-truncate", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime@1.4.1", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses@1.4.0", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.4.0", - "type": "static" - }, - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:batch", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:has-property-descriptors", - "type": "static" - }, - { - "source": "npm:shallow-clone", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/core", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/sign", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/verify", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:engine.io", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-adapter", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-parser", - "type": "static" - }, - { - "source": "npm:socket.io-adapter", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io-adapter", - "target": "npm:ws@8.11.0", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:engine.io-client", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:socket.io-parser", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:ip-address", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - }, - { - "source": "npm:sonic-boom", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj@1.1.0", - "type": "static" - }, - { - "source": "npm:sort-keys-length", - "target": "npm:sort-keys", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:spawn-sync", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:spawn-sync", - "target": "npm:os-shim", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:wbuf", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:asn1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:bcrypt-pbkdf", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:dashdash", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:ecc-jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:getpass", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:jsbn@0.1.1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:tweetnacl", - "type": "static" - }, - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - }, - { - "source": "npm:steno", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:stream-throttle", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:stream-throttle", - "target": "npm:limiter", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:fs-extra@8.1.0", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:universalify@0.1.2", - "type": "static" - }, - { - "source": "npm:jsonfile@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:peek-readable", - "type": "static" - }, - { - "source": "npm:style-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:@adobe/css-tools", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:sax@1.2.4", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:@trysound/sax", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:commander@7.2.0", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:csso", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass@2.1.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:fs-minipass@2.1.0", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-keywords@3.5.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords@3.5.2", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - }, - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - }, - { - "source": "npm:thingies", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:thread-stream", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:to-regex-range", - "target": "npm:is-number", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:ieee754", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:url-parse", - "type": "static" - }, - { - "source": "npm:tr46", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tree-dump", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:trim-repeated", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - }, - { - "source": "npm:ts-api-utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:source-map", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node10", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node12", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node14", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node16", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:arg", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:create-require", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:diff", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:v8-compile-cache-lib", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:yn", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:strip-bom@3.0.0", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:@tufjs/models", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:tunnel-agent", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-canonical-property-names-ecmascript", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-property-aliases-ecmascript", - "type": "static" - }, - { - "source": "npm:union", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - }, - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:querystringify", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:requires-port", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@cypress/request", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/local-storage", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/logger-7", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/middleware", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/search", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/signature", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/streams", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/tarball", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/ui-theme", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:clipanion", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:cookies", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:express-rate-limit", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:fast-safe-stringify", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:kleur@4.1.5", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mime@3.0.0", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mv", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:pkginfo", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:verdaccio-audit", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:verdaccio-htpasswd", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:https-proxy-agent@5.0.1", - "type": "static" - }, - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/file-locking@12.0.0-next.1", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:apache-md5", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:bcryptjs", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:unix-crypt-td-js", - "type": "static" - }, - { - "source": "npm:@verdaccio/file-locking@12.0.0-next.1", - "target": "npm:lockfile", - "type": "static" - }, - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache@6.0.0", - "type": "static" - }, - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:esbuild@0.21.5", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:rollup@4.20.0", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/aix-ppc64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-arm@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/darwin-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/darwin-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/freebsd-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/freebsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-arm@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-ia32@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-loong64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-mips64el@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-ppc64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-riscv64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-s390x@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/netbsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/openbsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/sunos-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-ia32@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-android-arm-eabi@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-android-arm64@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-darwin-arm64@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-darwin-x64@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-arm-gnueabihf@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-arm-musleabihf@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-arm64-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-arm64-musl@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-powerpc64le-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-riscv64-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-s390x-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-x64-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-x64-musl@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-win32-arm64-msvc@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-win32-ia32-msvc@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-win32-x64-msvc@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:fsevents", - "type": "static" - }, - { - "source": "npm:w3c-xmlserializer", - "target": "npm:xml-name-validator", - "type": "static" - }, - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - }, - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-attributes", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope@5.1.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors@2.3.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs@4.11.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:memfs@4.11.1", - "target": "npm:@jsonjoy.com/json-pack", - "type": "static" - }, - { - "source": "npm:memfs@4.11.1", - "target": "npm:@jsonjoy.com/util", - "type": "static" - }, - { - "source": "npm:memfs@4.11.1", - "target": "npm:tree-dump", - "type": "static" - }, - { - "source": "npm:memfs@4.11.1", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:on-finished@2.4.1", - "target": "npm:ee-first", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:bonjour-service", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback@2.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:http-proxy-middleware@2.0.6", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ipaddr.js@2.2.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:launch-editor", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:open@10.1.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:rimraf@5.0.10", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:jackspeak@3.4.3", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:minimatch@9.0.5", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:package-json-from-dist", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:path-scurry", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:is-wsl@3.1.0", - "target": "npm:is-inside-container", - "type": "static" - }, - { - "source": "npm:jackspeak@3.4.3", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak@3.4.3", - "target": "npm:@pkgjs/parseargs", - "type": "static" - }, - { - "source": "npm:minimatch@9.0.5", - "target": "npm:brace-expansion", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:default-browser", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:define-lazy-prop@3.0.0", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:is-inside-container", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:is-wsl@3.1.0", - "type": "static" - }, - { - "source": "npm:rimraf@5.0.10", - "target": "npm:glob@10.4.5", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:wildcard", - "type": "static" - }, - { - "source": "npm:webpack-subresource-integrity", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-subresource-integrity", - "target": "npm:typed-assert", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - }, - { - "source": "npm:ajv-keywords@3.5.2", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:estraverse@4.3.0", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords@3.5.2", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - }, - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - }, - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - }, - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:xxhashjs", - "target": "npm:cuint", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:buffer-crc32", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:fd-slicer", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:nanoclone", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:property-expr", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:toposort", - "type": "static" - }, - { - "source": "npm:zone.js", - "target": "npm:tslib", - "type": "static" - } - ] -} diff --git a/.nx/workspace-data/project-graph.json b/.nx/workspace-data/project-graph.json deleted file mode 100644 index 129759a7..00000000 --- a/.nx/workspace-data/project-graph.json +++ /dev/null @@ -1,42088 +0,0 @@ -{ - "nodes": { - "native-federation-esbuild": { - "name": "native-federation-esbuild", - "type": "lib", - "data": { - "root": "libs/native-federation-esbuild", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/native-federation-esbuild", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/native-federation-esbuild", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-esbuild" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "dependsOn": [ - "^nx-release-publish" - ], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@nx/js:tsc", - "outputs": [ - "{options.outputPath}" - ], - "options": { - "outputPath": "dist/libs/native-federation-esbuild", - "main": "libs/native-federation-esbuild/src/index.ts", - "tsConfig": "libs/native-federation-esbuild/tsconfig.lib.json", - "assets": [ - "libs/native-federation-esbuild/*.md", - "libs/native-federation-esbuild/LICENSE" - ] - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "publish": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation-esbuild npm {args.ver} {args.tag}" - }, - "configurations": {}, - "parallelism": true - }, - "publish-local": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation-esbuild verdaccio {args.ver}" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": "libs/native-federation-esbuild/src", - "name": "native-federation-esbuild", - "tags": [ - "npm:public", - "org:softarc", - "scope:nf" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "implicitDependencies": [] - } - }, - "native-federation-runtime": { - "name": "native-federation-runtime", - "type": "lib", - "data": { - "root": "libs/native-federation-runtime", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/native-federation-runtime", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/native-federation-runtime", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-runtime" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "dependsOn": [ - "^nx-release-publish" - ], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@nx/angular:package", - "outputs": [ - "{workspaceRoot}/dist/{projectRoot}" - ], - "options": { - "project": "libs/native-federation-runtime/ng-package.json" - }, - "configurations": { - "production": { - "tsConfig": "libs/native-federation-runtime/tsconfig.lib.prod.json" - }, - "development": { - "tsConfig": "libs/native-federation-runtime/tsconfig.lib.json" - } - }, - "defaultConfiguration": "production", - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "publish": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation-runtime npm {args.ver} {args.tag}" - }, - "configurations": {}, - "parallelism": true - }, - "publish-local": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation-runtime verdaccio {args.ver}" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": "libs/native-federation-runtime/src", - "name": "native-federation-runtime", - "tags": [ - "npm:public", - "org:softarc", - "scope:nf" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "prefix": "angular-architects", - "implicitDependencies": [] - } - }, - "native-federation-core": { - "name": "native-federation-core", - "type": "lib", - "data": { - "root": "libs/native-federation-core", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/native-federation-core", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/native-federation-core", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-core" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "dependsOn": [ - "^nx-release-publish" - ], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@nx/js:tsc", - "outputs": [ - "{options.outputPath}" - ], - "options": { - "outputPath": "dist/libs/native-federation-core", - "main": "libs/native-federation-core/src/index.ts", - "tsConfig": "libs/native-federation-core/tsconfig.lib.json", - "assets": [ - "libs/native-federation-core/*.md", - "libs/native-federation-core/LICENSE" - ] - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "publish": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation-core npm {args.ver} {args.tag}" - }, - "configurations": {}, - "parallelism": true - }, - "publish-local": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation-core verdaccio {args.ver}" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": "libs/native-federation-core/src", - "name": "native-federation-core", - "tags": [ - "npm:public", - "org:softarc", - "scope:nf" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "implicitDependencies": [] - } - }, - "native-federation-node": { - "name": "native-federation-node", - "type": "lib", - "data": { - "root": "libs/native-federation-node", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/native-federation-node", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/native-federation-node", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation-node" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "dependsOn": [ - "^nx-release-publish" - ], - "executor": "@nx/js:release-publish", - "options": { - "packageRoot": "dist/libs/native-federation-node" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@nx/js:tsc", - "outputs": [ - "{options.outputPath}" - ], - "options": { - "outputPath": "dist/libs/native-federation-node", - "tsConfig": "libs/native-federation-node/tsconfig.lib.json", - "packageJson": "libs/native-federation-node/package.json", - "main": "libs/native-federation-node/src/index.ts", - "assets": [ - "libs/native-federation-node/*.md" - ] - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "publish": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation-node npm {args.ver} {args.tag}" - }, - "configurations": {}, - "parallelism": true - }, - "publish-local": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation-node verdaccio {args.ver}" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": "libs/native-federation-node/src", - "name": "native-federation-node", - "tags": [ - "npm:public", - "org:softarc", - "scope:nf" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "release": { - "version": { - "generatorOptions": { - "packageRoot": "dist/{projectRoot}", - "currentVersionResolver": "git-tag" - } - } - }, - "implicitDependencies": [] - } - }, - "native-federation-e2e": { - "name": "native-federation-e2e", - "type": "e2e", - "data": { - "root": "apps/native-federation-e2e", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "apps/native-federation-e2e", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "nx:run-commands", - "options": { - "command": "echo Noop" - }, - "configurations": {}, - "parallelism": true - }, - "e2e": { - "executor": "@nx/jest:jest", - "options": { - "jestConfig": "apps/native-federation-e2e/jest.config.ts", - "runInBand": true, - "passWithNoTests": false - }, - "dependsOn": [ - "native-federation:build" - ], - "configurations": {}, - "parallelism": true - } - }, - "name": "native-federation-e2e", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "application", - "sourceRoot": "apps/native-federation-e2e/src", - "tags": [], - "implicitDependencies": [ - "native-federation" - ] - } - }, - "native-federation": { - "name": "native-federation", - "type": "lib", - "data": { - "root": "libs/native-federation", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/native-federation", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/native-federation", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/native-federation" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "dependsOn": [ - "^nx-release-publish" - ], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@nx/js:tsc", - "outputs": [ - "{options.outputPath}" - ], - "options": { - "outputPath": "dist/libs/native-federation", - "main": "libs/native-federation/src/index.ts", - "tsConfig": "libs/native-federation/tsconfig.lib.json", - "assets": [ - "libs/native-federation/*.md", - "libs/native-federation/LICENSE", - { - "input": "./libs/native-federation/src", - "glob": "**/!(*.ts)", - "output": "./src" - }, - { - "input": "./libs/native-federation/src", - "glob": "**/*.d.ts", - "output": "./src" - }, - { - "input": "./libs/native-federation", - "glob": "generators.json", - "output": "." - }, - { - "input": "./libs/native-federation", - "glob": "builders.json", - "output": "." - }, - { - "input": "./libs/native-federation", - "glob": "migration-collection.json", - "output": "." - }, - { - "input": "./libs/native-federation", - "glob": "executors.json", - "output": "." - }, - { - "input": "./libs/native-federation", - "glob": "collection.json", - "output": "." - } - ] - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "post-build": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "outputs": [ - "{options.outputPath}/src/index.js" - ], - "options": { - "cwd": "libs/native-federation", - "command": "node post-build.js" - }, - "configurations": {}, - "parallelism": true - }, - "publish": { - "dependsOn": [ - "build", - "post-build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation npm {args.ver} {args.tag}" - }, - "configurations": {}, - "parallelism": true - }, - "publish-local": { - "dependsOn": [ - "build", - "post-build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs native-federation verdaccio {args.ver}" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": "libs/native-federation/src", - "name": "native-federation", - "tags": [ - "npm:public", - "org:angular-architects", - "scope:nf" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "implicitDependencies": [] - } - }, - "playground-e2e": { - "name": "playground-e2e", - "type": "e2e", - "data": { - "root": "apps/playground-e2e", - "targets": { - "lint": { - "executor": "@nx/eslint:lint", - "options": { - "lintFilePatterns": [ - "apps/playground-e2e/**/*.{js,ts}" - ] - }, - "outputs": [ - "{options.outputFile}" - ], - "configurations": {}, - "parallelism": true - }, - "e2e": { - "executor": "@nx/cypress:cypress", - "options": { - "cypressConfig": "apps/playground-e2e/cypress.json", - "tsConfig": "apps/playground-e2e/tsconfig.e2e.json", - "devServerTarget": "playground:serve:development" - }, - "configurations": { - "production": { - "devServerTarget": "playground:serve:production" - } - }, - "parallelism": true - } - }, - "name": "playground-e2e", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "sourceRoot": "apps/playground-e2e/src", - "projectType": "application", - "tags": [], - "implicitDependencies": [ - "playground" - ] - } - }, - "playground-lib": { - "name": "playground-lib", - "type": "lib", - "data": { - "root": "libs/playground-lib", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/playground-lib", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/playground-lib", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/playground-lib" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - } - }, - "name": "playground-lib", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "sourceRoot": "libs/playground-lib/src", - "prefix": "angular-architects", - "tags": [], - "implicitDependencies": [] - } - }, - "mf-runtime": { - "name": "mf-runtime", - "type": "lib", - "data": { - "root": "libs/mf-runtime", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/mf-runtime", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/mf-runtime", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/mf-runtime" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "dependsOn": [ - "^nx-release-publish" - ], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@nx/angular:package", - "outputs": [ - "{workspaceRoot}/dist/{projectRoot}" - ], - "options": { - "project": "libs/mf-runtime/ng-package.json" - }, - "configurations": { - "production": { - "tsConfig": "libs/mf-runtime/tsconfig.lib.prod.json" - }, - "development": { - "tsConfig": "libs/mf-runtime/tsconfig.lib.json" - } - }, - "defaultConfiguration": "production", - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "publish": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs mf-runtime npm {args.ver} {args.tag}" - }, - "configurations": {}, - "parallelism": true - }, - "publish-local": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs mf-runtime verdaccio {args.ver}" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": "libs/mf-runtime/src", - "name": "mf-runtime", - "tags": [ - "npm:public", - "org:angular-architects", - "scope:mf" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "prefix": "angular-architects", - "implicitDependencies": [] - } - }, - "playground": { - "name": "playground", - "type": "app", - "data": { - "root": "apps/playground", - "targets": { - "lint": { - "executor": "@nx/eslint:lint", - "options": { - "lintFilePatterns": [ - "apps/playground/src/**/*.ts", - "apps/playground/src/**/*.html" - ] - }, - "outputs": [ - "{options.outputFile}" - ], - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "@nx/jest:jest", - "outputs": [ - "{workspaceRoot}/coverage/apps/playground" - ], - "options": { - "jestConfig": "apps/playground/jest.config.ts" - }, - "configurations": {}, - "parallelism": true - }, - "demo": { - "executor": "@angular-architects/native-federation:build", - "options": {}, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "build": { - "executor": "@angular-architects/native-federation:build", - "options": { - "outputPath": "dist/apps/playground", - "index": "apps/playground/src/index.html", - "main": "apps/playground/src/main.ts", - "polyfills": "apps/playground/src/polyfills.ts", - "tsConfig": "apps/playground/tsconfig.app.json", - "assets": [ - "apps/playground/src/favicon.ico", - "apps/playground/src/assets" - ], - "styles": [ - "apps/playground/src/styles.css" - ], - "scripts": [] - }, - "configurations": { - "production": { - "budgets": [ - { - "type": "initial", - "maximumWarning": "500kb", - "maximumError": "1mb" - }, - { - "type": "anyComponentStyle", - "maximumWarning": "2kb", - "maximumError": "4kb" - } - ], - "fileReplacements": [ - { - "replace": "apps/playground/src/environments/environment.ts", - "with": "apps/playground/src/environments/environment.prod.ts" - } - ], - "outputHashing": "all" - }, - "development": { - "buildOptimizer": false, - "optimization": false, - "vendorChunk": true, - "extractLicenses": false, - "sourceMap": true, - "namedChunks": true - } - }, - "defaultConfiguration": "production", - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "serve": { - "executor": "@angular-devkit/build-angular:dev-server", - "configurations": { - "production": { - "buildTarget": "playground:build:production" - }, - "development": { - "buildTarget": "playground:build:development" - } - }, - "defaultConfiguration": "development", - "options": {}, - "parallelism": true - }, - "extract-i18n": { - "executor": "@angular-devkit/build-angular:extract-i18n", - "options": { - "buildTarget": "playground:build" - }, - "configurations": {}, - "parallelism": true - } - }, - "name": "playground", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "application", - "sourceRoot": "apps/playground/src", - "prefix": "angular-architects", - "tags": [], - "implicitDependencies": [] - } - }, - "mf-tools": { - "name": "mf-tools", - "type": "lib", - "data": { - "root": "libs/mf-tools", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/mf-tools", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/mf-tools", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/mf-tools" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "dependsOn": [ - "^nx-release-publish" - ], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@nx/angular:package", - "outputs": [ - "{workspaceRoot}/dist/{projectRoot}" - ], - "options": { - "project": "libs/mf-tools/ng-package.json" - }, - "configurations": { - "production": { - "tsConfig": "libs/mf-tools/tsconfig.lib.prod.json" - }, - "development": { - "tsConfig": "libs/mf-tools/tsconfig.lib.json" - } - }, - "defaultConfiguration": "production", - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "publish": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs mf-tools npm {args.ver} {args.tag}" - }, - "configurations": {}, - "parallelism": true - }, - "publish-local": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs mf-tools verdaccio {args.ver}" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": "libs/mf-tools/src", - "name": "mf-tools", - "tags": [ - "npm:public", - "org:angular-architects", - "scope:mf" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "prefix": "angular-architects", - "implicitDependencies": [] - } - }, - "mfe1-e2e": { - "name": "mfe1-e2e", - "type": "e2e", - "data": { - "root": "apps/mfe1-e2e", - "targets": { - "lint": { - "executor": "@nx/eslint:lint", - "outputs": [ - "{options.outputFile}" - ], - "options": { - "lintFilePatterns": [ - "apps/mfe1-e2e/**/*.{js,ts}" - ] - }, - "configurations": {}, - "parallelism": true - }, - "e2e": { - "executor": "@nx/cypress:cypress", - "options": { - "cypressConfig": "apps/mfe1-e2e/cypress.json", - "devServerTarget": "mfe1:serve:development", - "testingType": "e2e" - }, - "configurations": { - "production": { - "devServerTarget": "mfe1:serve:production" - } - }, - "parallelism": true - } - }, - "name": "mfe1-e2e", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "sourceRoot": "apps/mfe1-e2e/src", - "projectType": "application", - "tags": [], - "implicitDependencies": [ - "mfe1" - ] - } - }, - "mfe2-e2e": { - "name": "mfe2-e2e", - "type": "e2e", - "data": { - "root": "apps/mfe2-e2e", - "targets": { - "lint": { - "executor": "@nx/eslint:lint", - "outputs": [ - "{options.outputFile}" - ], - "options": { - "lintFilePatterns": [ - "apps/mfe2-e2e/**/*.{js,ts}" - ] - }, - "configurations": {}, - "parallelism": true - }, - "e2e": { - "executor": "@nx/cypress:cypress", - "options": { - "cypressConfig": "apps/mfe2-e2e/cypress.json", - "devServerTarget": "mfe2:serve:development", - "testingType": "e2e" - }, - "configurations": { - "production": { - "devServerTarget": "mfe2:serve:production" - } - }, - "parallelism": true - } - }, - "name": "mfe2-e2e", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "sourceRoot": "apps/mfe2-e2e/src", - "projectType": "application", - "tags": [], - "implicitDependencies": [ - "mfe2" - ] - } - }, - "mfe1": { - "name": "mfe1", - "type": "app", - "data": { - "root": "apps/mfe1", - "targets": { - "lint": { - "executor": "@nx/eslint:lint", - "options": { - "lintFilePatterns": [ - "apps/mfe1/**/*.ts", - "apps/mfe1/**/*.html" - ] - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "@nx/jest:jest", - "outputs": [ - "{workspaceRoot}/coverage/apps/mfe1" - ], - "options": { - "jestConfig": "apps/mfe1/jest.config.ts" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@angular-architects/native-federation:build", - "outputs": [ - "{options.outputPath}" - ], - "options": { - "outputPath": "dist/apps/mfe1", - "index": "apps/mfe1/src/index.html", - "main": "apps/mfe1/src/main.ts", - "polyfills": "apps/mfe1/src/polyfills.ts", - "tsConfig": "apps/mfe1/tsconfig.app.json", - "assets": [ - "apps/mfe1/src/favicon.ico", - "apps/mfe1/src/assets" - ], - "styles": [ - "apps/mfe1/src/styles.css" - ], - "scripts": [] - }, - "configurations": { - "production": { - "budgets": [ - { - "type": "initial", - "maximumWarning": "500kb", - "maximumError": "1mb" - }, - { - "type": "anyComponentStyle", - "maximumWarning": "2kb", - "maximumError": "4kb" - } - ], - "fileReplacements": [ - { - "replace": "apps/mfe1/src/environments/environment.ts", - "with": "apps/mfe1/src/environments/environment.prod.ts" - } - ], - "outputHashing": "all" - }, - "development": { - "buildOptimizer": false, - "optimization": false, - "vendorChunk": true, - "extractLicenses": false, - "sourceMap": true, - "namedChunks": true - } - }, - "defaultConfiguration": "production", - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "serve": { - "executor": "@angular-devkit/build-angular:dev-server", - "configurations": { - "production": { - "buildTarget": "mfe1:build:production" - }, - "development": { - "buildTarget": "mfe1:build:development" - } - }, - "defaultConfiguration": "development", - "options": {}, - "parallelism": true - }, - "extract-i18n": { - "executor": "@angular-devkit/build-angular:extract-i18n", - "options": { - "buildTarget": "mfe1:build" - }, - "configurations": {}, - "parallelism": true - } - }, - "name": "mfe1", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "application", - "sourceRoot": "apps/mfe1/src", - "prefix": "angular-architects", - "tags": [], - "implicitDependencies": [] - } - }, - "mfe2": { - "name": "mfe2", - "type": "app", - "data": { - "root": "apps/mfe2", - "targets": { - "lint": { - "executor": "@nx/eslint:lint", - "options": { - "lintFilePatterns": [ - "apps/mfe2/**/*.ts", - "apps/mfe2/**/*.html" - ] - }, - "configurations": {}, - "parallelism": true - }, - "test": { - "executor": "@nx/jest:jest", - "outputs": [ - "{workspaceRoot}/coverage/apps/mfe2" - ], - "options": { - "jestConfig": "apps/mfe2/jest.config.ts" - }, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@angular-architects/native-federation:build", - "outputs": [ - "{options.outputPath}" - ], - "options": { - "outputPath": "dist/apps/mfe2", - "index": "apps/mfe2/src/index.html", - "main": "apps/mfe2/src/main.ts", - "polyfills": "apps/mfe2/src/polyfills.ts", - "tsConfig": "apps/mfe2/tsconfig.app.json", - "assets": [ - "apps/mfe2/src/favicon.ico", - "apps/mfe2/src/assets" - ], - "styles": [ - "apps/mfe2/src/styles.css" - ], - "scripts": [] - }, - "configurations": { - "production": { - "budgets": [ - { - "type": "initial", - "maximumWarning": "500kb", - "maximumError": "1mb" - }, - { - "type": "anyComponentStyle", - "maximumWarning": "2kb", - "maximumError": "4kb" - } - ], - "fileReplacements": [ - { - "replace": "apps/mfe2/src/environments/environment.ts", - "with": "apps/mfe2/src/environments/environment.prod.ts" - } - ], - "outputHashing": "all" - }, - "development": { - "buildOptimizer": false, - "optimization": false, - "vendorChunk": true, - "extractLicenses": false, - "sourceMap": true, - "namedChunks": true - } - }, - "defaultConfiguration": "production", - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "serve": { - "executor": "@angular-devkit/build-angular:dev-server", - "configurations": { - "production": { - "buildTarget": "mfe2:build:production" - }, - "development": { - "buildTarget": "mfe2:build:development" - } - }, - "defaultConfiguration": "development", - "options": {}, - "parallelism": true - }, - "extract-i18n": { - "executor": "@angular-devkit/build-angular:extract-i18n", - "options": { - "buildTarget": "mfe2:build" - }, - "configurations": {}, - "parallelism": true - } - }, - "name": "mfe2", - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "application", - "sourceRoot": "apps/mfe2/src", - "prefix": "angular-architects", - "tags": [], - "implicitDependencies": [] - } - }, - "mf": { - "name": "mf", - "type": "lib", - "data": { - "root": "libs/mf", - "targets": { - "lint": { - "cache": true, - "options": { - "cwd": "libs/mf", - "command": "eslint ." - }, - "inputs": [ - "default", - "^default", - "{workspaceRoot}/.eslintrc.base.json", - "{projectRoot}/.eslintrc.json", - "{workspaceRoot}/tools/eslint-rules/**/*", - { - "externalDependencies": [ - "eslint" - ] - } - ], - "outputs": [ - "{options.outputFile}" - ], - "metadata": { - "technologies": [ - "eslint" - ], - "description": "Runs ESLint on project", - "help": { - "command": "npx eslint --help", - "example": { - "options": { - "max-warnings": 0 - } - } - } - }, - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "test": { - "options": { - "cwd": "libs/mf", - "command": "jest" - }, - "metadata": { - "technologies": [ - "jest" - ], - "description": "Run Jest Tests", - "help": { - "command": "npx jest --help", - "example": { - "options": { - "coverage": true - } - } - } - }, - "cache": true, - "inputs": [ - "default", - "^production", - "{workspaceRoot}/jest.preset.js", - { - "externalDependencies": [ - "jest" - ] - } - ], - "outputs": [ - "{workspaceRoot}/coverage/libs/mf" - ], - "executor": "nx:run-commands", - "configurations": {}, - "parallelism": true - }, - "nx-release-publish": { - "dependsOn": [ - "^nx-release-publish" - ], - "executor": "@nx/js:release-publish", - "options": {}, - "configurations": {}, - "parallelism": true - }, - "build": { - "executor": "@nx/js:tsc", - "outputs": [ - "{options.outputPath}" - ], - "options": { - "outputPath": "dist/libs/mf", - "tsConfig": "libs/mf/tsconfig.lib.json", - "packageJson": "libs/mf/package.json", - "main": "libs/mf/src/index.ts", - "assets": [ - { - "input": "./packages/mf/tutorial", - "glob": "**/*", - "output": "tutorial" - }, - "libs/mf/*.md", - "libs/mf/LICENSE", - { - "input": "./libs/mf/src", - "glob": "index.ts", - "output": "./src" - }, - { - "input": "./libs/mf/src", - "glob": "**/*.!(ts)", - "output": "./src" - }, - { - "input": "./libs/mf", - "glob": "generators.json", - "output": "." - }, - { - "input": "./libs/mf", - "glob": "executors.json", - "output": "." - }, - { - "input": "./libs/mf", - "glob": "collection.json", - "output": "." - }, - { - "input": ".", - "glob": "migrations.json", - "output": "." - }, - { - "input": "./libs/mf", - "glob": "builders.json", - "output": "." - } - ] - }, - "configurations": {}, - "parallelism": true, - "cache": true, - "dependsOn": [ - "^build" - ], - "inputs": [ - "production", - "^production" - ] - }, - "post-build": { - "dependsOn": [ - "build" - ], - "executor": "nx:run-commands", - "options": { - "cwd": "libs/mf", - "command": "node post-build.js" - }, - "configurations": {}, - "parallelism": true - }, - "publish": { - "dependsOn": [ - "build", - "post-build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs mf npm {args.ver} {args.tag}" - }, - "configurations": {}, - "parallelism": true - }, - "publish-local": { - "dependsOn": [ - "build", - "post-build" - ], - "executor": "nx:run-commands", - "options": { - "command": "node tools/scripts/publish.mjs mf verdaccio {args.ver}" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": "libs/mf/src", - "name": "mf", - "tags": [ - "npm:public", - "org:angular-architects", - "scope:mf" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "../../node_modules/nx/schemas/project-schema.json", - "projectType": "library", - "implicitDependencies": [] - } - }, - "angular-architects": { - "name": "angular-architects", - "type": "lib", - "data": { - "root": ".", - "targets": { - "test": { - "executor": "nx:run-commands", - "options": { - "command": "echo Noop" - }, - "configurations": {}, - "parallelism": true - }, - "local-registry": { - "executor": "@nx/js:verdaccio", - "options": { - "port": 4873, - "config": ".verdaccio/config.yml", - "storage": "tmp/local-registry/storage" - }, - "configurations": {}, - "parallelism": true - } - }, - "sourceRoot": ".", - "name": "angular-architects", - "includedScripts": [], - "tags": [ - "npm:private" - ], - "metadata": { - "targetGroups": {} - }, - "$schema": "node_modules/nx/schemas/project-schema.json", - "implicitDependencies": [] - } - } - }, - "externalNodes": { - "npm:@adobe/css-tools": { - "type": "npm", - "name": "npm:@adobe/css-tools", - "data": { - "version": "4.3.3", - "packageName": "@adobe/css-tools", - "hash": "sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==" - } - }, - "npm:@ampproject/remapping": { - "type": "npm", - "name": "npm:@ampproject/remapping", - "data": { - "version": "2.3.0", - "packageName": "@ampproject/remapping", - "hash": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==" - } - }, - "npm:@angular-devkit/architect": { - "type": "npm", - "name": "npm:@angular-devkit/architect", - "data": { - "version": "0.1801.3", - "packageName": "@angular-devkit/architect", - "hash": "sha512-4yba7x315GKim7OuBgv89ZtG50hE3hw64KuRLSGuW+RvwcwLV24VanmdWmFiLC4RKYNSH13E0wZqDNJkrMQepw==" - } - }, - "npm:@angular-devkit/build-angular": { - "type": "npm", - "name": "npm:@angular-devkit/build-angular", - "data": { - "version": "18.1.3", - "packageName": "@angular-devkit/build-angular", - "hash": "sha512-1avnneitUEfC2A9HX24X6a7Ag8sHkxomVEBsggITFNQoGnZAZHCOBRzm3b9QiqTi1c1eH3p8teW8EAufEjFPKQ==" - } - }, - "npm:@babel/core@7.24.7": { - "type": "npm", - "name": "npm:@babel/core@7.24.7", - "data": { - "version": "7.24.7", - "packageName": "@babel/core", - "hash": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==" - } - }, - "npm:@babel/core": { - "type": "npm", - "name": "npm:@babel/core", - "data": { - "version": "7.24.9", - "packageName": "@babel/core", - "hash": "sha512-5e3FI4Q3M3Pbr21+5xJwCv6ZT6KmGkI0vw3Tozy5ODAQFTIWe37iT8Cr7Ice2Ntb+M3iSKCEWMB1MBgKrW3whg==" - } - }, - "npm:semver@6.3.1": { - "type": "npm", - "name": "npm:semver@6.3.1", - "data": { - "version": "6.3.1", - "packageName": "semver", - "hash": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" - } - }, - "npm:semver@5.7.2": { - "type": "npm", - "name": "npm:semver@5.7.2", - "data": { - "version": "5.7.2", - "packageName": "semver", - "hash": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" - } - }, - "npm:semver@7.5.4": { - "type": "npm", - "name": "npm:semver@7.5.4", - "data": { - "version": "7.5.4", - "packageName": "semver", - "hash": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==" - } - }, - "npm:semver": { - "type": "npm", - "name": "npm:semver", - "data": { - "version": "7.6.2", - "packageName": "semver", - "hash": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==" - } - }, - "npm:@esbuild/aix-ppc64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==" - } - }, - "npm:@esbuild/aix-ppc64": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==" - } - }, - "npm:@esbuild/aix-ppc64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/aix-ppc64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/aix-ppc64", - "hash": "sha512-3sG8Zwa5fMcA9bgqB8AfWPQ+HFke6uD3h1s3RIwUNK8EG7a4buxvuFTs3j1IMs2NXAk9F30C/FF4vxRgQCcmoQ==" - } - }, - "npm:@esbuild/android-arm@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/android-arm", - "hash": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==" - } - }, - "npm:@esbuild/android-arm": { - "type": "npm", - "name": "npm:@esbuild/android-arm", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/android-arm", - "hash": "sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==" - } - }, - "npm:@esbuild/android-arm@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/android-arm@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/android-arm", - "hash": "sha512-+KuOHTKKyIKgEEqKbGTK8W7mPp+hKinbMBeEnNzjJGyFcWsfrXjSTNluJHCY1RqhxFurdD8uNXQDei7qDlR6+g==" - } - }, - "npm:@esbuild/android-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==" - } - }, - "npm:@esbuild/android-arm64": { - "type": "npm", - "name": "npm:@esbuild/android-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==" - } - }, - "npm:@esbuild/android-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/android-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/android-arm64", - "hash": "sha512-EuHFUYkAVfU4qBdyivULuu03FhJO4IJN9PGuABGrFy4vUuzk91P2d+npxHcFdpUnfYKy0PuV+n6bKIpHOB3prQ==" - } - }, - "npm:@esbuild/android-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/android-x64", - "hash": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==" - } - }, - "npm:@esbuild/android-x64": { - "type": "npm", - "name": "npm:@esbuild/android-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/android-x64", - "hash": "sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==" - } - }, - "npm:@esbuild/android-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/android-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/android-x64", - "hash": "sha512-WRrmKidLoKDl56LsbBMhzTTBxrsVwTKdNbKDalbEZr0tcsBgCLbEtoNthOW6PX942YiYq8HzEnb4yWQMLQuipQ==" - } - }, - "npm:@esbuild/darwin-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==" - } - }, - "npm:@esbuild/darwin-arm64": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==" - } - }, - "npm:@esbuild/darwin-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/darwin-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/darwin-arm64", - "hash": "sha512-YLntie/IdS31H54Ogdn+v50NuoWF5BDkEUFpiOChVa9UnKpftgwzZRrI4J132ETIi+D8n6xh9IviFV3eXdxfow==" - } - }, - "npm:@esbuild/darwin-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==" - } - }, - "npm:@esbuild/darwin-x64": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==" - } - }, - "npm:@esbuild/darwin-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/darwin-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/darwin-x64", - "hash": "sha512-IMQ6eme4AfznElesHUPDZ+teuGwoRmVuuixu7sv92ZkdQcPbsNHzutd+rAfaBKo8YK3IrBEi9SLLKWJdEvJniQ==" - } - }, - "npm:@esbuild/freebsd-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==" - } - }, - "npm:@esbuild/freebsd-arm64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==" - } - }, - "npm:@esbuild/freebsd-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/freebsd-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/freebsd-arm64", - "hash": "sha512-0muYWCng5vqaxobq6LB3YNtevDFSAZGlgtLoAc81PjUfiFz36n4KMpwhtAd4he8ToSI3TGyuhyx5xmiWNYZFyw==" - } - }, - "npm:@esbuild/freebsd-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==" - } - }, - "npm:@esbuild/freebsd-x64": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==" - } - }, - "npm:@esbuild/freebsd-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/freebsd-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/freebsd-x64", - "hash": "sha512-XKDVu8IsD0/q3foBzsXGt/KjD/yTKBCIwOHE1XwiXmrRwrX6Hbnd5Eqn/WvDekddK21tfszBSrE/WMaZh+1buQ==" - } - }, - "npm:@esbuild/linux-arm@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==" - } - }, - "npm:@esbuild/linux-arm": { - "type": "npm", - "name": "npm:@esbuild/linux-arm", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==" - } - }, - "npm:@esbuild/linux-arm@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-arm@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-arm", - "hash": "sha512-SEELSTEtOFu5LPykzA395Mc+54RMg1EUgXP+iw2SJ72+ooMwVsgfuwXo5Fn0wXNgWZsTVHwY2cg4Vi/bOD88qw==" - } - }, - "npm:@esbuild/linux-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==" - } - }, - "npm:@esbuild/linux-arm64": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==" - } - }, - "npm:@esbuild/linux-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-arm64", - "hash": "sha512-j1t5iG8jE7BhonbsEg5d9qOYcVZv/Rv6tghaXM/Ug9xahM0nX/H2gfu6X6z11QRTMT6+aywOMA8TDkhPo8aCGw==" - } - }, - "npm:@esbuild/linux-ia32@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==" - } - }, - "npm:@esbuild/linux-ia32": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==" - } - }, - "npm:@esbuild/linux-ia32@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-ia32@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-ia32", - "hash": "sha512-P7O5Tkh2NbgIm2R6x1zGJJsnacDzTFcRWZyTTMgFdVit6E98LTxO+v8LCCLWRvPrjdzXHx9FEOA8oAZPyApWUA==" - } - }, - "npm:@esbuild/linux-loong64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==" - } - }, - "npm:@esbuild/linux-loong64": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==" - } - }, - "npm:@esbuild/linux-loong64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-loong64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-loong64", - "hash": "sha512-InQwepswq6urikQiIC/kkx412fqUZudBO4SYKu0N+tGhXRWUqAx+Q+341tFV6QdBifpjYgUndV1hhMq3WeJi7A==" - } - }, - "npm:@esbuild/linux-mips64el@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==" - } - }, - "npm:@esbuild/linux-mips64el": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==" - } - }, - "npm:@esbuild/linux-mips64el@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-mips64el@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-mips64el", - "hash": "sha512-J9rflLtqdYrxHv2FqXE2i1ELgNjT+JFURt/uDMoPQLcjWQA5wDKgQA4t/dTqGa88ZVECKaD0TctwsUfHbVoi4w==" - } - }, - "npm:@esbuild/linux-ppc64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==" - } - }, - "npm:@esbuild/linux-ppc64": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==" - } - }, - "npm:@esbuild/linux-ppc64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-ppc64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-ppc64", - "hash": "sha512-cShCXtEOVc5GxU0fM+dsFD10qZ5UpcQ8AM22bYj0u/yaAykWnqXJDpd77ublcX6vdDsWLuweeuSNZk4yUxZwtw==" - } - }, - "npm:@esbuild/linux-riscv64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==" - } - }, - "npm:@esbuild/linux-riscv64": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==" - } - }, - "npm:@esbuild/linux-riscv64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-riscv64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-riscv64", - "hash": "sha512-HEtaN7Y5UB4tZPeQmgz/UhzoEyYftbMXrBCUjINGjh3uil+rB/QzzpMshz3cNUxqXN7Vr93zzVtpIDL99t9aRw==" - } - }, - "npm:@esbuild/linux-s390x@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==" - } - }, - "npm:@esbuild/linux-s390x": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==" - } - }, - "npm:@esbuild/linux-s390x@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-s390x@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-s390x", - "hash": "sha512-WDi3+NVAuyjg/Wxi+o5KPqRbZY0QhI9TjrEEm+8dmpY9Xir8+HE/HNx2JoLckhKbFopW0RdO2D72w8trZOV+Wg==" - } - }, - "npm:@esbuild/linux-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==" - } - }, - "npm:@esbuild/linux-x64": { - "type": "npm", - "name": "npm:@esbuild/linux-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==" - } - }, - "npm:@esbuild/linux-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/linux-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/linux-x64", - "hash": "sha512-a3pMQhUEJkITgAw6e0bWA+F+vFtCciMjW/LPtoj99MhVt+Mfb6bbL9hu2wmTZgNd994qTAEw+U/r6k3qHWWaOQ==" - } - }, - "npm:@esbuild/netbsd-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==" - } - }, - "npm:@esbuild/netbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==" - } - }, - "npm:@esbuild/netbsd-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/netbsd-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/netbsd-x64", - "hash": "sha512-cRK+YDem7lFTs2Q5nEv/HHc4LnrfBCbH5+JHu6wm2eP+d8OZNoSMYgPZJq78vqQ9g+9+nMuIsAO7skzphRXHyw==" - } - }, - "npm:@esbuild/openbsd-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==" - } - }, - "npm:@esbuild/openbsd-x64": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==" - } - }, - "npm:@esbuild/openbsd-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/openbsd-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/openbsd-x64", - "hash": "sha512-6p3nHpby0DM/v15IFKMjAaayFhqnXV52aEmv1whZHX56pdkK+MEaLoQWj+H42ssFarP1PcomVhbsR4pkz09qBg==" - } - }, - "npm:@esbuild/sunos-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==" - } - }, - "npm:@esbuild/sunos-x64": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==" - } - }, - "npm:@esbuild/sunos-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/sunos-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/sunos-x64", - "hash": "sha512-BFelBGfrBwk6LVrmFzCq1u1dZbG4zy/Kp93w2+y83Q5UGYF1d8sCzeLI9NXjKyujjBBniQa8R8PzLFAUrSM9OA==" - } - }, - "npm:@esbuild/win32-arm64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==" - } - }, - "npm:@esbuild/win32-arm64": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==" - } - }, - "npm:@esbuild/win32-arm64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/win32-arm64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/win32-arm64", - "hash": "sha512-lY6AC8p4Cnb7xYHuIxQ6iYPe6MfO2CC43XXKo9nBXDb35krYt7KGhQnOkRGar5psxYkircpCqfbNDB4uJbS2jQ==" - } - }, - "npm:@esbuild/win32-ia32@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==" - } - }, - "npm:@esbuild/win32-ia32": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==" - } - }, - "npm:@esbuild/win32-ia32@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/win32-ia32@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/win32-ia32", - "hash": "sha512-7L1bHlOTcO4ByvI7OXVI5pNN6HSu6pUQq9yodga8izeuB1KcT2UkHaH6118QJwopExPn0rMHIseCTx1CRo/uNA==" - } - }, - "npm:@esbuild/win32-x64@0.21.5": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==" - } - }, - "npm:@esbuild/win32-x64": { - "type": "npm", - "name": "npm:@esbuild/win32-x64", - "data": { - "version": "0.19.12", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==" - } - }, - "npm:@esbuild/win32-x64@0.23.0": { - "type": "npm", - "name": "npm:@esbuild/win32-x64@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/win32-x64", - "hash": "sha512-Arm+WgUFLUATuoxCJcahGuk6Yj9Pzxd6l11Zb/2aAuv5kWWvvfhLFo2fni4uSK5vzlUdCGZ/BdV5tH8klj8p8g==" - } - }, - "npm:commander@2.20.3": { - "type": "npm", - "name": "npm:commander@2.20.3", - "data": { - "version": "2.20.3", - "packageName": "commander", - "hash": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - } - }, - "npm:commander": { - "type": "npm", - "name": "npm:commander", - "data": { - "version": "8.3.0", - "packageName": "commander", - "hash": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" - } - }, - "npm:commander@6.2.1": { - "type": "npm", - "name": "npm:commander@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "commander", - "hash": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==" - } - }, - "npm:commander@12.1.0": { - "type": "npm", - "name": "npm:commander@12.1.0", - "data": { - "version": "12.1.0", - "packageName": "commander", - "hash": "sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==" - } - }, - "npm:commander@7.2.0": { - "type": "npm", - "name": "npm:commander@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "commander", - "hash": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==" - } - }, - "npm:convert-source-map@2.0.0": { - "type": "npm", - "name": "npm:convert-source-map@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "convert-source-map", - "hash": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" - } - }, - "npm:convert-source-map": { - "type": "npm", - "name": "npm:convert-source-map", - "data": { - "version": "1.9.0", - "packageName": "convert-source-map", - "hash": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==" - } - }, - "npm:define-lazy-prop@3.0.0": { - "type": "npm", - "name": "npm:define-lazy-prop@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==" - } - }, - "npm:define-lazy-prop": { - "type": "npm", - "name": "npm:define-lazy-prop", - "data": { - "version": "2.0.0", - "packageName": "define-lazy-prop", - "hash": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==" - } - }, - "npm:esbuild@0.21.5": { - "type": "npm", - "name": "npm:esbuild@0.21.5", - "data": { - "version": "0.21.5", - "packageName": "esbuild", - "hash": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==" - } - }, - "npm:esbuild": { - "type": "npm", - "name": "npm:esbuild", - "data": { - "version": "0.19.12", - "packageName": "esbuild", - "hash": "sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==" - } - }, - "npm:esbuild@0.23.0": { - "type": "npm", - "name": "npm:esbuild@0.23.0", - "data": { - "version": "0.23.0", - "packageName": "esbuild", - "hash": "sha512-1lvV17H2bMYda/WaFb2jLPeHU3zml2k4/yagNMG8Q/YtfMjCwEUZa2eXXMgZTVSL5q1n4H7sQ0X6CdJDqqeCFA==" - } - }, - "npm:is-wsl@3.1.0": { - "type": "npm", - "name": "npm:is-wsl@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "is-wsl", - "hash": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==" - } - }, - "npm:is-wsl": { - "type": "npm", - "name": "npm:is-wsl", - "data": { - "version": "2.2.0", - "packageName": "is-wsl", - "hash": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" - } - }, - "npm:is-wsl@1.1.0": { - "type": "npm", - "name": "npm:is-wsl@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-wsl", - "hash": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==" - } - }, - "npm:jsonc-parser@3.3.1": { - "type": "npm", - "name": "npm:jsonc-parser@3.3.1", - "data": { - "version": "3.3.1", - "packageName": "jsonc-parser", - "hash": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==" - } - }, - "npm:jsonc-parser": { - "type": "npm", - "name": "npm:jsonc-parser", - "data": { - "version": "3.2.0", - "packageName": "jsonc-parser", - "hash": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" - } - }, - "npm:mrmime@2.0.0": { - "type": "npm", - "name": "npm:mrmime@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "mrmime", - "hash": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==" - } - }, - "npm:mrmime": { - "type": "npm", - "name": "npm:mrmime", - "data": { - "version": "1.0.1", - "packageName": "mrmime", - "hash": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==" - } - }, - "npm:open@10.1.0": { - "type": "npm", - "name": "npm:open@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "open", - "hash": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==" - } - }, - "npm:open": { - "type": "npm", - "name": "npm:open", - "data": { - "version": "8.4.2", - "packageName": "open", - "hash": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==" - } - }, - "npm:terser@5.29.2": { - "type": "npm", - "name": "npm:terser@5.29.2", - "data": { - "version": "5.29.2", - "packageName": "terser", - "hash": "sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw==" - } - }, - "npm:terser": { - "type": "npm", - "name": "npm:terser", - "data": { - "version": "5.31.0", - "packageName": "terser", - "hash": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==" - } - }, - "npm:@angular-devkit/build-webpack": { - "type": "npm", - "name": "npm:@angular-devkit/build-webpack", - "data": { - "version": "0.1801.3", - "packageName": "@angular-devkit/build-webpack", - "hash": "sha512-JezRR72P4QAc4mnkT60/+kVANCYNKcr2sZyX0/9aBHJsR7lIqgOKz5Dft3FgWHwAJcQFtsZ7OLGVOW3P1LpFkw==" - } - }, - "npm:@angular-devkit/core": { - "type": "npm", - "name": "npm:@angular-devkit/core", - "data": { - "version": "18.1.3", - "packageName": "@angular-devkit/core", - "hash": "sha512-S0UzNNVLbHPaiSVXHjCd2wX+eERj/YR7jJCc40PHs1gINA7Gtd2q3VDm3bUEWe4P6fP6GNp43qSXmWJFQD0+Yg==" - } - }, - "npm:ajv@8.16.0": { - "type": "npm", - "name": "npm:ajv@8.16.0", - "data": { - "version": "8.16.0", - "packageName": "ajv", - "hash": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==" - } - }, - "npm:ajv@6.12.6": { - "type": "npm", - "name": "npm:ajv@6.12.6", - "data": { - "version": "6.12.6", - "packageName": "ajv", - "hash": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" - } - }, - "npm:ajv": { - "type": "npm", - "name": "npm:ajv", - "data": { - "version": "8.12.0", - "packageName": "ajv", - "hash": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==" - } - }, - "npm:ajv-formats@3.0.1": { - "type": "npm", - "name": "npm:ajv-formats@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "ajv-formats", - "hash": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==" - } - }, - "npm:ajv-formats": { - "type": "npm", - "name": "npm:ajv-formats", - "data": { - "version": "2.1.1", - "packageName": "ajv-formats", - "hash": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==" - } - }, - "npm:@angular-devkit/schematics": { - "type": "npm", - "name": "npm:@angular-devkit/schematics", - "data": { - "version": "18.1.3", - "packageName": "@angular-devkit/schematics", - "hash": "sha512-ElzCfiYW9P3xPRNRbPRSrOTGm+G7X8ta1ce3srqi00yPX39Y0WSM95SACqqF8j9dxL6BqazBMyAgNQUaVSbWjw==" - } - }, - "npm:@angular-eslint/bundled-angular-compiler": { - "type": "npm", - "name": "npm:@angular-eslint/bundled-angular-compiler", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/bundled-angular-compiler", - "hash": "sha512-p/YvlvDJscSAbNOOAbT/BRdscEfWpQunUK+KuWM6/PXL07tTVae5dmp8B8A5am7Cxvp+ZVLVLZG4LFYB1TX1cw==" - } - }, - "npm:@angular-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/eslint-plugin", - "hash": "sha512-vJ7pstQPqCqkvMrEsjjocvHdPBl/frs0+fqkckog2Sq0QisBEjUPkbImvId6dw7JzxSDSvttdAklakF97CE4VA==" - } - }, - "npm:@angular-eslint/eslint-plugin-template": { - "type": "npm", - "name": "npm:@angular-eslint/eslint-plugin-template", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/eslint-plugin-template", - "hash": "sha512-YHh+AUY9ubLAdmIRXH8vSpv+8EQkGjdX3B9xdj/grnrVzgzu+5W86F/spGp2tEny9l85R3JZNqjaMpW/vwibfw==" - } - }, - "npm:@angular-eslint/template-parser": { - "type": "npm", - "name": "npm:@angular-eslint/template-parser", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/template-parser", - "hash": "sha512-1jKH2fL8ir1ajcgu/N0xIWVtlpJQmbJBRRe1+WbBoomykcu1KnLwCSue/LuUDQOf3CTmMHxQE0f+58VpafYoyA==" - } - }, - "npm:@angular-eslint/utils": { - "type": "npm", - "name": "npm:@angular-eslint/utils", - "data": { - "version": "18.2.0", - "packageName": "@angular-eslint/utils", - "hash": "sha512-g+b0L4RCZaKYPz4bGRRifo7g5guVJi2kUWymlDYmCkq3NhZng1HQQbNpVF1n5o034zT5lnaC5HENwaKIZ1Y37Q==" - } - }, - "npm:@angular/animations": { - "type": "npm", - "name": "npm:@angular/animations", - "data": { - "version": "18.1.3", - "packageName": "@angular/animations", - "hash": "sha512-jF4jGHZxV/REnymB11wg5q/DMXewJ0byihmvNQ3OPLHGkWnvE9MdrX44vUzI7RkzqO0suaAg8shxJlkY3OHjeA==" - } - }, - "npm:@angular/build": { - "type": "npm", - "name": "npm:@angular/build", - "data": { - "version": "18.1.3", - "packageName": "@angular/build", - "hash": "sha512-jmTQC7lecJ6c2mJobb5nY2CN6jvdeFFHXN/jif0RkNI8dP60uV1QdMKJtTGbxEtAKXdMgOTReYICVYl6m9Q56Q==" - } - }, - "npm:rollup@4.18.0": { - "type": "npm", - "name": "npm:rollup@4.18.0", - "data": { - "version": "4.18.0", - "packageName": "rollup", - "hash": "sha512-QmJz14PX3rzbJCN1SG4Xe/bAAX2a6NpCP8ab2vfu2GiUr8AQcr2nCV/oEO3yneFarB67zk8ShlIyWb2LGTb3Sg==" - } - }, - "npm:rollup": { - "type": "npm", - "name": "npm:rollup", - "data": { - "version": "3.29.4", - "packageName": "rollup", - "hash": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==" - } - }, - "npm:rollup@4.20.0": { - "type": "npm", - "name": "npm:rollup@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "rollup", - "hash": "sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==" - } - }, - "npm:@angular/cli": { - "type": "npm", - "name": "npm:@angular/cli", - "data": { - "version": "18.1.3", - "packageName": "@angular/cli", - "hash": "sha512-vsEc3cGDUYcc+adfvBHSqKdI8uiaa86Y9pLWGHfqaD+N0q/k17d/47AFvXTDKLmKucMZrto/4088Y1y+yM9eOg==" - } - }, - "npm:ansi-escapes@7.0.0": { - "type": "npm", - "name": "npm:ansi-escapes@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "ansi-escapes", - "hash": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==" - } - }, - "npm:ansi-escapes": { - "type": "npm", - "name": "npm:ansi-escapes", - "data": { - "version": "4.3.2", - "packageName": "ansi-escapes", - "hash": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==" - } - }, - "npm:ansi-regex@6.0.1": { - "type": "npm", - "name": "npm:ansi-regex@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "ansi-regex", - "hash": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==" - } - }, - "npm:ansi-regex": { - "type": "npm", - "name": "npm:ansi-regex", - "data": { - "version": "5.0.1", - "packageName": "ansi-regex", - "hash": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" - } - }, - "npm:ansi-styles@6.2.1": { - "type": "npm", - "name": "npm:ansi-styles@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "ansi-styles", - "hash": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==" - } - }, - "npm:ansi-styles@3.2.1": { - "type": "npm", - "name": "npm:ansi-styles@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "ansi-styles", - "hash": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" - } - }, - "npm:ansi-styles@4.3.0": { - "type": "npm", - "name": "npm:ansi-styles@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "ansi-styles", - "hash": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" - } - }, - "npm:ansi-styles": { - "type": "npm", - "name": "npm:ansi-styles", - "data": { - "version": "5.2.0", - "packageName": "ansi-styles", - "hash": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==" - } - }, - "npm:cli-cursor@5.0.0": { - "type": "npm", - "name": "npm:cli-cursor@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "cli-cursor", - "hash": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==" - } - }, - "npm:cli-cursor": { - "type": "npm", - "name": "npm:cli-cursor", - "data": { - "version": "3.1.0", - "packageName": "cli-cursor", - "hash": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" - } - }, - "npm:cli-truncate@4.0.0": { - "type": "npm", - "name": "npm:cli-truncate@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "cli-truncate", - "hash": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==" - } - }, - "npm:cli-truncate": { - "type": "npm", - "name": "npm:cli-truncate", - "data": { - "version": "2.1.0", - "packageName": "cli-truncate", - "hash": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" - } - }, - "npm:emoji-regex@10.3.0": { - "type": "npm", - "name": "npm:emoji-regex@10.3.0", - "data": { - "version": "10.3.0", - "packageName": "emoji-regex", - "hash": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==" - } - }, - "npm:emoji-regex@9.2.2": { - "type": "npm", - "name": "npm:emoji-regex@9.2.2", - "data": { - "version": "9.2.2", - "packageName": "emoji-regex", - "hash": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" - } - }, - "npm:emoji-regex": { - "type": "npm", - "name": "npm:emoji-regex", - "data": { - "version": "8.0.0", - "packageName": "emoji-regex", - "hash": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - } - }, - "npm:eventemitter3@5.0.1": { - "type": "npm", - "name": "npm:eventemitter3@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "eventemitter3", - "hash": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" - } - }, - "npm:eventemitter3": { - "type": "npm", - "name": "npm:eventemitter3", - "data": { - "version": "4.0.7", - "packageName": "eventemitter3", - "hash": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - } - }, - "npm:is-fullwidth-code-point@4.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==" - } - }, - "npm:is-fullwidth-code-point@5.0.0": { - "type": "npm", - "name": "npm:is-fullwidth-code-point@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==" - } - }, - "npm:is-fullwidth-code-point": { - "type": "npm", - "name": "npm:is-fullwidth-code-point", - "data": { - "version": "3.0.0", - "packageName": "is-fullwidth-code-point", - "hash": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" - } - }, - "npm:listr2@8.2.3": { - "type": "npm", - "name": "npm:listr2@8.2.3", - "data": { - "version": "8.2.3", - "packageName": "listr2", - "hash": "sha512-Lllokma2mtoniUOS94CcOErHWAug5iu7HOmDrvWgpw8jyQH2fomgB+7lZS4HWZxytUuQwkGOwe49FvwVaA85Xw==" - } - }, - "npm:listr2": { - "type": "npm", - "name": "npm:listr2", - "data": { - "version": "3.14.0", - "packageName": "listr2", - "hash": "sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==" - } - }, - "npm:log-update@6.1.0": { - "type": "npm", - "name": "npm:log-update@6.1.0", - "data": { - "version": "6.1.0", - "packageName": "log-update", - "hash": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==" - } - }, - "npm:log-update": { - "type": "npm", - "name": "npm:log-update", - "data": { - "version": "4.0.0", - "packageName": "log-update", - "hash": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==" - } - }, - "npm:slice-ansi@7.1.0": { - "type": "npm", - "name": "npm:slice-ansi@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "slice-ansi", - "hash": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==" - } - }, - "npm:slice-ansi@5.0.0": { - "type": "npm", - "name": "npm:slice-ansi@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "slice-ansi", - "hash": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==" - } - }, - "npm:slice-ansi@4.0.0": { - "type": "npm", - "name": "npm:slice-ansi@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slice-ansi", - "hash": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" - } - }, - "npm:slice-ansi": { - "type": "npm", - "name": "npm:slice-ansi", - "data": { - "version": "3.0.0", - "packageName": "slice-ansi", - "hash": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" - } - }, - "npm:npm-package-arg@11.0.2": { - "type": "npm", - "name": "npm:npm-package-arg@11.0.2", - "data": { - "version": "11.0.2", - "packageName": "npm-package-arg", - "hash": "sha512-IGN0IAwmhDJwy13Wc8k+4PEbTPhpJnMtfR53ZbOyjkvmEcLS4nCwp6mvMWjS5sUjeiW3mpx6cHmuhKEu9XmcQw==" - } - }, - "npm:npm-package-arg": { - "type": "npm", - "name": "npm:npm-package-arg", - "data": { - "version": "11.0.1", - "packageName": "npm-package-arg", - "hash": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==" - } - }, - "npm:onetime@7.0.0": { - "type": "npm", - "name": "npm:onetime@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "onetime", - "hash": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==" - } - }, - "npm:onetime": { - "type": "npm", - "name": "npm:onetime", - "data": { - "version": "5.1.2", - "packageName": "onetime", - "hash": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" - } - }, - "npm:proc-log@4.2.0": { - "type": "npm", - "name": "npm:proc-log@4.2.0", - "data": { - "version": "4.2.0", - "packageName": "proc-log", - "hash": "sha512-g8+OnU/L2v+wyiVK+D5fA34J7EH8jZ8DDlvwhRCMxmMj7UCBvxiO1mGeN+36JXIKF4zevU4kRBd8lVgG9vLelA==" - } - }, - "npm:proc-log": { - "type": "npm", - "name": "npm:proc-log", - "data": { - "version": "3.0.0", - "packageName": "proc-log", - "hash": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==" - } - }, - "npm:restore-cursor@5.1.0": { - "type": "npm", - "name": "npm:restore-cursor@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "restore-cursor", - "hash": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==" - } - }, - "npm:restore-cursor": { - "type": "npm", - "name": "npm:restore-cursor", - "data": { - "version": "3.1.0", - "packageName": "restore-cursor", - "hash": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" - } - }, - "npm:signal-exit@4.1.0": { - "type": "npm", - "name": "npm:signal-exit@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "signal-exit", - "hash": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" - } - }, - "npm:signal-exit": { - "type": "npm", - "name": "npm:signal-exit", - "data": { - "version": "3.0.7", - "packageName": "signal-exit", - "hash": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - } - }, - "npm:string-width@7.2.0": { - "type": "npm", - "name": "npm:string-width@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "string-width", - "hash": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==" - } - }, - "npm:string-width@5.1.2": { - "type": "npm", - "name": "npm:string-width@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "string-width", - "hash": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" - } - }, - "npm:string-width": { - "type": "npm", - "name": "npm:string-width", - "data": { - "version": "4.2.3", - "packageName": "string-width", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:strip-ansi@7.1.0": { - "type": "npm", - "name": "npm:strip-ansi@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "strip-ansi", - "hash": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==" - } - }, - "npm:strip-ansi": { - "type": "npm", - "name": "npm:strip-ansi", - "data": { - "version": "6.0.1", - "packageName": "strip-ansi", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:wrap-ansi@9.0.0": { - "type": "npm", - "name": "npm:wrap-ansi@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==" - } - }, - "npm:wrap-ansi@8.1.0": { - "type": "npm", - "name": "npm:wrap-ansi@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "wrap-ansi", - "hash": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" - } - }, - "npm:wrap-ansi@7.0.0": { - "type": "npm", - "name": "npm:wrap-ansi@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "wrap-ansi", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrap-ansi": { - "type": "npm", - "name": "npm:wrap-ansi", - "data": { - "version": "6.2.0", - "packageName": "wrap-ansi", - "hash": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" - } - }, - "npm:@angular/common": { - "type": "npm", - "name": "npm:@angular/common", - "data": { - "version": "18.1.3", - "packageName": "@angular/common", - "hash": "sha512-TC71jVph4L+QaXlyJTrW27nbqis4sWwr9hD/RDSNkfY9XCvYDb2MjYjKrpbN03FWiv7lmcKT9zgse1fYENFsKQ==" - } - }, - "npm:@angular/compiler": { - "type": "npm", - "name": "npm:@angular/compiler", - "data": { - "version": "18.1.3", - "packageName": "@angular/compiler", - "hash": "sha512-Mrcd+YGsz02GVnVlVbzYp7EJIVoPOIHMvhll1OiylhjQElNVeJCLPIvjVYdylzOUDctXNlchkGf/LbA7BYMbXg==" - } - }, - "npm:@angular/compiler-cli": { - "type": "npm", - "name": "npm:@angular/compiler-cli", - "data": { - "version": "18.1.3", - "packageName": "@angular/compiler-cli", - "hash": "sha512-e9t5v/L1KqPLUQL+WU+d70MBBFcSRuwqbkluZgdDjdW5VelYjzlVzXdrzV6jFElP48T3kQCxJN1dAJkAvKjdOg==" - } - }, - "npm:@angular/core": { - "type": "npm", - "name": "npm:@angular/core", - "data": { - "version": "18.1.3", - "packageName": "@angular/core", - "hash": "sha512-1tFTyGLwio5oYAP2sMVDiOvy5wl/v0a4om7RTCpP2Bjro0ynuYe8FK7ilcmdyPXR1DF7GVdo/0R/eCIQJZ2PwA==" - } - }, - "npm:@angular/forms": { - "type": "npm", - "name": "npm:@angular/forms", - "data": { - "version": "18.1.3", - "packageName": "@angular/forms", - "hash": "sha512-4kic/9hpS0HkbTORIkrdox7K40EcVT9VIbBruPoxX7jbfiW5jFaJ/05hLRvRt9RF8Sd9G+g5Uohmkcq/5hmsng==" - } - }, - "npm:@angular/language-service": { - "type": "npm", - "name": "npm:@angular/language-service", - "data": { - "version": "18.1.3", - "packageName": "@angular/language-service", - "hash": "sha512-1s1VQHJ6Gh84lCqgSEU6pNuPBpvee1mhfIZEE2lqxFu/tLe5gqvtTescFaTFLWY6I4e2RGAOU8WtRnFgFNxzGg==" - } - }, - "npm:@angular/platform-browser": { - "type": "npm", - "name": "npm:@angular/platform-browser", - "data": { - "version": "18.1.3", - "packageName": "@angular/platform-browser", - "hash": "sha512-/k5Xt/WjOk6OlRqb1Wd0ZUQ3NjSbafQyDC9Icy0Mb8qJtiXZjA4VCMkZIiQD7cBxO0F/BsAiYnYNjWrIkCZICA==" - } - }, - "npm:@angular/platform-browser-dynamic": { - "type": "npm", - "name": "npm:@angular/platform-browser-dynamic", - "data": { - "version": "18.1.3", - "packageName": "@angular/platform-browser-dynamic", - "hash": "sha512-VhYfyPcdKrsLrkd5Lq7W+pqE49DZBpUeCqM/Q+s9rhTSiCCKe9Ikktq8yPZ9iHDpFr203P+T1EMHmILnLvf+gQ==" - } - }, - "npm:@angular/router": { - "type": "npm", - "name": "npm:@angular/router", - "data": { - "version": "18.1.3", - "packageName": "@angular/router", - "hash": "sha512-6fXiTgdUnaGGF32Un4+7LttG1N9rziansigvLBzFG//qYU0Ihk49phqDdWxz11iaJ+uK1YVafkjSFvV7z9cgDA==" - } - }, - "npm:@babel/code-frame": { - "type": "npm", - "name": "npm:@babel/code-frame", - "data": { - "version": "7.24.7", - "packageName": "@babel/code-frame", - "hash": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==" - } - }, - "npm:@babel/compat-data": { - "type": "npm", - "name": "npm:@babel/compat-data", - "data": { - "version": "7.25.2", - "packageName": "@babel/compat-data", - "hash": "sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==" - } - }, - "npm:@babel/generator@7.25.0": { - "type": "npm", - "name": "npm:@babel/generator@7.25.0", - "data": { - "version": "7.25.0", - "packageName": "@babel/generator", - "hash": "sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==" - } - }, - "npm:@babel/generator": { - "type": "npm", - "name": "npm:@babel/generator", - "data": { - "version": "7.24.7", - "packageName": "@babel/generator", - "hash": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==" - } - }, - "npm:@babel/helper-annotate-as-pure": { - "type": "npm", - "name": "npm:@babel/helper-annotate-as-pure", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-annotate-as-pure", - "hash": "sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==" - } - }, - "npm:@babel/helper-builder-binary-assignment-operator-visitor": { - "type": "npm", - "name": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-builder-binary-assignment-operator-visitor", - "hash": "sha512-xZeCVVdwb4MsDBkkyZ64tReWYrLRHlMN72vP7Bdm3OUOuyFZExhsHUUnuWnm2/XOlAJzR0LfPpB56WXZn0X/lA==" - } - }, - "npm:@babel/helper-compilation-targets": { - "type": "npm", - "name": "npm:@babel/helper-compilation-targets", - "data": { - "version": "7.25.2", - "packageName": "@babel/helper-compilation-targets", - "hash": "sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==" - } - }, - "npm:@babel/helper-create-class-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-class-features-plugin", - "data": { - "version": "7.25.0", - "packageName": "@babel/helper-create-class-features-plugin", - "hash": "sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==" - } - }, - "npm:@babel/helper-create-regexp-features-plugin": { - "type": "npm", - "name": "npm:@babel/helper-create-regexp-features-plugin", - "data": { - "version": "7.25.2", - "packageName": "@babel/helper-create-regexp-features-plugin", - "hash": "sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==" - } - }, - "npm:@babel/helper-define-polyfill-provider": { - "type": "npm", - "name": "npm:@babel/helper-define-polyfill-provider", - "data": { - "version": "0.6.2", - "packageName": "@babel/helper-define-polyfill-provider", - "hash": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==" - } - }, - "npm:@babel/helper-environment-visitor": { - "type": "npm", - "name": "npm:@babel/helper-environment-visitor", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-environment-visitor", - "hash": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==" - } - }, - "npm:@babel/helper-member-expression-to-functions": { - "type": "npm", - "name": "npm:@babel/helper-member-expression-to-functions", - "data": { - "version": "7.24.8", - "packageName": "@babel/helper-member-expression-to-functions", - "hash": "sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==" - } - }, - "npm:@babel/helper-module-imports": { - "type": "npm", - "name": "npm:@babel/helper-module-imports", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-module-imports", - "hash": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==" - } - }, - "npm:@babel/helper-module-transforms": { - "type": "npm", - "name": "npm:@babel/helper-module-transforms", - "data": { - "version": "7.25.2", - "packageName": "@babel/helper-module-transforms", - "hash": "sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==" - } - }, - "npm:@babel/helper-optimise-call-expression": { - "type": "npm", - "name": "npm:@babel/helper-optimise-call-expression", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-optimise-call-expression", - "hash": "sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==" - } - }, - "npm:@babel/helper-plugin-utils": { - "type": "npm", - "name": "npm:@babel/helper-plugin-utils", - "data": { - "version": "7.24.8", - "packageName": "@babel/helper-plugin-utils", - "hash": "sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==" - } - }, - "npm:@babel/helper-remap-async-to-generator": { - "type": "npm", - "name": "npm:@babel/helper-remap-async-to-generator", - "data": { - "version": "7.25.0", - "packageName": "@babel/helper-remap-async-to-generator", - "hash": "sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==" - } - }, - "npm:@babel/helper-replace-supers": { - "type": "npm", - "name": "npm:@babel/helper-replace-supers", - "data": { - "version": "7.25.0", - "packageName": "@babel/helper-replace-supers", - "hash": "sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==" - } - }, - "npm:@babel/helper-simple-access": { - "type": "npm", - "name": "npm:@babel/helper-simple-access", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-simple-access", - "hash": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==" - } - }, - "npm:@babel/helper-skip-transparent-expression-wrappers": { - "type": "npm", - "name": "npm:@babel/helper-skip-transparent-expression-wrappers", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-skip-transparent-expression-wrappers", - "hash": "sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==" - } - }, - "npm:@babel/helper-split-export-declaration": { - "type": "npm", - "name": "npm:@babel/helper-split-export-declaration", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-split-export-declaration", - "hash": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==" - } - }, - "npm:@babel/helper-string-parser": { - "type": "npm", - "name": "npm:@babel/helper-string-parser", - "data": { - "version": "7.24.8", - "packageName": "@babel/helper-string-parser", - "hash": "sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==" - } - }, - "npm:@babel/helper-validator-identifier": { - "type": "npm", - "name": "npm:@babel/helper-validator-identifier", - "data": { - "version": "7.24.7", - "packageName": "@babel/helper-validator-identifier", - "hash": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==" - } - }, - "npm:@babel/helper-validator-option": { - "type": "npm", - "name": "npm:@babel/helper-validator-option", - "data": { - "version": "7.24.8", - "packageName": "@babel/helper-validator-option", - "hash": "sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==" - } - }, - "npm:@babel/helper-wrap-function": { - "type": "npm", - "name": "npm:@babel/helper-wrap-function", - "data": { - "version": "7.25.0", - "packageName": "@babel/helper-wrap-function", - "hash": "sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==" - } - }, - "npm:@babel/helpers": { - "type": "npm", - "name": "npm:@babel/helpers", - "data": { - "version": "7.25.0", - "packageName": "@babel/helpers", - "hash": "sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw==" - } - }, - "npm:@babel/highlight": { - "type": "npm", - "name": "npm:@babel/highlight", - "data": { - "version": "7.24.7", - "packageName": "@babel/highlight", - "hash": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==" - } - }, - "npm:chalk@2.4.2": { - "type": "npm", - "name": "npm:chalk@2.4.2", - "data": { - "version": "2.4.2", - "packageName": "chalk", - "hash": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" - } - }, - "npm:chalk@4.1.2": { - "type": "npm", - "name": "npm:chalk@4.1.2", - "data": { - "version": "4.1.2", - "packageName": "chalk", - "hash": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" - } - }, - "npm:chalk@3.0.0": { - "type": "npm", - "name": "npm:chalk@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "chalk", - "hash": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" - } - }, - "npm:chalk": { - "type": "npm", - "name": "npm:chalk", - "data": { - "version": "5.3.0", - "packageName": "chalk", - "hash": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==" - } - }, - "npm:escape-string-regexp@1.0.5": { - "type": "npm", - "name": "npm:escape-string-regexp@1.0.5", - "data": { - "version": "1.0.5", - "packageName": "escape-string-regexp", - "hash": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==" - } - }, - "npm:escape-string-regexp": { - "type": "npm", - "name": "npm:escape-string-regexp", - "data": { - "version": "4.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" - } - }, - "npm:escape-string-regexp@2.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" - } - }, - "npm:escape-string-regexp@5.0.0": { - "type": "npm", - "name": "npm:escape-string-regexp@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "escape-string-regexp", - "hash": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" - } - }, - "npm:has-flag@3.0.0": { - "type": "npm", - "name": "npm:has-flag@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "has-flag", - "hash": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==" - } - }, - "npm:has-flag": { - "type": "npm", - "name": "npm:has-flag", - "data": { - "version": "4.0.0", - "packageName": "has-flag", - "hash": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" - } - }, - "npm:supports-color@5.5.0": { - "type": "npm", - "name": "npm:supports-color@5.5.0", - "data": { - "version": "5.5.0", - "packageName": "supports-color", - "hash": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" - } - }, - "npm:supports-color@7.2.0": { - "type": "npm", - "name": "npm:supports-color@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "supports-color", - "hash": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" - } - }, - "npm:supports-color": { - "type": "npm", - "name": "npm:supports-color", - "data": { - "version": "8.1.1", - "packageName": "supports-color", - "hash": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" - } - }, - "npm:@babel/parser": { - "type": "npm", - "name": "npm:@babel/parser", - "data": { - "version": "7.25.3", - "packageName": "@babel/parser", - "hash": "sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==" - } - }, - "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "data": { - "version": "7.25.3", - "packageName": "@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "hash": "sha512-wUrcsxZg6rqBXG05HG1FPYgsP6EvwF4WpBbxIpWIIYnH8wG0gzx3yZY3dtEHas4sTAOGkbTsc9EGPxwff8lRoA==" - } - }, - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "hash": "sha512-lXwdNZtTmeVOOFtwM/WDe7yg1PL8sYhRk/XH0FzbR2HDQ0xC+EnQ/JHeoMYSavtU115tnUk0q9CDyq8si+LMAA==" - } - }, - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "hash": "sha512-+izXIbke1T33mY4MSNnrqhPXDz01WYhEf3yF5NbnUtkiNnm+XBZJl3kNfoK6NKmYlz/D07+l2GWVK/QfDkNCuQ==" - } - }, - "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "type": "npm", - "name": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "hash": "sha512-tggFrk1AIShG/RUQbEwt2Tr/E+ObkfwrPjR6BjbRvsx24+PSjK8zrq0GWPNCjo8qpRx4DuJzlcvWJqlm+0h3kw==" - } - }, - "npm:@babel/plugin-proposal-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-decorators", - "data": { - "version": "7.24.0", - "packageName": "@babel/plugin-proposal-decorators", - "hash": "sha512-LiT1RqZWeij7X+wGxCoYh3/3b8nVOX6/7BZ9wiQgAIyjoeQWdROaodJCgT+dwtbjHaz0r7bEbHJzjSbVfcOyjQ==" - } - }, - "npm:@babel/plugin-proposal-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-proposal-private-property-in-object", - "data": { - "version": "7.21.0-placeholder-for-preset-env.2", - "packageName": "@babel/plugin-proposal-private-property-in-object", - "hash": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==" - } - }, - "npm:@babel/plugin-syntax-async-generators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-async-generators", - "data": { - "version": "7.8.4", - "packageName": "@babel/plugin-syntax-async-generators", - "hash": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" - } - }, - "npm:@babel/plugin-syntax-bigint": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-bigint", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-bigint", - "hash": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" - } - }, - "npm:@babel/plugin-syntax-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-properties", - "data": { - "version": "7.12.13", - "packageName": "@babel/plugin-syntax-class-properties", - "hash": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" - } - }, - "npm:@babel/plugin-syntax-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-class-static-block", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-class-static-block", - "hash": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==" - } - }, - "npm:@babel/plugin-syntax-decorators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-decorators", - "data": { - "version": "7.24.0", - "packageName": "@babel/plugin-syntax-decorators", - "hash": "sha512-MXW3pQCu9gUiVGzqkGqsgiINDVYXoAnrY8FYF/rmb+OfufNF0zHMpHPN4ulRrinxYT8Vk/aZJxYqOKsDECjKAw==" - } - }, - "npm:@babel/plugin-syntax-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-dynamic-import", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-dynamic-import", - "hash": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" - } - }, - "npm:@babel/plugin-syntax-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-export-namespace-from", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-export-namespace-from", - "hash": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" - } - }, - "npm:@babel/plugin-syntax-import-assertions": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-assertions", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-syntax-import-assertions", - "hash": "sha512-Ec3NRUMoi8gskrkBe3fNmEQfxDvY8bgfQpz6jlk/41kX9eUjvpyqWU7PBP/pLAvMaSQjbMNKJmvX57jP+M6bPg==" - } - }, - "npm:@babel/plugin-syntax-import-attributes": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-attributes", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-syntax-import-attributes", - "hash": "sha512-hbX+lKKeUMGihnK8nvKqmXBInriT3GVjzXKFriV3YC6APGxMbP8RZNFwy91+hocLXq90Mta+HshoB31802bb8A==" - } - }, - "npm:@babel/plugin-syntax-import-meta": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-import-meta", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-import-meta", - "hash": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" - } - }, - "npm:@babel/plugin-syntax-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-json-strings", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-json-strings", - "hash": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" - } - }, - "npm:@babel/plugin-syntax-jsx": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-jsx", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-jsx", - "hash": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==" - } - }, - "npm:@babel/plugin-syntax-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-logical-assignment-operators", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-logical-assignment-operators", - "hash": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" - } - }, - "npm:@babel/plugin-syntax-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-nullish-coalescing-operator", - "hash": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" - } - }, - "npm:@babel/plugin-syntax-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-numeric-separator", - "data": { - "version": "7.10.4", - "packageName": "@babel/plugin-syntax-numeric-separator", - "hash": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" - } - }, - "npm:@babel/plugin-syntax-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-object-rest-spread", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-object-rest-spread", - "hash": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" - } - }, - "npm:@babel/plugin-syntax-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-catch-binding", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-catch-binding", - "hash": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" - } - }, - "npm:@babel/plugin-syntax-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-optional-chaining", - "data": { - "version": "7.8.3", - "packageName": "@babel/plugin-syntax-optional-chaining", - "hash": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" - } - }, - "npm:@babel/plugin-syntax-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-private-property-in-object", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-private-property-in-object", - "hash": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==" - } - }, - "npm:@babel/plugin-syntax-top-level-await": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-top-level-await", - "data": { - "version": "7.14.5", - "packageName": "@babel/plugin-syntax-top-level-await", - "hash": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==" - } - }, - "npm:@babel/plugin-syntax-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/plugin-syntax-typescript", - "hash": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==" - } - }, - "npm:@babel/plugin-syntax-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-syntax-unicode-sets-regex", - "data": { - "version": "7.18.6", - "packageName": "@babel/plugin-syntax-unicode-sets-regex", - "hash": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==" - } - }, - "npm:@babel/plugin-transform-arrow-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-arrow-functions", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-arrow-functions", - "hash": "sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==" - } - }, - "npm:@babel/plugin-transform-async-generator-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-generator-functions", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-async-generator-functions", - "hash": "sha512-o+iF77e3u7ZS4AoAuJvapz9Fm001PuD2V3Lp6OSE4FYQke+cSewYtnek+THqGRWyQloRCyvWL1OkyfNEl9vr/g==" - } - }, - "npm:@babel/plugin-transform-async-to-generator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-async-to-generator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-async-to-generator", - "hash": "sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==" - } - }, - "npm:@babel/plugin-transform-block-scoped-functions": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoped-functions", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-block-scoped-functions", - "hash": "sha512-yO7RAz6EsVQDaBH18IDJcMB1HnrUn2FJ/Jslc/WtPPWcjhpUJXU/rjbwmluzp7v/ZzWcEhTMXELnnsz8djWDwQ==" - } - }, - "npm:@babel/plugin-transform-block-scoping": { - "type": "npm", - "name": "npm:@babel/plugin-transform-block-scoping", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-transform-block-scoping", - "hash": "sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==" - } - }, - "npm:@babel/plugin-transform-class-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-properties", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-class-properties", - "hash": "sha512-vKbfawVYayKcSeSR5YYzzyXvsDFWU2mD8U5TFeXtbCPLFUqe7GyCgvO6XDHzje862ODrOwy6WCPmKeWHbCFJ4w==" - } - }, - "npm:@babel/plugin-transform-class-static-block": { - "type": "npm", - "name": "npm:@babel/plugin-transform-class-static-block", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-class-static-block", - "hash": "sha512-HMXK3WbBPpZQufbMG4B46A90PkuuhN9vBCb5T8+VAHqvAqvcLi+2cKoukcpmUYkszLhScU3l1iudhrks3DggRQ==" - } - }, - "npm:@babel/plugin-transform-classes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-classes", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-transform-classes", - "hash": "sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==" - } - }, - "npm:@babel/plugin-transform-computed-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-computed-properties", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-computed-properties", - "hash": "sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==" - } - }, - "npm:@babel/plugin-transform-destructuring": { - "type": "npm", - "name": "npm:@babel/plugin-transform-destructuring", - "data": { - "version": "7.24.8", - "packageName": "@babel/plugin-transform-destructuring", - "hash": "sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==" - } - }, - "npm:@babel/plugin-transform-dotall-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dotall-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-dotall-regex", - "hash": "sha512-ZOA3W+1RRTSWvyqcMJDLqbchh7U4NRGqwRfFSVbOLS/ePIP4vHB5e8T8eXcuqyN1QkgKyj5wuW0lcS85v4CrSw==" - } - }, - "npm:@babel/plugin-transform-duplicate-keys": { - "type": "npm", - "name": "npm:@babel/plugin-transform-duplicate-keys", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-duplicate-keys", - "hash": "sha512-JdYfXyCRihAe46jUIliuL2/s0x0wObgwwiGxw/UbgJBr20gQBThrokO4nYKgWkD7uBaqM7+9x5TU7NkExZJyzw==" - } - }, - "npm:@babel/plugin-transform-dynamic-import": { - "type": "npm", - "name": "npm:@babel/plugin-transform-dynamic-import", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-dynamic-import", - "hash": "sha512-sc3X26PhZQDb3JhORmakcbvkeInvxz+A8oda99lj7J60QRuPZvNAk9wQlTBS1ZynelDrDmTU4pw1tyc5d5ZMUg==" - } - }, - "npm:@babel/plugin-transform-exponentiation-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-exponentiation-operator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-exponentiation-operator", - "hash": "sha512-Rqe/vSc9OYgDajNIK35u7ot+KeCoetqQYFXM4Epf7M7ez3lWlOjrDjrwMei6caCVhfdw+mIKD4cgdGNy5JQotQ==" - } - }, - "npm:@babel/plugin-transform-export-namespace-from": { - "type": "npm", - "name": "npm:@babel/plugin-transform-export-namespace-from", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-export-namespace-from", - "hash": "sha512-v0K9uNYsPL3oXZ/7F9NNIbAj2jv1whUEtyA6aujhekLs56R++JDQuzRcP2/z4WX5Vg/c5lE9uWZA0/iUoFhLTA==" - } - }, - "npm:@babel/plugin-transform-for-of": { - "type": "npm", - "name": "npm:@babel/plugin-transform-for-of", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-for-of", - "hash": "sha512-wo9ogrDG1ITTTBsy46oGiN1dS9A7MROBTcYsfS8DtsImMkHk9JXJ3EWQM6X2SUw4x80uGPlwj0o00Uoc6nEE3g==" - } - }, - "npm:@babel/plugin-transform-function-name": { - "type": "npm", - "name": "npm:@babel/plugin-transform-function-name", - "data": { - "version": "7.25.1", - "packageName": "@babel/plugin-transform-function-name", - "hash": "sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==" - } - }, - "npm:@babel/plugin-transform-json-strings": { - "type": "npm", - "name": "npm:@babel/plugin-transform-json-strings", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-json-strings", - "hash": "sha512-2yFnBGDvRuxAaE/f0vfBKvtnvvqU8tGpMHqMNpTN2oWMKIR3NqFkjaAgGwawhqK/pIN2T3XdjGPdaG0vDhOBGw==" - } - }, - "npm:@babel/plugin-transform-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-literals", - "data": { - "version": "7.25.2", - "packageName": "@babel/plugin-transform-literals", - "hash": "sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==" - } - }, - "npm:@babel/plugin-transform-logical-assignment-operators": { - "type": "npm", - "name": "npm:@babel/plugin-transform-logical-assignment-operators", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-logical-assignment-operators", - "hash": "sha512-4D2tpwlQ1odXmTEIFWy9ELJcZHqrStlzK/dAOWYyxX3zT0iXQB6banjgeOJQXzEc4S0E0a5A+hahxPaEFYftsw==" - } - }, - "npm:@babel/plugin-transform-member-expression-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-member-expression-literals", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-member-expression-literals", - "hash": "sha512-T/hRC1uqrzXMKLQ6UCwMT85S3EvqaBXDGf0FaMf4446Qx9vKwlghvee0+uuZcDUCZU5RuNi4781UQ7R308zzBw==" - } - }, - "npm:@babel/plugin-transform-modules-amd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-amd", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-modules-amd", - "hash": "sha512-9+pB1qxV3vs/8Hdmz/CulFB8w2tuu6EB94JZFsjdqxQokwGa9Unap7Bo2gGBGIvPmDIVvQrom7r5m/TCDMURhg==" - } - }, - "npm:@babel/plugin-transform-modules-commonjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-commonjs", - "data": { - "version": "7.24.8", - "packageName": "@babel/plugin-transform-modules-commonjs", - "hash": "sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==" - } - }, - "npm:@babel/plugin-transform-modules-systemjs": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-systemjs", - "data": { - "version": "7.25.0", - "packageName": "@babel/plugin-transform-modules-systemjs", - "hash": "sha512-YPJfjQPDXxyQWg/0+jHKj1llnY5f/R6a0p/vP4lPymxLu7Lvl4k2WMitqi08yxwQcCVUUdG9LCUj4TNEgAp3Jw==" - } - }, - "npm:@babel/plugin-transform-modules-umd": { - "type": "npm", - "name": "npm:@babel/plugin-transform-modules-umd", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-modules-umd", - "hash": "sha512-3aytQvqJ/h9z4g8AsKPLvD4Zqi2qT+L3j7XoFFu1XBlZWEl2/1kWnhmAbxpLgPrHSY0M6UA02jyTiwUVtiKR6A==" - } - }, - "npm:@babel/plugin-transform-named-capturing-groups-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-named-capturing-groups-regex", - "hash": "sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==" - } - }, - "npm:@babel/plugin-transform-new-target": { - "type": "npm", - "name": "npm:@babel/plugin-transform-new-target", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-new-target", - "hash": "sha512-RNKwfRIXg4Ls/8mMTza5oPF5RkOW8Wy/WgMAp1/F1yZ8mMbtwXW+HDoJiOsagWrAhI5f57Vncrmr9XeT4CVapA==" - } - }, - "npm:@babel/plugin-transform-nullish-coalescing-operator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-nullish-coalescing-operator", - "hash": "sha512-Ts7xQVk1OEocqzm8rHMXHlxvsfZ0cEF2yomUqpKENHWMF4zKk175Y4q8H5knJes6PgYad50uuRmt3UJuhBw8pQ==" - } - }, - "npm:@babel/plugin-transform-numeric-separator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-numeric-separator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-numeric-separator", - "hash": "sha512-e6q1TiVUzvH9KRvicuxdBTUj4AdKSRwzIyFFnfnezpCfP2/7Qmbb8qbU2j7GODbl4JMkblitCQjKYUaX/qkkwA==" - } - }, - "npm:@babel/plugin-transform-object-rest-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-rest-spread", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-object-rest-spread", - "hash": "sha512-4QrHAr0aXQCEFni2q4DqKLD31n2DL+RxcwnNjDFkSG0eNQ/xCavnRkfCUjsyqGC2OviNJvZOF/mQqZBw7i2C5Q==" - } - }, - "npm:@babel/plugin-transform-object-super": { - "type": "npm", - "name": "npm:@babel/plugin-transform-object-super", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-object-super", - "hash": "sha512-A/vVLwN6lBrMFmMDmPPz0jnE6ZGx7Jq7d6sT/Ev4H65RER6pZ+kczlf1DthF5N0qaPHBsI7UXiE8Zy66nmAovg==" - } - }, - "npm:@babel/plugin-transform-optional-catch-binding": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-catch-binding", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-optional-catch-binding", - "hash": "sha512-uLEndKqP5BfBbC/5jTwPxLh9kqPWWgzN/f8w6UwAIirAEqiIVJWWY312X72Eub09g5KF9+Zn7+hT7sDxmhRuKA==" - } - }, - "npm:@babel/plugin-transform-optional-chaining": { - "type": "npm", - "name": "npm:@babel/plugin-transform-optional-chaining", - "data": { - "version": "7.24.8", - "packageName": "@babel/plugin-transform-optional-chaining", - "hash": "sha512-5cTOLSMs9eypEy8JUVvIKOu6NgvbJMnpG62VpIHrTmROdQ+L5mDAaI40g25k5vXti55JWNX5jCkq3HZxXBQANw==" - } - }, - "npm:@babel/plugin-transform-parameters": { - "type": "npm", - "name": "npm:@babel/plugin-transform-parameters", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-parameters", - "hash": "sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==" - } - }, - "npm:@babel/plugin-transform-private-methods": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-methods", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-private-methods", - "hash": "sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==" - } - }, - "npm:@babel/plugin-transform-private-property-in-object": { - "type": "npm", - "name": "npm:@babel/plugin-transform-private-property-in-object", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-private-property-in-object", - "hash": "sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==" - } - }, - "npm:@babel/plugin-transform-property-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-property-literals", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-property-literals", - "hash": "sha512-EMi4MLQSHfd2nrCqQEWxFdha2gBCqU4ZcCng4WBGZ5CJL4bBRW0ptdqqDdeirGZcpALazVVNJqRmsO8/+oNCBA==" - } - }, - "npm:@babel/plugin-transform-regenerator": { - "type": "npm", - "name": "npm:@babel/plugin-transform-regenerator", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-regenerator", - "hash": "sha512-lq3fvXPdimDrlg6LWBoqj+r/DEWgONuwjuOuQCSYgRroXDH/IdM1C0IZf59fL5cHLpjEH/O6opIRBbqv7ELnuA==" - } - }, - "npm:@babel/plugin-transform-reserved-words": { - "type": "npm", - "name": "npm:@babel/plugin-transform-reserved-words", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-reserved-words", - "hash": "sha512-0DUq0pHcPKbjFZCfTss/pGkYMfy3vFWydkUBd9r0GHpIyfs2eCDENvqadMycRS9wZCXR41wucAfJHJmwA0UmoQ==" - } - }, - "npm:@babel/plugin-transform-runtime": { - "type": "npm", - "name": "npm:@babel/plugin-transform-runtime", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-runtime", - "hash": "sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==" - } - }, - "npm:@babel/plugin-transform-shorthand-properties": { - "type": "npm", - "name": "npm:@babel/plugin-transform-shorthand-properties", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-shorthand-properties", - "hash": "sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==" - } - }, - "npm:@babel/plugin-transform-spread": { - "type": "npm", - "name": "npm:@babel/plugin-transform-spread", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-spread", - "hash": "sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==" - } - }, - "npm:@babel/plugin-transform-sticky-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-sticky-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-sticky-regex", - "hash": "sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==" - } - }, - "npm:@babel/plugin-transform-template-literals": { - "type": "npm", - "name": "npm:@babel/plugin-transform-template-literals", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-template-literals", - "hash": "sha512-AfDTQmClklHCOLxtGoP7HkeMw56k1/bTQjwsfhL6pppo/M4TOBSq+jjBUBLmV/4oeFg4GWMavIl44ZeCtmmZTw==" - } - }, - "npm:@babel/plugin-transform-typeof-symbol": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typeof-symbol", - "data": { - "version": "7.24.8", - "packageName": "@babel/plugin-transform-typeof-symbol", - "hash": "sha512-adNTUpDCVnmAE58VEqKlAA6ZBlNkMnWD0ZcW76lyNFN3MJniyGFZfNwERVk8Ap56MCnXztmDr19T4mPTztcuaw==" - } - }, - "npm:@babel/plugin-transform-typescript": { - "type": "npm", - "name": "npm:@babel/plugin-transform-typescript", - "data": { - "version": "7.23.6", - "packageName": "@babel/plugin-transform-typescript", - "hash": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==" - } - }, - "npm:@babel/plugin-transform-unicode-escapes": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-escapes", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-unicode-escapes", - "hash": "sha512-U3ap1gm5+4edc2Q/P+9VrBNhGkfnf+8ZqppY71Bo/pzZmXhhLdqgaUl6cuB07O1+AQJtCLfaOmswiNbSQ9ivhw==" - } - }, - "npm:@babel/plugin-transform-unicode-property-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-property-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-unicode-property-regex", - "hash": "sha512-uH2O4OV5M9FZYQrwc7NdVmMxQJOCCzFeYudlZSzUAHRFeOujQefa92E74TQDVskNHCzOXoigEuoyzHDhaEaK5w==" - } - }, - "npm:@babel/plugin-transform-unicode-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-unicode-regex", - "hash": "sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==" - } - }, - "npm:@babel/plugin-transform-unicode-sets-regex": { - "type": "npm", - "name": "npm:@babel/plugin-transform-unicode-sets-regex", - "data": { - "version": "7.24.7", - "packageName": "@babel/plugin-transform-unicode-sets-regex", - "hash": "sha512-2G8aAvF4wy1w/AGZkemprdGMRg5o6zPNhbHVImRz3lss55TYCBd6xStN19rt8XJHq20sqV0JbyWjOWwQRwV/wg==" - } - }, - "npm:@babel/preset-env": { - "type": "npm", - "name": "npm:@babel/preset-env", - "data": { - "version": "7.24.7", - "packageName": "@babel/preset-env", - "hash": "sha512-1YZNsc+y6cTvWlDHidMBsQZrZfEFjRIo/BZCT906PMdzOyXtSLTgqGdrpcuTDCXyd11Am5uQULtDIcCfnTc8fQ==" - } - }, - "npm:@babel/preset-modules": { - "type": "npm", - "name": "npm:@babel/preset-modules", - "data": { - "version": "0.1.6-no-external-plugins", - "packageName": "@babel/preset-modules", - "hash": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==" - } - }, - "npm:@babel/preset-typescript": { - "type": "npm", - "name": "npm:@babel/preset-typescript", - "data": { - "version": "7.23.3", - "packageName": "@babel/preset-typescript", - "hash": "sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ==" - } - }, - "npm:@babel/regjsgen": { - "type": "npm", - "name": "npm:@babel/regjsgen", - "data": { - "version": "0.8.0", - "packageName": "@babel/regjsgen", - "hash": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - } - }, - "npm:@babel/runtime": { - "type": "npm", - "name": "npm:@babel/runtime", - "data": { - "version": "7.24.7", - "packageName": "@babel/runtime", - "hash": "sha512-UwgBRMjJP+xv857DCngvqXI3Iq6J4v0wXmwc6sapg+zyhbwmQX67LUEFrkK5tbyJ30jGuG3ZvWpBiB9LCy1kWw==" - } - }, - "npm:@babel/template": { - "type": "npm", - "name": "npm:@babel/template", - "data": { - "version": "7.25.0", - "packageName": "@babel/template", - "hash": "sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==" - } - }, - "npm:@babel/traverse": { - "type": "npm", - "name": "npm:@babel/traverse", - "data": { - "version": "7.25.3", - "packageName": "@babel/traverse", - "hash": "sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==" - } - }, - "npm:@babel/types": { - "type": "npm", - "name": "npm:@babel/types", - "data": { - "version": "7.25.2", - "packageName": "@babel/types", - "hash": "sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==" - } - }, - "npm:@bcoe/v8-coverage": { - "type": "npm", - "name": "npm:@bcoe/v8-coverage", - "data": { - "version": "0.2.3", - "packageName": "@bcoe/v8-coverage", - "hash": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" - } - }, - "npm:@colors/colors": { - "type": "npm", - "name": "npm:@colors/colors", - "data": { - "version": "1.5.0", - "packageName": "@colors/colors", - "hash": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==" - } - }, - "npm:@cspotcode/source-map-support": { - "type": "npm", - "name": "npm:@cspotcode/source-map-support", - "data": { - "version": "0.8.1", - "packageName": "@cspotcode/source-map-support", - "hash": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==" - } - }, - "npm:@jridgewell/trace-mapping@0.3.9": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping@0.3.9", - "data": { - "version": "0.3.9", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==" - } - }, - "npm:@jridgewell/trace-mapping": { - "type": "npm", - "name": "npm:@jridgewell/trace-mapping", - "data": { - "version": "0.3.25", - "packageName": "@jridgewell/trace-mapping", - "hash": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==" - } - }, - "npm:@csstools/postcss-color-function": { - "type": "npm", - "name": "npm:@csstools/postcss-color-function", - "data": { - "version": "1.1.1", - "packageName": "@csstools/postcss-color-function", - "hash": "sha512-Bc0f62WmHdtRDjf5f3e2STwRAl89N2CLb+9iAwzrv4L2hncrbDwnQD9PCq0gtAt7pOI2leIV08HIBUd4jxD8cw==" - } - }, - "npm:@csstools/postcss-font-format-keywords": { - "type": "npm", - "name": "npm:@csstools/postcss-font-format-keywords", - "data": { - "version": "1.0.1", - "packageName": "@csstools/postcss-font-format-keywords", - "hash": "sha512-ZgrlzuUAjXIOc2JueK0X5sZDjCtgimVp/O5CEqTcs5ShWBa6smhWYbS0x5cVc/+rycTDbjjzoP0KTDnUneZGOg==" - } - }, - "npm:@csstools/postcss-hwb-function": { - "type": "npm", - "name": "npm:@csstools/postcss-hwb-function", - "data": { - "version": "1.0.2", - "packageName": "@csstools/postcss-hwb-function", - "hash": "sha512-YHdEru4o3Rsbjmu6vHy4UKOXZD+Rn2zmkAmLRfPet6+Jz4Ojw8cbWxe1n42VaXQhD3CQUXXTooIy8OkVbUcL+w==" - } - }, - "npm:@csstools/postcss-ic-unit": { - "type": "npm", - "name": "npm:@csstools/postcss-ic-unit", - "data": { - "version": "1.0.1", - "packageName": "@csstools/postcss-ic-unit", - "hash": "sha512-Ot1rcwRAaRHNKC9tAqoqNZhjdYBzKk1POgWfhN4uCOE47ebGcLRqXjKkApVDpjifL6u2/55ekkpnFcp+s/OZUw==" - } - }, - "npm:@csstools/postcss-is-pseudo-class": { - "type": "npm", - "name": "npm:@csstools/postcss-is-pseudo-class", - "data": { - "version": "2.0.7", - "packageName": "@csstools/postcss-is-pseudo-class", - "hash": "sha512-7JPeVVZHd+jxYdULl87lvjgvWldYu+Bc62s9vD/ED6/QTGjy0jy0US/f6BG53sVMTBJ1lzKZFpYmofBN9eaRiA==" - } - }, - "npm:@csstools/postcss-normalize-display-values": { - "type": "npm", - "name": "npm:@csstools/postcss-normalize-display-values", - "data": { - "version": "1.0.1", - "packageName": "@csstools/postcss-normalize-display-values", - "hash": "sha512-jcOanIbv55OFKQ3sYeFD/T0Ti7AMXc9nM1hZWu8m/2722gOTxFg7xYu4RDLJLeZmPUVQlGzo4jhzvTUq3x4ZUw==" - } - }, - "npm:@csstools/postcss-oklab-function": { - "type": "npm", - "name": "npm:@csstools/postcss-oklab-function", - "data": { - "version": "1.1.1", - "packageName": "@csstools/postcss-oklab-function", - "hash": "sha512-nJpJgsdA3dA9y5pgyb/UfEzE7W5Ka7u0CX0/HIMVBNWzWemdcTH3XwANECU6anWv/ao4vVNLTMxhiPNZsTK6iA==" - } - }, - "npm:@csstools/postcss-progressive-custom-properties": { - "type": "npm", - "name": "npm:@csstools/postcss-progressive-custom-properties", - "data": { - "version": "1.3.0", - "packageName": "@csstools/postcss-progressive-custom-properties", - "hash": "sha512-ASA9W1aIy5ygskZYuWams4BzafD12ULvSypmaLJT2jvQ8G0M3I8PRQhC0h7mG0Z3LI05+agZjqSR9+K9yaQQjA==" - } - }, - "npm:@csstools/postcss-stepped-value-functions": { - "type": "npm", - "name": "npm:@csstools/postcss-stepped-value-functions", - "data": { - "version": "1.0.1", - "packageName": "@csstools/postcss-stepped-value-functions", - "hash": "sha512-dz0LNoo3ijpTOQqEJLY8nyaapl6umbmDcgj4AD0lgVQ572b2eqA1iGZYTTWhrcrHztWDDRAX2DGYyw2VBjvCvQ==" - } - }, - "npm:@csstools/postcss-unset-value": { - "type": "npm", - "name": "npm:@csstools/postcss-unset-value", - "data": { - "version": "1.0.2", - "packageName": "@csstools/postcss-unset-value", - "hash": "sha512-c8J4roPBILnelAsdLr4XOAR/GsTm0GJi4XpcfvoWk3U6KiTCqiFYc63KhRMQQX35jYMp4Ao8Ij9+IZRgMfJp1g==" - } - }, - "npm:@csstools/selector-specificity": { - "type": "npm", - "name": "npm:@csstools/selector-specificity", - "data": { - "version": "2.2.0", - "packageName": "@csstools/selector-specificity", - "hash": "sha512-+OJ9konv95ClSTOJCmMZqpd5+YGsB2S+x6w3E1oaM8UuR5j8nTNHYSz8c9BEPGDOCMQYIEEGlVPj/VY64iTbGw==" - } - }, - "npm:@cypress/request": { - "type": "npm", - "name": "npm:@cypress/request", - "data": { - "version": "3.0.1", - "packageName": "@cypress/request", - "hash": "sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ==" - } - }, - "npm:@cypress/xvfb": { - "type": "npm", - "name": "npm:@cypress/xvfb", - "data": { - "version": "1.2.4", - "packageName": "@cypress/xvfb", - "hash": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==" - } - }, - "npm:debug@3.2.7": { - "type": "npm", - "name": "npm:debug@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "debug", - "hash": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" - } - }, - "npm:debug@2.6.9": { - "type": "npm", - "name": "npm:debug@2.6.9", - "data": { - "version": "2.6.9", - "packageName": "debug", - "hash": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" - } - }, - "npm:debug": { - "type": "npm", - "name": "npm:debug", - "data": { - "version": "4.3.4", - "packageName": "debug", - "hash": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==" - } - }, - "npm:debug@3.1.0": { - "type": "npm", - "name": "npm:debug@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "debug", - "hash": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==" - } - }, - "npm:@discoveryjs/json-ext": { - "type": "npm", - "name": "npm:@discoveryjs/json-ext", - "data": { - "version": "0.5.7", - "packageName": "@discoveryjs/json-ext", - "hash": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==" - } - }, - "npm:@emnapi/core": { - "type": "npm", - "name": "npm:@emnapi/core", - "data": { - "version": "1.2.0", - "packageName": "@emnapi/core", - "hash": "sha512-E7Vgw78I93we4ZWdYCb4DGAwRROGkMIXk7/y87UmANR+J6qsWusmC3gLt0H+O0KOt5e6O38U8oJamgbudrES/w==" - } - }, - "npm:@emnapi/runtime": { - "type": "npm", - "name": "npm:@emnapi/runtime", - "data": { - "version": "1.2.0", - "packageName": "@emnapi/runtime", - "hash": "sha512-bV21/9LQmcQeCPEg3BDFtvwL6cwiTMksYNWQQ4KOxCZikEGalWtenoZ0wCiukJINlGCIi2KXx01g4FoH/LxpzQ==" - } - }, - "npm:@emnapi/wasi-threads": { - "type": "npm", - "name": "npm:@emnapi/wasi-threads", - "data": { - "version": "1.0.1", - "packageName": "@emnapi/wasi-threads", - "hash": "sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==" - } - }, - "npm:@esbuild/openbsd-arm64": { - "type": "npm", - "name": "npm:@esbuild/openbsd-arm64", - "data": { - "version": "0.23.0", - "packageName": "@esbuild/openbsd-arm64", - "hash": "sha512-suXjq53gERueVWu0OKxzWqk7NxiUWSUlrxoZK7usiF50C6ipColGR5qie2496iKGYNLhDZkPxBI3erbnYkU0rQ==" - } - }, - "npm:@eslint-community/eslint-utils": { - "type": "npm", - "name": "npm:@eslint-community/eslint-utils", - "data": { - "version": "4.4.0", - "packageName": "@eslint-community/eslint-utils", - "hash": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==" - } - }, - "npm:@eslint-community/regexpp": { - "type": "npm", - "name": "npm:@eslint-community/regexpp", - "data": { - "version": "4.10.0", - "packageName": "@eslint-community/regexpp", - "hash": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==" - } - }, - "npm:@eslint/eslintrc": { - "type": "npm", - "name": "npm:@eslint/eslintrc", - "data": { - "version": "2.1.4", - "packageName": "@eslint/eslintrc", - "hash": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==" - } - }, - "npm:brace-expansion@1.1.11": { - "type": "npm", - "name": "npm:brace-expansion@1.1.11", - "data": { - "version": "1.1.11", - "packageName": "brace-expansion", - "hash": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" - } - }, - "npm:brace-expansion": { - "type": "npm", - "name": "npm:brace-expansion", - "data": { - "version": "2.0.1", - "packageName": "brace-expansion", - "hash": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==" - } - }, - "npm:globals@13.24.0": { - "type": "npm", - "name": "npm:globals@13.24.0", - "data": { - "version": "13.24.0", - "packageName": "globals", - "hash": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==" - } - }, - "npm:globals": { - "type": "npm", - "name": "npm:globals", - "data": { - "version": "11.12.0", - "packageName": "globals", - "hash": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" - } - }, - "npm:json-schema-traverse@0.4.1": { - "type": "npm", - "name": "npm:json-schema-traverse@0.4.1", - "data": { - "version": "0.4.1", - "packageName": "json-schema-traverse", - "hash": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - } - }, - "npm:json-schema-traverse": { - "type": "npm", - "name": "npm:json-schema-traverse", - "data": { - "version": "1.0.0", - "packageName": "json-schema-traverse", - "hash": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - } - }, - "npm:minimatch@3.1.2": { - "type": "npm", - "name": "npm:minimatch@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "minimatch", - "hash": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" - } - }, - "npm:minimatch@9.0.4": { - "type": "npm", - "name": "npm:minimatch@9.0.4", - "data": { - "version": "9.0.4", - "packageName": "minimatch", - "hash": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==" - } - }, - "npm:minimatch@5.1.6": { - "type": "npm", - "name": "npm:minimatch@5.1.6", - "data": { - "version": "5.1.6", - "packageName": "minimatch", - "hash": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" - } - }, - "npm:minimatch@9.0.5": { - "type": "npm", - "name": "npm:minimatch@9.0.5", - "data": { - "version": "9.0.5", - "packageName": "minimatch", - "hash": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" - } - }, - "npm:minimatch@7.4.6": { - "type": "npm", - "name": "npm:minimatch@7.4.6", - "data": { - "version": "7.4.6", - "packageName": "minimatch", - "hash": "sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==" - } - }, - "npm:minimatch": { - "type": "npm", - "name": "npm:minimatch", - "data": { - "version": "9.0.3", - "packageName": "minimatch", - "hash": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==" - } - }, - "npm:minimatch@3.0.8": { - "type": "npm", - "name": "npm:minimatch@3.0.8", - "data": { - "version": "3.0.8", - "packageName": "minimatch", - "hash": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==" - } - }, - "npm:type-fest@0.20.2": { - "type": "npm", - "name": "npm:type-fest@0.20.2", - "data": { - "version": "0.20.2", - "packageName": "type-fest", - "hash": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==" - } - }, - "npm:type-fest": { - "type": "npm", - "name": "npm:type-fest", - "data": { - "version": "0.21.3", - "packageName": "type-fest", - "hash": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==" - } - }, - "npm:@eslint/js": { - "type": "npm", - "name": "npm:@eslint/js", - "data": { - "version": "8.57.0", - "packageName": "@eslint/js", - "hash": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==" - } - }, - "npm:@humanwhocodes/config-array": { - "type": "npm", - "name": "npm:@humanwhocodes/config-array", - "data": { - "version": "0.11.14", - "packageName": "@humanwhocodes/config-array", - "hash": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==" - } - }, - "npm:@humanwhocodes/module-importer": { - "type": "npm", - "name": "npm:@humanwhocodes/module-importer", - "data": { - "version": "1.0.1", - "packageName": "@humanwhocodes/module-importer", - "hash": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" - } - }, - "npm:@humanwhocodes/object-schema": { - "type": "npm", - "name": "npm:@humanwhocodes/object-schema", - "data": { - "version": "2.0.3", - "packageName": "@humanwhocodes/object-schema", - "hash": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==" - } - }, - "npm:@inquirer/checkbox": { - "type": "npm", - "name": "npm:@inquirer/checkbox", - "data": { - "version": "2.4.7", - "packageName": "@inquirer/checkbox", - "hash": "sha512-5YwCySyV1UEgqzz34gNsC38eKxRBtlRDpJLlKcRtTjlYA/yDKuc1rfw+hjw+2WJxbAZtaDPsRl5Zk7J14SBoBw==" - } - }, - "npm:@inquirer/core@9.0.10": { - "type": "npm", - "name": "npm:@inquirer/core@9.0.10", - "data": { - "version": "9.0.10", - "packageName": "@inquirer/core", - "hash": "sha512-TdESOKSVwf6+YWDz8GhS6nKscwzkIyakEzCLJ5Vh6O3Co2ClhCJ0A4MG909MUWfaWdpJm7DE45ii51/2Kat9tA==" - } - }, - "npm:@inquirer/core": { - "type": "npm", - "name": "npm:@inquirer/core", - "data": { - "version": "8.2.4", - "packageName": "@inquirer/core", - "hash": "sha512-7vsXSfxtrrbwMTirfaKwPcjqJy7pzeuF/bP62yo1NQrRJ5HjmMlrhZml/Ljm9ODc1RnbhJlTeSnCkjtFddKjwA==" - } - }, - "npm:@types/node@22.1.0": { - "type": "npm", - "name": "npm:@types/node@22.1.0", - "data": { - "version": "22.1.0", - "packageName": "@types/node", - "hash": "sha512-AOmuRF0R2/5j1knA3c6G3HOk523Ga+l+ZXltX8SF1+5oqcXijjfTd8fY3XRZqSihEu9XhtQnKYLmkFaoxgsJHw==" - } - }, - "npm:@types/node@20.14.14": { - "type": "npm", - "name": "npm:@types/node@20.14.14", - "data": { - "version": "20.14.14", - "packageName": "@types/node", - "hash": "sha512-d64f00982fS9YoOgJkAMolK7MN8Iq3TDdVjchbYHdEmjth/DHowx82GnoA+tVUAN+7vxfYUgAzi+JXbKNd2SDQ==" - } - }, - "npm:@types/node": { - "type": "npm", - "name": "npm:@types/node", - "data": { - "version": "18.19.50", - "packageName": "@types/node", - "hash": "sha512-xonK+NRrMBRtkL1hVCc3G+uXtjh1Al4opBLjqVmipe5ZAaBYWW6cNAiBVZ1BvmkBhep698rP3UM3aRAdSALuhg==" - } - }, - "npm:cli-spinners@2.9.2": { - "type": "npm", - "name": "npm:cli-spinners@2.9.2", - "data": { - "version": "2.9.2", - "packageName": "cli-spinners", - "hash": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" - } - }, - "npm:cli-spinners": { - "type": "npm", - "name": "npm:cli-spinners", - "data": { - "version": "2.6.1", - "packageName": "cli-spinners", - "hash": "sha512-x/5fWmGMnbKQAaNwN+UZlV79qBLM9JFnJuJ03gIi5whrob0xV0ofNVHy9DhwGdsMJQc2OKv0oGmLzvaqvAVv+g==" - } - }, - "npm:undici-types@6.13.0": { - "type": "npm", - "name": "npm:undici-types@6.13.0", - "data": { - "version": "6.13.0", - "packageName": "undici-types", - "hash": "sha512-xtFJHudx8S2DSoujjMd1WeWvn7KKWFRESZTMeL1RptAYERu29D6jphMjjY+vn96jvN3kVPDNxU/E13VTaXj6jg==" - } - }, - "npm:undici-types": { - "type": "npm", - "name": "npm:undici-types", - "data": { - "version": "5.26.5", - "packageName": "undici-types", - "hash": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" - } - }, - "npm:@inquirer/confirm": { - "type": "npm", - "name": "npm:@inquirer/confirm", - "data": { - "version": "3.1.11", - "packageName": "@inquirer/confirm", - "hash": "sha512-3wWw10VPxQP279FO4bzWsf8YjIAq7NdwATJ4xS2h1uwsXZu/RmtOVV95rZ7yllS1h/dzu+uLewjMAzNDEj8h2w==" - } - }, - "npm:@inquirer/editor": { - "type": "npm", - "name": "npm:@inquirer/editor", - "data": { - "version": "2.1.22", - "packageName": "@inquirer/editor", - "hash": "sha512-K1QwTu7GCK+nKOVRBp5HY9jt3DXOfPGPr6WRDrPImkcJRelG9UTx2cAtK1liXmibRrzJlTWOwqgWT3k2XnS62w==" - } - }, - "npm:@inquirer/expand": { - "type": "npm", - "name": "npm:@inquirer/expand", - "data": { - "version": "2.1.22", - "packageName": "@inquirer/expand", - "hash": "sha512-wTZOBkzH+ItPuZ3ZPa9lynBsdMp6kQ9zbjVPYEtSBG7UulGjg2kQiAnUjgyG4SlntpTce5bOmXAPvE4sguXjpA==" - } - }, - "npm:@inquirer/figures": { - "type": "npm", - "name": "npm:@inquirer/figures", - "data": { - "version": "1.0.5", - "packageName": "@inquirer/figures", - "hash": "sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==" - } - }, - "npm:@inquirer/input": { - "type": "npm", - "name": "npm:@inquirer/input", - "data": { - "version": "2.2.9", - "packageName": "@inquirer/input", - "hash": "sha512-7Z6N+uzkWM7+xsE+3rJdhdG/+mQgejOVqspoW+w0AbSZnL6nq5tGMEVASaYVWbkoSzecABWwmludO2evU3d31g==" - } - }, - "npm:@inquirer/password": { - "type": "npm", - "name": "npm:@inquirer/password", - "data": { - "version": "2.1.22", - "packageName": "@inquirer/password", - "hash": "sha512-5Fxt1L9vh3rAKqjYwqsjU4DZsEvY/2Gll+QkqR4yEpy6wvzLxdSgFhUcxfDAOtO4BEoTreWoznC0phagwLU5Kw==" - } - }, - "npm:@inquirer/prompts": { - "type": "npm", - "name": "npm:@inquirer/prompts", - "data": { - "version": "5.0.7", - "packageName": "@inquirer/prompts", - "hash": "sha512-GFcigCxJTKCH3aECzMIu4FhgLJWnFvMXzpI4CCSoELWFtkOOU2P+goYA61+OKpGrB8fPE7q6n8zAXBSlZRrHjQ==" - } - }, - "npm:@inquirer/rawlist": { - "type": "npm", - "name": "npm:@inquirer/rawlist", - "data": { - "version": "2.2.4", - "packageName": "@inquirer/rawlist", - "hash": "sha512-pb6w9pWrm7EfnYDgQObOurh2d2YH07+eDo3xQBsNAM2GRhliz6wFXGi1thKQ4bN6B0xDd6C3tBsjdr3obsCl3Q==" - } - }, - "npm:@inquirer/select": { - "type": "npm", - "name": "npm:@inquirer/select", - "data": { - "version": "2.4.7", - "packageName": "@inquirer/select", - "hash": "sha512-JH7XqPEkBpNWp3gPCqWqY8ECbyMoFcCZANlL6pV9hf59qK6dGmkOlx1ydyhY+KZ0c5X74+W6Mtp+nm2QX0/MAQ==" - } - }, - "npm:@inquirer/type": { - "type": "npm", - "name": "npm:@inquirer/type", - "data": { - "version": "1.5.2", - "packageName": "@inquirer/type", - "hash": "sha512-w9qFkumYDCNyDZmNQjf/n6qQuvQ4dMC3BJesY4oF+yr0CxR5vxujflAVeIcS6U336uzi9GM0kAfZlLrZ9UTkpA==" - } - }, - "npm:@isaacs/cliui": { - "type": "npm", - "name": "npm:@isaacs/cliui", - "data": { - "version": "8.0.2", - "packageName": "@isaacs/cliui", - "hash": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" - } - }, - "npm:@istanbuljs/load-nyc-config": { - "type": "npm", - "name": "npm:@istanbuljs/load-nyc-config", - "data": { - "version": "1.1.0", - "packageName": "@istanbuljs/load-nyc-config", - "hash": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" - } - }, - "npm:argparse@1.0.10": { - "type": "npm", - "name": "npm:argparse@1.0.10", - "data": { - "version": "1.0.10", - "packageName": "argparse", - "hash": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" - } - }, - "npm:argparse": { - "type": "npm", - "name": "npm:argparse", - "data": { - "version": "2.0.1", - "packageName": "argparse", - "hash": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" - } - }, - "npm:js-yaml@3.14.1": { - "type": "npm", - "name": "npm:js-yaml@3.14.1", - "data": { - "version": "3.14.1", - "packageName": "js-yaml", - "hash": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" - } - }, - "npm:js-yaml": { - "type": "npm", - "name": "npm:js-yaml", - "data": { - "version": "4.1.0", - "packageName": "js-yaml", - "hash": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==" - } - }, - "npm:@istanbuljs/schema": { - "type": "npm", - "name": "npm:@istanbuljs/schema", - "data": { - "version": "0.1.3", - "packageName": "@istanbuljs/schema", - "hash": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" - } - }, - "npm:@jest/console": { - "type": "npm", - "name": "npm:@jest/console", - "data": { - "version": "29.7.0", - "packageName": "@jest/console", - "hash": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==" - } - }, - "npm:color-convert@2.0.1": { - "type": "npm", - "name": "npm:color-convert@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "color-convert", - "hash": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" - } - }, - "npm:color-convert": { - "type": "npm", - "name": "npm:color-convert", - "data": { - "version": "1.9.3", - "packageName": "color-convert", - "hash": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" - } - }, - "npm:color-name@1.1.4": { - "type": "npm", - "name": "npm:color-name@1.1.4", - "data": { - "version": "1.1.4", - "packageName": "color-name", - "hash": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - } - }, - "npm:color-name": { - "type": "npm", - "name": "npm:color-name", - "data": { - "version": "1.1.3", - "packageName": "color-name", - "hash": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - } - }, - "npm:@jest/core": { - "type": "npm", - "name": "npm:@jest/core", - "data": { - "version": "29.7.0", - "packageName": "@jest/core", - "hash": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==" - } - }, - "npm:@jest/environment": { - "type": "npm", - "name": "npm:@jest/environment", - "data": { - "version": "29.7.0", - "packageName": "@jest/environment", - "hash": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==" - } - }, - "npm:@jest/expect": { - "type": "npm", - "name": "npm:@jest/expect", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect", - "hash": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==" - } - }, - "npm:@jest/expect-utils": { - "type": "npm", - "name": "npm:@jest/expect-utils", - "data": { - "version": "29.7.0", - "packageName": "@jest/expect-utils", - "hash": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==" - } - }, - "npm:@jest/fake-timers": { - "type": "npm", - "name": "npm:@jest/fake-timers", - "data": { - "version": "29.7.0", - "packageName": "@jest/fake-timers", - "hash": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==" - } - }, - "npm:@jest/globals": { - "type": "npm", - "name": "npm:@jest/globals", - "data": { - "version": "29.7.0", - "packageName": "@jest/globals", - "hash": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==" - } - }, - "npm:@jest/reporters": { - "type": "npm", - "name": "npm:@jest/reporters", - "data": { - "version": "29.7.0", - "packageName": "@jest/reporters", - "hash": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==" - } - }, - "npm:@jest/schemas": { - "type": "npm", - "name": "npm:@jest/schemas", - "data": { - "version": "29.6.3", - "packageName": "@jest/schemas", - "hash": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==" - } - }, - "npm:@jest/source-map": { - "type": "npm", - "name": "npm:@jest/source-map", - "data": { - "version": "29.6.3", - "packageName": "@jest/source-map", - "hash": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==" - } - }, - "npm:@jest/test-result": { - "type": "npm", - "name": "npm:@jest/test-result", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-result", - "hash": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==" - } - }, - "npm:@jest/test-sequencer": { - "type": "npm", - "name": "npm:@jest/test-sequencer", - "data": { - "version": "29.7.0", - "packageName": "@jest/test-sequencer", - "hash": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==" - } - }, - "npm:@jest/transform": { - "type": "npm", - "name": "npm:@jest/transform", - "data": { - "version": "29.7.0", - "packageName": "@jest/transform", - "hash": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==" - } - }, - "npm:@jest/types": { - "type": "npm", - "name": "npm:@jest/types", - "data": { - "version": "29.6.3", - "packageName": "@jest/types", - "hash": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==" - } - }, - "npm:@jridgewell/gen-mapping": { - "type": "npm", - "name": "npm:@jridgewell/gen-mapping", - "data": { - "version": "0.3.5", - "packageName": "@jridgewell/gen-mapping", - "hash": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==" - } - }, - "npm:@jridgewell/resolve-uri": { - "type": "npm", - "name": "npm:@jridgewell/resolve-uri", - "data": { - "version": "3.1.2", - "packageName": "@jridgewell/resolve-uri", - "hash": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" - } - }, - "npm:@jridgewell/set-array": { - "type": "npm", - "name": "npm:@jridgewell/set-array", - "data": { - "version": "1.2.1", - "packageName": "@jridgewell/set-array", - "hash": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==" - } - }, - "npm:@jridgewell/source-map": { - "type": "npm", - "name": "npm:@jridgewell/source-map", - "data": { - "version": "0.3.6", - "packageName": "@jridgewell/source-map", - "hash": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==" - } - }, - "npm:@jridgewell/sourcemap-codec": { - "type": "npm", - "name": "npm:@jridgewell/sourcemap-codec", - "data": { - "version": "1.4.15", - "packageName": "@jridgewell/sourcemap-codec", - "hash": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - } - }, - "npm:@jsonjoy.com/base64": { - "type": "npm", - "name": "npm:@jsonjoy.com/base64", - "data": { - "version": "1.1.2", - "packageName": "@jsonjoy.com/base64", - "hash": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==" - } - }, - "npm:@jsonjoy.com/json-pack": { - "type": "npm", - "name": "npm:@jsonjoy.com/json-pack", - "data": { - "version": "1.0.4", - "packageName": "@jsonjoy.com/json-pack", - "hash": "sha512-aOcSN4MeAtFROysrbqG137b7gaDDSmVrl5mpo6sT/w+kcXpWnzhMjmY/Fh/sDx26NBxyIE7MB1seqLeCAzy9Sg==" - } - }, - "npm:@jsonjoy.com/util": { - "type": "npm", - "name": "npm:@jsonjoy.com/util", - "data": { - "version": "1.3.0", - "packageName": "@jsonjoy.com/util", - "hash": "sha512-Cebt4Vk7k1xHy87kHY7KSPLT77A7Ev7IfOblyLZhtYEhrdQ6fX4EoLq3xOQ3O/DRMEh2ok5nyC180E+ABS8Wmw==" - } - }, - "npm:@leichtgewicht/ip-codec": { - "type": "npm", - "name": "npm:@leichtgewicht/ip-codec", - "data": { - "version": "2.0.5", - "packageName": "@leichtgewicht/ip-codec", - "hash": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==" - } - }, - "npm:@listr2/prompt-adapter-inquirer": { - "type": "npm", - "name": "npm:@listr2/prompt-adapter-inquirer", - "data": { - "version": "2.0.13", - "packageName": "@listr2/prompt-adapter-inquirer", - "hash": "sha512-nAl6teTt7EWSjttNavAnv3uFR3w3vPP3OTYmHyPNHzKhAj2NoBDHmbS3MGpvvO8KXXPASnHjEGrrKrdKTMKPnQ==" - } - }, - "npm:@lmdb/lmdb-darwin-arm64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-darwin-arm64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-darwin-arm64", - "hash": "sha512-vgTwzNUD3Hy4aqtGhX2+nV/usI0mwy3hDRuTjs8VcK0BLiMVEpNQXgzwlWEgPmA8AAPloUgyOs2nK5clJF5oIg==" - } - }, - "npm:@lmdb/lmdb-darwin-x64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-darwin-x64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-darwin-x64", - "hash": "sha512-qOt0hAhj2ZLY6aEWu85rzt5zcyCAQITMhCMEPNlo1tuYekpVAdkQNiwXxEkCjBYvwTskvXuwXOOUpjuSc+aJnA==" - } - }, - "npm:@lmdb/lmdb-linux-arm": { - "type": "npm", - "name": "npm:@lmdb/lmdb-linux-arm", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-linux-arm", - "hash": "sha512-Ggd/UXpE+alMncbELCXA3OKpDj9bDBR3qVO7WRTxstloDglRAHfZmUJgTkeaNKjFO1JHqS7AKy0jba9XebZB1w==" - } - }, - "npm:@lmdb/lmdb-linux-arm64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-linux-arm64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-linux-arm64", - "hash": "sha512-Qy4cFXFe9h1wAWMsojex8x1ifvw2kqiZv686YiRTdQEzAfc3vJASHFcD/QejHUCx7YHMYdnUoCS45rG2AiGDTQ==" - } - }, - "npm:@lmdb/lmdb-linux-x64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-linux-x64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-linux-x64", - "hash": "sha512-c+noT9IofktxktFllKHFmci8ka2SYGSLN17pj/KSl1hg7mmfAiGp4xxFxEwMLTb+SX95vP1DFiR++1I3WLVxvA==" - } - }, - "npm:@lmdb/lmdb-win32-x64": { - "type": "npm", - "name": "npm:@lmdb/lmdb-win32-x64", - "data": { - "version": "3.0.12", - "packageName": "@lmdb/lmdb-win32-x64", - "hash": "sha512-CO3MFV8gUx16NU/CyyuumAKblESwvoGVA2XhQKZ976OTOxaTbb8F8D3f0iiZ4MYqsN74jIrFuCmXpPnpjbhfOQ==" - } - }, - "npm:@module-federation/bridge-react-webpack-plugin": { - "type": "npm", - "name": "npm:@module-federation/bridge-react-webpack-plugin", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/bridge-react-webpack-plugin", - "hash": "sha512-6G1qTo1HWvRcN5fzE+SZgvgzSPoq5YqNx8hFL8BttJmnd3wj4SUOFiikAsXhdVrzSK+Zuzg6pipkiLH1m+pbtw==" - } - }, - "npm:@module-federation/dts-plugin": { - "type": "npm", - "name": "npm:@module-federation/dts-plugin", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/dts-plugin", - "hash": "sha512-qY1Wbqo0yu9nh6KR8K19t5T4tYtlUbmcNdcaCweISCyAbH99TrhpQkJ89NY0TLtnxQ6uayIYayqAWS7vzyDXVw==" - } - }, - "npm:fs-extra@9.1.0": { - "type": "npm", - "name": "npm:fs-extra@9.1.0", - "data": { - "version": "9.1.0", - "packageName": "fs-extra", - "hash": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" - } - }, - "npm:fs-extra@3.0.1": { - "type": "npm", - "name": "npm:fs-extra@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "fs-extra", - "hash": "sha512-V3Z3WZWVUYd8hoCL5xfXJCaHWYzmtwW5XWYSlLgERi8PWd8bx1kUHUk8L1BT57e49oKnDDD180mjfrHc1yA9rg==" - } - }, - "npm:fs-extra@10.1.0": { - "type": "npm", - "name": "npm:fs-extra@10.1.0", - "data": { - "version": "10.1.0", - "packageName": "fs-extra", - "hash": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" - } - }, - "npm:fs-extra": { - "type": "npm", - "name": "npm:fs-extra", - "data": { - "version": "11.2.0", - "packageName": "fs-extra", - "hash": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==" - } - }, - "npm:fs-extra@8.1.0": { - "type": "npm", - "name": "npm:fs-extra@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "fs-extra", - "hash": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" - } - }, - "npm:@module-federation/enhanced": { - "type": "npm", - "name": "npm:@module-federation/enhanced", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/enhanced", - "hash": "sha512-6fGM/GiKw6LZiBe6DF8Petz6ih/Yyf3q2htLrx+hrWoDWfWEoWlLvoCUsVkY2UgMCLKid7Fm3Auc4w8A4aRjvQ==" - } - }, - "npm:@module-federation/managers": { - "type": "npm", - "name": "npm:@module-federation/managers", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/managers", - "hash": "sha512-S5GXqt2Vrs1+uNXHw7UzZ7m3fs8H3nxNsNGQ0j5+HiT5yA7uRTY1AZJZCGAHzG6XImJ1DzL/SW1acM2Hwj0aAw==" - } - }, - "npm:@module-federation/manifest": { - "type": "npm", - "name": "npm:@module-federation/manifest", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/manifest", - "hash": "sha512-kw4PeAldkOuGCWfCnDzZwPHUx5qv9+WztY5+TEbsgXc5E+/e2NDA6Gg3eT8zUGeexeGdab3f+DuN9ZClZJYVGA==" - } - }, - "npm:@module-federation/rspack": { - "type": "npm", - "name": "npm:@module-federation/rspack", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/rspack", - "hash": "sha512-5Bofm3cY7OOwO2DT5TevITd+HAA03zsY1wwsMb1BP6NkS/ukUtsjuRo2Anua0RkHBEIx+Dv5rpqOn7qSlOm1Fg==" - } - }, - "npm:@module-federation/runtime": { - "type": "npm", - "name": "npm:@module-federation/runtime", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/runtime", - "hash": "sha512-8xmA/+z1zD09F5qU8VnSWLExqTCVWoHOguXsCX79kkqp7i0c+D2YaebWzlQ2kku+DU+0VIzXpQ3BBcumZ3v3wQ==" - } - }, - "npm:@module-federation/runtime-tools": { - "type": "npm", - "name": "npm:@module-federation/runtime-tools", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/runtime-tools", - "hash": "sha512-RSNtyhcNvnTQIdzRUIOGue6WQA/9mL9cY/n0dEd357L/lmLCvfHiZbowlkacckDzyApariUHxzkHrU2Q6kzoew==" - } - }, - "npm:@module-federation/sdk": { - "type": "npm", - "name": "npm:@module-federation/sdk", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/sdk", - "hash": "sha512-eGMnJxdRDgt6dtMv8gkAlzEbTPWVHb3AHUNUG0w56wcbIF0RHC6kmvpHpSQyq4DVGWv3U4g/ZiH5BvBlqEelDQ==" - } - }, - "npm:@module-federation/third-party-dts-extractor": { - "type": "npm", - "name": "npm:@module-federation/third-party-dts-extractor", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/third-party-dts-extractor", - "hash": "sha512-VGXvdsRlljbFUfGeA448CxR7i6fLWJN07ViRuNXYYXc19e4bQVhBHzrf7eCv9ahcf/tA/8YYCS2h11ixbD691A==" - } - }, - "npm:@module-federation/vite": { - "type": "npm", - "name": "npm:@module-federation/vite", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/vite", - "hash": "sha512-9sGbJjUwfOUoDReaE/HcnYcfB4ZmsUIyvmmZnzwTD0WEbJFQBvz1+sEPNBh0hTIuPE5Jqs0D4ueoXTNAU/7DQA==" - } - }, - "npm:@module-federation/webpack-bundler-runtime": { - "type": "npm", - "name": "npm:@module-federation/webpack-bundler-runtime", - "data": { - "version": "0.2.8", - "packageName": "@module-federation/webpack-bundler-runtime", - "hash": "sha512-tiW1kD/V3QNul1/O3Y3lwQv/r4sUU4jvWZykrLvHYt2vuoGe1d4tHnSIFEVEAi9FSpuDwdRK2+NaWBr92gIS7Q==" - } - }, - "npm:@mole-inc/bin-wrapper": { - "type": "npm", - "name": "npm:@mole-inc/bin-wrapper", - "data": { - "version": "8.0.1", - "packageName": "@mole-inc/bin-wrapper", - "hash": "sha512-sTGoeZnjI8N4KS+sW2AN95gDBErhAguvkw/tWdCjeM8bvxpz5lqrnd0vOJABA1A+Ic3zED7PYoLP/RANLgVotA==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-darwin-arm64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-darwin-arm64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-darwin-arm64", - "hash": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-darwin-x64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-darwin-x64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-darwin-x64", - "hash": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-linux-arm": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-linux-arm", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-linux-arm", - "hash": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-linux-arm64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-linux-arm64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-linux-arm64", - "hash": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-linux-x64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-linux-x64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-linux-x64", - "hash": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==" - } - }, - "npm:@msgpackr-extract/msgpackr-extract-win32-x64": { - "type": "npm", - "name": "npm:@msgpackr-extract/msgpackr-extract-win32-x64", - "data": { - "version": "3.0.3", - "packageName": "@msgpackr-extract/msgpackr-extract-win32-x64", - "hash": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==" - } - }, - "npm:@napi-rs/wasm-runtime": { - "type": "npm", - "name": "npm:@napi-rs/wasm-runtime", - "data": { - "version": "0.2.4", - "packageName": "@napi-rs/wasm-runtime", - "hash": "sha512-9zESzOO5aDByvhIAsOy9TbpZ0Ur2AJbUI7UT73kcUTS2mxAMHOBaa1st/jAymNoCtvrit99kkzT1FZuXVcgfIQ==" - } - }, - "npm:@ngtools/webpack": { - "type": "npm", - "name": "npm:@ngtools/webpack", - "data": { - "version": "18.1.3", - "packageName": "@ngtools/webpack", - "hash": "sha512-VmqOO8CcXKL06anNYlL0OkrqIuBNZQu5n0YVP4z8oneJhDBqwK2++dK0WpcNyIFcg3HsQ7w3BuqUWJ4iPiWxEQ==" - } - }, - "npm:@nodelib/fs.scandir": { - "type": "npm", - "name": "npm:@nodelib/fs.scandir", - "data": { - "version": "2.1.5", - "packageName": "@nodelib/fs.scandir", - "hash": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" - } - }, - "npm:@nodelib/fs.stat": { - "type": "npm", - "name": "npm:@nodelib/fs.stat", - "data": { - "version": "2.0.5", - "packageName": "@nodelib/fs.stat", - "hash": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" - } - }, - "npm:@nodelib/fs.walk": { - "type": "npm", - "name": "npm:@nodelib/fs.walk", - "data": { - "version": "1.2.8", - "packageName": "@nodelib/fs.walk", - "hash": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" - } - }, - "npm:@npmcli/agent": { - "type": "npm", - "name": "npm:@npmcli/agent", - "data": { - "version": "2.2.2", - "packageName": "@npmcli/agent", - "hash": "sha512-OrcNPXdpSl9UX7qPVRWbmWMCSXrcDa2M9DvrbOTj7ao1S4PlqVFYv9/yLKMkrJKZ/V5A/kDBC690or307i26Og==" - } - }, - "npm:http-proxy-agent@7.0.2": { - "type": "npm", - "name": "npm:http-proxy-agent@7.0.2", - "data": { - "version": "7.0.2", - "packageName": "http-proxy-agent", - "hash": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==" - } - }, - "npm:http-proxy-agent": { - "type": "npm", - "name": "npm:http-proxy-agent", - "data": { - "version": "5.0.0", - "packageName": "http-proxy-agent", - "hash": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" - } - }, - "npm:lru-cache@10.2.2": { - "type": "npm", - "name": "npm:lru-cache@10.2.2", - "data": { - "version": "10.2.2", - "packageName": "lru-cache", - "hash": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==" - } - }, - "npm:lru-cache@6.0.0": { - "type": "npm", - "name": "npm:lru-cache@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "lru-cache", - "hash": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" - } - }, - "npm:lru-cache@7.18.3": { - "type": "npm", - "name": "npm:lru-cache@7.18.3", - "data": { - "version": "7.18.3", - "packageName": "lru-cache", - "hash": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" - } - }, - "npm:lru-cache@10.2.0": { - "type": "npm", - "name": "npm:lru-cache@10.2.0", - "data": { - "version": "10.2.0", - "packageName": "lru-cache", - "hash": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==" - } - }, - "npm:lru-cache@4.1.5": { - "type": "npm", - "name": "npm:lru-cache@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "lru-cache", - "hash": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==" - } - }, - "npm:lru-cache": { - "type": "npm", - "name": "npm:lru-cache", - "data": { - "version": "5.1.1", - "packageName": "lru-cache", - "hash": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" - } - }, - "npm:@npmcli/fs": { - "type": "npm", - "name": "npm:@npmcli/fs", - "data": { - "version": "3.1.0", - "packageName": "@npmcli/fs", - "hash": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==" - } - }, - "npm:@npmcli/git": { - "type": "npm", - "name": "npm:@npmcli/git", - "data": { - "version": "5.0.7", - "packageName": "@npmcli/git", - "hash": "sha512-WaOVvto604d5IpdCRV2KjQu8PzkfE96d50CQGKgywXh2GxXmDeUO5EWcBC4V57uFyrNqx83+MewuJh3WTR3xPA==" - } - }, - "npm:isexe@3.1.1": { - "type": "npm", - "name": "npm:isexe@3.1.1", - "data": { - "version": "3.1.1", - "packageName": "isexe", - "hash": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==" - } - }, - "npm:isexe": { - "type": "npm", - "name": "npm:isexe", - "data": { - "version": "2.0.0", - "packageName": "isexe", - "hash": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - } - }, - "npm:which@4.0.0": { - "type": "npm", - "name": "npm:which@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "which", - "hash": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==" - } - }, - "npm:which@1.3.1": { - "type": "npm", - "name": "npm:which@1.3.1", - "data": { - "version": "1.3.1", - "packageName": "which", - "hash": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" - } - }, - "npm:which@1.2.14": { - "type": "npm", - "name": "npm:which@1.2.14", - "data": { - "version": "1.2.14", - "packageName": "which", - "hash": "sha512-16uPglFkRPzgiUXYMi1Jf8Z5EzN1iB4V0ZtMXcHZnwsBtQhhHeCqoWw7tsUY42hJGNDWtUsVLTjakIa5BgAxCw==" - } - }, - "npm:which": { - "type": "npm", - "name": "npm:which", - "data": { - "version": "2.0.2", - "packageName": "which", - "hash": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" - } - }, - "npm:@npmcli/installed-package-contents": { - "type": "npm", - "name": "npm:@npmcli/installed-package-contents", - "data": { - "version": "2.1.0", - "packageName": "@npmcli/installed-package-contents", - "hash": "sha512-c8UuGLeZpm69BryRykLuKRyKFZYJsZSCT4aVY5ds4omyZqJ172ApzgfKJ5eV/r3HgLdUYgFVe54KSFVjKoe27w==" - } - }, - "npm:@npmcli/node-gyp": { - "type": "npm", - "name": "npm:@npmcli/node-gyp", - "data": { - "version": "3.0.0", - "packageName": "@npmcli/node-gyp", - "hash": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==" - } - }, - "npm:@npmcli/package-json": { - "type": "npm", - "name": "npm:@npmcli/package-json", - "data": { - "version": "5.1.1", - "packageName": "@npmcli/package-json", - "hash": "sha512-uTq5j/UqUzbOaOxVy+osfOhpqOiLfUZ0Ut33UbcyyAPJbZcJsf4Mrsyb8r58FoIFlofw0iOFsuCA/oDK14VDJQ==" - } - }, - "npm:glob@10.4.1": { - "type": "npm", - "name": "npm:glob@10.4.1", - "data": { - "version": "10.4.1", - "packageName": "glob", - "hash": "sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==" - } - }, - "npm:glob@8.1.0": { - "type": "npm", - "name": "npm:glob@8.1.0", - "data": { - "version": "8.1.0", - "packageName": "glob", - "hash": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" - } - }, - "npm:glob@10.3.10": { - "type": "npm", - "name": "npm:glob@10.3.10", - "data": { - "version": "10.3.10", - "packageName": "glob", - "hash": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==" - } - }, - "npm:glob": { - "type": "npm", - "name": "npm:glob", - "data": { - "version": "7.2.3", - "packageName": "glob", - "hash": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" - } - }, - "npm:glob@6.0.4": { - "type": "npm", - "name": "npm:glob@6.0.4", - "data": { - "version": "6.0.4", - "packageName": "glob", - "hash": "sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==" - } - }, - "npm:glob@10.4.5": { - "type": "npm", - "name": "npm:glob@10.4.5", - "data": { - "version": "10.4.5", - "packageName": "glob", - "hash": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==" - } - }, - "npm:jackspeak@3.1.2": { - "type": "npm", - "name": "npm:jackspeak@3.1.2", - "data": { - "version": "3.1.2", - "packageName": "jackspeak", - "hash": "sha512-kWmLKn2tRtfYMF/BakihVVRzBKOxz4gJMiL2Rj91WnAB5TPZumSH99R/Yf1qE1u4uRimvCSJfm6hnxohXeEXjQ==" - } - }, - "npm:jackspeak": { - "type": "npm", - "name": "npm:jackspeak", - "data": { - "version": "2.3.6", - "packageName": "jackspeak", - "hash": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==" - } - }, - "npm:jackspeak@3.4.3": { - "type": "npm", - "name": "npm:jackspeak@3.4.3", - "data": { - "version": "3.4.3", - "packageName": "jackspeak", - "hash": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" - } - }, - "npm:@npmcli/promise-spawn": { - "type": "npm", - "name": "npm:@npmcli/promise-spawn", - "data": { - "version": "7.0.2", - "packageName": "@npmcli/promise-spawn", - "hash": "sha512-xhfYPXoV5Dy4UkY0D+v2KkwvnDfiA/8Mt3sWCGI/hM03NsYIH8ZaG6QzS9x7pje5vHZBZJ2v6VRFVTWACnqcmQ==" - } - }, - "npm:@npmcli/redact": { - "type": "npm", - "name": "npm:@npmcli/redact", - "data": { - "version": "2.0.0", - "packageName": "@npmcli/redact", - "hash": "sha512-SEjCPAVHWYUIQR+Yn03kJmrJjZDtJLYpj300m3HV9OTRZNpC5YpbMsM3eTkECyT4aWj8lDr9WeY6TWefpubtYQ==" - } - }, - "npm:@npmcli/run-script": { - "type": "npm", - "name": "npm:@npmcli/run-script", - "data": { - "version": "8.1.0", - "packageName": "@npmcli/run-script", - "hash": "sha512-y7efHHwghQfk28G2z3tlZ67pLG0XdfYbcVG26r7YIXALRsrVQcTq4/tdenSmdOrEsNahIYA/eh8aEVROWGFUDg==" - } - }, - "npm:@nrwl/angular": { - "type": "npm", - "name": "npm:@nrwl/angular", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/angular", - "hash": "sha512-ilS6ZjsEOToeTiKHixd9+wLvslUZ1cdvNIgvsUZ3VHK4OmGxTzGJXaV+1+CSgYDpSp4+MC/Di8EfzUteCn9mFw==" - } - }, - "npm:@nrwl/cypress": { - "type": "npm", - "name": "npm:@nrwl/cypress", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/cypress", - "hash": "sha512-yVMSVjDcOdqiiJjHaHme/3FtyFgT4mK7+GZExoJzGevHDrReeN22a2+3W7Rr/cEi/qTDdnNfODn5QdSpWfbuLQ==" - } - }, - "npm:@nrwl/devkit": { - "type": "npm", - "name": "npm:@nrwl/devkit", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/devkit", - "hash": "sha512-H7LGlwAktfL2GR4scwCfehuppmzcHJJt4C2PpiGEsfA74MKBw2/VGX15b29Mf36XbGS+Bx9vjvooZEt5HPCusw==" - } - }, - "npm:@nrwl/eslint-plugin-nx": { - "type": "npm", - "name": "npm:@nrwl/eslint-plugin-nx", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/eslint-plugin-nx", - "hash": "sha512-pHIJHXOVJRC+wBI9zK0RnwKAh7NC9TKCdIm5KsYNFHTLswUxHnxzmP86hKTVcZO7o10NeYzBWD7QAQvqYgIQoA==" - } - }, - "npm:@nrwl/jest": { - "type": "npm", - "name": "npm:@nrwl/jest", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/jest", - "hash": "sha512-/redyU+er4f0xjLgWttdyOZw0yOozGzwDuUWYu0vR9SCmKXyhQf3kUHw6yR3/qOLiN32VbzAmiq67NvGhoRgFw==" - } - }, - "npm:@nrwl/js": { - "type": "npm", - "name": "npm:@nrwl/js", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/js", - "hash": "sha512-mfTBvon1v/Ts1Crvv25raXGxpQe3cgPTNCP+D5SG6Vpe/vbLOYiBi90UhHIKXKZOQ73RRx+Wojgn+Zv5pDo13A==" - } - }, - "npm:@nrwl/node": { - "type": "npm", - "name": "npm:@nrwl/node", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/node", - "hash": "sha512-eiQqeHNtR40cdD0WX33ZUwom3Malt7C7zq+iU5DTLlbeC6ciZGz9pYkeNZ6JJZOEPEUGM5O+7gtWUb+Ig7ZyMQ==" - } - }, - "npm:@nrwl/nx-plugin": { - "type": "npm", - "name": "npm:@nrwl/nx-plugin", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/nx-plugin", - "hash": "sha512-GGEmE2iEgYQEIYroJQO5ICwhFAaKmdRunZBeSEQdkpG2QSKEGsg/sl7VG+QgukO5mLk0VULKF7niRdr2foVdiw==" - } - }, - "npm:@nrwl/tao": { - "type": "npm", - "name": "npm:@nrwl/tao", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/tao", - "hash": "sha512-p1bxEjW32bIHAiTp+PVdJpa2V9En2s9FigepHXyvmT2Aipisz96CKiDjexhPTjOZHUKtqA9FgmOIuVl3sBME3g==" - } - }, - "npm:@nrwl/web": { - "type": "npm", - "name": "npm:@nrwl/web", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/web", - "hash": "sha512-2TJB0zSBjDtl2AaZToTvSLej4ed5YO5nJ9iFsv764WDLI0D/WsciUiZHNdXSIhU0lf2yrs7CmIYZFWAdnXzxKA==" - } - }, - "npm:@nrwl/webpack": { - "type": "npm", - "name": "npm:@nrwl/webpack", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/webpack", - "hash": "sha512-2tHi4QKDAjs9f7lzoELmzh5D1aT+XOn6PTK47V4n+Y878HgRQuv9NMRd7WhH5nAAlOKQYonsTc9e4doEJ6T9aQ==" - } - }, - "npm:@nrwl/workspace": { - "type": "npm", - "name": "npm:@nrwl/workspace", - "data": { - "version": "19.5.6", - "packageName": "@nrwl/workspace", - "hash": "sha512-k0Pria840szB3dIDCXOMbD4jbnaLCeGRYthE5duG5nPxTCbeMMu7pU1t0sv9IgpQZ/JrHeWliknWgaTlIguPug==" - } - }, - "npm:@nx/angular": { - "type": "npm", - "name": "npm:@nx/angular", - "data": { - "version": "19.5.6", - "packageName": "@nx/angular", - "hash": "sha512-86fZmTx7Omo7FJuRyuNvEiUHUSuwEaGFeh/UkWt3Crf5C0pAlPYzpcm3B7B7e0RwGiWII9Mc9ZLwnPTv4jgZdA==" - } - }, - "npm:@nx/cypress": { - "type": "npm", - "name": "npm:@nx/cypress", - "data": { - "version": "19.5.6", - "packageName": "@nx/cypress", - "hash": "sha512-3yUZ0AR5e9Ea7vk/6Zjje1QHyPXGycdnWOzOZuOJ6Wloeqj/EWWGoIEsSt+XAfzCiK/oWnlXpsbkrGJZYYgbdQ==" - } - }, - "npm:@nx/devkit": { - "type": "npm", - "name": "npm:@nx/devkit", - "data": { - "version": "19.5.6", - "packageName": "@nx/devkit", - "hash": "sha512-zSToXLkhbAOQmqVTgUNHdLO0uOZz/iGwqEK4tuAhU5hhqTcpN1TZUI9BlINvtFJBLvbNroGrnIh0gTq9CPzVHw==" - } - }, - "npm:@nx/eslint": { - "type": "npm", - "name": "npm:@nx/eslint", - "data": { - "version": "19.5.6", - "packageName": "@nx/eslint", - "hash": "sha512-WLUo4f+ndMVWZ5QqqZiZNCmbLCqEqPBopvGWJg6uUJyrm5HiFsks+1nRp7BxFzj0SwmdmSRzQFvMgorw7lAgCQ==" - } - }, - "npm:@nx/eslint-plugin": { - "type": "npm", - "name": "npm:@nx/eslint-plugin", - "data": { - "version": "19.5.6", - "packageName": "@nx/eslint-plugin", - "hash": "sha512-5yZJbAoS35blBvY1riAxzemBGJJJW36FVm304ccPyJXvXA7Wa7yMbtwuVagJ9E7w4fodmCcWOAvrCDUTSakBug==" - } - }, - "npm:typescript@5.4.5": { - "type": "npm", - "name": "npm:typescript@5.4.5", - "data": { - "version": "5.4.5", - "packageName": "typescript", - "hash": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==" - } - }, - "npm:typescript": { - "type": "npm", - "name": "npm:typescript", - "data": { - "version": "5.5.4", - "packageName": "typescript", - "hash": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==" - } - }, - "npm:@nx/jest": { - "type": "npm", - "name": "npm:@nx/jest", - "data": { - "version": "19.5.6", - "packageName": "@nx/jest", - "hash": "sha512-UkGEl7iAt3MEz+BB4Xp3u641LrMeOytTcbljjyYtR84YtJaYgc8CFmornnw8KVqfavQS+v/nrv8lMbbYQHkWpQ==" - } - }, - "npm:@nx/js": { - "type": "npm", - "name": "npm:@nx/js", - "data": { - "version": "19.5.6", - "packageName": "@nx/js", - "hash": "sha512-NNf6Zh4Z8k3dmkXkCUYrReH9ZpdAhvUQjwrWUHtmc5MnWTsQL12a01MwbMi4ReMzDLDjffDXjJFxYmbNYKaRzw==" - } - }, - "npm:fast-glob@3.2.7": { - "type": "npm", - "name": "npm:fast-glob@3.2.7", - "data": { - "version": "3.2.7", - "packageName": "fast-glob", - "hash": "sha512-rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==" - } - }, - "npm:fast-glob": { - "type": "npm", - "name": "npm:fast-glob", - "data": { - "version": "3.3.2", - "packageName": "fast-glob", - "hash": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==" - } - }, - "npm:ora@5.3.0": { - "type": "npm", - "name": "npm:ora@5.3.0", - "data": { - "version": "5.3.0", - "packageName": "ora", - "hash": "sha512-zAKMgGXUim0Jyd6CXK9lraBnD3H5yPGBPPOkC23a2BG6hsm4Zu6OQSjQuEtV0BHDf4aKHcUFvJiGRrFuW3MG8g==" - } - }, - "npm:ora": { - "type": "npm", - "name": "npm:ora", - "data": { - "version": "5.4.1", - "packageName": "ora", - "hash": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" - } - }, - "npm:source-map@0.6.1": { - "type": "npm", - "name": "npm:source-map@0.6.1", - "data": { - "version": "0.6.1", - "packageName": "source-map", - "hash": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - } - }, - "npm:source-map": { - "type": "npm", - "name": "npm:source-map", - "data": { - "version": "0.7.4", - "packageName": "source-map", - "hash": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==" - } - }, - "npm:source-map-support@0.5.19": { - "type": "npm", - "name": "npm:source-map-support@0.5.19", - "data": { - "version": "0.5.19", - "packageName": "source-map-support", - "hash": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" - } - }, - "npm:source-map-support@0.5.13": { - "type": "npm", - "name": "npm:source-map-support@0.5.13", - "data": { - "version": "0.5.13", - "packageName": "source-map-support", - "hash": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==" - } - }, - "npm:source-map-support": { - "type": "npm", - "name": "npm:source-map-support", - "data": { - "version": "0.5.21", - "packageName": "source-map-support", - "hash": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" - } - }, - "npm:@nx/linter": { - "type": "npm", - "name": "npm:@nx/linter", - "data": { - "version": "19.5.6", - "packageName": "@nx/linter", - "hash": "sha512-OS0DZ1TDTvWaZe7ijLT6jkQZCCBg4OseFmP2Y6bqE/oRdyoRv95gCT2MGmyJQXkLoX5j9DMfc4nYXS0VHFYqdg==" - } - }, - "npm:@nx/node": { - "type": "npm", - "name": "npm:@nx/node", - "data": { - "version": "19.5.6", - "packageName": "@nx/node", - "hash": "sha512-nWWoZCdomYOo0JmJMiP1UWlAnCdrvqLxXgWS6MNbQTT0rhJSn6em5S9N4TuHA7+aCDInvzNEL8YcVTm1xCbtug==" - } - }, - "npm:@nx/nx-darwin-arm64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-arm64", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-darwin-arm64", - "hash": "sha512-evEpUq571PQkhaLBR7ul5iqE2l97QS7Q37/rxoBuwJzyQ/QKHfNu5t032bR3KLyEOrv7golT10jMeoQlNeF7eQ==" - } - }, - "npm:@nx/nx-darwin-x64": { - "type": "npm", - "name": "npm:@nx/nx-darwin-x64", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-darwin-x64", - "hash": "sha512-o1tu0dOW7TZ80VN9N11FQL/3gHd1+t6NqtEmRClN0/sAh2MZyiBdbXv7UeN5HoKE7HAusiVFIxK3c1lxOvFtsQ==" - } - }, - "npm:@nx/nx-freebsd-x64": { - "type": "npm", - "name": "npm:@nx/nx-freebsd-x64", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-freebsd-x64", - "hash": "sha512-IUL0ROGpLUol9cuVJ7VeUvaB/ptxg7DOjMef1+LJeOgxl/SFNa0bj0kKpA/AQwujz6cLI7Ei7xLTVQOboNh1DA==" - } - }, - "npm:@nx/nx-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm-gnueabihf", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-arm-gnueabihf", - "hash": "sha512-TGf1+cpWg5QiPEGW5kgxa1fVNyASMuqu+LvQ9CKhNYNz5EPD15yr/k6C0tOjgSXro3wi8TikTeG0Ln2hpmn6pw==" - } - }, - "npm:@nx/nx-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-gnu", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-arm64-gnu", - "hash": "sha512-4hZI5NmnBEAzr3NV/BtlPjbSVffLWGGCJ5tB/JB/NpW/vMtzOPCZ4RvsHuJMPprqHcXOdUnBgZFEcLbEMUXz0A==" - } - }, - "npm:@nx/nx-linux-arm64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-arm64-musl", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-arm64-musl", - "hash": "sha512-n0oIBblMN+nlcBUbrFUkRSyzKZVR+G1lzdZ3PuHVwLC664hkbijEBAdF2E321yRfv5ohQVY0UIYDZVFN2XhFUg==" - } - }, - "npm:@nx/nx-linux-x64-gnu": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-gnu", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-x64-gnu", - "hash": "sha512-IuoNo1bDHyJEeHom/n2m4+AA+UQ+Rlryvt9+bTdADclSFjmBLYCgbJwQRy7q9+vQk2mpQm0pQJv4d3XKCpDH+g==" - } - }, - "npm:@nx/nx-linux-x64-musl": { - "type": "npm", - "name": "npm:@nx/nx-linux-x64-musl", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-linux-x64-musl", - "hash": "sha512-FXtB8m/CSRkXLtDOAGfImO9OCUDIwYBssnvCVqX6PyPTBaVWo/GvX1O9WRbXSqSVIaJJTPn1aY/p6vptlGbDFw==" - } - }, - "npm:@nx/nx-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-arm64-msvc", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-win32-arm64-msvc", - "hash": "sha512-aIDU84rjvxoqyUDIdN4VwS91Yec8bAtXOxjOFlF2acY2tXh0RjzmM+mkEP44nVAzFy0V1/cjzBKb6643FsEqdA==" - } - }, - "npm:@nx/nx-win32-x64-msvc": { - "type": "npm", - "name": "npm:@nx/nx-win32-x64-msvc", - "data": { - "version": "19.5.6", - "packageName": "@nx/nx-win32-x64-msvc", - "hash": "sha512-zWB/2TjhNYKHbuPh++5hYitno3EpSFXrPND0I0VLec27WW7voRY9XQFFznA3omForU4FfmVhITcKCqzIb3EtpA==" - } - }, - "npm:@nx/plugin": { - "type": "npm", - "name": "npm:@nx/plugin", - "data": { - "version": "19.5.6", - "packageName": "@nx/plugin", - "hash": "sha512-2es5qj8/YarRyctkcRhFdmwRgyHJMfGd/WBOaAsA88c8gqwB9nwRQcSAUmuHkyr4jVwo7xSLCZT4WvRRiZv1Pg==" - } - }, - "npm:@nx/web": { - "type": "npm", - "name": "npm:@nx/web", - "data": { - "version": "19.5.6", - "packageName": "@nx/web", - "hash": "sha512-mCw2KpVj8FPieRFn98bMJxF4s1RCMTciC78NKFiC0Dmg0KFmhFUw6geWe8anhhjbTxqFvLENMJQIn9K4dlaL1A==" - } - }, - "npm:@nx/webpack": { - "type": "npm", - "name": "npm:@nx/webpack", - "data": { - "version": "19.5.6", - "packageName": "@nx/webpack", - "hash": "sha512-7xMYx0MIxf4kuhiIyF7QEee7AgK1wzroO2wl+9fU8sjKhvDgW9k8huMCNkOcScptB3SP4CiM9b7S5c/pwr75hQ==" - } - }, - "npm:@types/retry@0.12.0": { - "type": "npm", - "name": "npm:@types/retry@0.12.0", - "data": { - "version": "0.12.0", - "packageName": "@types/retry", - "hash": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==" - } - }, - "npm:@types/retry": { - "type": "npm", - "name": "npm:@types/retry", - "data": { - "version": "0.12.2", - "packageName": "@types/retry", - "hash": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==" - } - }, - "npm:array-union@3.0.1": { - "type": "npm", - "name": "npm:array-union@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "array-union", - "hash": "sha512-1OvF9IbWwaeiM9VhzYXVQacMibxpXOMYVNIvMtKRyX9SImBXpKcFr8XvFDeEslCyuH/t6KRt7HEO94AlP8Iatw==" - } - }, - "npm:array-union": { - "type": "npm", - "name": "npm:array-union", - "data": { - "version": "2.1.0", - "packageName": "array-union", - "hash": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" - } - }, - "npm:body-parser@1.20.2": { - "type": "npm", - "name": "npm:body-parser@1.20.2", - "data": { - "version": "1.20.2", - "packageName": "body-parser", - "hash": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==" - } - }, - "npm:body-parser": { - "type": "npm", - "name": "npm:body-parser", - "data": { - "version": "1.20.1", - "packageName": "body-parser", - "hash": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==" - } - }, - "npm:connect-history-api-fallback@2.0.0": { - "type": "npm", - "name": "npm:connect-history-api-fallback@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==" - } - }, - "npm:connect-history-api-fallback": { - "type": "npm", - "name": "npm:connect-history-api-fallback", - "data": { - "version": "1.6.0", - "packageName": "connect-history-api-fallback", - "hash": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" - } - }, - "npm:cookie@0.6.0": { - "type": "npm", - "name": "npm:cookie@0.6.0", - "data": { - "version": "0.6.0", - "packageName": "cookie", - "hash": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==" - } - }, - "npm:cookie": { - "type": "npm", - "name": "npm:cookie", - "data": { - "version": "0.4.2", - "packageName": "cookie", - "hash": "sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==" - } - }, - "npm:cookie@0.5.0": { - "type": "npm", - "name": "npm:cookie@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "cookie", - "hash": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==" - } - }, - "npm:copy-webpack-plugin@10.2.4": { - "type": "npm", - "name": "npm:copy-webpack-plugin@10.2.4", - "data": { - "version": "10.2.4", - "packageName": "copy-webpack-plugin", - "hash": "sha512-xFVltahqlsRcyyJqQbDY6EYTtyQZF9rf+JPjwHObLdPFMEISqkFkr7mFoVOC6BfYS/dNThyoQKvziugm+OnwBg==" - } - }, - "npm:copy-webpack-plugin": { - "type": "npm", - "name": "npm:copy-webpack-plugin", - "data": { - "version": "12.0.2", - "packageName": "copy-webpack-plugin", - "hash": "sha512-SNwdBeHyII+rWvee/bTnAYyO8vfVdcSTud4EIb6jcZ8inLeWucJE0DnxXQBjlQ5zlteuuvooGQy3LIyGxhvlOA==" - } - }, - "npm:cosmiconfig@7.1.0": { - "type": "npm", - "name": "npm:cosmiconfig@7.1.0", - "data": { - "version": "7.1.0", - "packageName": "cosmiconfig", - "hash": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==" - } - }, - "npm:cosmiconfig": { - "type": "npm", - "name": "npm:cosmiconfig", - "data": { - "version": "6.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" - } - }, - "npm:cosmiconfig@9.0.0": { - "type": "npm", - "name": "npm:cosmiconfig@9.0.0", - "data": { - "version": "9.0.0", - "packageName": "cosmiconfig", - "hash": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==" - } - }, - "npm:css-loader@6.11.0": { - "type": "npm", - "name": "npm:css-loader@6.11.0", - "data": { - "version": "6.11.0", - "packageName": "css-loader", - "hash": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==" - } - }, - "npm:css-loader": { - "type": "npm", - "name": "npm:css-loader", - "data": { - "version": "7.1.2", - "packageName": "css-loader", - "hash": "sha512-6WvYYn7l/XEGN8Xu2vWFt9nVzrCn39vKyTEFf/ExEyoksJjjSZV/0/35XPlMbpnr6VGhZIUg5yJrL8tGfes/FA==" - } - }, - "npm:destroy@1.2.0": { - "type": "npm", - "name": "npm:destroy@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "destroy", - "hash": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==" - } - }, - "npm:destroy": { - "type": "npm", - "name": "npm:destroy", - "data": { - "version": "1.0.4", - "packageName": "destroy", - "hash": "sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==" - } - }, - "npm:express@4.19.2": { - "type": "npm", - "name": "npm:express@4.19.2", - "data": { - "version": "4.19.2", - "packageName": "express", - "hash": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==" - } - }, - "npm:express": { - "type": "npm", - "name": "npm:express", - "data": { - "version": "4.18.2", - "packageName": "express", - "hash": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==" - } - }, - "npm:finalhandler@1.2.0": { - "type": "npm", - "name": "npm:finalhandler@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "finalhandler", - "hash": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==" - } - }, - "npm:finalhandler": { - "type": "npm", - "name": "npm:finalhandler", - "data": { - "version": "1.1.0", - "packageName": "finalhandler", - "hash": "sha512-ejnvM9ZXYzp6PUPUyQBMBf0Co5VX2gr5H2VQe2Ui2jWXNlxv+PYZo8wpAymJNJdLsG1R4p+M4aynF8KuoUEwRw==" - } - }, - "npm:glob-parent@6.0.2": { - "type": "npm", - "name": "npm:glob-parent@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "glob-parent", - "hash": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" - } - }, - "npm:glob-parent": { - "type": "npm", - "name": "npm:glob-parent", - "data": { - "version": "5.1.2", - "packageName": "glob-parent", - "hash": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" - } - }, - "npm:globby@12.2.0": { - "type": "npm", - "name": "npm:globby@12.2.0", - "data": { - "version": "12.2.0", - "packageName": "globby", - "hash": "sha512-wiSuFQLZ+urS9x2gGPl1H5drc5twabmm4m2gTR27XDFyjUHJUNsS8o/2aKyIF6IoBaR630atdher0XJ5g6OMmA==" - } - }, - "npm:globby@14.0.2": { - "type": "npm", - "name": "npm:globby@14.0.2", - "data": { - "version": "14.0.2", - "packageName": "globby", - "hash": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==" - } - }, - "npm:globby": { - "type": "npm", - "name": "npm:globby", - "data": { - "version": "11.1.0", - "packageName": "globby", - "hash": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==" - } - }, - "npm:http-proxy-middleware@2.0.6": { - "type": "npm", - "name": "npm:http-proxy-middleware@2.0.6", - "data": { - "version": "2.0.6", - "packageName": "http-proxy-middleware", - "hash": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==" - } - }, - "npm:http-proxy-middleware": { - "type": "npm", - "name": "npm:http-proxy-middleware", - "data": { - "version": "3.0.0", - "packageName": "http-proxy-middleware", - "hash": "sha512-36AV1fIaI2cWRzHo+rbcxhe3M3jUDCNzc4D5zRl57sEWRAxdXYtw7FSQKYY6PDKssiAKjLYypbssHk+xs/kMXw==" - } - }, - "npm:ipaddr.js@2.2.0": { - "type": "npm", - "name": "npm:ipaddr.js@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "ipaddr.js", - "hash": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==" - } - }, - "npm:ipaddr.js": { - "type": "npm", - "name": "npm:ipaddr.js", - "data": { - "version": "1.9.1", - "packageName": "ipaddr.js", - "hash": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" - } - }, - "npm:less@4.1.3": { - "type": "npm", - "name": "npm:less@4.1.3", - "data": { - "version": "4.1.3", - "packageName": "less", - "hash": "sha512-w16Xk/Ta9Hhyei0Gpz9m7VS8F28nieJaL/VyShID7cYvP6IL5oHeL6p4TXSDJqZE/lNv0oJ2pGVjJsRkfwm5FA==" - } - }, - "npm:less": { - "type": "npm", - "name": "npm:less", - "data": { - "version": "4.2.0", - "packageName": "less", - "hash": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==" - } - }, - "npm:less-loader@11.1.0": { - "type": "npm", - "name": "npm:less-loader@11.1.0", - "data": { - "version": "11.1.0", - "packageName": "less-loader", - "hash": "sha512-C+uDBV7kS7W5fJlUjq5mPBeBVhYpTIm5gB09APT9o3n/ILeaXVsiSFTbZpTJCJwQ/Crczfn3DmfQFwxYusWFug==" - } - }, - "npm:less-loader": { - "type": "npm", - "name": "npm:less-loader", - "data": { - "version": "12.2.0", - "packageName": "less-loader", - "hash": "sha512-MYUxjSQSBUQmowc0l5nPieOYwMzGPUaTzB6inNW/bdPEG9zOL3eAAD1Qw5ZxSPk7we5dMojHwNODYMV1hq4EVg==" - } - }, - "npm:loader-utils@2.0.4": { - "type": "npm", - "name": "npm:loader-utils@2.0.4", - "data": { - "version": "2.0.4", - "packageName": "loader-utils", - "hash": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==" - } - }, - "npm:loader-utils": { - "type": "npm", - "name": "npm:loader-utils", - "data": { - "version": "3.3.1", - "packageName": "loader-utils", - "hash": "sha512-FMJTLMXfCLMLfJxcX9PFqX5qD88Z5MRGaZCVzfuqeZSPsyiBzs+pahDQjbIWz2QIzPZz0NX9Zy4FX3lmK6YHIg==" - } - }, - "npm:make-dir@2.1.0": { - "type": "npm", - "name": "npm:make-dir@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "make-dir", - "hash": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" - } - }, - "npm:make-dir@4.0.0": { - "type": "npm", - "name": "npm:make-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "make-dir", - "hash": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==" - } - }, - "npm:make-dir": { - "type": "npm", - "name": "npm:make-dir", - "data": { - "version": "3.1.0", - "packageName": "make-dir", - "hash": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" - } - }, - "npm:mini-css-extract-plugin@2.4.7": { - "type": "npm", - "name": "npm:mini-css-extract-plugin@2.4.7", - "data": { - "version": "2.4.7", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-euWmddf0sk9Nv1O0gfeeUAvAkoSlWncNLF77C0TP2+WoPvy8mAHKOzMajcCz2dzvyt3CNgxb1obIEVFIRxaipg==" - } - }, - "npm:mini-css-extract-plugin": { - "type": "npm", - "name": "npm:mini-css-extract-plugin", - "data": { - "version": "2.9.0", - "packageName": "mini-css-extract-plugin", - "hash": "sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==" - } - }, - "npm:ms@2.0.0": { - "type": "npm", - "name": "npm:ms@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ms", - "hash": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - } - }, - "npm:ms@2.1.3": { - "type": "npm", - "name": "npm:ms@2.1.3", - "data": { - "version": "2.1.3", - "packageName": "ms", - "hash": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - } - }, - "npm:ms": { - "type": "npm", - "name": "npm:ms", - "data": { - "version": "2.1.2", - "packageName": "ms", - "hash": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - } - }, - "npm:on-finished@2.4.1": { - "type": "npm", - "name": "npm:on-finished@2.4.1", - "data": { - "version": "2.4.1", - "packageName": "on-finished", - "hash": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==" - } - }, - "npm:on-finished": { - "type": "npm", - "name": "npm:on-finished", - "data": { - "version": "2.3.0", - "packageName": "on-finished", - "hash": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==" - } - }, - "npm:p-retry@4.6.2": { - "type": "npm", - "name": "npm:p-retry@4.6.2", - "data": { - "version": "4.6.2", - "packageName": "p-retry", - "hash": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==" - } - }, - "npm:p-retry": { - "type": "npm", - "name": "npm:p-retry", - "data": { - "version": "6.2.0", - "packageName": "p-retry", - "hash": "sha512-JA6nkq6hKyWLLasXQXUrO4z8BUZGUt/LjlJxx8Gb2+2ntodU/SS63YZ8b0LUTbQ8ZB9iwOfhEPhg4ykKnn2KsA==" - } - }, - "npm:pify@4.0.1": { - "type": "npm", - "name": "npm:pify@4.0.1", - "data": { - "version": "4.0.1", - "packageName": "pify", - "hash": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" - } - }, - "npm:pify@3.0.0": { - "type": "npm", - "name": "npm:pify@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "pify", - "hash": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==" - } - }, - "npm:pify": { - "type": "npm", - "name": "npm:pify", - "data": { - "version": "2.3.0", - "packageName": "pify", - "hash": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==" - } - }, - "npm:postcss-loader@6.2.1": { - "type": "npm", - "name": "npm:postcss-loader@6.2.1", - "data": { - "version": "6.2.1", - "packageName": "postcss-loader", - "hash": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==" - } - }, - "npm:postcss-loader": { - "type": "npm", - "name": "npm:postcss-loader", - "data": { - "version": "8.1.1", - "packageName": "postcss-loader", - "hash": "sha512-0IeqyAsG6tYiDRCYKQJLAmgQr47DX6N7sFSWvQxt6AcupX8DIdmykuk/o/tx0Lze3ErGHJEp5OSRxrelC6+NdQ==" - } - }, - "npm:qs@6.11.0": { - "type": "npm", - "name": "npm:qs@6.11.0", - "data": { - "version": "6.11.0", - "packageName": "qs", - "hash": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==" - } - }, - "npm:qs": { - "type": "npm", - "name": "npm:qs", - "data": { - "version": "6.10.4", - "packageName": "qs", - "hash": "sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==" - } - }, - "npm:retry@0.13.1": { - "type": "npm", - "name": "npm:retry@0.13.1", - "data": { - "version": "0.13.1", - "packageName": "retry", - "hash": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==" - } - }, - "npm:retry": { - "type": "npm", - "name": "npm:retry", - "data": { - "version": "0.12.0", - "packageName": "retry", - "hash": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" - } - }, - "npm:sass-loader@12.6.0": { - "type": "npm", - "name": "npm:sass-loader@12.6.0", - "data": { - "version": "12.6.0", - "packageName": "sass-loader", - "hash": "sha512-oLTaH0YCtX4cfnJZxKSLAyglED0naiYfNG1iXfU5w1LNZ+ukoA5DtyDIN5zmKVZwYNJP4KRc5Y3hkWga+7tYfA==" - } - }, - "npm:sass-loader": { - "type": "npm", - "name": "npm:sass-loader", - "data": { - "version": "14.2.1", - "packageName": "sass-loader", - "hash": "sha512-G0VcnMYU18a4N7VoNDegg2OuMjYtxnqzQWARVWCIVSZwJeiL9kg8QMsuIZOplsJgTzZLF6jGxI3AClj8I9nRdQ==" - } - }, - "npm:send@0.18.0": { - "type": "npm", - "name": "npm:send@0.18.0", - "data": { - "version": "0.18.0", - "packageName": "send", - "hash": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==" - } - }, - "npm:send": { - "type": "npm", - "name": "npm:send", - "data": { - "version": "0.16.2", - "packageName": "send", - "hash": "sha512-E64YFPUssFHEFBvpbbjr44NCLtI1AohxQ8ZSiJjQLskAdKuriYEP6VyGEsRDH8ScozGpkaX1BGvhanqCwkcEZw==" - } - }, - "npm:serve-static@1.15.0": { - "type": "npm", - "name": "npm:serve-static@1.15.0", - "data": { - "version": "1.15.0", - "packageName": "serve-static", - "hash": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==" - } - }, - "npm:serve-static": { - "type": "npm", - "name": "npm:serve-static", - "data": { - "version": "1.13.2", - "packageName": "serve-static", - "hash": "sha512-p/tdJrO4U387R9oMjb1oj7qSMaMfmOyd4j9hOFoxZe2baQszgHcSWjuya/CiT5kgZZKRudHNOA0pYXOl8rQ5nw==" - } - }, - "npm:slash@4.0.0": { - "type": "npm", - "name": "npm:slash@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "slash", - "hash": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==" - } - }, - "npm:slash@5.1.0": { - "type": "npm", - "name": "npm:slash@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "slash", - "hash": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==" - } - }, - "npm:slash": { - "type": "npm", - "name": "npm:slash", - "data": { - "version": "3.0.0", - "packageName": "slash", - "hash": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" - } - }, - "npm:statuses@2.0.1": { - "type": "npm", - "name": "npm:statuses@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "statuses", - "hash": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==" - } - }, - "npm:statuses@1.5.0": { - "type": "npm", - "name": "npm:statuses@1.5.0", - "data": { - "version": "1.5.0", - "packageName": "statuses", - "hash": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==" - } - }, - "npm:statuses@1.4.0": { - "type": "npm", - "name": "npm:statuses@1.4.0", - "data": { - "version": "1.4.0", - "packageName": "statuses", - "hash": "sha512-zhSCtt8v2NDrRlPQpCNtw/heZLtfUDqxBM1udqikb/Hbk52LK4nQSwr10u77iopCW5LsyHpuXS0GnEc48mLeew==" - } - }, - "npm:statuses": { - "type": "npm", - "name": "npm:statuses", - "data": { - "version": "1.3.1", - "packageName": "statuses", - "hash": "sha512-wuTCPGlJONk/a1kqZ4fQM2+908lC7fa7nPYpTC1EhnvqLX/IICbeP1OZGDtA374trpSq68YubKUMo8oRhN46yg==" - } - }, - "npm:webpack-dev-middleware@5.3.4": { - "type": "npm", - "name": "npm:webpack-dev-middleware@5.3.4", - "data": { - "version": "5.3.4", - "packageName": "webpack-dev-middleware", - "hash": "sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==" - } - }, - "npm:webpack-dev-middleware": { - "type": "npm", - "name": "npm:webpack-dev-middleware", - "data": { - "version": "7.2.1", - "packageName": "webpack-dev-middleware", - "hash": "sha512-hRLz+jPQXo999Nx9fXVdKlg/aehsw1ajA9skAneGmT03xwmyuhvF93p6HUKKbWhXdcERtGTzUCtIQr+2IQegrA==" - } - }, - "npm:webpack-dev-server@4.15.2": { - "type": "npm", - "name": "npm:webpack-dev-server@4.15.2", - "data": { - "version": "4.15.2", - "packageName": "webpack-dev-server", - "hash": "sha512-0XavAZbNJ5sDrCbkpWL8mia0o5WPOd2YGtxrEiZkBK9FjLppIUK2TgxK6qGD2P3hUXTJNNPVibrerKcx5WkR1g==" - } - }, - "npm:webpack-dev-server": { - "type": "npm", - "name": "npm:webpack-dev-server", - "data": { - "version": "5.0.4", - "packageName": "webpack-dev-server", - "hash": "sha512-dljXhUgx3HqKP2d8J/fUMvhxGhzjeNVarDLcbO/EWMSgRizDkxHQDZQaLFL5VJY9tRBj2Gz+rvCEYYvhbqPHNA==" - } - }, - "npm:@nx/workspace": { - "type": "npm", - "name": "npm:@nx/workspace", - "data": { - "version": "19.5.6", - "packageName": "@nx/workspace", - "hash": "sha512-VkyHzSPI+++kLgftE6HA/jXcbn3zZwDYjhsrmSqwutj8BTuKhxs1YIL2gkzYVoTytF1wpWl3nk5MzqMGclptjA==" - } - }, - "npm:@phenomnomnominal/tsquery": { - "type": "npm", - "name": "npm:@phenomnomnominal/tsquery", - "data": { - "version": "5.0.1", - "packageName": "@phenomnomnominal/tsquery", - "hash": "sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==" - } - }, - "npm:@pkgjs/parseargs": { - "type": "npm", - "name": "npm:@pkgjs/parseargs", - "data": { - "version": "0.11.0", - "packageName": "@pkgjs/parseargs", - "hash": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" - } - }, - "npm:@rollup/plugin-commonjs": { - "type": "npm", - "name": "npm:@rollup/plugin-commonjs", - "data": { - "version": "25.0.7", - "packageName": "@rollup/plugin-commonjs", - "hash": "sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==" - } - }, - "npm:@rollup/plugin-json": { - "type": "npm", - "name": "npm:@rollup/plugin-json", - "data": { - "version": "6.1.0", - "packageName": "@rollup/plugin-json", - "hash": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==" - } - }, - "npm:@rollup/plugin-node-resolve": { - "type": "npm", - "name": "npm:@rollup/plugin-node-resolve", - "data": { - "version": "15.2.3", - "packageName": "@rollup/plugin-node-resolve", - "hash": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==" - } - }, - "npm:@rollup/plugin-replace": { - "type": "npm", - "name": "npm:@rollup/plugin-replace", - "data": { - "version": "5.0.5", - "packageName": "@rollup/plugin-replace", - "hash": "sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==" - } - }, - "npm:@rollup/pluginutils": { - "type": "npm", - "name": "npm:@rollup/pluginutils", - "data": { - "version": "5.1.0", - "packageName": "@rollup/pluginutils", - "hash": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==" - } - }, - "npm:picomatch@2.3.1": { - "type": "npm", - "name": "npm:picomatch@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "picomatch", - "hash": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" - } - }, - "npm:picomatch": { - "type": "npm", - "name": "npm:picomatch", - "data": { - "version": "4.0.2", - "packageName": "picomatch", - "hash": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==" - } - }, - "npm:@rollup/rollup-android-arm-eabi": { - "type": "npm", - "name": "npm:@rollup/rollup-android-arm-eabi", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-android-arm-eabi", - "hash": "sha512-Tya6xypR10giZV1XzxmH5wr25VcZSncG0pZIjfePT0OVBvqNEurzValetGNarVrGiq66EBVAFn15iYX4w6FKgQ==" - } - }, - "npm:@rollup/rollup-android-arm-eabi@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-android-arm-eabi@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-android-arm-eabi", - "hash": "sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==" - } - }, - "npm:@rollup/rollup-android-arm64": { - "type": "npm", - "name": "npm:@rollup/rollup-android-arm64", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-android-arm64", - "hash": "sha512-avCea0RAP03lTsDhEyfy+hpfr85KfyTctMADqHVhLAF3MlIkq83CP8UfAHUssgXTYd+6er6PaAhx/QGv4L1EiA==" - } - }, - "npm:@rollup/rollup-android-arm64@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-android-arm64@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-android-arm64", - "hash": "sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==" - } - }, - "npm:@rollup/rollup-darwin-arm64": { - "type": "npm", - "name": "npm:@rollup/rollup-darwin-arm64", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-darwin-arm64", - "hash": "sha512-IWfdwU7KDSm07Ty0PuA/W2JYoZ4iTj3TUQjkVsO/6U+4I1jN5lcR71ZEvRh52sDOERdnNhhHU57UITXz5jC1/w==" - } - }, - "npm:@rollup/rollup-darwin-arm64@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-darwin-arm64@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-darwin-arm64", - "hash": "sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==" - } - }, - "npm:@rollup/rollup-darwin-x64": { - "type": "npm", - "name": "npm:@rollup/rollup-darwin-x64", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-darwin-x64", - "hash": "sha512-n2LMsUz7Ynu7DoQrSQkBf8iNrjOGyPLrdSg802vk6XT3FtsgX6JbE8IHRvposskFm9SNxzkLYGSq9QdpLYpRNA==" - } - }, - "npm:@rollup/rollup-darwin-x64@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-darwin-x64@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-darwin-x64", - "hash": "sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==" - } - }, - "npm:@rollup/rollup-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm-gnueabihf", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-arm-gnueabihf", - "hash": "sha512-C/zbRYRXFjWvz9Z4haRxcTdnkPt1BtCkz+7RtBSuNmKzMzp3ZxdM28Mpccn6pt28/UWUCTXa+b0Mx1k3g6NOMA==" - } - }, - "npm:@rollup/rollup-linux-arm-gnueabihf@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm-gnueabihf@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-arm-gnueabihf", - "hash": "sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==" - } - }, - "npm:@rollup/rollup-linux-arm-musleabihf": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm-musleabihf", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-arm-musleabihf", - "hash": "sha512-l3m9ewPgjQSXrUMHg93vt0hYCGnrMOcUpTz6FLtbwljo2HluS4zTXFy2571YQbisTnfTKPZ01u/ukJdQTLGh9A==" - } - }, - "npm:@rollup/rollup-linux-arm-musleabihf@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm-musleabihf@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-arm-musleabihf", - "hash": "sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==" - } - }, - "npm:@rollup/rollup-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm64-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-arm64-gnu", - "hash": "sha512-rJ5D47d8WD7J+7STKdCUAgmQk49xuFrRi9pZkWoRD1UeSMakbcepWXPF8ycChBoAqs1pb2wzvbY6Q33WmN2ftw==" - } - }, - "npm:@rollup/rollup-linux-arm64-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm64-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-arm64-gnu", - "hash": "sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==" - } - }, - "npm:@rollup/rollup-linux-arm64-musl": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm64-musl", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-arm64-musl", - "hash": "sha512-be6Yx37b24ZwxQ+wOQXXLZqpq4jTckJhtGlWGZs68TgdKXJgw54lUUoFYrg6Zs/kjzAQwEwYbp8JxZVzZLRepQ==" - } - }, - "npm:@rollup/rollup-linux-arm64-musl@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-arm64-musl@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-arm64-musl", - "hash": "sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==" - } - }, - "npm:@rollup/rollup-linux-powerpc64le-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-powerpc64le-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-powerpc64le-gnu", - "hash": "sha512-hNVMQK+qrA9Todu9+wqrXOHxFiD5YmdEi3paj6vP02Kx1hjd2LLYR2eaN7DsEshg09+9uzWi2W18MJDlG0cxJA==" - } - }, - "npm:@rollup/rollup-linux-powerpc64le-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-powerpc64le-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-powerpc64le-gnu", - "hash": "sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==" - } - }, - "npm:@rollup/rollup-linux-riscv64-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-riscv64-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-riscv64-gnu", - "hash": "sha512-ROCM7i+m1NfdrsmvwSzoxp9HFtmKGHEqu5NNDiZWQtXLA8S5HBCkVvKAxJ8U+CVctHwV2Gb5VUaK7UAkzhDjlg==" - } - }, - "npm:@rollup/rollup-linux-riscv64-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-riscv64-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-riscv64-gnu", - "hash": "sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==" - } - }, - "npm:@rollup/rollup-linux-s390x-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-s390x-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-s390x-gnu", - "hash": "sha512-0UyyRHyDN42QL+NbqevXIIUnKA47A+45WyasO+y2bGJ1mhQrfrtXUpTxCOrfxCR4esV3/RLYyucGVPiUsO8xjg==" - } - }, - "npm:@rollup/rollup-linux-s390x-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-s390x-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-s390x-gnu", - "hash": "sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==" - } - }, - "npm:@rollup/rollup-linux-x64-gnu": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-x64-gnu", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-x64-gnu", - "hash": "sha512-xuglR2rBVHA5UsI8h8UbX4VJ470PtGCf5Vpswh7p2ukaqBGFTnsfzxUBetoWBWymHMxbIG0Cmx7Y9qDZzr648w==" - } - }, - "npm:@rollup/rollup-linux-x64-gnu@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-x64-gnu@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-x64-gnu", - "hash": "sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==" - } - }, - "npm:@rollup/rollup-linux-x64-musl": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-x64-musl", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-linux-x64-musl", - "hash": "sha512-LKaqQL9osY/ir2geuLVvRRs+utWUNilzdE90TpyoX0eNqPzWjRm14oMEE+YLve4k/NAqCdPkGYDaDF5Sw+xBfg==" - } - }, - "npm:@rollup/rollup-linux-x64-musl@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-linux-x64-musl@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-linux-x64-musl", - "hash": "sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==" - } - }, - "npm:@rollup/rollup-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-arm64-msvc", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-win32-arm64-msvc", - "hash": "sha512-7J6TkZQFGo9qBKH0pk2cEVSRhJbL6MtfWxth7Y5YmZs57Pi+4x6c2dStAUvaQkHQLnEQv1jzBUW43GvZW8OFqA==" - } - }, - "npm:@rollup/rollup-win32-arm64-msvc@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-arm64-msvc@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-win32-arm64-msvc", - "hash": "sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==" - } - }, - "npm:@rollup/rollup-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-ia32-msvc", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-win32-ia32-msvc", - "hash": "sha512-Txjh+IxBPbkUB9+SXZMpv+b/vnTEtFyfWZgJ6iyCmt2tdx0OF5WhFowLmnh8ENGNpfUlUZkdI//4IEmhwPieNg==" - } - }, - "npm:@rollup/rollup-win32-ia32-msvc@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-ia32-msvc@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-win32-ia32-msvc", - "hash": "sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==" - } - }, - "npm:@rollup/rollup-win32-x64-msvc": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-x64-msvc", - "data": { - "version": "4.18.0", - "packageName": "@rollup/rollup-win32-x64-msvc", - "hash": "sha512-UOo5FdvOL0+eIVTgS4tIdbW+TtnBLWg1YBCcU2KWM7nuNwRz9bksDX1bekJJCpu25N1DVWaCwnT39dVQxzqS8g==" - } - }, - "npm:@rollup/rollup-win32-x64-msvc@4.20.0": { - "type": "npm", - "name": "npm:@rollup/rollup-win32-x64-msvc@4.20.0", - "data": { - "version": "4.20.0", - "packageName": "@rollup/rollup-win32-x64-msvc", - "hash": "sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==" - } - }, - "npm:@rollup/wasm-node": { - "type": "npm", - "name": "npm:@rollup/wasm-node", - "data": { - "version": "4.18.0", - "packageName": "@rollup/wasm-node", - "hash": "sha512-DkLoyblRMhJw9ZogW9zCpyH0CNJ+7GaM7Ty+Vl+G21z/Gr7uKBaXqcJqwWUiNYVxTOgxZrxhDG6pmOFxOuswvw==" - } - }, - "npm:@schematics/angular": { - "type": "npm", - "name": "npm:@schematics/angular", - "data": { - "version": "18.1.3", - "packageName": "@schematics/angular", - "hash": "sha512-VyoL7O+3eL+BazmoWzexFpVy9k0MoOAmff3XqKLhP3/V7eXPc9s7znIDpPp28QF0V/Y2xMaGDWhqTx2CFcz4Qg==" - } - }, - "npm:@sigstore/bundle": { - "type": "npm", - "name": "npm:@sigstore/bundle", - "data": { - "version": "2.3.2", - "packageName": "@sigstore/bundle", - "hash": "sha512-wueKWDk70QixNLB363yHc2D2ItTgYiMTdPwK8D9dKQMR3ZQ0c35IxP5xnwQ8cNLoCgCRcHf14kE+CLIvNX1zmA==" - } - }, - "npm:@sigstore/core": { - "type": "npm", - "name": "npm:@sigstore/core", - "data": { - "version": "1.1.0", - "packageName": "@sigstore/core", - "hash": "sha512-JzBqdVIyqm2FRQCulY6nbQzMpJJpSiJ8XXWMhtOX9eKgaXXpfNOF53lzQEjIydlStnd/eFtuC1dW4VYdD93oRg==" - } - }, - "npm:@sigstore/protobuf-specs": { - "type": "npm", - "name": "npm:@sigstore/protobuf-specs", - "data": { - "version": "0.3.2", - "packageName": "@sigstore/protobuf-specs", - "hash": "sha512-c6B0ehIWxMI8wiS/bj6rHMPqeFvngFV7cDU/MY+B16P9Z3Mp9k8L93eYZ7BYzSickzuqAQqAq0V956b3Ju6mLw==" - } - }, - "npm:@sigstore/sign": { - "type": "npm", - "name": "npm:@sigstore/sign", - "data": { - "version": "2.3.2", - "packageName": "@sigstore/sign", - "hash": "sha512-5Vz5dPVuunIIvC5vBb0APwo7qKA4G9yM48kPWJT+OEERs40md5GoUR1yedwpekWZ4m0Hhw44m6zU+ObsON+iDA==" - } - }, - "npm:@sigstore/tuf": { - "type": "npm", - "name": "npm:@sigstore/tuf", - "data": { - "version": "2.3.4", - "packageName": "@sigstore/tuf", - "hash": "sha512-44vtsveTPUpqhm9NCrbU8CWLe3Vck2HO1PNLw7RIajbB7xhtn5RBPm1VNSCMwqGYHhDsBJG8gDF0q4lgydsJvw==" - } - }, - "npm:@sigstore/verify": { - "type": "npm", - "name": "npm:@sigstore/verify", - "data": { - "version": "1.2.1", - "packageName": "@sigstore/verify", - "hash": "sha512-8iKx79/F73DKbGfRf7+t4dqrc0bRr0thdPrxAtCKWRm/F0tG71i6O1rvlnScncJLLBZHn3h8M3c1BSUAb9yu8g==" - } - }, - "npm:@sinclair/typebox": { - "type": "npm", - "name": "npm:@sinclair/typebox", - "data": { - "version": "0.27.8", - "packageName": "@sinclair/typebox", - "hash": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==" - } - }, - "npm:@sindresorhus/is": { - "type": "npm", - "name": "npm:@sindresorhus/is", - "data": { - "version": "4.6.0", - "packageName": "@sindresorhus/is", - "hash": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" - } - }, - "npm:@sindresorhus/merge-streams": { - "type": "npm", - "name": "npm:@sindresorhus/merge-streams", - "data": { - "version": "2.3.0", - "packageName": "@sindresorhus/merge-streams", - "hash": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==" - } - }, - "npm:@sinonjs/commons": { - "type": "npm", - "name": "npm:@sinonjs/commons", - "data": { - "version": "3.0.1", - "packageName": "@sinonjs/commons", - "hash": "sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==" - } - }, - "npm:@sinonjs/fake-timers": { - "type": "npm", - "name": "npm:@sinonjs/fake-timers", - "data": { - "version": "10.3.0", - "packageName": "@sinonjs/fake-timers", - "hash": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==" - } - }, - "npm:@socket.io/component-emitter": { - "type": "npm", - "name": "npm:@socket.io/component-emitter", - "data": { - "version": "3.1.0", - "packageName": "@socket.io/component-emitter", - "hash": "sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==" - } - }, - "npm:@softarc/native-federation": { - "type": "npm", - "name": "npm:@softarc/native-federation", - "data": { - "version": "2.0.10", - "packageName": "@softarc/native-federation", - "hash": "sha512-SCjAd8F2nO7VPr9TEadpbqQWI8RHd+9HAYbdjJxKXNtmi9Nz5EnIZshTRgnQlMth59FrKlQ2fyoyRWcmYKNe0g==" - } - }, - "npm:@softarc/native-federation-runtime": { - "type": "npm", - "name": "npm:@softarc/native-federation-runtime", - "data": { - "version": "2.0.10", - "packageName": "@softarc/native-federation-runtime", - "hash": "sha512-8CETrqtLkYL1i6bwmqNe/1GwNVQYfayf3b2PSHJ4/n1QR2Dk84RhbpnAPgGVG7XqzRhDYwV2xsJyhVJdWkxQ3A==" - } - }, - "npm:@swc-node/core": { - "type": "npm", - "name": "npm:@swc-node/core", - "data": { - "version": "1.13.3", - "packageName": "@swc-node/core", - "hash": "sha512-OGsvXIid2Go21kiNqeTIn79jcaX4l0G93X2rAnas4LFoDyA9wAwVK7xZdm+QsKoMn5Mus2yFLCc4OtX2dD/PWA==" - } - }, - "npm:@swc-node/register": { - "type": "npm", - "name": "npm:@swc-node/register", - "data": { - "version": "1.9.2", - "packageName": "@swc-node/register", - "hash": "sha512-BBjg0QNuEEmJSoU/++JOXhrjWdu3PTyYeJWsvchsI0Aqtj8ICkz/DqlwtXbmZVZ5vuDPpTfFlwDBZe81zgShMA==" - } - }, - "npm:@swc-node/sourcemap-support": { - "type": "npm", - "name": "npm:@swc-node/sourcemap-support", - "data": { - "version": "0.5.1", - "packageName": "@swc-node/sourcemap-support", - "hash": "sha512-JxIvIo/Hrpv0JCHSyRpetAdQ6lB27oFYhv0PKCNf1g2gUXOjpeR1exrXccRxLMuAV5WAmGFBwRnNOJqN38+qtg==" - } - }, - "npm:@swc/cli": { - "type": "npm", - "name": "npm:@swc/cli", - "data": { - "version": "0.3.12", - "packageName": "@swc/cli", - "hash": "sha512-h7bvxT+4+UDrLWJLFHt6V+vNAcUNii2G4aGSSotKz1ECEk4MyEh5CWxmeSscwuz5K3i+4DWTgm4+4EyMCQKn+g==" - } - }, - "npm:@swc/core": { - "type": "npm", - "name": "npm:@swc/core", - "data": { - "version": "1.5.7", - "packageName": "@swc/core", - "hash": "sha512-U4qJRBefIJNJDRCCiVtkfa/hpiZ7w0R6kASea+/KLp+vkus3zcLSB8Ub8SvKgTIxjWpwsKcZlPf5nrv4ls46SQ==" - } - }, - "npm:@swc/core-darwin-arm64": { - "type": "npm", - "name": "npm:@swc/core-darwin-arm64", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-darwin-arm64", - "hash": "sha512-bZLVHPTpH3h6yhwVl395k0Mtx8v6CGhq5r4KQdAoPbADU974Mauz1b6ViHAJ74O0IVE5vyy7tD3OpkQxL/vMDQ==" - } - }, - "npm:@swc/core-darwin-x64": { - "type": "npm", - "name": "npm:@swc/core-darwin-x64", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-darwin-x64", - "hash": "sha512-RpUyu2GsviwTc2qVajPL0l8nf2vKj5wzO3WkLSHAHEJbiUZk83NJrZd1RVbEknIMO7+Uyjh54hEh8R26jSByaw==" - } - }, - "npm:@swc/core-linux-arm-gnueabihf": { - "type": "npm", - "name": "npm:@swc/core-linux-arm-gnueabihf", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-arm-gnueabihf", - "hash": "sha512-cTZWTnCXLABOuvWiv6nQQM0hP6ZWEkzdgDvztgHI/+u/MvtzJBN5lBQ2lue/9sSFYLMqzqff5EHKlFtrJCA9dQ==" - } - }, - "npm:@swc/core-linux-arm64-gnu": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-gnu", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-arm64-gnu", - "hash": "sha512-hoeTJFBiE/IJP30Be7djWF8Q5KVgkbDtjySmvYLg9P94bHg9TJPSQoC72tXx/oXOgXvElDe/GMybru0UxhKx4g==" - } - }, - "npm:@swc/core-linux-arm64-musl": { - "type": "npm", - "name": "npm:@swc/core-linux-arm64-musl", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-arm64-musl", - "hash": "sha512-+NDhK+IFTiVK1/o7EXdCeF2hEzCiaRSrb9zD7X2Z7inwWlxAntcSuzZW7Y6BRqGQH89KA91qYgwbnjgTQ22PiQ==" - } - }, - "npm:@swc/core-linux-x64-gnu": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-gnu", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-x64-gnu", - "hash": "sha512-25GXpJmeFxKB+7pbY7YQLhWWjkYlR+kHz5I3j9WRl3Lp4v4UD67OGXwPe+DIcHqcouA1fhLhsgHJWtsaNOMBNg==" - } - }, - "npm:@swc/core-linux-x64-musl": { - "type": "npm", - "name": "npm:@swc/core-linux-x64-musl", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-linux-x64-musl", - "hash": "sha512-0VN9Y5EAPBESmSPPsCJzplZHV26akC0sIgd3Hc/7S/1GkSMoeuVL+V9vt+F/cCuzr4VidzSkqftdP3qEIsXSpg==" - } - }, - "npm:@swc/core-win32-arm64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-arm64-msvc", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-win32-arm64-msvc", - "hash": "sha512-RtoNnstBwy5VloNCvmvYNApkTmuCe4sNcoYWpmY7C1+bPR+6SOo8im1G6/FpNem8AR5fcZCmXHWQ+EUmRWJyuA==" - } - }, - "npm:@swc/core-win32-ia32-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-ia32-msvc", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-win32-ia32-msvc", - "hash": "sha512-Xm0TfvcmmspvQg1s4+USL3x8D+YPAfX2JHygvxAnCJ0EHun8cm2zvfNBcsTlnwYb0ybFWXXY129aq1wgFC9TpQ==" - } - }, - "npm:@swc/core-win32-x64-msvc": { - "type": "npm", - "name": "npm:@swc/core-win32-x64-msvc", - "data": { - "version": "1.5.7", - "packageName": "@swc/core-win32-x64-msvc", - "hash": "sha512-tp43WfJLCsKLQKBmjmY/0vv1slVywR5Q4qKjF5OIY8QijaEW7/8VwPyUyVoJZEnDgv9jKtUTG5PzqtIYPZGnyg==" - } - }, - "npm:@swc/types@0.1.7": { - "type": "npm", - "name": "npm:@swc/types@0.1.7", - "data": { - "version": "0.1.7", - "packageName": "@swc/types", - "hash": "sha512-scHWahbHF0eyj3JsxG9CFJgFdFNaVQCNAimBlT6PzS3n/HptxqREjsm4OH6AN3lYcffZYSPxXW8ua2BEHp0lJQ==" - } - }, - "npm:@swc/types": { - "type": "npm", - "name": "npm:@swc/types", - "data": { - "version": "0.1.12", - "packageName": "@swc/types", - "hash": "sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==" - } - }, - "npm:@swc/counter": { - "type": "npm", - "name": "npm:@swc/counter", - "data": { - "version": "0.1.3", - "packageName": "@swc/counter", - "hash": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==" - } - }, - "npm:@swc/helpers": { - "type": "npm", - "name": "npm:@swc/helpers", - "data": { - "version": "0.5.12", - "packageName": "@swc/helpers", - "hash": "sha512-KMZNXiGibsW9kvZAO1Pam2JPTDBm+KSHMMHWdsyI/1DbIZjT2A6Gy3hblVXUMEDvUAKq+e0vL0X0o54owWji7g==" - } - }, - "npm:@szmarczak/http-timer": { - "type": "npm", - "name": "npm:@szmarczak/http-timer", - "data": { - "version": "4.0.6", - "packageName": "@szmarczak/http-timer", - "hash": "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" - } - }, - "npm:@tokenizer/token": { - "type": "npm", - "name": "npm:@tokenizer/token", - "data": { - "version": "0.3.0", - "packageName": "@tokenizer/token", - "hash": "sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==" - } - }, - "npm:@tootallnate/once": { - "type": "npm", - "name": "npm:@tootallnate/once", - "data": { - "version": "2.0.0", - "packageName": "@tootallnate/once", - "hash": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" - } - }, - "npm:@trysound/sax": { - "type": "npm", - "name": "npm:@trysound/sax", - "data": { - "version": "0.2.0", - "packageName": "@trysound/sax", - "hash": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==" - } - }, - "npm:@tsconfig/node10": { - "type": "npm", - "name": "npm:@tsconfig/node10", - "data": { - "version": "1.0.9", - "packageName": "@tsconfig/node10", - "hash": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==" - } - }, - "npm:@tsconfig/node12": { - "type": "npm", - "name": "npm:@tsconfig/node12", - "data": { - "version": "1.0.11", - "packageName": "@tsconfig/node12", - "hash": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==" - } - }, - "npm:@tsconfig/node14": { - "type": "npm", - "name": "npm:@tsconfig/node14", - "data": { - "version": "1.0.3", - "packageName": "@tsconfig/node14", - "hash": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==" - } - }, - "npm:@tsconfig/node16": { - "type": "npm", - "name": "npm:@tsconfig/node16", - "data": { - "version": "1.0.4", - "packageName": "@tsconfig/node16", - "hash": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==" - } - }, - "npm:@tufjs/canonical-json": { - "type": "npm", - "name": "npm:@tufjs/canonical-json", - "data": { - "version": "2.0.0", - "packageName": "@tufjs/canonical-json", - "hash": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==" - } - }, - "npm:@tufjs/models": { - "type": "npm", - "name": "npm:@tufjs/models", - "data": { - "version": "2.0.1", - "packageName": "@tufjs/models", - "hash": "sha512-92F7/SFyufn4DXsha9+QfKnN03JGqtMFMXgSHbZOo8JG59WkTni7UzAouNQDf7AuP9OAMxVOPQcqG3sB7w+kkg==" - } - }, - "npm:@tybys/wasm-util": { - "type": "npm", - "name": "npm:@tybys/wasm-util", - "data": { - "version": "0.9.0", - "packageName": "@tybys/wasm-util", - "hash": "sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==" - } - }, - "npm:@types/babel__core": { - "type": "npm", - "name": "npm:@types/babel__core", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__core", - "hash": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==" - } - }, - "npm:@types/babel__generator": { - "type": "npm", - "name": "npm:@types/babel__generator", - "data": { - "version": "7.6.8", - "packageName": "@types/babel__generator", - "hash": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==" - } - }, - "npm:@types/babel__template": { - "type": "npm", - "name": "npm:@types/babel__template", - "data": { - "version": "7.4.4", - "packageName": "@types/babel__template", - "hash": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==" - } - }, - "npm:@types/babel__traverse": { - "type": "npm", - "name": "npm:@types/babel__traverse", - "data": { - "version": "7.20.5", - "packageName": "@types/babel__traverse", - "hash": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==" - } - }, - "npm:@types/body-parser": { - "type": "npm", - "name": "npm:@types/body-parser", - "data": { - "version": "1.19.5", - "packageName": "@types/body-parser", - "hash": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==" - } - }, - "npm:@types/bonjour": { - "type": "npm", - "name": "npm:@types/bonjour", - "data": { - "version": "3.5.13", - "packageName": "@types/bonjour", - "hash": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==" - } - }, - "npm:@types/browser-sync": { - "type": "npm", - "name": "npm:@types/browser-sync", - "data": { - "version": "2.29.0", - "packageName": "@types/browser-sync", - "hash": "sha512-d2V8FDX/LbDCSm343N2VChzDxvll0h76I8oSigYpdLgPDmcdcR6fywTggKBkUiDM3qAbHOq7NZvepj/HJM5e2g==" - } - }, - "npm:@types/cacheable-request": { - "type": "npm", - "name": "npm:@types/cacheable-request", - "data": { - "version": "6.0.3", - "packageName": "@types/cacheable-request", - "hash": "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" - } - }, - "npm:@types/connect": { - "type": "npm", - "name": "npm:@types/connect", - "data": { - "version": "3.4.38", - "packageName": "@types/connect", - "hash": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==" - } - }, - "npm:@types/connect-history-api-fallback": { - "type": "npm", - "name": "npm:@types/connect-history-api-fallback", - "data": { - "version": "1.5.4", - "packageName": "@types/connect-history-api-fallback", - "hash": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==" - } - }, - "npm:@types/cookie": { - "type": "npm", - "name": "npm:@types/cookie", - "data": { - "version": "0.4.1", - "packageName": "@types/cookie", - "hash": "sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==" - } - }, - "npm:@types/cors": { - "type": "npm", - "name": "npm:@types/cors", - "data": { - "version": "2.8.17", - "packageName": "@types/cors", - "hash": "sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==" - } - }, - "npm:@types/cross-spawn": { - "type": "npm", - "name": "npm:@types/cross-spawn", - "data": { - "version": "6.0.6", - "packageName": "@types/cross-spawn", - "hash": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==" - } - }, - "npm:@types/eslint": { - "type": "npm", - "name": "npm:@types/eslint", - "data": { - "version": "8.56.10", - "packageName": "@types/eslint", - "hash": "sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==" - } - }, - "npm:@types/eslint-scope": { - "type": "npm", - "name": "npm:@types/eslint-scope", - "data": { - "version": "3.7.7", - "packageName": "@types/eslint-scope", - "hash": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==" - } - }, - "npm:@types/estree": { - "type": "npm", - "name": "npm:@types/estree", - "data": { - "version": "1.0.5", - "packageName": "@types/estree", - "hash": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==" - } - }, - "npm:@types/express": { - "type": "npm", - "name": "npm:@types/express", - "data": { - "version": "4.17.21", - "packageName": "@types/express", - "hash": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==" - } - }, - "npm:@types/express-serve-static-core": { - "type": "npm", - "name": "npm:@types/express-serve-static-core", - "data": { - "version": "4.19.3", - "packageName": "@types/express-serve-static-core", - "hash": "sha512-KOzM7MhcBFlmnlr/fzISFF5vGWVSvN6fTd4T+ExOt08bA/dA5kpSzY52nMsI1KDFmUREpJelPYyuslLRSjjgCg==" - } - }, - "npm:@types/graceful-fs": { - "type": "npm", - "name": "npm:@types/graceful-fs", - "data": { - "version": "4.1.9", - "packageName": "@types/graceful-fs", - "hash": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==" - } - }, - "npm:@types/http-cache-semantics": { - "type": "npm", - "name": "npm:@types/http-cache-semantics", - "data": { - "version": "4.0.4", - "packageName": "@types/http-cache-semantics", - "hash": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" - } - }, - "npm:@types/http-errors": { - "type": "npm", - "name": "npm:@types/http-errors", - "data": { - "version": "2.0.4", - "packageName": "@types/http-errors", - "hash": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==" - } - }, - "npm:@types/http-proxy": { - "type": "npm", - "name": "npm:@types/http-proxy", - "data": { - "version": "1.17.14", - "packageName": "@types/http-proxy", - "hash": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==" - } - }, - "npm:@types/istanbul-lib-coverage": { - "type": "npm", - "name": "npm:@types/istanbul-lib-coverage", - "data": { - "version": "2.0.6", - "packageName": "@types/istanbul-lib-coverage", - "hash": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==" - } - }, - "npm:@types/istanbul-lib-report": { - "type": "npm", - "name": "npm:@types/istanbul-lib-report", - "data": { - "version": "3.0.3", - "packageName": "@types/istanbul-lib-report", - "hash": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==" - } - }, - "npm:@types/istanbul-reports": { - "type": "npm", - "name": "npm:@types/istanbul-reports", - "data": { - "version": "3.0.4", - "packageName": "@types/istanbul-reports", - "hash": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==" - } - }, - "npm:@types/jest": { - "type": "npm", - "name": "npm:@types/jest", - "data": { - "version": "29.5.11", - "packageName": "@types/jest", - "hash": "sha512-S2mHmYIVe13vrm6q4kN6fLYYAka15ALQki/vgDC3mIukEOx8WJlv0kQPM+d4w8Gp6u0uSdKND04IlTXBv0rwnQ==" - } - }, - "npm:@types/jsdom": { - "type": "npm", - "name": "npm:@types/jsdom", - "data": { - "version": "20.0.1", - "packageName": "@types/jsdom", - "hash": "sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==" - } - }, - "npm:parse5@7.1.2": { - "type": "npm", - "name": "npm:parse5@7.1.2", - "data": { - "version": "7.1.2", - "packageName": "parse5", - "hash": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==" - } - }, - "npm:parse5": { - "type": "npm", - "name": "npm:parse5", - "data": { - "version": "4.0.0", - "packageName": "parse5", - "hash": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==" - } - }, - "npm:@types/json-schema": { - "type": "npm", - "name": "npm:@types/json-schema", - "data": { - "version": "7.0.15", - "packageName": "@types/json-schema", - "hash": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - } - }, - "npm:@types/keyv": { - "type": "npm", - "name": "npm:@types/keyv", - "data": { - "version": "3.1.4", - "packageName": "@types/keyv", - "hash": "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" - } - }, - "npm:@types/lodash": { - "type": "npm", - "name": "npm:@types/lodash", - "data": { - "version": "4.17.0", - "packageName": "@types/lodash", - "hash": "sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA==" - } - }, - "npm:@types/micromatch": { - "type": "npm", - "name": "npm:@types/micromatch", - "data": { - "version": "2.3.35", - "packageName": "@types/micromatch", - "hash": "sha512-J749bHo/Zu56w0G0NI/IGHLQPiSsjx//0zJhfEVAN95K/xM5C8ZDmhkXtU3qns0sBOao7HuQzr8XV1/2o5LbXA==" - } - }, - "npm:@types/mime": { - "type": "npm", - "name": "npm:@types/mime", - "data": { - "version": "3.0.4", - "packageName": "@types/mime", - "hash": "sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==" - } - }, - "npm:@types/mime@1.3.5": { - "type": "npm", - "name": "npm:@types/mime@1.3.5", - "data": { - "version": "1.3.5", - "packageName": "@types/mime", - "hash": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==" - } - }, - "npm:@types/mute-stream": { - "type": "npm", - "name": "npm:@types/mute-stream", - "data": { - "version": "0.0.4", - "packageName": "@types/mute-stream", - "hash": "sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==" - } - }, - "npm:@types/node-forge": { - "type": "npm", - "name": "npm:@types/node-forge", - "data": { - "version": "1.3.11", - "packageName": "@types/node-forge", - "hash": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==" - } - }, - "npm:@types/npmlog": { - "type": "npm", - "name": "npm:@types/npmlog", - "data": { - "version": "4.1.6", - "packageName": "@types/npmlog", - "hash": "sha512-0l3z16vnlJGl2Mi/rgJFrdwfLZ4jfNYgE6ZShEpjqhHuGTqdEzNles03NpYHwUMVYZa+Tj46UxKIEpE78lQ3DQ==" - } - }, - "npm:@types/parse-glob": { - "type": "npm", - "name": "npm:@types/parse-glob", - "data": { - "version": "3.0.32", - "packageName": "@types/parse-glob", - "hash": "sha512-n4xmml2WKR12XeQprN8L/sfiVPa8FHS3k+fxp4kSr/PA2GsGUgFND+bvISJxM0y5QdvzNEGjEVU3eIrcKks/pA==" - } - }, - "npm:@types/parse-json": { - "type": "npm", - "name": "npm:@types/parse-json", - "data": { - "version": "4.0.2", - "packageName": "@types/parse-json", - "hash": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - } - }, - "npm:@types/qs": { - "type": "npm", - "name": "npm:@types/qs", - "data": { - "version": "6.9.15", - "packageName": "@types/qs", - "hash": "sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==" - } - }, - "npm:@types/range-parser": { - "type": "npm", - "name": "npm:@types/range-parser", - "data": { - "version": "1.2.7", - "packageName": "@types/range-parser", - "hash": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==" - } - }, - "npm:@types/resolve": { - "type": "npm", - "name": "npm:@types/resolve", - "data": { - "version": "1.20.2", - "packageName": "@types/resolve", - "hash": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==" - } - }, - "npm:@types/responselike": { - "type": "npm", - "name": "npm:@types/responselike", - "data": { - "version": "1.0.3", - "packageName": "@types/responselike", - "hash": "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" - } - }, - "npm:@types/send": { - "type": "npm", - "name": "npm:@types/send", - "data": { - "version": "0.17.4", - "packageName": "@types/send", - "hash": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==" - } - }, - "npm:@types/serve-index": { - "type": "npm", - "name": "npm:@types/serve-index", - "data": { - "version": "1.9.4", - "packageName": "@types/serve-index", - "hash": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==" - } - }, - "npm:@types/serve-static": { - "type": "npm", - "name": "npm:@types/serve-static", - "data": { - "version": "1.15.5", - "packageName": "@types/serve-static", - "hash": "sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ==" - } - }, - "npm:@types/sinonjs__fake-timers": { - "type": "npm", - "name": "npm:@types/sinonjs__fake-timers", - "data": { - "version": "8.1.1", - "packageName": "@types/sinonjs__fake-timers", - "hash": "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==" - } - }, - "npm:@types/sizzle": { - "type": "npm", - "name": "npm:@types/sizzle", - "data": { - "version": "2.3.8", - "packageName": "@types/sizzle", - "hash": "sha512-0vWLNK2D5MT9dg0iOo8GlKguPAU02QjmZitPEsXRuJXU/OGIOt9vT9Fc26wtYuavLxtO45v9PGleoL9Z0k1LHg==" - } - }, - "npm:@types/sockjs": { - "type": "npm", - "name": "npm:@types/sockjs", - "data": { - "version": "0.3.36", - "packageName": "@types/sockjs", - "hash": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==" - } - }, - "npm:@types/stack-utils": { - "type": "npm", - "name": "npm:@types/stack-utils", - "data": { - "version": "2.0.3", - "packageName": "@types/stack-utils", - "hash": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==" - } - }, - "npm:@types/tough-cookie": { - "type": "npm", - "name": "npm:@types/tough-cookie", - "data": { - "version": "4.0.5", - "packageName": "@types/tough-cookie", - "hash": "sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==" - } - }, - "npm:@types/wrap-ansi": { - "type": "npm", - "name": "npm:@types/wrap-ansi", - "data": { - "version": "3.0.0", - "packageName": "@types/wrap-ansi", - "hash": "sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==" - } - }, - "npm:@types/ws": { - "type": "npm", - "name": "npm:@types/ws", - "data": { - "version": "8.5.10", - "packageName": "@types/ws", - "hash": "sha512-vmQSUcfalpIq0R9q7uTo2lXs6eGIpt9wtnLdMv9LVpIjCA/+ufZRozlVoVelIYixx1ugCBKDhn89vnsEGOCx9A==" - } - }, - "npm:@types/yargs": { - "type": "npm", - "name": "npm:@types/yargs", - "data": { - "version": "17.0.32", - "packageName": "@types/yargs", - "hash": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==" - } - }, - "npm:@types/yargs-parser": { - "type": "npm", - "name": "npm:@types/yargs-parser", - "data": { - "version": "21.0.3", - "packageName": "@types/yargs-parser", - "hash": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==" - } - }, - "npm:@types/yauzl": { - "type": "npm", - "name": "npm:@types/yauzl", - "data": { - "version": "2.10.3", - "packageName": "@types/yauzl", - "hash": "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" - } - }, - "npm:@typescript-eslint/eslint-plugin": { - "type": "npm", - "name": "npm:@typescript-eslint/eslint-plugin", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/eslint-plugin", - "hash": "sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw==" - } - }, - "npm:@typescript-eslint/parser": { - "type": "npm", - "name": "npm:@typescript-eslint/parser", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/parser", - "hash": "sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg==" - } - }, - "npm:@typescript-eslint/scope-manager": { - "type": "npm", - "name": "npm:@typescript-eslint/scope-manager", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/scope-manager", - "hash": "sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==" - } - }, - "npm:@typescript-eslint/type-utils": { - "type": "npm", - "name": "npm:@typescript-eslint/type-utils", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/type-utils", - "hash": "sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA==" - } - }, - "npm:@typescript-eslint/types": { - "type": "npm", - "name": "npm:@typescript-eslint/types", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/types", - "hash": "sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==" - } - }, - "npm:@typescript-eslint/typescript-estree": { - "type": "npm", - "name": "npm:@typescript-eslint/typescript-estree", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/typescript-estree", - "hash": "sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==" - } - }, - "npm:@typescript-eslint/utils": { - "type": "npm", - "name": "npm:@typescript-eslint/utils", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/utils", - "hash": "sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==" - } - }, - "npm:@typescript-eslint/visitor-keys": { - "type": "npm", - "name": "npm:@typescript-eslint/visitor-keys", - "data": { - "version": "7.18.0", - "packageName": "@typescript-eslint/visitor-keys", - "hash": "sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==" - } - }, - "npm:@ungap/structured-clone": { - "type": "npm", - "name": "npm:@ungap/structured-clone", - "data": { - "version": "1.2.0", - "packageName": "@ungap/structured-clone", - "hash": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==" - } - }, - "npm:@verdaccio/commons-api": { - "type": "npm", - "name": "npm:@verdaccio/commons-api", - "data": { - "version": "10.2.0", - "packageName": "@verdaccio/commons-api", - "hash": "sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==" - } - }, - "npm:http-status-codes@2.2.0": { - "type": "npm", - "name": "npm:http-status-codes@2.2.0", - "data": { - "version": "2.2.0", - "packageName": "http-status-codes", - "hash": "sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==" - } - }, - "npm:http-status-codes": { - "type": "npm", - "name": "npm:http-status-codes", - "data": { - "version": "2.3.0", - "packageName": "http-status-codes", - "hash": "sha512-RJ8XvFvpPM/Dmc5SV+dC4y5PCeOhT3x1Hq0NU3rjGeg5a/CqlhZ7uudknPwZFz4aeAXDcbAyaeP7GAo9lvngtA==" - } - }, - "npm:@verdaccio/config": { - "type": "npm", - "name": "npm:@verdaccio/config", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/config", - "hash": "sha512-mB3qaf8wW4sUgS0h3Z4TXYH/V9spjjFA33kNqWl78IMJHipBddbyBvdmfh/vo/NGtfju8DrDbRZlhKCl6293Qg==" - } - }, - "npm:@verdaccio/core": { - "type": "npm", - "name": "npm:@verdaccio/core", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/core", - "hash": "sha512-kS7/x5y9knbkSksHeawRV5Af8p/g0qk9GgQOZjuvOtv08kMFSttYk/eDglE9++SbvqP34+sDraUIMB/C3tZ2fw==" - } - }, - "npm:yallist@4.0.0": { - "type": "npm", - "name": "npm:yallist@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "yallist", - "hash": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - } - }, - "npm:yallist@2.1.2": { - "type": "npm", - "name": "npm:yallist@2.1.2", - "data": { - "version": "2.1.2", - "packageName": "yallist", - "hash": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - } - }, - "npm:yallist": { - "type": "npm", - "name": "npm:yallist", - "data": { - "version": "3.1.1", - "packageName": "yallist", - "hash": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" - } - }, - "npm:@verdaccio/file-locking": { - "type": "npm", - "name": "npm:@verdaccio/file-locking", - "data": { - "version": "10.3.1", - "packageName": "@verdaccio/file-locking", - "hash": "sha512-oqYLfv3Yg3mAgw9qhASBpjD50osj2AX4IwbkUtyuhhKGyoFU9eZdrbeW6tpnqUnj6yBMtAPm2eGD4BwQuX400g==" - } - }, - "npm:@verdaccio/file-locking@12.0.0-next.1": { - "type": "npm", - "name": "npm:@verdaccio/file-locking@12.0.0-next.1", - "data": { - "version": "12.0.0-next.1", - "packageName": "@verdaccio/file-locking", - "hash": "sha512-Zb5G2HEhVRB0jCq4z7QA4dqTdRv/2kIsw2Nkm3j2HqC1OeJRxas3MJAF/OxzbAb1IN32lbg1zycMSk6NcbQkgQ==" - } - }, - "npm:@verdaccio/local-storage": { - "type": "npm", - "name": "npm:@verdaccio/local-storage", - "data": { - "version": "10.3.3", - "packageName": "@verdaccio/local-storage", - "hash": "sha512-/n0FH+1hxVg80YhYBfJuW7F2AuvLY2fra8/DTCilWDll9Y5yZDxwntZfcKHJLerCA4atrbJtvaqpWkoV3Q9x8w==" - } - }, - "npm:async@3.2.4": { - "type": "npm", - "name": "npm:async@3.2.4", - "data": { - "version": "3.2.4", - "packageName": "async", - "hash": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - } - }, - "npm:async": { - "type": "npm", - "name": "npm:async", - "data": { - "version": "3.2.5", - "packageName": "async", - "hash": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==" - } - }, - "npm:async@2.6.4": { - "type": "npm", - "name": "npm:async@2.6.4", - "data": { - "version": "2.6.4", - "packageName": "async", - "hash": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==" - } - }, - "npm:mkdirp@1.0.4": { - "type": "npm", - "name": "npm:mkdirp@1.0.4", - "data": { - "version": "1.0.4", - "packageName": "mkdirp", - "hash": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" - } - }, - "npm:mkdirp": { - "type": "npm", - "name": "npm:mkdirp", - "data": { - "version": "0.5.6", - "packageName": "mkdirp", - "hash": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" - } - }, - "npm:@verdaccio/logger-7": { - "type": "npm", - "name": "npm:@verdaccio/logger-7", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/logger-7", - "hash": "sha512-UgbZnnapLmvcVMz7HzJhsyMTFLhVcAKTwKW/5dtaSwD2XrP721YawdTwJEPZnhcNrTcD9dUvRGfW4Dr/5QzJcg==" - } - }, - "npm:@verdaccio/logger-commons": { - "type": "npm", - "name": "npm:@verdaccio/logger-commons", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/logger-commons", - "hash": "sha512-RTA4K6KvoCrgqA1aVP4n8IDZfUQtaza2FcPjEsBShLQg0rHFJi/5/yQg+J4MpOvYlKbrusOy9pwN86h9pCe+CA==" - } - }, - "npm:@verdaccio/logger-prettify": { - "type": "npm", - "name": "npm:@verdaccio/logger-prettify", - "data": { - "version": "7.0.0-next.1", - "packageName": "@verdaccio/logger-prettify", - "hash": "sha512-ZF71AS2k0OiSnKVT05+NUWARZ+yn0keGAlpkgNWU7SHiYeFS1ZDVpapi9PXR23gJ5U756fyPKaqvlRcYgEpsgA==" - } - }, - "npm:dayjs@1.11.7": { - "type": "npm", - "name": "npm:dayjs@1.11.7", - "data": { - "version": "1.11.7", - "packageName": "dayjs", - "hash": "sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==" - } - }, - "npm:dayjs": { - "type": "npm", - "name": "npm:dayjs", - "data": { - "version": "1.11.10", - "packageName": "dayjs", - "hash": "sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ==" - } - }, - "npm:@verdaccio/middleware": { - "type": "npm", - "name": "npm:@verdaccio/middleware", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/middleware", - "hash": "sha512-NBQxi6ag2zSIoUUmnQn/n0YwJDnnHqqtyV5c73YTdQV5RSPn5i2YKz+8DSA+iJYa2ff8G4fx8hOdJR+QZZQ24w==" - } - }, - "npm:mime@2.6.0": { - "type": "npm", - "name": "npm:mime@2.6.0", - "data": { - "version": "2.6.0", - "packageName": "mime", - "hash": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" - } - }, - "npm:mime": { - "type": "npm", - "name": "npm:mime", - "data": { - "version": "1.6.0", - "packageName": "mime", - "hash": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" - } - }, - "npm:mime@2.5.2": { - "type": "npm", - "name": "npm:mime@2.5.2", - "data": { - "version": "2.5.2", - "packageName": "mime", - "hash": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" - } - }, - "npm:mime@1.4.1": { - "type": "npm", - "name": "npm:mime@1.4.1", - "data": { - "version": "1.4.1", - "packageName": "mime", - "hash": "sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==" - } - }, - "npm:mime@3.0.0": { - "type": "npm", - "name": "npm:mime@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "mime", - "hash": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==" - } - }, - "npm:@verdaccio/search": { - "type": "npm", - "name": "npm:@verdaccio/search", - "data": { - "version": "7.0.0-next.2", - "packageName": "@verdaccio/search", - "hash": "sha512-NoGSpubKB+SB4gRMIoEl3E3NkoKE5f0DnANghB3SnMtVxpJGdwZgylosqDxt8swhQ80+16hYdAp6g44uhjVE6Q==" - } - }, - "npm:@verdaccio/signature": { - "type": "npm", - "name": "npm:@verdaccio/signature", - "data": { - "version": "7.0.0-next.3", - "packageName": "@verdaccio/signature", - "hash": "sha512-egs1VmEe+COUUZ83I6gzDy79Jo3b/AExPvp9EDuJHkmwxJj+9gb231Rv4wk+UoNPrQRNLljUepQwVrDmbqP5DQ==" - } - }, - "npm:@verdaccio/streams": { - "type": "npm", - "name": "npm:@verdaccio/streams", - "data": { - "version": "10.2.1", - "packageName": "@verdaccio/streams", - "hash": "sha512-OojIG/f7UYKxC4dYX8x5ax8QhRx1b8OYUAMz82rUottCuzrssX/4nn5QE7Ank0DUSX3C9l/HPthc4d9uKRJqJQ==" - } - }, - "npm:@verdaccio/tarball": { - "type": "npm", - "name": "npm:@verdaccio/tarball", - "data": { - "version": "12.0.0-next-7.10", - "packageName": "@verdaccio/tarball", - "hash": "sha512-kxctkPREUpe0oRDsTelKcLsWGv2llRBcK2AlyCAX7UENKGWvVqITTk81PkVpzlwXOpcRWdLJQmEE+dtXGwLr6Q==" - } - }, - "npm:@verdaccio/ui-theme": { - "type": "npm", - "name": "npm:@verdaccio/ui-theme", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/ui-theme", - "hash": "sha512-I1War/XBg3WzzAojXDtEDjZw/1qPKW0d8EIsJD3h6Xi5Atzvz/xBTbHjgbwApjmISyDWQ8Vevp8zOtGO33zLSw==" - } - }, - "npm:@verdaccio/url": { - "type": "npm", - "name": "npm:@verdaccio/url", - "data": { - "version": "12.0.0-next-7.10", - "packageName": "@verdaccio/url", - "hash": "sha512-AiFG+W/H1iD+iXkh4b6zm3AsZdGdI7tiAPCHymN7jSV6dAvWTuhIEK30mmFyCSmOE0iwyn8ZN4xqsf9Qcu1emw==" - } - }, - "npm:@verdaccio/utils": { - "type": "npm", - "name": "npm:@verdaccio/utils", - "data": { - "version": "7.0.0-next-7.10", - "packageName": "@verdaccio/utils", - "hash": "sha512-3sGyBj0leN3RjwPJPDkdsD9j1ahzQccHPj86IlIJqUJFhAcOT/nD6z9+W3sBAiro6Q2psWyWHxBJ8H3LhtlLeA==" - } - }, - "npm:@vitejs/plugin-basic-ssl": { - "type": "npm", - "name": "npm:@vitejs/plugin-basic-ssl", - "data": { - "version": "1.1.0", - "packageName": "@vitejs/plugin-basic-ssl", - "hash": "sha512-wO4Dk/rm8u7RNhOf95ZzcEmC9rYOncYgvq4z3duaJrCgjN8BxAnDVyndanfcJZ0O6XZzHz6Q0hTimxTg8Y9g/A==" - } - }, - "npm:@webassemblyjs/ast": { - "type": "npm", - "name": "npm:@webassemblyjs/ast", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/ast", - "hash": "sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==" - } - }, - "npm:@webassemblyjs/floating-point-hex-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/floating-point-hex-parser", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/floating-point-hex-parser", - "hash": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==" - } - }, - "npm:@webassemblyjs/helper-api-error": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-api-error", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-api-error", - "hash": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==" - } - }, - "npm:@webassemblyjs/helper-buffer": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-buffer", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/helper-buffer", - "hash": "sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==" - } - }, - "npm:@webassemblyjs/helper-numbers": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-numbers", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-numbers", - "hash": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==" - } - }, - "npm:@webassemblyjs/helper-wasm-bytecode": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-bytecode", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/helper-wasm-bytecode", - "hash": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==" - } - }, - "npm:@webassemblyjs/helper-wasm-section": { - "type": "npm", - "name": "npm:@webassemblyjs/helper-wasm-section", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/helper-wasm-section", - "hash": "sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==" - } - }, - "npm:@webassemblyjs/ieee754": { - "type": "npm", - "name": "npm:@webassemblyjs/ieee754", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/ieee754", - "hash": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==" - } - }, - "npm:@webassemblyjs/leb128": { - "type": "npm", - "name": "npm:@webassemblyjs/leb128", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/leb128", - "hash": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==" - } - }, - "npm:@webassemblyjs/utf8": { - "type": "npm", - "name": "npm:@webassemblyjs/utf8", - "data": { - "version": "1.11.6", - "packageName": "@webassemblyjs/utf8", - "hash": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==" - } - }, - "npm:@webassemblyjs/wasm-edit": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-edit", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-edit", - "hash": "sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==" - } - }, - "npm:@webassemblyjs/wasm-gen": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-gen", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-gen", - "hash": "sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==" - } - }, - "npm:@webassemblyjs/wasm-opt": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-opt", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-opt", - "hash": "sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==" - } - }, - "npm:@webassemblyjs/wasm-parser": { - "type": "npm", - "name": "npm:@webassemblyjs/wasm-parser", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wasm-parser", - "hash": "sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==" - } - }, - "npm:@webassemblyjs/wast-printer": { - "type": "npm", - "name": "npm:@webassemblyjs/wast-printer", - "data": { - "version": "1.12.1", - "packageName": "@webassemblyjs/wast-printer", - "hash": "sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==" - } - }, - "npm:@xtuc/ieee754": { - "type": "npm", - "name": "npm:@xtuc/ieee754", - "data": { - "version": "1.2.0", - "packageName": "@xtuc/ieee754", - "hash": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - } - }, - "npm:@xtuc/long": { - "type": "npm", - "name": "npm:@xtuc/long", - "data": { - "version": "4.2.2", - "packageName": "@xtuc/long", - "hash": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - } - }, - "npm:@yarnpkg/lockfile": { - "type": "npm", - "name": "npm:@yarnpkg/lockfile", - "data": { - "version": "1.1.0", - "packageName": "@yarnpkg/lockfile", - "hash": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==" - } - }, - "npm:@yarnpkg/parsers": { - "type": "npm", - "name": "npm:@yarnpkg/parsers", - "data": { - "version": "3.0.0-rc.46", - "packageName": "@yarnpkg/parsers", - "hash": "sha512-aiATs7pSutzda/rq8fnuPwTglyVwjM22bNnK2ZgjrpAjQHSSl3lztd2f9evst1W/qnC58DRz7T7QndUDumAR4Q==" - } - }, - "npm:@zkochan/js-yaml": { - "type": "npm", - "name": "npm:@zkochan/js-yaml", - "data": { - "version": "0.0.7", - "packageName": "@zkochan/js-yaml", - "hash": "sha512-nrUSn7hzt7J6JWgWGz78ZYI8wj+gdIJdk0Ynjpp8l+trkn58Uqsf6RYrYkEK+3X18EX+TNdtJI0WxAtc+L84SQ==" - } - }, - "npm:abab": { - "type": "npm", - "name": "npm:abab", - "data": { - "version": "2.0.6", - "packageName": "abab", - "hash": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==" - } - }, - "npm:abbrev": { - "type": "npm", - "name": "npm:abbrev", - "data": { - "version": "2.0.0", - "packageName": "abbrev", - "hash": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==" - } - }, - "npm:abort-controller": { - "type": "npm", - "name": "npm:abort-controller", - "data": { - "version": "3.0.0", - "packageName": "abort-controller", - "hash": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==" - } - }, - "npm:accepts": { - "type": "npm", - "name": "npm:accepts", - "data": { - "version": "1.3.8", - "packageName": "accepts", - "hash": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==" - } - }, - "npm:acorn": { - "type": "npm", - "name": "npm:acorn", - "data": { - "version": "8.11.3", - "packageName": "acorn", - "hash": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==" - } - }, - "npm:acorn-globals": { - "type": "npm", - "name": "npm:acorn-globals", - "data": { - "version": "7.0.1", - "packageName": "acorn-globals", - "hash": "sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==" - } - }, - "npm:acorn-import-attributes": { - "type": "npm", - "name": "npm:acorn-import-attributes", - "data": { - "version": "1.9.5", - "packageName": "acorn-import-attributes", - "hash": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==" - } - }, - "npm:acorn-jsx": { - "type": "npm", - "name": "npm:acorn-jsx", - "data": { - "version": "5.3.2", - "packageName": "acorn-jsx", - "hash": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" - } - }, - "npm:acorn-walk": { - "type": "npm", - "name": "npm:acorn-walk", - "data": { - "version": "8.3.2", - "packageName": "acorn-walk", - "hash": "sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==" - } - }, - "npm:address": { - "type": "npm", - "name": "npm:address", - "data": { - "version": "1.2.2", - "packageName": "address", - "hash": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==" - } - }, - "npm:adjust-sourcemap-loader": { - "type": "npm", - "name": "npm:adjust-sourcemap-loader", - "data": { - "version": "4.0.0", - "packageName": "adjust-sourcemap-loader", - "hash": "sha512-OXwN5b9pCUXNQHJpwwD2qP40byEmSgzj8B4ydSN0uMNYWiFmJ6x6KwUllMmfk8Rwu/HJDFR7U8ubsWBoN0Xp0A==" - } - }, - "npm:adm-zip": { - "type": "npm", - "name": "npm:adm-zip", - "data": { - "version": "0.5.15", - "packageName": "adm-zip", - "hash": "sha512-jYPWSeOA8EFoZnucrKCNihqBjoEGQSU4HKgHYQgKNEQ0pQF9a/DYuo/+fAxY76k4qe75LUlLWpAM1QWcBMTOKw==" - } - }, - "npm:agent-base": { - "type": "npm", - "name": "npm:agent-base", - "data": { - "version": "7.1.1", - "packageName": "agent-base", - "hash": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==" - } - }, - "npm:agent-base@6.0.2": { - "type": "npm", - "name": "npm:agent-base@6.0.2", - "data": { - "version": "6.0.2", - "packageName": "agent-base", - "hash": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" - } - }, - "npm:aggregate-error": { - "type": "npm", - "name": "npm:aggregate-error", - "data": { - "version": "3.1.0", - "packageName": "aggregate-error", - "hash": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" - } - }, - "npm:ajv-keywords": { - "type": "npm", - "name": "npm:ajv-keywords", - "data": { - "version": "5.1.0", - "packageName": "ajv-keywords", - "hash": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==" - } - }, - "npm:ajv-keywords@3.5.2": { - "type": "npm", - "name": "npm:ajv-keywords@3.5.2", - "data": { - "version": "3.5.2", - "packageName": "ajv-keywords", - "hash": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" - } - }, - "npm:ansi-colors": { - "type": "npm", - "name": "npm:ansi-colors", - "data": { - "version": "4.1.3", - "packageName": "ansi-colors", - "hash": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==" - } - }, - "npm:ansi-html-community": { - "type": "npm", - "name": "npm:ansi-html-community", - "data": { - "version": "0.0.8", - "packageName": "ansi-html-community", - "hash": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==" - } - }, - "npm:any-promise": { - "type": "npm", - "name": "npm:any-promise", - "data": { - "version": "1.3.0", - "packageName": "any-promise", - "hash": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" - } - }, - "npm:anymatch": { - "type": "npm", - "name": "npm:anymatch", - "data": { - "version": "3.1.3", - "packageName": "anymatch", - "hash": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==" - } - }, - "npm:apache-md5": { - "type": "npm", - "name": "npm:apache-md5", - "data": { - "version": "1.1.8", - "packageName": "apache-md5", - "hash": "sha512-FCAJojipPn0bXjuEpjOOOMN8FZDkxfWWp4JGN9mifU2IhxvKyXZYqpzPHdnTSUpmPDy+tsslB6Z1g+Vg6nVbYA==" - } - }, - "npm:aproba": { - "type": "npm", - "name": "npm:aproba", - "data": { - "version": "2.0.0", - "packageName": "aproba", - "hash": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==" - } - }, - "npm:arch": { - "type": "npm", - "name": "npm:arch", - "data": { - "version": "2.2.0", - "packageName": "arch", - "hash": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==" - } - }, - "npm:are-we-there-yet": { - "type": "npm", - "name": "npm:are-we-there-yet", - "data": { - "version": "3.0.1", - "packageName": "are-we-there-yet", - "hash": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==" - } - }, - "npm:arg": { - "type": "npm", - "name": "npm:arg", - "data": { - "version": "4.1.3", - "packageName": "arg", - "hash": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" - } - }, - "npm:aria-query": { - "type": "npm", - "name": "npm:aria-query", - "data": { - "version": "5.3.0", - "packageName": "aria-query", - "hash": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==" - } - }, - "npm:array-flatten": { - "type": "npm", - "name": "npm:array-flatten", - "data": { - "version": "1.1.1", - "packageName": "array-flatten", - "hash": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" - } - }, - "npm:asn1": { - "type": "npm", - "name": "npm:asn1", - "data": { - "version": "0.2.6", - "packageName": "asn1", - "hash": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==" - } - }, - "npm:assert-plus": { - "type": "npm", - "name": "npm:assert-plus", - "data": { - "version": "1.0.0", - "packageName": "assert-plus", - "hash": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" - } - }, - "npm:astral-regex": { - "type": "npm", - "name": "npm:astral-regex", - "data": { - "version": "2.0.0", - "packageName": "astral-regex", - "hash": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" - } - }, - "npm:async-each-series": { - "type": "npm", - "name": "npm:async-each-series", - "data": { - "version": "0.1.1", - "packageName": "async-each-series", - "hash": "sha512-p4jj6Fws4Iy2m0iCmI2am2ZNZCgbdgE+P8F/8csmn2vx7ixXrO2zGcuNsD46X5uZSVecmkEy/M06X2vG8KD6dQ==" - } - }, - "npm:asynckit": { - "type": "npm", - "name": "npm:asynckit", - "data": { - "version": "0.4.0", - "packageName": "asynckit", - "hash": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" - } - }, - "npm:at-least-node": { - "type": "npm", - "name": "npm:at-least-node", - "data": { - "version": "1.0.0", - "packageName": "at-least-node", - "hash": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - } - }, - "npm:atomic-sleep": { - "type": "npm", - "name": "npm:atomic-sleep", - "data": { - "version": "1.0.0", - "packageName": "atomic-sleep", - "hash": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==" - } - }, - "npm:autoprefixer": { - "type": "npm", - "name": "npm:autoprefixer", - "data": { - "version": "10.4.19", - "packageName": "autoprefixer", - "hash": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==" - } - }, - "npm:aws-sign2": { - "type": "npm", - "name": "npm:aws-sign2", - "data": { - "version": "0.7.0", - "packageName": "aws-sign2", - "hash": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==" - } - }, - "npm:aws4": { - "type": "npm", - "name": "npm:aws4", - "data": { - "version": "1.12.0", - "packageName": "aws4", - "hash": "sha512-NmWvPnx0F1SfrQbYwOi7OeaNGokp9XhzNioJ/CSBs8Qa4vxug81mhJEAVZwxXuBmYB5KDRfMq/F3RR0BIU7sWg==" - } - }, - "npm:axios": { - "type": "npm", - "name": "npm:axios", - "data": { - "version": "1.7.2", - "packageName": "axios", - "hash": "sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==" - } - }, - "npm:form-data@4.0.0": { - "type": "npm", - "name": "npm:form-data@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "form-data", - "hash": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==" - } - }, - "npm:form-data": { - "type": "npm", - "name": "npm:form-data", - "data": { - "version": "2.3.3", - "packageName": "form-data", - "hash": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" - } - }, - "npm:proxy-from-env@1.1.0": { - "type": "npm", - "name": "npm:proxy-from-env@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "proxy-from-env", - "hash": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" - } - }, - "npm:proxy-from-env": { - "type": "npm", - "name": "npm:proxy-from-env", - "data": { - "version": "1.0.0", - "packageName": "proxy-from-env", - "hash": "sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==" - } - }, - "npm:axobject-query": { - "type": "npm", - "name": "npm:axobject-query", - "data": { - "version": "4.1.0", - "packageName": "axobject-query", - "hash": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==" - } - }, - "npm:babel-jest": { - "type": "npm", - "name": "npm:babel-jest", - "data": { - "version": "29.7.0", - "packageName": "babel-jest", - "hash": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==" - } - }, - "npm:babel-loader": { - "type": "npm", - "name": "npm:babel-loader", - "data": { - "version": "9.1.3", - "packageName": "babel-loader", - "hash": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==" - } - }, - "npm:find-cache-dir@4.0.0": { - "type": "npm", - "name": "npm:find-cache-dir@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "find-cache-dir", - "hash": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==" - } - }, - "npm:find-cache-dir": { - "type": "npm", - "name": "npm:find-cache-dir", - "data": { - "version": "3.3.2", - "packageName": "find-cache-dir", - "hash": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==" - } - }, - "npm:find-up@6.3.0": { - "type": "npm", - "name": "npm:find-up@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "find-up", - "hash": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==" - } - }, - "npm:find-up@5.0.0": { - "type": "npm", - "name": "npm:find-up@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "find-up", - "hash": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" - } - }, - "npm:find-up": { - "type": "npm", - "name": "npm:find-up", - "data": { - "version": "4.1.0", - "packageName": "find-up", - "hash": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" - } - }, - "npm:locate-path@7.2.0": { - "type": "npm", - "name": "npm:locate-path@7.2.0", - "data": { - "version": "7.2.0", - "packageName": "locate-path", - "hash": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==" - } - }, - "npm:locate-path@6.0.0": { - "type": "npm", - "name": "npm:locate-path@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "locate-path", - "hash": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" - } - }, - "npm:locate-path": { - "type": "npm", - "name": "npm:locate-path", - "data": { - "version": "5.0.0", - "packageName": "locate-path", - "hash": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" - } - }, - "npm:p-limit@4.0.0": { - "type": "npm", - "name": "npm:p-limit@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "p-limit", - "hash": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==" - } - }, - "npm:p-limit": { - "type": "npm", - "name": "npm:p-limit", - "data": { - "version": "3.1.0", - "packageName": "p-limit", - "hash": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" - } - }, - "npm:p-limit@2.3.0": { - "type": "npm", - "name": "npm:p-limit@2.3.0", - "data": { - "version": "2.3.0", - "packageName": "p-limit", - "hash": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" - } - }, - "npm:p-locate@6.0.0": { - "type": "npm", - "name": "npm:p-locate@6.0.0", - "data": { - "version": "6.0.0", - "packageName": "p-locate", - "hash": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==" - } - }, - "npm:p-locate@5.0.0": { - "type": "npm", - "name": "npm:p-locate@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "p-locate", - "hash": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" - } - }, - "npm:p-locate": { - "type": "npm", - "name": "npm:p-locate", - "data": { - "version": "4.1.0", - "packageName": "p-locate", - "hash": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" - } - }, - "npm:path-exists@5.0.0": { - "type": "npm", - "name": "npm:path-exists@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-exists", - "hash": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==" - } - }, - "npm:path-exists": { - "type": "npm", - "name": "npm:path-exists", - "data": { - "version": "4.0.0", - "packageName": "path-exists", - "hash": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" - } - }, - "npm:pkg-dir@7.0.0": { - "type": "npm", - "name": "npm:pkg-dir@7.0.0", - "data": { - "version": "7.0.0", - "packageName": "pkg-dir", - "hash": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==" - } - }, - "npm:pkg-dir": { - "type": "npm", - "name": "npm:pkg-dir", - "data": { - "version": "4.2.0", - "packageName": "pkg-dir", - "hash": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" - } - }, - "npm:yocto-queue@1.0.0": { - "type": "npm", - "name": "npm:yocto-queue@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "yocto-queue", - "hash": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==" - } - }, - "npm:yocto-queue": { - "type": "npm", - "name": "npm:yocto-queue", - "data": { - "version": "0.1.0", - "packageName": "yocto-queue", - "hash": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" - } - }, - "npm:babel-plugin-const-enum": { - "type": "npm", - "name": "npm:babel-plugin-const-enum", - "data": { - "version": "1.2.0", - "packageName": "babel-plugin-const-enum", - "hash": "sha512-o1m/6iyyFnp9MRsK1dHF3bneqyf3AlM2q3A/YbgQr2pCat6B6XJVDv2TXqzfY2RYUi4mak6WAksSBPlyYGx9dg==" - } - }, - "npm:babel-plugin-istanbul": { - "type": "npm", - "name": "npm:babel-plugin-istanbul", - "data": { - "version": "6.1.1", - "packageName": "babel-plugin-istanbul", - "hash": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==" - } - }, - "npm:istanbul-lib-instrument@5.2.1": { - "type": "npm", - "name": "npm:istanbul-lib-instrument@5.2.1", - "data": { - "version": "5.2.1", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==" - } - }, - "npm:istanbul-lib-instrument": { - "type": "npm", - "name": "npm:istanbul-lib-instrument", - "data": { - "version": "6.0.2", - "packageName": "istanbul-lib-instrument", - "hash": "sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw==" - } - }, - "npm:babel-plugin-jest-hoist": { - "type": "npm", - "name": "npm:babel-plugin-jest-hoist", - "data": { - "version": "29.6.3", - "packageName": "babel-plugin-jest-hoist", - "hash": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==" - } - }, - "npm:babel-plugin-macros": { - "type": "npm", - "name": "npm:babel-plugin-macros", - "data": { - "version": "2.8.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" - } - }, - "npm:babel-plugin-macros@3.1.0": { - "type": "npm", - "name": "npm:babel-plugin-macros@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "babel-plugin-macros", - "hash": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==" - } - }, - "npm:babel-plugin-polyfill-corejs2": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs2", - "data": { - "version": "0.4.10", - "packageName": "babel-plugin-polyfill-corejs2", - "hash": "sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==" - } - }, - "npm:babel-plugin-polyfill-corejs3": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-corejs3", - "data": { - "version": "0.10.4", - "packageName": "babel-plugin-polyfill-corejs3", - "hash": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==" - } - }, - "npm:babel-plugin-polyfill-regenerator": { - "type": "npm", - "name": "npm:babel-plugin-polyfill-regenerator", - "data": { - "version": "0.6.2", - "packageName": "babel-plugin-polyfill-regenerator", - "hash": "sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==" - } - }, - "npm:babel-plugin-transform-typescript-metadata": { - "type": "npm", - "name": "npm:babel-plugin-transform-typescript-metadata", - "data": { - "version": "0.3.2", - "packageName": "babel-plugin-transform-typescript-metadata", - "hash": "sha512-mWEvCQTgXQf48yDqgN7CH50waTyYBeP2Lpqx4nNWab9sxEpdXVeKgfj1qYI2/TgUPQtNFZ85i3PemRtnXVYYJg==" - } - }, - "npm:babel-preset-current-node-syntax": { - "type": "npm", - "name": "npm:babel-preset-current-node-syntax", - "data": { - "version": "1.0.1", - "packageName": "babel-preset-current-node-syntax", - "hash": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" - } - }, - "npm:babel-preset-jest": { - "type": "npm", - "name": "npm:babel-preset-jest", - "data": { - "version": "29.6.3", - "packageName": "babel-preset-jest", - "hash": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==" - } - }, - "npm:balanced-match": { - "type": "npm", - "name": "npm:balanced-match", - "data": { - "version": "1.0.2", - "packageName": "balanced-match", - "hash": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - } - }, - "npm:base64-js": { - "type": "npm", - "name": "npm:base64-js", - "data": { - "version": "1.5.1", - "packageName": "base64-js", - "hash": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" - } - }, - "npm:base64id": { - "type": "npm", - "name": "npm:base64id", - "data": { - "version": "2.0.0", - "packageName": "base64id", - "hash": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==" - } - }, - "npm:basic-auth": { - "type": "npm", - "name": "npm:basic-auth", - "data": { - "version": "2.0.1", - "packageName": "basic-auth", - "hash": "sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==" - } - }, - "npm:safe-buffer@5.1.2": { - "type": "npm", - "name": "npm:safe-buffer@5.1.2", - "data": { - "version": "5.1.2", - "packageName": "safe-buffer", - "hash": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - } - }, - "npm:safe-buffer": { - "type": "npm", - "name": "npm:safe-buffer", - "data": { - "version": "5.2.1", - "packageName": "safe-buffer", - "hash": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" - } - }, - "npm:batch": { - "type": "npm", - "name": "npm:batch", - "data": { - "version": "0.6.1", - "packageName": "batch", - "hash": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==" - } - }, - "npm:bcrypt-pbkdf": { - "type": "npm", - "name": "npm:bcrypt-pbkdf", - "data": { - "version": "1.0.2", - "packageName": "bcrypt-pbkdf", - "hash": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==" - } - }, - "npm:bcryptjs": { - "type": "npm", - "name": "npm:bcryptjs", - "data": { - "version": "2.4.3", - "packageName": "bcryptjs", - "hash": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==" - } - }, - "npm:big.js": { - "type": "npm", - "name": "npm:big.js", - "data": { - "version": "5.2.2", - "packageName": "big.js", - "hash": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" - } - }, - "npm:bin-check": { - "type": "npm", - "name": "npm:bin-check", - "data": { - "version": "4.1.0", - "packageName": "bin-check", - "hash": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==" - } - }, - "npm:bin-version": { - "type": "npm", - "name": "npm:bin-version", - "data": { - "version": "6.0.0", - "packageName": "bin-version", - "hash": "sha512-nk5wEsP4RiKjG+vF+uG8lFsEn4d7Y6FVDamzzftSunXOoOcOOkzcWdKVlGgFFwlUQCj63SgnUkLLGF8v7lufhw==" - } - }, - "npm:bin-version-check": { - "type": "npm", - "name": "npm:bin-version-check", - "data": { - "version": "5.1.0", - "packageName": "bin-version-check", - "hash": "sha512-bYsvMqJ8yNGILLz1KP9zKLzQ6YpljV3ln1gqhuLkUtyfGi3qXKGuK2p+U4NAvjVFzDFiBBtOpCOSFNuYYEGZ5g==" - } - }, - "npm:execa@5.1.1": { - "type": "npm", - "name": "npm:execa@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "execa", - "hash": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==" - } - }, - "npm:execa@4.1.0": { - "type": "npm", - "name": "npm:execa@4.1.0", - "data": { - "version": "4.1.0", - "packageName": "execa", - "hash": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" - } - }, - "npm:execa": { - "type": "npm", - "name": "npm:execa", - "data": { - "version": "0.7.0", - "packageName": "execa", - "hash": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==" - } - }, - "npm:get-stream@6.0.1": { - "type": "npm", - "name": "npm:get-stream@6.0.1", - "data": { - "version": "6.0.1", - "packageName": "get-stream", - "hash": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==" - } - }, - "npm:get-stream@5.2.0": { - "type": "npm", - "name": "npm:get-stream@5.2.0", - "data": { - "version": "5.2.0", - "packageName": "get-stream", - "hash": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" - } - }, - "npm:get-stream": { - "type": "npm", - "name": "npm:get-stream", - "data": { - "version": "3.0.0", - "packageName": "get-stream", - "hash": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==" - } - }, - "npm:is-stream@2.0.1": { - "type": "npm", - "name": "npm:is-stream@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "is-stream", - "hash": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==" - } - }, - "npm:is-stream": { - "type": "npm", - "name": "npm:is-stream", - "data": { - "version": "1.1.0", - "packageName": "is-stream", - "hash": "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" - } - }, - "npm:binary-extensions": { - "type": "npm", - "name": "npm:binary-extensions", - "data": { - "version": "2.3.0", - "packageName": "binary-extensions", - "hash": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==" - } - }, - "npm:bl": { - "type": "npm", - "name": "npm:bl", - "data": { - "version": "4.1.0", - "packageName": "bl", - "hash": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" - } - }, - "npm:blob-util": { - "type": "npm", - "name": "npm:blob-util", - "data": { - "version": "2.0.2", - "packageName": "blob-util", - "hash": "sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==" - } - }, - "npm:bluebird": { - "type": "npm", - "name": "npm:bluebird", - "data": { - "version": "3.7.2", - "packageName": "bluebird", - "hash": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - } - }, - "npm:raw-body@2.5.1": { - "type": "npm", - "name": "npm:raw-body@2.5.1", - "data": { - "version": "2.5.1", - "packageName": "raw-body", - "hash": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==" - } - }, - "npm:raw-body": { - "type": "npm", - "name": "npm:raw-body", - "data": { - "version": "2.5.2", - "packageName": "raw-body", - "hash": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==" - } - }, - "npm:bonjour-service": { - "type": "npm", - "name": "npm:bonjour-service", - "data": { - "version": "1.2.1", - "packageName": "bonjour-service", - "hash": "sha512-oSzCS2zV14bh2kji6vNe7vrpJYCHGvcZnlffFQ1MEoX/WOeQ/teD8SYWKR942OI3INjq8OMNJlbPK5LLLUxFDw==" - } - }, - "npm:boolbase": { - "type": "npm", - "name": "npm:boolbase", - "data": { - "version": "1.0.0", - "packageName": "boolbase", - "hash": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - } - }, - "npm:braces": { - "type": "npm", - "name": "npm:braces", - "data": { - "version": "3.0.2", - "packageName": "braces", - "hash": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" - } - }, - "npm:browser-sync": { - "type": "npm", - "name": "npm:browser-sync", - "data": { - "version": "3.0.2", - "packageName": "browser-sync", - "hash": "sha512-PC9c7aWJFVR4IFySrJxOqLwB9ENn3/TaXCXtAa0SzLwocLN3qMjN+IatbjvtCX92BjNXsY6YWg9Eb7F3Wy255g==" - } - }, - "npm:browser-sync-client": { - "type": "npm", - "name": "npm:browser-sync-client", - "data": { - "version": "3.0.2", - "packageName": "browser-sync-client", - "hash": "sha512-tBWdfn9L0wd2Pjuz/NWHtNEKthVb1Y67vg8/qyGNtCqetNz5lkDkFnrsx5UhPNPYUO8vci50IWC/BhYaQskDiQ==" - } - }, - "npm:browser-sync-ui": { - "type": "npm", - "name": "npm:browser-sync-ui", - "data": { - "version": "3.0.2", - "packageName": "browser-sync-ui", - "hash": "sha512-V3FwWAI+abVbFLTyJjXJlCMBwjc3GXf/BPGfwO2fMFACWbIGW9/4SrBOFYEOOtqzCjQE0Di+U3VIb7eES4omNA==" - } - }, - "npm:jsonfile@3.0.1": { - "type": "npm", - "name": "npm:jsonfile@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "jsonfile", - "hash": "sha512-oBko6ZHlubVB5mRFkur5vgYR1UyqX+S6Y/oCfLhqNdcc2fYFlDpIoNc7AfKS1KOGcnNAkvsr0grLck9ANM815w==" - } - }, - "npm:jsonfile": { - "type": "npm", - "name": "npm:jsonfile", - "data": { - "version": "6.1.0", - "packageName": "jsonfile", - "hash": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" - } - }, - "npm:jsonfile@4.0.0": { - "type": "npm", - "name": "npm:jsonfile@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "jsonfile", - "hash": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" - } - }, - "npm:universalify@0.1.2": { - "type": "npm", - "name": "npm:universalify@0.1.2", - "data": { - "version": "0.1.2", - "packageName": "universalify", - "hash": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" - } - }, - "npm:universalify@0.2.0": { - "type": "npm", - "name": "npm:universalify@0.2.0", - "data": { - "version": "0.2.0", - "packageName": "universalify", - "hash": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==" - } - }, - "npm:universalify": { - "type": "npm", - "name": "npm:universalify", - "data": { - "version": "2.0.1", - "packageName": "universalify", - "hash": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" - } - }, - "npm:browserslist": { - "type": "npm", - "name": "npm:browserslist", - "data": { - "version": "4.23.3", - "packageName": "browserslist", - "hash": "sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==" - } - }, - "npm:bs-logger": { - "type": "npm", - "name": "npm:bs-logger", - "data": { - "version": "0.2.6", - "packageName": "bs-logger", - "hash": "sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog==" - } - }, - "npm:bs-recipes": { - "type": "npm", - "name": "npm:bs-recipes", - "data": { - "version": "1.3.4", - "packageName": "bs-recipes", - "hash": "sha512-BXvDkqhDNxXEjeGM8LFkSbR+jzmP/CYpCiVKYn+soB1dDldeU15EBNDkwVXndKuX35wnNUaPd0qSoQEAkmQtMw==" - } - }, - "npm:bser": { - "type": "npm", - "name": "npm:bser", - "data": { - "version": "2.1.1", - "packageName": "bser", - "hash": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" - } - }, - "npm:btoa": { - "type": "npm", - "name": "npm:btoa", - "data": { - "version": "1.2.1", - "packageName": "btoa", - "hash": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==" - } - }, - "npm:buffer": { - "type": "npm", - "name": "npm:buffer", - "data": { - "version": "5.7.1", - "packageName": "buffer", - "hash": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" - } - }, - "npm:buffer@6.0.3": { - "type": "npm", - "name": "npm:buffer@6.0.3", - "data": { - "version": "6.0.3", - "packageName": "buffer", - "hash": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==" - } - }, - "npm:buffer-crc32": { - "type": "npm", - "name": "npm:buffer-crc32", - "data": { - "version": "0.2.13", - "packageName": "buffer-crc32", - "hash": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" - } - }, - "npm:buffer-equal-constant-time": { - "type": "npm", - "name": "npm:buffer-equal-constant-time", - "data": { - "version": "1.0.1", - "packageName": "buffer-equal-constant-time", - "hash": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" - } - }, - "npm:buffer-from": { - "type": "npm", - "name": "npm:buffer-from", - "data": { - "version": "1.1.2", - "packageName": "buffer-from", - "hash": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - } - }, - "npm:builtin-modules": { - "type": "npm", - "name": "npm:builtin-modules", - "data": { - "version": "3.3.0", - "packageName": "builtin-modules", - "hash": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==" - } - }, - "npm:builtins": { - "type": "npm", - "name": "npm:builtins", - "data": { - "version": "5.0.1", - "packageName": "builtins", - "hash": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==" - } - }, - "npm:bundle-name": { - "type": "npm", - "name": "npm:bundle-name", - "data": { - "version": "4.1.0", - "packageName": "bundle-name", - "hash": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==" - } - }, - "npm:bytes": { - "type": "npm", - "name": "npm:bytes", - "data": { - "version": "3.1.2", - "packageName": "bytes", - "hash": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==" - } - }, - "npm:bytes@3.0.0": { - "type": "npm", - "name": "npm:bytes@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "bytes", - "hash": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==" - } - }, - "npm:cacache": { - "type": "npm", - "name": "npm:cacache", - "data": { - "version": "18.0.2", - "packageName": "cacache", - "hash": "sha512-r3NU8h/P+4lVUHfeRw1dtgQYar3DZMm4/cm2bZgOvrFC/su7budSOeqh52VJIC4U4iG1WWwV6vRW0znqBvxNuw==" - } - }, - "npm:cache-content-type": { - "type": "npm", - "name": "npm:cache-content-type", - "data": { - "version": "1.0.1", - "packageName": "cache-content-type", - "hash": "sha512-IKufZ1o4Ut42YUrZSo8+qnMTrFuKkvyoLXUywKz9GJ5BrhOFGhLdkx9sG4KAnVvbY6kEcSFjLQul+DVmBm2bgA==" - } - }, - "npm:cacheable-lookup": { - "type": "npm", - "name": "npm:cacheable-lookup", - "data": { - "version": "5.0.4", - "packageName": "cacheable-lookup", - "hash": "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" - } - }, - "npm:cacheable-request": { - "type": "npm", - "name": "npm:cacheable-request", - "data": { - "version": "7.0.4", - "packageName": "cacheable-request", - "hash": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" - } - }, - "npm:cachedir": { - "type": "npm", - "name": "npm:cachedir", - "data": { - "version": "2.4.0", - "packageName": "cachedir", - "hash": "sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==" - } - }, - "npm:call-bind": { - "type": "npm", - "name": "npm:call-bind", - "data": { - "version": "1.0.7", - "packageName": "call-bind", - "hash": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==" - } - }, - "npm:callsite": { - "type": "npm", - "name": "npm:callsite", - "data": { - "version": "1.0.0", - "packageName": "callsite", - "hash": "sha512-0vdNRFXn5q+dtOqjfFtmtlI9N2eVZ7LMyEV2iKC5mEEFvSg/69Ml6b/WU2qF8W1nLRa0wiSrDT3Y5jOHZCwKPQ==" - } - }, - "npm:callsites": { - "type": "npm", - "name": "npm:callsites", - "data": { - "version": "3.1.0", - "packageName": "callsites", - "hash": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" - } - }, - "npm:camelcase": { - "type": "npm", - "name": "npm:camelcase", - "data": { - "version": "5.3.1", - "packageName": "camelcase", - "hash": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" - } - }, - "npm:camelcase@6.3.0": { - "type": "npm", - "name": "npm:camelcase@6.3.0", - "data": { - "version": "6.3.0", - "packageName": "camelcase", - "hash": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==" - } - }, - "npm:caniuse-api": { - "type": "npm", - "name": "npm:caniuse-api", - "data": { - "version": "3.0.0", - "packageName": "caniuse-api", - "hash": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" - } - }, - "npm:caniuse-lite": { - "type": "npm", - "name": "npm:caniuse-lite", - "data": { - "version": "1.0.30001650", - "packageName": "caniuse-lite", - "hash": "sha512-fgEc7hP/LB7iicdXHUI9VsBsMZmUmlVJeQP2qqQW+3lkqVhbmjEU8zp+h5stWeilX+G7uXuIUIIlWlDw9jdt8g==" - } - }, - "npm:caseless": { - "type": "npm", - "name": "npm:caseless", - "data": { - "version": "0.12.0", - "packageName": "caseless", - "hash": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" - } - }, - "npm:char-regex": { - "type": "npm", - "name": "npm:char-regex", - "data": { - "version": "1.0.2", - "packageName": "char-regex", - "hash": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" - } - }, - "npm:chardet": { - "type": "npm", - "name": "npm:chardet", - "data": { - "version": "0.7.0", - "packageName": "chardet", - "hash": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - } - }, - "npm:check-more-types": { - "type": "npm", - "name": "npm:check-more-types", - "data": { - "version": "2.24.0", - "packageName": "check-more-types", - "hash": "sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==" - } - }, - "npm:chokidar": { - "type": "npm", - "name": "npm:chokidar", - "data": { - "version": "3.6.0", - "packageName": "chokidar", - "hash": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==" - } - }, - "npm:chownr": { - "type": "npm", - "name": "npm:chownr", - "data": { - "version": "2.0.0", - "packageName": "chownr", - "hash": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" - } - }, - "npm:chrome-trace-event": { - "type": "npm", - "name": "npm:chrome-trace-event", - "data": { - "version": "1.0.4", - "packageName": "chrome-trace-event", - "hash": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==" - } - }, - "npm:ci-info": { - "type": "npm", - "name": "npm:ci-info", - "data": { - "version": "3.9.0", - "packageName": "ci-info", - "hash": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" - } - }, - "npm:cjs-module-lexer": { - "type": "npm", - "name": "npm:cjs-module-lexer", - "data": { - "version": "1.2.3", - "packageName": "cjs-module-lexer", - "hash": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==" - } - }, - "npm:clean-stack": { - "type": "npm", - "name": "npm:clean-stack", - "data": { - "version": "2.2.0", - "packageName": "clean-stack", - "hash": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" - } - }, - "npm:cli-table3": { - "type": "npm", - "name": "npm:cli-table3", - "data": { - "version": "0.6.3", - "packageName": "cli-table3", - "hash": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==" - } - }, - "npm:cli-width": { - "type": "npm", - "name": "npm:cli-width", - "data": { - "version": "4.1.0", - "packageName": "cli-width", - "hash": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==" - } - }, - "npm:clipanion": { - "type": "npm", - "name": "npm:clipanion", - "data": { - "version": "3.2.1", - "packageName": "clipanion", - "hash": "sha512-dYFdjLb7y1ajfxQopN05mylEpK9ZX0sO1/RfMXdfmwjlIsPkbh4p7A682x++zFPLDCo1x3p82dtljHf5cW2LKA==" - } - }, - "npm:cliui": { - "type": "npm", - "name": "npm:cliui", - "data": { - "version": "8.0.1", - "packageName": "cliui", - "hash": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" - } - }, - "npm:clone": { - "type": "npm", - "name": "npm:clone", - "data": { - "version": "1.0.4", - "packageName": "clone", - "hash": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" - } - }, - "npm:clone-deep": { - "type": "npm", - "name": "npm:clone-deep", - "data": { - "version": "4.0.1", - "packageName": "clone-deep", - "hash": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==" - } - }, - "npm:clone-response": { - "type": "npm", - "name": "npm:clone-response", - "data": { - "version": "1.0.3", - "packageName": "clone-response", - "hash": "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" - } - }, - "npm:co": { - "type": "npm", - "name": "npm:co", - "data": { - "version": "4.6.0", - "packageName": "co", - "hash": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==" - } - }, - "npm:collect-v8-coverage": { - "type": "npm", - "name": "npm:collect-v8-coverage", - "data": { - "version": "1.0.2", - "packageName": "collect-v8-coverage", - "hash": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==" - } - }, - "npm:color-support": { - "type": "npm", - "name": "npm:color-support", - "data": { - "version": "1.1.3", - "packageName": "color-support", - "hash": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==" - } - }, - "npm:colord": { - "type": "npm", - "name": "npm:colord", - "data": { - "version": "2.9.3", - "packageName": "colord", - "hash": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - } - }, - "npm:colorette": { - "type": "npm", - "name": "npm:colorette", - "data": { - "version": "2.0.20", - "packageName": "colorette", - "hash": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - } - }, - "npm:columnify": { - "type": "npm", - "name": "npm:columnify", - "data": { - "version": "1.6.0", - "packageName": "columnify", - "hash": "sha512-lomjuFZKfM6MSAnV9aCZC9sc0qGbmZdfygNv+nCpqVkSKdCxCklLtd16O0EILGkImHw9ZpHkAnHaB+8Zxq5W6Q==" - } - }, - "npm:combined-stream": { - "type": "npm", - "name": "npm:combined-stream", - "data": { - "version": "1.0.8", - "packageName": "combined-stream", - "hash": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" - } - }, - "npm:common-path-prefix": { - "type": "npm", - "name": "npm:common-path-prefix", - "data": { - "version": "3.0.0", - "packageName": "common-path-prefix", - "hash": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==" - } - }, - "npm:common-tags": { - "type": "npm", - "name": "npm:common-tags", - "data": { - "version": "1.8.2", - "packageName": "common-tags", - "hash": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==" - } - }, - "npm:commondir": { - "type": "npm", - "name": "npm:commondir", - "data": { - "version": "1.0.1", - "packageName": "commondir", - "hash": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - } - }, - "npm:compressible": { - "type": "npm", - "name": "npm:compressible", - "data": { - "version": "2.0.18", - "packageName": "compressible", - "hash": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" - } - }, - "npm:compression": { - "type": "npm", - "name": "npm:compression", - "data": { - "version": "1.7.4", - "packageName": "compression", - "hash": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" - } - }, - "npm:concat-map": { - "type": "npm", - "name": "npm:concat-map", - "data": { - "version": "0.0.1", - "packageName": "concat-map", - "hash": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - } - }, - "npm:concat-stream": { - "type": "npm", - "name": "npm:concat-stream", - "data": { - "version": "1.6.2", - "packageName": "concat-stream", - "hash": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" - } - }, - "npm:readable-stream@2.3.8": { - "type": "npm", - "name": "npm:readable-stream@2.3.8", - "data": { - "version": "2.3.8", - "packageName": "readable-stream", - "hash": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==" - } - }, - "npm:readable-stream@4.5.2": { - "type": "npm", - "name": "npm:readable-stream@4.5.2", - "data": { - "version": "4.5.2", - "packageName": "readable-stream", - "hash": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==" - } - }, - "npm:readable-stream": { - "type": "npm", - "name": "npm:readable-stream", - "data": { - "version": "3.6.2", - "packageName": "readable-stream", - "hash": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" - } - }, - "npm:string_decoder@1.1.1": { - "type": "npm", - "name": "npm:string_decoder@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "string_decoder", - "hash": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" - } - }, - "npm:string_decoder": { - "type": "npm", - "name": "npm:string_decoder", - "data": { - "version": "1.3.0", - "packageName": "string_decoder", - "hash": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" - } - }, - "npm:confusing-browser-globals": { - "type": "npm", - "name": "npm:confusing-browser-globals", - "data": { - "version": "1.0.11", - "packageName": "confusing-browser-globals", - "hash": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==" - } - }, - "npm:connect": { - "type": "npm", - "name": "npm:connect", - "data": { - "version": "3.6.6", - "packageName": "connect", - "hash": "sha512-OO7axMmPpu/2XuX1+2Yrg0ddju31B6xLZMWkJ5rYBu4YRmRVlOjvlY6kw2FJKiAzyxGwnrDUAG4s1Pf0sbBMCQ==" - } - }, - "npm:console-control-strings": { - "type": "npm", - "name": "npm:console-control-strings", - "data": { - "version": "1.1.0", - "packageName": "console-control-strings", - "hash": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==" - } - }, - "npm:content-disposition": { - "type": "npm", - "name": "npm:content-disposition", - "data": { - "version": "0.5.4", - "packageName": "content-disposition", - "hash": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==" - } - }, - "npm:content-type": { - "type": "npm", - "name": "npm:content-type", - "data": { - "version": "1.0.5", - "packageName": "content-type", - "hash": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==" - } - }, - "npm:cookie-signature": { - "type": "npm", - "name": "npm:cookie-signature", - "data": { - "version": "1.0.6", - "packageName": "cookie-signature", - "hash": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" - } - }, - "npm:cookies": { - "type": "npm", - "name": "npm:cookies", - "data": { - "version": "0.9.1", - "packageName": "cookies", - "hash": "sha512-TG2hpqe4ELx54QER/S3HQ9SRVnQnGBtKUz5bLQWtYAQ+o6GpgMs6sYUvaiJjVxb+UXwhRhAEP3m7LbsIZ77Hmw==" - } - }, - "npm:cookies@0.8.0": { - "type": "npm", - "name": "npm:cookies@0.8.0", - "data": { - "version": "0.8.0", - "packageName": "cookies", - "hash": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==" - } - }, - "npm:copy-anything": { - "type": "npm", - "name": "npm:copy-anything", - "data": { - "version": "2.0.6", - "packageName": "copy-anything", - "hash": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==" - } - }, - "npm:path-type@5.0.0": { - "type": "npm", - "name": "npm:path-type@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "path-type", - "hash": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==" - } - }, - "npm:path-type": { - "type": "npm", - "name": "npm:path-type", - "data": { - "version": "4.0.0", - "packageName": "path-type", - "hash": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" - } - }, - "npm:core-js": { - "type": "npm", - "name": "npm:core-js", - "data": { - "version": "3.35.0", - "packageName": "core-js", - "hash": "sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==" - } - }, - "npm:core-js-compat": { - "type": "npm", - "name": "npm:core-js-compat", - "data": { - "version": "3.37.1", - "packageName": "core-js-compat", - "hash": "sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==" - } - }, - "npm:core-util-is": { - "type": "npm", - "name": "npm:core-util-is", - "data": { - "version": "1.0.2", - "packageName": "core-util-is", - "hash": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" - } - }, - "npm:cors": { - "type": "npm", - "name": "npm:cors", - "data": { - "version": "2.8.5", - "packageName": "cors", - "hash": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==" - } - }, - "npm:corser": { - "type": "npm", - "name": "npm:corser", - "data": { - "version": "2.0.1", - "packageName": "corser", - "hash": "sha512-utCYNzRSQIZNPIcGZdQc92UVJYAhtGAteCFg0yRaFm8f0P+CPtyGyHXJcGXnffjCybUCEx3FQ2G7U3/o9eIkVQ==" - } - }, - "npm:create-jest": { - "type": "npm", - "name": "npm:create-jest", - "data": { - "version": "29.7.0", - "packageName": "create-jest", - "hash": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==" - } - }, - "npm:create-require": { - "type": "npm", - "name": "npm:create-require", - "data": { - "version": "1.1.1", - "packageName": "create-require", - "hash": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - } - }, - "npm:critters": { - "type": "npm", - "name": "npm:critters", - "data": { - "version": "0.0.24", - "packageName": "critters", - "hash": "sha512-Oyqew0FGM0wYUSNqR0L6AteO5MpMoUU0rhKRieXeiKs+PmRTxiJMyaunYB2KF6fQ3dzChXKCpbFOEJx3OQ1v/Q==" - } - }, - "npm:cron-parser": { - "type": "npm", - "name": "npm:cron-parser", - "data": { - "version": "4.9.0", - "packageName": "cron-parser", - "hash": "sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==" - } - }, - "npm:cross-spawn": { - "type": "npm", - "name": "npm:cross-spawn", - "data": { - "version": "7.0.3", - "packageName": "cross-spawn", - "hash": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" - } - }, - "npm:cross-spawn@5.1.0": { - "type": "npm", - "name": "npm:cross-spawn@5.1.0", - "data": { - "version": "5.1.0", - "packageName": "cross-spawn", - "hash": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==" - } - }, - "npm:css-blank-pseudo": { - "type": "npm", - "name": "npm:css-blank-pseudo", - "data": { - "version": "3.0.3", - "packageName": "css-blank-pseudo", - "hash": "sha512-VS90XWtsHGqoM0t4KpH053c4ehxZ2E6HtGI7x68YFV0pTo/QmkV/YFA+NnlvK8guxZVNWGQhVNJGC39Q8XF4OQ==" - } - }, - "npm:css-declaration-sorter": { - "type": "npm", - "name": "npm:css-declaration-sorter", - "data": { - "version": "7.2.0", - "packageName": "css-declaration-sorter", - "hash": "sha512-h70rUM+3PNFuaBDTLe8wF/cdWu+dOZmb7pJt8Z2sedYbAcQVQV/tEchueg3GWxwqS0cxtbxmaHEdkNACqcvsow==" - } - }, - "npm:css-has-pseudo": { - "type": "npm", - "name": "npm:css-has-pseudo", - "data": { - "version": "3.0.4", - "packageName": "css-has-pseudo", - "hash": "sha512-Vse0xpR1K9MNlp2j5w1pgWIJtm1a8qS0JwS9goFYcImjlHEmywP9VUF05aGBXzGpDJF86QXk4L0ypBmwPhGArw==" - } - }, - "npm:css-minimizer-webpack-plugin": { - "type": "npm", - "name": "npm:css-minimizer-webpack-plugin", - "data": { - "version": "5.0.1", - "packageName": "css-minimizer-webpack-plugin", - "hash": "sha512-3caImjKFQkS+ws1TGcFn0V1HyDJFq1Euy589JlD6/3rV2kj+w7r5G9WDMgSHvpvXHNZ2calVypZWuEDQd9wfLg==" - } - }, - "npm:css-prefers-color-scheme": { - "type": "npm", - "name": "npm:css-prefers-color-scheme", - "data": { - "version": "6.0.3", - "packageName": "css-prefers-color-scheme", - "hash": "sha512-4BqMbZksRkJQx2zAjrokiGMd07RqOa2IxIrrN10lyBe9xhn9DEvjUK79J6jkeiv9D9hQFXKb6g1jwU62jziJZA==" - } - }, - "npm:css-select": { - "type": "npm", - "name": "npm:css-select", - "data": { - "version": "5.1.0", - "packageName": "css-select", - "hash": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==" - } - }, - "npm:css-tree": { - "type": "npm", - "name": "npm:css-tree", - "data": { - "version": "2.3.1", - "packageName": "css-tree", - "hash": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==" - } - }, - "npm:css-tree@2.2.1": { - "type": "npm", - "name": "npm:css-tree@2.2.1", - "data": { - "version": "2.2.1", - "packageName": "css-tree", - "hash": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==" - } - }, - "npm:css-what": { - "type": "npm", - "name": "npm:css-what", - "data": { - "version": "6.1.0", - "packageName": "css-what", - "hash": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==" - } - }, - "npm:cssdb": { - "type": "npm", - "name": "npm:cssdb", - "data": { - "version": "6.6.3", - "packageName": "cssdb", - "hash": "sha512-7GDvDSmE+20+WcSMhP17Q1EVWUrLlbxxpMDqG731n8P99JhnQZHR9YvtjPvEHfjFUjvQJvdpKCjlKOX+xe4UVA==" - } - }, - "npm:cssesc": { - "type": "npm", - "name": "npm:cssesc", - "data": { - "version": "3.0.0", - "packageName": "cssesc", - "hash": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" - } - }, - "npm:cssnano": { - "type": "npm", - "name": "npm:cssnano", - "data": { - "version": "6.1.2", - "packageName": "cssnano", - "hash": "sha512-rYk5UeX7VAM/u0lNqewCdasdtPK81CgX8wJFLEIXHbV2oldWRgJAsZrdhRXkV1NJzA2g850KiFm9mMU2HxNxMA==" - } - }, - "npm:cssnano-preset-default": { - "type": "npm", - "name": "npm:cssnano-preset-default", - "data": { - "version": "6.1.2", - "packageName": "cssnano-preset-default", - "hash": "sha512-1C0C+eNaeN8OcHQa193aRgYexyJtU8XwbdieEjClw+J9d94E41LwT6ivKH0WT+fYwYWB0Zp3I3IZ7tI/BbUbrg==" - } - }, - "npm:cssnano-utils": { - "type": "npm", - "name": "npm:cssnano-utils", - "data": { - "version": "4.0.2", - "packageName": "cssnano-utils", - "hash": "sha512-ZR1jHg+wZ8o4c3zqf1SIUSTIvm/9mU343FMR6Obe/unskbvpGhZOo1J6d/r8D1pzkRQYuwbcH3hToOuoA2G7oQ==" - } - }, - "npm:csso": { - "type": "npm", - "name": "npm:csso", - "data": { - "version": "5.0.5", - "packageName": "csso", - "hash": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==" - } - }, - "npm:mdn-data@2.0.28": { - "type": "npm", - "name": "npm:mdn-data@2.0.28", - "data": { - "version": "2.0.28", - "packageName": "mdn-data", - "hash": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" - } - }, - "npm:mdn-data": { - "type": "npm", - "name": "npm:mdn-data", - "data": { - "version": "2.0.30", - "packageName": "mdn-data", - "hash": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" - } - }, - "npm:cssom": { - "type": "npm", - "name": "npm:cssom", - "data": { - "version": "0.5.0", - "packageName": "cssom", - "hash": "sha512-iKuQcq+NdHqlAcwUY0o/HL69XQrUaQdMjmStJ8JFmUaiiQErlhrmuigkg/CU4E2J0IyUKUrMAgl36TvN67MqTw==" - } - }, - "npm:cssom@0.3.8": { - "type": "npm", - "name": "npm:cssom@0.3.8", - "data": { - "version": "0.3.8", - "packageName": "cssom", - "hash": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" - } - }, - "npm:cssstyle": { - "type": "npm", - "name": "npm:cssstyle", - "data": { - "version": "2.3.0", - "packageName": "cssstyle", - "hash": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" - } - }, - "npm:cuint": { - "type": "npm", - "name": "npm:cuint", - "data": { - "version": "0.2.2", - "packageName": "cuint", - "hash": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==" - } - }, - "npm:cypress": { - "type": "npm", - "name": "npm:cypress", - "data": { - "version": "13.13.2", - "packageName": "cypress", - "hash": "sha512-PvJQU33933NvS1StfzEb8/mu2kMy4dABwCF+yd5Bi7Qly1HOVf+Bufrygee/tlmty/6j5lX+KIi8j9Q3JUMbhA==" - } - }, - "npm:human-signals@1.1.1": { - "type": "npm", - "name": "npm:human-signals@1.1.1", - "data": { - "version": "1.1.1", - "packageName": "human-signals", - "hash": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" - } - }, - "npm:human-signals": { - "type": "npm", - "name": "npm:human-signals", - "data": { - "version": "2.1.0", - "packageName": "human-signals", - "hash": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==" - } - }, - "npm:dashdash": { - "type": "npm", - "name": "npm:dashdash", - "data": { - "version": "1.14.1", - "packageName": "dashdash", - "hash": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==" - } - }, - "npm:data-urls": { - "type": "npm", - "name": "npm:data-urls", - "data": { - "version": "3.0.2", - "packageName": "data-urls", - "hash": "sha512-Jy/tj3ldjZJo63sVAvg6LHt2mHvl4V6AgRAmNDtLdm7faqtsx+aJG42rsyCo9JCoRVKwPFzKlIPx3DIibwSIaQ==" - } - }, - "npm:date-format": { - "type": "npm", - "name": "npm:date-format", - "data": { - "version": "4.0.14", - "packageName": "date-format", - "hash": "sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==" - } - }, - "npm:decimal.js": { - "type": "npm", - "name": "npm:decimal.js", - "data": { - "version": "10.4.3", - "packageName": "decimal.js", - "hash": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==" - } - }, - "npm:decompress-response": { - "type": "npm", - "name": "npm:decompress-response", - "data": { - "version": "6.0.0", - "packageName": "decompress-response", - "hash": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" - } - }, - "npm:mimic-response@3.1.0": { - "type": "npm", - "name": "npm:mimic-response@3.1.0", - "data": { - "version": "3.1.0", - "packageName": "mimic-response", - "hash": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" - } - }, - "npm:mimic-response": { - "type": "npm", - "name": "npm:mimic-response", - "data": { - "version": "1.0.1", - "packageName": "mimic-response", - "hash": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" - } - }, - "npm:deep-equal": { - "type": "npm", - "name": "npm:deep-equal", - "data": { - "version": "1.0.1", - "packageName": "deep-equal", - "hash": "sha512-bHtC0iYvWhyaTzvV3CZgPeZQqCOBGyGsVV7v4eevpdkLHfiSrXUdBG+qAuSz4RI70sszvjQ1QSZ98An1yNwpSw==" - } - }, - "npm:deep-is": { - "type": "npm", - "name": "npm:deep-is", - "data": { - "version": "0.1.4", - "packageName": "deep-is", - "hash": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" - } - }, - "npm:deepmerge": { - "type": "npm", - "name": "npm:deepmerge", - "data": { - "version": "4.3.1", - "packageName": "deepmerge", - "hash": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==" - } - }, - "npm:default-browser": { - "type": "npm", - "name": "npm:default-browser", - "data": { - "version": "5.2.1", - "packageName": "default-browser", - "hash": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==" - } - }, - "npm:default-browser-id": { - "type": "npm", - "name": "npm:default-browser-id", - "data": { - "version": "5.0.0", - "packageName": "default-browser-id", - "hash": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==" - } - }, - "npm:default-gateway": { - "type": "npm", - "name": "npm:default-gateway", - "data": { - "version": "6.0.3", - "packageName": "default-gateway", - "hash": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==" - } - }, - "npm:defaults": { - "type": "npm", - "name": "npm:defaults", - "data": { - "version": "1.0.4", - "packageName": "defaults", - "hash": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" - } - }, - "npm:defer-to-connect": { - "type": "npm", - "name": "npm:defer-to-connect", - "data": { - "version": "2.0.1", - "packageName": "defer-to-connect", - "hash": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" - } - }, - "npm:define-data-property": { - "type": "npm", - "name": "npm:define-data-property", - "data": { - "version": "1.1.4", - "packageName": "define-data-property", - "hash": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" - } - }, - "npm:delayed-stream": { - "type": "npm", - "name": "npm:delayed-stream", - "data": { - "version": "1.0.0", - "packageName": "delayed-stream", - "hash": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" - } - }, - "npm:delegates": { - "type": "npm", - "name": "npm:delegates", - "data": { - "version": "1.0.0", - "packageName": "delegates", - "hash": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==" - } - }, - "npm:depd": { - "type": "npm", - "name": "npm:depd", - "data": { - "version": "2.0.0", - "packageName": "depd", - "hash": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==" - } - }, - "npm:depd@1.1.2": { - "type": "npm", - "name": "npm:depd@1.1.2", - "data": { - "version": "1.1.2", - "packageName": "depd", - "hash": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==" - } - }, - "npm:dependency-graph": { - "type": "npm", - "name": "npm:dependency-graph", - "data": { - "version": "1.0.0", - "packageName": "dependency-graph", - "hash": "sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==" - } - }, - "npm:dequal": { - "type": "npm", - "name": "npm:dequal", - "data": { - "version": "2.0.3", - "packageName": "dequal", - "hash": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" - } - }, - "npm:detect-libc": { - "type": "npm", - "name": "npm:detect-libc", - "data": { - "version": "2.0.3", - "packageName": "detect-libc", - "hash": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==" - } - }, - "npm:detect-newline": { - "type": "npm", - "name": "npm:detect-newline", - "data": { - "version": "3.1.0", - "packageName": "detect-newline", - "hash": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" - } - }, - "npm:detect-node": { - "type": "npm", - "name": "npm:detect-node", - "data": { - "version": "2.1.0", - "packageName": "detect-node", - "hash": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" - } - }, - "npm:detect-port": { - "type": "npm", - "name": "npm:detect-port", - "data": { - "version": "1.5.1", - "packageName": "detect-port", - "hash": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==" - } - }, - "npm:dev-ip": { - "type": "npm", - "name": "npm:dev-ip", - "data": { - "version": "1.0.1", - "packageName": "dev-ip", - "hash": "sha512-LmVkry/oDShEgSZPNgqCIp2/TlqtExeGmymru3uCELnfyjY11IzpAproLYs+1X88fXO6DBoYP3ul2Xo2yz2j6A==" - } - }, - "npm:diff": { - "type": "npm", - "name": "npm:diff", - "data": { - "version": "4.0.2", - "packageName": "diff", - "hash": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==" - } - }, - "npm:diff-sequences": { - "type": "npm", - "name": "npm:diff-sequences", - "data": { - "version": "29.6.3", - "packageName": "diff-sequences", - "hash": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==" - } - }, - "npm:dir-glob": { - "type": "npm", - "name": "npm:dir-glob", - "data": { - "version": "3.0.1", - "packageName": "dir-glob", - "hash": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" - } - }, - "npm:dns-packet": { - "type": "npm", - "name": "npm:dns-packet", - "data": { - "version": "5.6.1", - "packageName": "dns-packet", - "hash": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==" - } - }, - "npm:doctrine": { - "type": "npm", - "name": "npm:doctrine", - "data": { - "version": "3.0.0", - "packageName": "doctrine", - "hash": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" - } - }, - "npm:dom-serializer": { - "type": "npm", - "name": "npm:dom-serializer", - "data": { - "version": "2.0.0", - "packageName": "dom-serializer", - "hash": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==" - } - }, - "npm:domelementtype": { - "type": "npm", - "name": "npm:domelementtype", - "data": { - "version": "2.3.0", - "packageName": "domelementtype", - "hash": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==" - } - }, - "npm:domexception": { - "type": "npm", - "name": "npm:domexception", - "data": { - "version": "4.0.0", - "packageName": "domexception", - "hash": "sha512-A2is4PLG+eeSfoTMA95/s4pvAoSo2mKtiM5jlHkAVewmiO8ISFTFKZjH7UAM1Atli/OT/7JHOrJRJiMKUZKYBw==" - } - }, - "npm:domhandler": { - "type": "npm", - "name": "npm:domhandler", - "data": { - "version": "5.0.3", - "packageName": "domhandler", - "hash": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==" - } - }, - "npm:domutils": { - "type": "npm", - "name": "npm:domutils", - "data": { - "version": "3.1.0", - "packageName": "domutils", - "hash": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==" - } - }, - "npm:dotenv": { - "type": "npm", - "name": "npm:dotenv", - "data": { - "version": "10.0.0", - "packageName": "dotenv", - "hash": "sha512-rlBi9d8jpv9Sf1klPjNfFAuWDjKLwTIJJ/VxtoTwIR6hnZxcEOQCZg2oIL3MWBYw5GpUDKOEnND7LXTbIpQ03Q==" - } - }, - "npm:dotenv@16.4.5": { - "type": "npm", - "name": "npm:dotenv@16.4.5", - "data": { - "version": "16.4.5", - "packageName": "dotenv", - "hash": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==" - } - }, - "npm:dotenv-expand": { - "type": "npm", - "name": "npm:dotenv-expand", - "data": { - "version": "11.0.6", - "packageName": "dotenv-expand", - "hash": "sha512-8NHi73otpWsZGBSZwwknTXS5pqMOrk9+Ssrna8xCaxkzEpU9OTf9R5ArQGVw03//Zmk9MOwLPng9WwndvpAJ5g==" - } - }, - "npm:duplexer": { - "type": "npm", - "name": "npm:duplexer", - "data": { - "version": "0.1.2", - "packageName": "duplexer", - "hash": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - } - }, - "npm:duplexify": { - "type": "npm", - "name": "npm:duplexify", - "data": { - "version": "4.1.3", - "packageName": "duplexify", - "hash": "sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==" - } - }, - "npm:eastasianwidth": { - "type": "npm", - "name": "npm:eastasianwidth", - "data": { - "version": "0.2.0", - "packageName": "eastasianwidth", - "hash": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" - } - }, - "npm:easy-extender": { - "type": "npm", - "name": "npm:easy-extender", - "data": { - "version": "2.3.4", - "packageName": "easy-extender", - "hash": "sha512-8cAwm6md1YTiPpOvDULYJL4ZS6WfM5/cTeVVh4JsvyYZAoqlRVUpHL9Gr5Fy7HA6xcSZicUia3DeAgO3Us8E+Q==" - } - }, - "npm:eazy-logger": { - "type": "npm", - "name": "npm:eazy-logger", - "data": { - "version": "4.0.1", - "packageName": "eazy-logger", - "hash": "sha512-2GSFtnnC6U4IEKhEI7+PvdxrmjJ04mdsj3wHZTFiw0tUtG4HCWzTr13ZYTk8XOGnA1xQMaDljoBOYlk3D/MMSw==" - } - }, - "npm:ecc-jsbn": { - "type": "npm", - "name": "npm:ecc-jsbn", - "data": { - "version": "0.1.2", - "packageName": "ecc-jsbn", - "hash": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==" - } - }, - "npm:jsbn@0.1.1": { - "type": "npm", - "name": "npm:jsbn@0.1.1", - "data": { - "version": "0.1.1", - "packageName": "jsbn", - "hash": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" - } - }, - "npm:jsbn": { - "type": "npm", - "name": "npm:jsbn", - "data": { - "version": "1.1.0", - "packageName": "jsbn", - "hash": "sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==" - } - }, - "npm:ecdsa-sig-formatter": { - "type": "npm", - "name": "npm:ecdsa-sig-formatter", - "data": { - "version": "1.0.11", - "packageName": "ecdsa-sig-formatter", - "hash": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==" - } - }, - "npm:ee-first": { - "type": "npm", - "name": "npm:ee-first", - "data": { - "version": "1.1.1", - "packageName": "ee-first", - "hash": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - } - }, - "npm:ejs": { - "type": "npm", - "name": "npm:ejs", - "data": { - "version": "3.1.9", - "packageName": "ejs", - "hash": "sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==" - } - }, - "npm:electron-to-chromium": { - "type": "npm", - "name": "npm:electron-to-chromium", - "data": { - "version": "1.5.5", - "packageName": "electron-to-chromium", - "hash": "sha512-QR7/A7ZkMS8tZuoftC/jfqNkZLQO779SSW3YuZHP4eXpj3EffGLFcB/Xu9AAZQzLccTiCV+EmUo3ha4mQ9wnlA==" - } - }, - "npm:emittery": { - "type": "npm", - "name": "npm:emittery", - "data": { - "version": "0.13.1", - "packageName": "emittery", - "hash": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==" - } - }, - "npm:emojis-list": { - "type": "npm", - "name": "npm:emojis-list", - "data": { - "version": "3.0.0", - "packageName": "emojis-list", - "hash": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" - } - }, - "npm:encodeurl": { - "type": "npm", - "name": "npm:encodeurl", - "data": { - "version": "1.0.2", - "packageName": "encodeurl", - "hash": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==" - } - }, - "npm:encoding": { - "type": "npm", - "name": "npm:encoding", - "data": { - "version": "0.1.13", - "packageName": "encoding", - "hash": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" - } - }, - "npm:iconv-lite@0.6.3": { - "type": "npm", - "name": "npm:iconv-lite@0.6.3", - "data": { - "version": "0.6.3", - "packageName": "iconv-lite", - "hash": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" - } - }, - "npm:iconv-lite": { - "type": "npm", - "name": "npm:iconv-lite", - "data": { - "version": "0.4.24", - "packageName": "iconv-lite", - "hash": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" - } - }, - "npm:end-of-stream": { - "type": "npm", - "name": "npm:end-of-stream", - "data": { - "version": "1.4.4", - "packageName": "end-of-stream", - "hash": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" - } - }, - "npm:engine.io": { - "type": "npm", - "name": "npm:engine.io", - "data": { - "version": "6.5.4", - "packageName": "engine.io", - "hash": "sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==" - } - }, - "npm:engine.io-client": { - "type": "npm", - "name": "npm:engine.io-client", - "data": { - "version": "6.5.3", - "packageName": "engine.io-client", - "hash": "sha512-9Z0qLB0NIisTRt1DZ/8U2k12RJn8yls/nXMZLn+/N8hANT3TcYjKFKcwbw5zFQiN4NTde3TSY9zb79e1ij6j9Q==" - } - }, - "npm:ws@8.11.0": { - "type": "npm", - "name": "npm:ws@8.11.0", - "data": { - "version": "8.11.0", - "packageName": "ws", - "hash": "sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==" - } - }, - "npm:ws": { - "type": "npm", - "name": "npm:ws", - "data": { - "version": "8.17.1", - "packageName": "ws", - "hash": "sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==" - } - }, - "npm:engine.io-parser": { - "type": "npm", - "name": "npm:engine.io-parser", - "data": { - "version": "5.2.2", - "packageName": "engine.io-parser", - "hash": "sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==" - } - }, - "npm:enhanced-resolve": { - "type": "npm", - "name": "npm:enhanced-resolve", - "data": { - "version": "5.17.1", - "packageName": "enhanced-resolve", - "hash": "sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==" - } - }, - "npm:enquirer": { - "type": "npm", - "name": "npm:enquirer", - "data": { - "version": "2.3.6", - "packageName": "enquirer", - "hash": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" - } - }, - "npm:entities": { - "type": "npm", - "name": "npm:entities", - "data": { - "version": "4.5.0", - "packageName": "entities", - "hash": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" - } - }, - "npm:env-paths": { - "type": "npm", - "name": "npm:env-paths", - "data": { - "version": "2.2.1", - "packageName": "env-paths", - "hash": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" - } - }, - "npm:envinfo": { - "type": "npm", - "name": "npm:envinfo", - "data": { - "version": "7.11.0", - "packageName": "envinfo", - "hash": "sha512-G9/6xF1FPbIw0TtalAMaVPpiq2aDEuKLXM314jPVAO9r2fo2a4BLqMNkmRS7O/xPPZ+COAhGIz3ETvHEV3eUcg==" - } - }, - "npm:environment": { - "type": "npm", - "name": "npm:environment", - "data": { - "version": "1.1.0", - "packageName": "environment", - "hash": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==" - } - }, - "npm:err-code": { - "type": "npm", - "name": "npm:err-code", - "data": { - "version": "2.0.3", - "packageName": "err-code", - "hash": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" - } - }, - "npm:errno": { - "type": "npm", - "name": "npm:errno", - "data": { - "version": "0.1.8", - "packageName": "errno", - "hash": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" - } - }, - "npm:error-ex": { - "type": "npm", - "name": "npm:error-ex", - "data": { - "version": "1.3.2", - "packageName": "error-ex", - "hash": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" - } - }, - "npm:error-inject": { - "type": "npm", - "name": "npm:error-inject", - "data": { - "version": "1.0.0", - "packageName": "error-inject", - "hash": "sha512-JM8N6PytDbmIYm1IhPWlo8vr3NtfjhDY/1MhD/a5b/aad/USE8a0+NsqE9d5n+GVGmuNkPQWm4bFQWv18d8tMg==" - } - }, - "npm:es-define-property": { - "type": "npm", - "name": "npm:es-define-property", - "data": { - "version": "1.0.0", - "packageName": "es-define-property", - "hash": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==" - } - }, - "npm:es-errors": { - "type": "npm", - "name": "npm:es-errors", - "data": { - "version": "1.3.0", - "packageName": "es-errors", - "hash": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" - } - }, - "npm:es-module-lexer": { - "type": "npm", - "name": "npm:es-module-lexer", - "data": { - "version": "1.4.1", - "packageName": "es-module-lexer", - "hash": "sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==" - } - }, - "npm:es-module-shims": { - "type": "npm", - "name": "npm:es-module-shims", - "data": { - "version": "1.8.3", - "packageName": "es-module-shims", - "hash": "sha512-NOE2WomYkoXeae8FcwPwZApxDwKerEWGOiqNo/P2JCBkJgKCLA5+PMZs8sr/1SPk9a8E+hUE9Wc+YZyGEiWHkw==" - } - }, - "npm:esbuild-wasm": { - "type": "npm", - "name": "npm:esbuild-wasm", - "data": { - "version": "0.21.5", - "packageName": "esbuild-wasm", - "hash": "sha512-L/FlOPMMFtw+6qPAbuPvJXdrOYOp9yx/PEwSrIZW0qghY4vgV003evdYDwqQ/9ENMQI0B6RMod9xT4FHtto6OQ==" - } - }, - "npm:escalade": { - "type": "npm", - "name": "npm:escalade", - "data": { - "version": "3.1.2", - "packageName": "escalade", - "hash": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==" - } - }, - "npm:escape-html": { - "type": "npm", - "name": "npm:escape-html", - "data": { - "version": "1.0.3", - "packageName": "escape-html", - "hash": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - } - }, - "npm:escodegen": { - "type": "npm", - "name": "npm:escodegen", - "data": { - "version": "2.1.0", - "packageName": "escodegen", - "hash": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==" - } - }, - "npm:eslint": { - "type": "npm", - "name": "npm:eslint", - "data": { - "version": "8.57.0", - "packageName": "eslint", - "hash": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==" - } - }, - "npm:eslint-config-prettier": { - "type": "npm", - "name": "npm:eslint-config-prettier", - "data": { - "version": "9.0.0", - "packageName": "eslint-config-prettier", - "hash": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==" - } - }, - "npm:eslint-plugin-cypress": { - "type": "npm", - "name": "npm:eslint-plugin-cypress", - "data": { - "version": "2.13.4", - "packageName": "eslint-plugin-cypress", - "hash": "sha512-A6CMdzFkGMkIWwVmS7DOBJfO1L2V5qcU2svlueycMJHn4MpoIhASxnDt+rI8zeA7qy9ExEGrMj1WhHcde1VrPQ==" - } - }, - "npm:eslint-scope": { - "type": "npm", - "name": "npm:eslint-scope", - "data": { - "version": "8.0.2", - "packageName": "eslint-scope", - "hash": "sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==" - } - }, - "npm:eslint-scope@7.2.2": { - "type": "npm", - "name": "npm:eslint-scope@7.2.2", - "data": { - "version": "7.2.2", - "packageName": "eslint-scope", - "hash": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==" - } - }, - "npm:eslint-scope@5.1.1": { - "type": "npm", - "name": "npm:eslint-scope@5.1.1", - "data": { - "version": "5.1.1", - "packageName": "eslint-scope", - "hash": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" - } - }, - "npm:eslint-visitor-keys": { - "type": "npm", - "name": "npm:eslint-visitor-keys", - "data": { - "version": "3.4.3", - "packageName": "eslint-visitor-keys", - "hash": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" - } - }, - "npm:espree": { - "type": "npm", - "name": "npm:espree", - "data": { - "version": "9.6.1", - "packageName": "espree", - "hash": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==" - } - }, - "npm:esprima": { - "type": "npm", - "name": "npm:esprima", - "data": { - "version": "4.0.1", - "packageName": "esprima", - "hash": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" - } - }, - "npm:esquery": { - "type": "npm", - "name": "npm:esquery", - "data": { - "version": "1.5.0", - "packageName": "esquery", - "hash": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==" - } - }, - "npm:esrecurse": { - "type": "npm", - "name": "npm:esrecurse", - "data": { - "version": "4.3.0", - "packageName": "esrecurse", - "hash": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" - } - }, - "npm:estraverse": { - "type": "npm", - "name": "npm:estraverse", - "data": { - "version": "5.3.0", - "packageName": "estraverse", - "hash": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" - } - }, - "npm:estraverse@4.3.0": { - "type": "npm", - "name": "npm:estraverse@4.3.0", - "data": { - "version": "4.3.0", - "packageName": "estraverse", - "hash": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" - } - }, - "npm:estree-walker": { - "type": "npm", - "name": "npm:estree-walker", - "data": { - "version": "2.0.2", - "packageName": "estree-walker", - "hash": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" - } - }, - "npm:esutils": { - "type": "npm", - "name": "npm:esutils", - "data": { - "version": "2.0.3", - "packageName": "esutils", - "hash": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" - } - }, - "npm:etag": { - "type": "npm", - "name": "npm:etag", - "data": { - "version": "1.8.1", - "packageName": "etag", - "hash": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==" - } - }, - "npm:event-target-shim": { - "type": "npm", - "name": "npm:event-target-shim", - "data": { - "version": "5.0.1", - "packageName": "event-target-shim", - "hash": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==" - } - }, - "npm:eventemitter2": { - "type": "npm", - "name": "npm:eventemitter2", - "data": { - "version": "6.4.7", - "packageName": "eventemitter2", - "hash": "sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg==" - } - }, - "npm:events": { - "type": "npm", - "name": "npm:events", - "data": { - "version": "3.3.0", - "packageName": "events", - "hash": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==" - } - }, - "npm:npm-run-path@2.0.2": { - "type": "npm", - "name": "npm:npm-run-path@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "npm-run-path", - "hash": "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" - } - }, - "npm:npm-run-path": { - "type": "npm", - "name": "npm:npm-run-path", - "data": { - "version": "4.0.1", - "packageName": "npm-run-path", - "hash": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" - } - }, - "npm:path-key@2.0.1": { - "type": "npm", - "name": "npm:path-key@2.0.1", - "data": { - "version": "2.0.1", - "packageName": "path-key", - "hash": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" - } - }, - "npm:path-key": { - "type": "npm", - "name": "npm:path-key", - "data": { - "version": "3.1.1", - "packageName": "path-key", - "hash": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" - } - }, - "npm:shebang-command@1.2.0": { - "type": "npm", - "name": "npm:shebang-command@1.2.0", - "data": { - "version": "1.2.0", - "packageName": "shebang-command", - "hash": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" - } - }, - "npm:shebang-command": { - "type": "npm", - "name": "npm:shebang-command", - "data": { - "version": "2.0.0", - "packageName": "shebang-command", - "hash": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" - } - }, - "npm:shebang-regex@1.0.0": { - "type": "npm", - "name": "npm:shebang-regex@1.0.0", - "data": { - "version": "1.0.0", - "packageName": "shebang-regex", - "hash": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" - } - }, - "npm:shebang-regex": { - "type": "npm", - "name": "npm:shebang-regex", - "data": { - "version": "3.0.0", - "packageName": "shebang-regex", - "hash": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" - } - }, - "npm:executable": { - "type": "npm", - "name": "npm:executable", - "data": { - "version": "4.1.1", - "packageName": "executable", - "hash": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==" - } - }, - "npm:exit": { - "type": "npm", - "name": "npm:exit", - "data": { - "version": "0.1.2", - "packageName": "exit", - "hash": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==" - } - }, - "npm:expand-tilde": { - "type": "npm", - "name": "npm:expand-tilde", - "data": { - "version": "2.0.2", - "packageName": "expand-tilde", - "hash": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==" - } - }, - "npm:expect": { - "type": "npm", - "name": "npm:expect", - "data": { - "version": "29.7.0", - "packageName": "expect", - "hash": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==" - } - }, - "npm:exponential-backoff": { - "type": "npm", - "name": "npm:exponential-backoff", - "data": { - "version": "3.1.1", - "packageName": "exponential-backoff", - "hash": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==" - } - }, - "npm:express-rate-limit": { - "type": "npm", - "name": "npm:express-rate-limit", - "data": { - "version": "5.5.1", - "packageName": "express-rate-limit", - "hash": "sha512-MTjE2eIbHv5DyfuFz4zLYWxpqVhEhkTiwFGuB74Q9CSou2WHO52nlE5y3Zlg6SIsiYUIPj6ifFxnkPz6O3sIUg==" - } - }, - "npm:ext-list": { - "type": "npm", - "name": "npm:ext-list", - "data": { - "version": "2.2.2", - "packageName": "ext-list", - "hash": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==" - } - }, - "npm:ext-name": { - "type": "npm", - "name": "npm:ext-name", - "data": { - "version": "5.0.0", - "packageName": "ext-name", - "hash": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==" - } - }, - "npm:extend": { - "type": "npm", - "name": "npm:extend", - "data": { - "version": "3.0.2", - "packageName": "extend", - "hash": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - } - }, - "npm:external-editor": { - "type": "npm", - "name": "npm:external-editor", - "data": { - "version": "3.1.0", - "packageName": "external-editor", - "hash": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==" - } - }, - "npm:tmp@0.0.33": { - "type": "npm", - "name": "npm:tmp@0.0.33", - "data": { - "version": "0.0.33", - "packageName": "tmp", - "hash": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==" - } - }, - "npm:tmp": { - "type": "npm", - "name": "npm:tmp", - "data": { - "version": "0.2.3", - "packageName": "tmp", - "hash": "sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==" - } - }, - "npm:extract-zip": { - "type": "npm", - "name": "npm:extract-zip", - "data": { - "version": "2.0.1", - "packageName": "extract-zip", - "hash": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" - } - }, - "npm:extsprintf": { - "type": "npm", - "name": "npm:extsprintf", - "data": { - "version": "1.3.0", - "packageName": "extsprintf", - "hash": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==" - } - }, - "npm:fast-deep-equal": { - "type": "npm", - "name": "npm:fast-deep-equal", - "data": { - "version": "3.1.3", - "packageName": "fast-deep-equal", - "hash": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - } - }, - "npm:fast-json-stable-stringify": { - "type": "npm", - "name": "npm:fast-json-stable-stringify", - "data": { - "version": "2.1.0", - "packageName": "fast-json-stable-stringify", - "hash": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - } - }, - "npm:fast-levenshtein": { - "type": "npm", - "name": "npm:fast-levenshtein", - "data": { - "version": "2.0.6", - "packageName": "fast-levenshtein", - "hash": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" - } - }, - "npm:fast-redact": { - "type": "npm", - "name": "npm:fast-redact", - "data": { - "version": "3.4.0", - "packageName": "fast-redact", - "hash": "sha512-2gwPvyna0zwBdxKnng1suu/dTL5s8XEy2ZqH8mwDUwJdDkV8w5kp+JV26mupdK68HmPMbm6yjW9m7/Ys/BHEHg==" - } - }, - "npm:fast-safe-stringify": { - "type": "npm", - "name": "npm:fast-safe-stringify", - "data": { - "version": "2.1.1", - "packageName": "fast-safe-stringify", - "hash": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==" - } - }, - "npm:fastq": { - "type": "npm", - "name": "npm:fastq", - "data": { - "version": "1.17.1", - "packageName": "fastq", - "hash": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==" - } - }, - "npm:faye-websocket": { - "type": "npm", - "name": "npm:faye-websocket", - "data": { - "version": "0.11.4", - "packageName": "faye-websocket", - "hash": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==" - } - }, - "npm:fb-watchman": { - "type": "npm", - "name": "npm:fb-watchman", - "data": { - "version": "2.0.2", - "packageName": "fb-watchman", - "hash": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==" - } - }, - "npm:fd-slicer": { - "type": "npm", - "name": "npm:fd-slicer", - "data": { - "version": "1.1.0", - "packageName": "fd-slicer", - "hash": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" - } - }, - "npm:figures": { - "type": "npm", - "name": "npm:figures", - "data": { - "version": "3.2.0", - "packageName": "figures", - "hash": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==" - } - }, - "npm:file-entry-cache": { - "type": "npm", - "name": "npm:file-entry-cache", - "data": { - "version": "6.0.1", - "packageName": "file-entry-cache", - "hash": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" - } - }, - "npm:file-type": { - "type": "npm", - "name": "npm:file-type", - "data": { - "version": "17.1.6", - "packageName": "file-type", - "hash": "sha512-hlDw5Ev+9e883s0pwUsuuYNu4tD7GgpUnOvykjv1Gya0ZIjuKumthDRua90VUn6/nlRKAjcxLUnHNTIUWwWIiw==" - } - }, - "npm:filelist": { - "type": "npm", - "name": "npm:filelist", - "data": { - "version": "1.0.4", - "packageName": "filelist", - "hash": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==" - } - }, - "npm:filename-reserved-regex": { - "type": "npm", - "name": "npm:filename-reserved-regex", - "data": { - "version": "3.0.0", - "packageName": "filename-reserved-regex", - "hash": "sha512-hn4cQfU6GOT/7cFHXBqeBg2TbrMBgdD0kcjLhvSQYYwm3s4B6cjvBfb7nBALJLAXqmU5xajSa7X2NnUud/VCdw==" - } - }, - "npm:filenamify": { - "type": "npm", - "name": "npm:filenamify", - "data": { - "version": "5.1.1", - "packageName": "filenamify", - "hash": "sha512-M45CbrJLGACfrPOkrTp3j2EcO9OBkKUYME0eiqOCa7i2poaklU0jhlIaMlr8ijLorT0uLAzrn3qXOp5684CkfA==" - } - }, - "npm:fill-range": { - "type": "npm", - "name": "npm:fill-range", - "data": { - "version": "7.0.1", - "packageName": "fill-range", - "hash": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" - } - }, - "npm:find-file-up": { - "type": "npm", - "name": "npm:find-file-up", - "data": { - "version": "2.0.1", - "packageName": "find-file-up", - "hash": "sha512-qVdaUhYO39zmh28/JLQM5CoYN9byEOKEH4qfa8K1eNV17W0UUMJ9WgbR/hHFH+t5rcl+6RTb5UC7ck/I+uRkpQ==" - } - }, - "npm:find-pkg": { - "type": "npm", - "name": "npm:find-pkg", - "data": { - "version": "2.0.0", - "packageName": "find-pkg", - "hash": "sha512-WgZ+nKbELDa6N3i/9nrHeNznm+lY3z4YfhDDWgW+5P0pdmMj26bxaxU11ookgY3NyP9GC7HvZ9etp0jRFqGEeQ==" - } - }, - "npm:find-versions": { - "type": "npm", - "name": "npm:find-versions", - "data": { - "version": "5.1.0", - "packageName": "find-versions", - "hash": "sha512-+iwzCJ7C5v5KgcBuueqVoNiHVoQpwiUK5XFLjf0affFTep+Wcw93tPvmb8tqujDNmzhBDPddnWV/qgWSXgq+Hg==" - } - }, - "npm:flat": { - "type": "npm", - "name": "npm:flat", - "data": { - "version": "5.0.2", - "packageName": "flat", - "hash": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==" - } - }, - "npm:flat-cache": { - "type": "npm", - "name": "npm:flat-cache", - "data": { - "version": "3.2.0", - "packageName": "flat-cache", - "hash": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==" - } - }, - "npm:flatted": { - "type": "npm", - "name": "npm:flatted", - "data": { - "version": "3.3.1", - "packageName": "flatted", - "hash": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==" - } - }, - "npm:follow-redirects": { - "type": "npm", - "name": "npm:follow-redirects", - "data": { - "version": "1.15.6", - "packageName": "follow-redirects", - "hash": "sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==" - } - }, - "npm:foreground-child": { - "type": "npm", - "name": "npm:foreground-child", - "data": { - "version": "3.1.1", - "packageName": "foreground-child", - "hash": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==" - } - }, - "npm:forever-agent": { - "type": "npm", - "name": "npm:forever-agent", - "data": { - "version": "0.6.1", - "packageName": "forever-agent", - "hash": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==" - } - }, - "npm:fork-ts-checker-webpack-plugin": { - "type": "npm", - "name": "npm:fork-ts-checker-webpack-plugin", - "data": { - "version": "7.2.13", - "packageName": "fork-ts-checker-webpack-plugin", - "hash": "sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==" - } - }, - "npm:schema-utils@3.3.0": { - "type": "npm", - "name": "npm:schema-utils@3.3.0", - "data": { - "version": "3.3.0", - "packageName": "schema-utils", - "hash": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==" - } - }, - "npm:schema-utils": { - "type": "npm", - "name": "npm:schema-utils", - "data": { - "version": "4.2.0", - "packageName": "schema-utils", - "hash": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==" - } - }, - "npm:forwarded": { - "type": "npm", - "name": "npm:forwarded", - "data": { - "version": "0.2.0", - "packageName": "forwarded", - "hash": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==" - } - }, - "npm:fraction.js": { - "type": "npm", - "name": "npm:fraction.js", - "data": { - "version": "4.3.7", - "packageName": "fraction.js", - "hash": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==" - } - }, - "npm:fresh": { - "type": "npm", - "name": "npm:fresh", - "data": { - "version": "0.5.2", - "packageName": "fresh", - "hash": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==" - } - }, - "npm:front-matter": { - "type": "npm", - "name": "npm:front-matter", - "data": { - "version": "4.0.2", - "packageName": "front-matter", - "hash": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==" - } - }, - "npm:fs-constants": { - "type": "npm", - "name": "npm:fs-constants", - "data": { - "version": "1.0.0", - "packageName": "fs-constants", - "hash": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" - } - }, - "npm:fs-minipass": { - "type": "npm", - "name": "npm:fs-minipass", - "data": { - "version": "3.0.3", - "packageName": "fs-minipass", - "hash": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==" - } - }, - "npm:fs-minipass@2.1.0": { - "type": "npm", - "name": "npm:fs-minipass@2.1.0", - "data": { - "version": "2.1.0", - "packageName": "fs-minipass", - "hash": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" - } - }, - "npm:fs-monkey": { - "type": "npm", - "name": "npm:fs-monkey", - "data": { - "version": "1.0.6", - "packageName": "fs-monkey", - "hash": "sha512-b1FMfwetIKymC0eioW7mTywihSQE4oLzQn1dB6rZB5fx/3NpNEdAWeCSMB+60/AeT0TCXsxzAlcYVEFCTAksWg==" - } - }, - "npm:fs.realpath": { - "type": "npm", - "name": "npm:fs.realpath", - "data": { - "version": "1.0.0", - "packageName": "fs.realpath", - "hash": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - } - }, - "npm:fsevents": { - "type": "npm", - "name": "npm:fsevents", - "data": { - "version": "2.3.3", - "packageName": "fsevents", - "hash": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==" - } - }, - "npm:function-bind": { - "type": "npm", - "name": "npm:function-bind", - "data": { - "version": "1.1.2", - "packageName": "function-bind", - "hash": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" - } - }, - "npm:gauge": { - "type": "npm", - "name": "npm:gauge", - "data": { - "version": "4.0.4", - "packageName": "gauge", - "hash": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==" - } - }, - "npm:gensync": { - "type": "npm", - "name": "npm:gensync", - "data": { - "version": "1.0.0-beta.2", - "packageName": "gensync", - "hash": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" - } - }, - "npm:get-caller-file": { - "type": "npm", - "name": "npm:get-caller-file", - "data": { - "version": "2.0.5", - "packageName": "get-caller-file", - "hash": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" - } - }, - "npm:get-east-asian-width": { - "type": "npm", - "name": "npm:get-east-asian-width", - "data": { - "version": "1.2.0", - "packageName": "get-east-asian-width", - "hash": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==" - } - }, - "npm:get-intrinsic": { - "type": "npm", - "name": "npm:get-intrinsic", - "data": { - "version": "1.2.4", - "packageName": "get-intrinsic", - "hash": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==" - } - }, - "npm:get-package-type": { - "type": "npm", - "name": "npm:get-package-type", - "data": { - "version": "0.1.0", - "packageName": "get-package-type", - "hash": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" - } - }, - "npm:getos": { - "type": "npm", - "name": "npm:getos", - "data": { - "version": "3.2.1", - "packageName": "getos", - "hash": "sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==" - } - }, - "npm:getpass": { - "type": "npm", - "name": "npm:getpass", - "data": { - "version": "0.1.7", - "packageName": "getpass", - "hash": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==" - } - }, - "npm:glob-to-regexp": { - "type": "npm", - "name": "npm:glob-to-regexp", - "data": { - "version": "0.4.1", - "packageName": "glob-to-regexp", - "hash": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - } - }, - "npm:global-dirs": { - "type": "npm", - "name": "npm:global-dirs", - "data": { - "version": "3.0.1", - "packageName": "global-dirs", - "hash": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==" - } - }, - "npm:ini@2.0.0": { - "type": "npm", - "name": "npm:ini@2.0.0", - "data": { - "version": "2.0.0", - "packageName": "ini", - "hash": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==" - } - }, - "npm:ini@1.3.8": { - "type": "npm", - "name": "npm:ini@1.3.8", - "data": { - "version": "1.3.8", - "packageName": "ini", - "hash": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - } - }, - "npm:ini": { - "type": "npm", - "name": "npm:ini", - "data": { - "version": "4.1.3", - "packageName": "ini", - "hash": "sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==" - } - }, - "npm:global-modules": { - "type": "npm", - "name": "npm:global-modules", - "data": { - "version": "1.0.0", - "packageName": "global-modules", - "hash": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==" - } - }, - "npm:global-prefix": { - "type": "npm", - "name": "npm:global-prefix", - "data": { - "version": "1.0.2", - "packageName": "global-prefix", - "hash": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==" - } - }, - "npm:gopd": { - "type": "npm", - "name": "npm:gopd", - "data": { - "version": "1.0.1", - "packageName": "gopd", - "hash": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==" - } - }, - "npm:got": { - "type": "npm", - "name": "npm:got", - "data": { - "version": "11.8.6", - "packageName": "got", - "hash": "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" - } - }, - "npm:graceful-fs": { - "type": "npm", - "name": "npm:graceful-fs", - "data": { - "version": "4.2.11", - "packageName": "graceful-fs", - "hash": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - } - }, - "npm:graphemer": { - "type": "npm", - "name": "npm:graphemer", - "data": { - "version": "1.4.0", - "packageName": "graphemer", - "hash": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" - } - }, - "npm:handle-thing": { - "type": "npm", - "name": "npm:handle-thing", - "data": { - "version": "2.0.1", - "packageName": "handle-thing", - "hash": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" - } - }, - "npm:handlebars": { - "type": "npm", - "name": "npm:handlebars", - "data": { - "version": "4.7.8", - "packageName": "handlebars", - "hash": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==" - } - }, - "npm:harmony-reflect": { - "type": "npm", - "name": "npm:harmony-reflect", - "data": { - "version": "1.6.2", - "packageName": "harmony-reflect", - "hash": "sha512-HIp/n38R9kQjDEziXyDTuW3vvoxxyxjxFzXLrBr18uB47GnSt+G9D29fqrpM5ZkspMcPICud3XsBJQ4Y2URg8g==" - } - }, - "npm:has-property-descriptors": { - "type": "npm", - "name": "npm:has-property-descriptors", - "data": { - "version": "1.0.2", - "packageName": "has-property-descriptors", - "hash": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" - } - }, - "npm:has-proto": { - "type": "npm", - "name": "npm:has-proto", - "data": { - "version": "1.0.3", - "packageName": "has-proto", - "hash": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==" - } - }, - "npm:has-symbols": { - "type": "npm", - "name": "npm:has-symbols", - "data": { - "version": "1.0.3", - "packageName": "has-symbols", - "hash": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==" - } - }, - "npm:has-tostringtag": { - "type": "npm", - "name": "npm:has-tostringtag", - "data": { - "version": "1.0.2", - "packageName": "has-tostringtag", - "hash": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" - } - }, - "npm:has-unicode": { - "type": "npm", - "name": "npm:has-unicode", - "data": { - "version": "2.0.1", - "packageName": "has-unicode", - "hash": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==" - } - }, - "npm:hasown": { - "type": "npm", - "name": "npm:hasown", - "data": { - "version": "2.0.2", - "packageName": "hasown", - "hash": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" - } - }, - "npm:he": { - "type": "npm", - "name": "npm:he", - "data": { - "version": "1.2.0", - "packageName": "he", - "hash": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" - } - }, - "npm:homedir-polyfill": { - "type": "npm", - "name": "npm:homedir-polyfill", - "data": { - "version": "1.0.3", - "packageName": "homedir-polyfill", - "hash": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==" - } - }, - "npm:hosted-git-info": { - "type": "npm", - "name": "npm:hosted-git-info", - "data": { - "version": "7.0.1", - "packageName": "hosted-git-info", - "hash": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==" - } - }, - "npm:hpack.js": { - "type": "npm", - "name": "npm:hpack.js", - "data": { - "version": "2.1.6", - "packageName": "hpack.js", - "hash": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==" - } - }, - "npm:html-encoding-sniffer": { - "type": "npm", - "name": "npm:html-encoding-sniffer", - "data": { - "version": "3.0.0", - "packageName": "html-encoding-sniffer", - "hash": "sha512-oWv4T4yJ52iKrufjnyZPkrN0CH3QnrUqdB6In1g5Fe1mia8GmF36gnfNySxoZtxD5+NmYw1EElVXiBk93UeskA==" - } - }, - "npm:html-entities": { - "type": "npm", - "name": "npm:html-entities", - "data": { - "version": "2.5.2", - "packageName": "html-entities", - "hash": "sha512-K//PSRMQk4FZ78Kyau+mZurHn3FH0Vwr+H36eE0rPbeYkRRi9YxceYPhuN60UwWorxyKHhqoAJl2OFKa4BVtaA==" - } - }, - "npm:html-escaper": { - "type": "npm", - "name": "npm:html-escaper", - "data": { - "version": "2.0.2", - "packageName": "html-escaper", - "hash": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - } - }, - "npm:htmlparser2": { - "type": "npm", - "name": "npm:htmlparser2", - "data": { - "version": "8.0.2", - "packageName": "htmlparser2", - "hash": "sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==" - } - }, - "npm:http-assert": { - "type": "npm", - "name": "npm:http-assert", - "data": { - "version": "1.5.0", - "packageName": "http-assert", - "hash": "sha512-uPpH7OKX4H25hBmU6G1jWNaqJGpTXxey+YOUizJUAgu0AjLUeC8D73hTrhvDS5D+GJN1DN1+hhc/eF/wpxtp0w==" - } - }, - "npm:http-errors@1.8.1": { - "type": "npm", - "name": "npm:http-errors@1.8.1", - "data": { - "version": "1.8.1", - "packageName": "http-errors", - "hash": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==" - } - }, - "npm:http-errors": { - "type": "npm", - "name": "npm:http-errors", - "data": { - "version": "2.0.0", - "packageName": "http-errors", - "hash": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==" - } - }, - "npm:http-errors@1.6.3": { - "type": "npm", - "name": "npm:http-errors@1.6.3", - "data": { - "version": "1.6.3", - "packageName": "http-errors", - "hash": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==" - } - }, - "npm:http-cache-semantics": { - "type": "npm", - "name": "npm:http-cache-semantics", - "data": { - "version": "4.1.1", - "packageName": "http-cache-semantics", - "hash": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==" - } - }, - "npm:http-deceiver": { - "type": "npm", - "name": "npm:http-deceiver", - "data": { - "version": "1.2.7", - "packageName": "http-deceiver", - "hash": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==" - } - }, - "npm:http-parser-js": { - "type": "npm", - "name": "npm:http-parser-js", - "data": { - "version": "0.5.8", - "packageName": "http-parser-js", - "hash": "sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==" - } - }, - "npm:http-proxy": { - "type": "npm", - "name": "npm:http-proxy", - "data": { - "version": "1.18.1", - "packageName": "http-proxy", - "hash": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" - } - }, - "npm:http-server": { - "type": "npm", - "name": "npm:http-server", - "data": { - "version": "14.1.1", - "packageName": "http-server", - "hash": "sha512-+cbxadF40UXd9T01zUHgA+rlo2Bg1Srer4+B4NwIHdaGxAGGv59nYRnGGDJ9LBk7alpS0US+J+bLLdQOOkJq4A==" - } - }, - "npm:http-signature": { - "type": "npm", - "name": "npm:http-signature", - "data": { - "version": "1.3.6", - "packageName": "http-signature", - "hash": "sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==" - } - }, - "npm:http2-wrapper": { - "type": "npm", - "name": "npm:http2-wrapper", - "data": { - "version": "1.0.3", - "packageName": "http2-wrapper", - "hash": "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" - } - }, - "npm:https-proxy-agent": { - "type": "npm", - "name": "npm:https-proxy-agent", - "data": { - "version": "7.0.5", - "packageName": "https-proxy-agent", - "hash": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==" - } - }, - "npm:https-proxy-agent@5.0.1": { - "type": "npm", - "name": "npm:https-proxy-agent@5.0.1", - "data": { - "version": "5.0.1", - "packageName": "https-proxy-agent", - "hash": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" - } - }, - "npm:hyperdyperid": { - "type": "npm", - "name": "npm:hyperdyperid", - "data": { - "version": "1.2.0", - "packageName": "hyperdyperid", - "hash": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==" - } - }, - "npm:icss-utils": { - "type": "npm", - "name": "npm:icss-utils", - "data": { - "version": "5.1.0", - "packageName": "icss-utils", - "hash": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==" - } - }, - "npm:identity-obj-proxy": { - "type": "npm", - "name": "npm:identity-obj-proxy", - "data": { - "version": "3.0.0", - "packageName": "identity-obj-proxy", - "hash": "sha512-00n6YnVHKrinT9t0d9+5yZC6UBNJANpYEQvL2LlX6Ab9lnmxzIRcEmTPuyGScvl1+jKuCICX1Z0Ab1pPKKdikA==" - } - }, - "npm:ieee754": { - "type": "npm", - "name": "npm:ieee754", - "data": { - "version": "1.2.1", - "packageName": "ieee754", - "hash": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" - } - }, - "npm:ignore": { - "type": "npm", - "name": "npm:ignore", - "data": { - "version": "5.3.1", - "packageName": "ignore", - "hash": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==" - } - }, - "npm:ignore-walk": { - "type": "npm", - "name": "npm:ignore-walk", - "data": { - "version": "6.0.5", - "packageName": "ignore-walk", - "hash": "sha512-VuuG0wCnjhnylG1ABXT3dAuIpTNDs/G8jlpmwXY03fXoXy/8ZK8/T+hMzt8L4WnrLCJgdybqgPagnF/f97cg3A==" - } - }, - "npm:image-size": { - "type": "npm", - "name": "npm:image-size", - "data": { - "version": "0.5.5", - "packageName": "image-size", - "hash": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==" - } - }, - "npm:immutable": { - "type": "npm", - "name": "npm:immutable", - "data": { - "version": "3.8.2", - "packageName": "immutable", - "hash": "sha512-15gZoQ38eYjEjxkorfbcgBKBL6R7T459OuK+CpcWt7O3KF4uPCx2tD0uFETlUDIyo+1789crbMhTvQBSR5yBMg==" - } - }, - "npm:immutable@4.3.5": { - "type": "npm", - "name": "npm:immutable@4.3.5", - "data": { - "version": "4.3.5", - "packageName": "immutable", - "hash": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==" - } - }, - "npm:import-fresh": { - "type": "npm", - "name": "npm:import-fresh", - "data": { - "version": "3.3.0", - "packageName": "import-fresh", - "hash": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" - } - }, - "npm:resolve-from@4.0.0": { - "type": "npm", - "name": "npm:resolve-from@4.0.0", - "data": { - "version": "4.0.0", - "packageName": "resolve-from", - "hash": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" - } - }, - "npm:resolve-from": { - "type": "npm", - "name": "npm:resolve-from", - "data": { - "version": "5.0.0", - "packageName": "resolve-from", - "hash": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" - } - }, - "npm:import-local": { - "type": "npm", - "name": "npm:import-local", - "data": { - "version": "3.1.0", - "packageName": "import-local", - "hash": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==" - } - }, - "npm:imurmurhash": { - "type": "npm", - "name": "npm:imurmurhash", - "data": { - "version": "0.1.4", - "packageName": "imurmurhash", - "hash": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" - } - }, - "npm:indent-string": { - "type": "npm", - "name": "npm:indent-string", - "data": { - "version": "4.0.0", - "packageName": "indent-string", - "hash": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" - } - }, - "npm:inflight": { - "type": "npm", - "name": "npm:inflight", - "data": { - "version": "1.0.6", - "packageName": "inflight", - "hash": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" - } - }, - "npm:inherits": { - "type": "npm", - "name": "npm:inherits", - "data": { - "version": "2.0.4", - "packageName": "inherits", - "hash": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - } - }, - "npm:inherits@2.0.3": { - "type": "npm", - "name": "npm:inherits@2.0.3", - "data": { - "version": "2.0.3", - "packageName": "inherits", - "hash": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - } - }, - "npm:injection-js": { - "type": "npm", - "name": "npm:injection-js", - "data": { - "version": "2.4.0", - "packageName": "injection-js", - "hash": "sha512-6jiJt0tCAo9zjHbcwLiPL+IuNe9SQ6a9g0PEzafThW3fOQi0mrmiJGBJvDD6tmhPh8cQHIQtCOrJuBfQME4kPA==" - } - }, - "npm:ip-address": { - "type": "npm", - "name": "npm:ip-address", - "data": { - "version": "9.0.5", - "packageName": "ip-address", - "hash": "sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==" - } - }, - "npm:sprintf-js@1.1.3": { - "type": "npm", - "name": "npm:sprintf-js@1.1.3", - "data": { - "version": "1.1.3", - "packageName": "sprintf-js", - "hash": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" - } - }, - "npm:sprintf-js": { - "type": "npm", - "name": "npm:sprintf-js", - "data": { - "version": "1.0.3", - "packageName": "sprintf-js", - "hash": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==" - } - }, - "npm:is-arrayish": { - "type": "npm", - "name": "npm:is-arrayish", - "data": { - "version": "0.2.1", - "packageName": "is-arrayish", - "hash": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - } - }, - "npm:is-binary-path": { - "type": "npm", - "name": "npm:is-binary-path", - "data": { - "version": "2.1.0", - "packageName": "is-binary-path", - "hash": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" - } - }, - "npm:is-builtin-module": { - "type": "npm", - "name": "npm:is-builtin-module", - "data": { - "version": "3.2.1", - "packageName": "is-builtin-module", - "hash": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==" - } - }, - "npm:is-ci": { - "type": "npm", - "name": "npm:is-ci", - "data": { - "version": "3.0.1", - "packageName": "is-ci", - "hash": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" - } - }, - "npm:is-core-module": { - "type": "npm", - "name": "npm:is-core-module", - "data": { - "version": "2.13.1", - "packageName": "is-core-module", - "hash": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==" - } - }, - "npm:is-docker": { - "type": "npm", - "name": "npm:is-docker", - "data": { - "version": "2.2.1", - "packageName": "is-docker", - "hash": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==" - } - }, - "npm:is-docker@3.0.0": { - "type": "npm", - "name": "npm:is-docker@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "is-docker", - "hash": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==" - } - }, - "npm:is-extglob": { - "type": "npm", - "name": "npm:is-extglob", - "data": { - "version": "2.1.1", - "packageName": "is-extglob", - "hash": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" - } - }, - "npm:is-generator-fn": { - "type": "npm", - "name": "npm:is-generator-fn", - "data": { - "version": "2.1.0", - "packageName": "is-generator-fn", - "hash": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" - } - }, - "npm:is-generator-function": { - "type": "npm", - "name": "npm:is-generator-function", - "data": { - "version": "1.0.10", - "packageName": "is-generator-function", - "hash": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==" - } - }, - "npm:is-glob": { - "type": "npm", - "name": "npm:is-glob", - "data": { - "version": "4.0.3", - "packageName": "is-glob", - "hash": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" - } - }, - "npm:is-inside-container": { - "type": "npm", - "name": "npm:is-inside-container", - "data": { - "version": "1.0.0", - "packageName": "is-inside-container", - "hash": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==" - } - }, - "npm:is-installed-globally": { - "type": "npm", - "name": "npm:is-installed-globally", - "data": { - "version": "0.4.0", - "packageName": "is-installed-globally", - "hash": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==" - } - }, - "npm:is-interactive": { - "type": "npm", - "name": "npm:is-interactive", - "data": { - "version": "1.0.0", - "packageName": "is-interactive", - "hash": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" - } - }, - "npm:is-lambda": { - "type": "npm", - "name": "npm:is-lambda", - "data": { - "version": "1.0.1", - "packageName": "is-lambda", - "hash": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" - } - }, - "npm:is-module": { - "type": "npm", - "name": "npm:is-module", - "data": { - "version": "1.0.0", - "packageName": "is-module", - "hash": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==" - } - }, - "npm:is-network-error": { - "type": "npm", - "name": "npm:is-network-error", - "data": { - "version": "1.1.0", - "packageName": "is-network-error", - "hash": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==" - } - }, - "npm:is-number": { - "type": "npm", - "name": "npm:is-number", - "data": { - "version": "7.0.0", - "packageName": "is-number", - "hash": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" - } - }, - "npm:is-number-like": { - "type": "npm", - "name": "npm:is-number-like", - "data": { - "version": "1.0.8", - "packageName": "is-number-like", - "hash": "sha512-6rZi3ezCyFcn5L71ywzz2bS5b2Igl1En3eTlZlvKjpz1n3IZLAYMbKYAIQgFmEu0GENg92ziU/faEOA/aixjbA==" - } - }, - "npm:is-path-inside": { - "type": "npm", - "name": "npm:is-path-inside", - "data": { - "version": "3.0.3", - "packageName": "is-path-inside", - "hash": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==" - } - }, - "npm:is-plain-obj": { - "type": "npm", - "name": "npm:is-plain-obj", - "data": { - "version": "3.0.0", - "packageName": "is-plain-obj", - "hash": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==" - } - }, - "npm:is-plain-obj@1.1.0": { - "type": "npm", - "name": "npm:is-plain-obj@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "is-plain-obj", - "hash": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==" - } - }, - "npm:is-plain-object": { - "type": "npm", - "name": "npm:is-plain-object", - "data": { - "version": "2.0.4", - "packageName": "is-plain-object", - "hash": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" - } - }, - "npm:is-potential-custom-element-name": { - "type": "npm", - "name": "npm:is-potential-custom-element-name", - "data": { - "version": "1.0.1", - "packageName": "is-potential-custom-element-name", - "hash": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" - } - }, - "npm:is-promise": { - "type": "npm", - "name": "npm:is-promise", - "data": { - "version": "2.2.2", - "packageName": "is-promise", - "hash": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" - } - }, - "npm:is-reference": { - "type": "npm", - "name": "npm:is-reference", - "data": { - "version": "1.2.1", - "packageName": "is-reference", - "hash": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==" - } - }, - "npm:is-typedarray": { - "type": "npm", - "name": "npm:is-typedarray", - "data": { - "version": "1.0.0", - "packageName": "is-typedarray", - "hash": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - } - }, - "npm:is-unicode-supported": { - "type": "npm", - "name": "npm:is-unicode-supported", - "data": { - "version": "0.1.0", - "packageName": "is-unicode-supported", - "hash": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" - } - }, - "npm:is-what": { - "type": "npm", - "name": "npm:is-what", - "data": { - "version": "3.14.1", - "packageName": "is-what", - "hash": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" - } - }, - "npm:is-windows": { - "type": "npm", - "name": "npm:is-windows", - "data": { - "version": "1.0.2", - "packageName": "is-windows", - "hash": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" - } - }, - "npm:isarray": { - "type": "npm", - "name": "npm:isarray", - "data": { - "version": "1.0.0", - "packageName": "isarray", - "hash": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - } - }, - "npm:isobject": { - "type": "npm", - "name": "npm:isobject", - "data": { - "version": "3.0.1", - "packageName": "isobject", - "hash": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==" - } - }, - "npm:isomorphic-ws": { - "type": "npm", - "name": "npm:isomorphic-ws", - "data": { - "version": "5.0.0", - "packageName": "isomorphic-ws", - "hash": "sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==" - } - }, - "npm:isstream": { - "type": "npm", - "name": "npm:isstream", - "data": { - "version": "0.1.2", - "packageName": "isstream", - "hash": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - } - }, - "npm:istanbul-lib-coverage": { - "type": "npm", - "name": "npm:istanbul-lib-coverage", - "data": { - "version": "3.2.2", - "packageName": "istanbul-lib-coverage", - "hash": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==" - } - }, - "npm:istanbul-lib-report": { - "type": "npm", - "name": "npm:istanbul-lib-report", - "data": { - "version": "3.0.1", - "packageName": "istanbul-lib-report", - "hash": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==" - } - }, - "npm:istanbul-lib-source-maps": { - "type": "npm", - "name": "npm:istanbul-lib-source-maps", - "data": { - "version": "4.0.1", - "packageName": "istanbul-lib-source-maps", - "hash": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==" - } - }, - "npm:istanbul-reports": { - "type": "npm", - "name": "npm:istanbul-reports", - "data": { - "version": "3.1.7", - "packageName": "istanbul-reports", - "hash": "sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==" - } - }, - "npm:jake": { - "type": "npm", - "name": "npm:jake", - "data": { - "version": "10.8.7", - "packageName": "jake", - "hash": "sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==" - } - }, - "npm:jest": { - "type": "npm", - "name": "npm:jest", - "data": { - "version": "29.7.0", - "packageName": "jest", - "hash": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==" - } - }, - "npm:jest-changed-files": { - "type": "npm", - "name": "npm:jest-changed-files", - "data": { - "version": "29.7.0", - "packageName": "jest-changed-files", - "hash": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==" - } - }, - "npm:jest-circus": { - "type": "npm", - "name": "npm:jest-circus", - "data": { - "version": "29.7.0", - "packageName": "jest-circus", - "hash": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==" - } - }, - "npm:dedent@1.5.1": { - "type": "npm", - "name": "npm:dedent@1.5.1", - "data": { - "version": "1.5.1", - "packageName": "dedent", - "hash": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==" - } - }, - "npm:jest-cli": { - "type": "npm", - "name": "npm:jest-cli", - "data": { - "version": "29.7.0", - "packageName": "jest-cli", - "hash": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==" - } - }, - "npm:jest-config": { - "type": "npm", - "name": "npm:jest-config", - "data": { - "version": "29.7.0", - "packageName": "jest-config", - "hash": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==" - } - }, - "npm:jest-diff": { - "type": "npm", - "name": "npm:jest-diff", - "data": { - "version": "29.7.0", - "packageName": "jest-diff", - "hash": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==" - } - }, - "npm:jest-docblock": { - "type": "npm", - "name": "npm:jest-docblock", - "data": { - "version": "29.7.0", - "packageName": "jest-docblock", - "hash": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==" - } - }, - "npm:jest-each": { - "type": "npm", - "name": "npm:jest-each", - "data": { - "version": "29.7.0", - "packageName": "jest-each", - "hash": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==" - } - }, - "npm:jest-environment-jsdom": { - "type": "npm", - "name": "npm:jest-environment-jsdom", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-jsdom", - "hash": "sha512-k9iQbsf9OyOfdzWH8HDmrRT0gSIcX+FLNW7IQq94tFX0gynPwqDTW0Ho6iMVNjGz/nb+l/vW3dWM2bbLLpkbXA==" - } - }, - "npm:jest-environment-node": { - "type": "npm", - "name": "npm:jest-environment-node", - "data": { - "version": "29.7.0", - "packageName": "jest-environment-node", - "hash": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==" - } - }, - "npm:jest-get-type": { - "type": "npm", - "name": "npm:jest-get-type", - "data": { - "version": "29.6.3", - "packageName": "jest-get-type", - "hash": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==" - } - }, - "npm:jest-haste-map": { - "type": "npm", - "name": "npm:jest-haste-map", - "data": { - "version": "29.7.0", - "packageName": "jest-haste-map", - "hash": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==" - } - }, - "npm:jest-leak-detector": { - "type": "npm", - "name": "npm:jest-leak-detector", - "data": { - "version": "29.7.0", - "packageName": "jest-leak-detector", - "hash": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==" - } - }, - "npm:jest-matcher-utils": { - "type": "npm", - "name": "npm:jest-matcher-utils", - "data": { - "version": "29.7.0", - "packageName": "jest-matcher-utils", - "hash": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==" - } - }, - "npm:jest-message-util": { - "type": "npm", - "name": "npm:jest-message-util", - "data": { - "version": "29.7.0", - "packageName": "jest-message-util", - "hash": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==" - } - }, - "npm:jest-mock": { - "type": "npm", - "name": "npm:jest-mock", - "data": { - "version": "29.7.0", - "packageName": "jest-mock", - "hash": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==" - } - }, - "npm:jest-pnp-resolver": { - "type": "npm", - "name": "npm:jest-pnp-resolver", - "data": { - "version": "1.2.3", - "packageName": "jest-pnp-resolver", - "hash": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==" - } - }, - "npm:jest-preset-angular": { - "type": "npm", - "name": "npm:jest-preset-angular", - "data": { - "version": "14.1.0", - "packageName": "jest-preset-angular", - "hash": "sha512-UJwPtpsAMl30UtBjHW0Ai0hhoKsNURC1dXH5tSYjumUsWR7iDke+oBEykz7uXv4rN+PWgeNIqkxo4KHQjOITlw==" - } - }, - "npm:jest-regex-util": { - "type": "npm", - "name": "npm:jest-regex-util", - "data": { - "version": "29.6.3", - "packageName": "jest-regex-util", - "hash": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==" - } - }, - "npm:jest-resolve": { - "type": "npm", - "name": "npm:jest-resolve", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve", - "hash": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==" - } - }, - "npm:jest-resolve-dependencies": { - "type": "npm", - "name": "npm:jest-resolve-dependencies", - "data": { - "version": "29.7.0", - "packageName": "jest-resolve-dependencies", - "hash": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==" - } - }, - "npm:resolve.exports@2.0.2": { - "type": "npm", - "name": "npm:resolve.exports@2.0.2", - "data": { - "version": "2.0.2", - "packageName": "resolve.exports", - "hash": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==" - } - }, - "npm:resolve.exports": { - "type": "npm", - "name": "npm:resolve.exports", - "data": { - "version": "1.1.0", - "packageName": "resolve.exports", - "hash": "sha512-J1l+Zxxp4XK3LUDZ9m60LRJF/mAe4z6a4xyabPHk7pvK5t35dACV32iIjJDFeWZFfZlO29w6SZ67knR0tHzJtQ==" - } - }, - "npm:jest-runner": { - "type": "npm", - "name": "npm:jest-runner", - "data": { - "version": "29.7.0", - "packageName": "jest-runner", - "hash": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==" - } - }, - "npm:jest-runtime": { - "type": "npm", - "name": "npm:jest-runtime", - "data": { - "version": "29.7.0", - "packageName": "jest-runtime", - "hash": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==" - } - }, - "npm:jest-snapshot": { - "type": "npm", - "name": "npm:jest-snapshot", - "data": { - "version": "29.7.0", - "packageName": "jest-snapshot", - "hash": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==" - } - }, - "npm:jest-util": { - "type": "npm", - "name": "npm:jest-util", - "data": { - "version": "29.7.0", - "packageName": "jest-util", - "hash": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==" - } - }, - "npm:jest-validate": { - "type": "npm", - "name": "npm:jest-validate", - "data": { - "version": "29.7.0", - "packageName": "jest-validate", - "hash": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==" - } - }, - "npm:jest-watcher": { - "type": "npm", - "name": "npm:jest-watcher", - "data": { - "version": "29.7.0", - "packageName": "jest-watcher", - "hash": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==" - } - }, - "npm:jest-worker": { - "type": "npm", - "name": "npm:jest-worker", - "data": { - "version": "29.7.0", - "packageName": "jest-worker", - "hash": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==" - } - }, - "npm:jest-worker@27.5.1": { - "type": "npm", - "name": "npm:jest-worker@27.5.1", - "data": { - "version": "27.5.1", - "packageName": "jest-worker", - "hash": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==" - } - }, - "npm:jiti": { - "type": "npm", - "name": "npm:jiti", - "data": { - "version": "1.21.0", - "packageName": "jiti", - "hash": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==" - } - }, - "npm:joycon": { - "type": "npm", - "name": "npm:joycon", - "data": { - "version": "3.1.1", - "packageName": "joycon", - "hash": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==" - } - }, - "npm:js-tokens": { - "type": "npm", - "name": "npm:js-tokens", - "data": { - "version": "4.0.0", - "packageName": "js-tokens", - "hash": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - } - }, - "npm:jsdom": { - "type": "npm", - "name": "npm:jsdom", - "data": { - "version": "20.0.3", - "packageName": "jsdom", - "hash": "sha512-SYhBvTh89tTfCD/CRdSOm13mOBa42iTaTyfyEWBdKcGdPxPtLFBXuHR8XHb33YNYaP+lLbmSvBTsnoesCNJEsQ==" - } - }, - "npm:jsesc": { - "type": "npm", - "name": "npm:jsesc", - "data": { - "version": "2.5.2", - "packageName": "jsesc", - "hash": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" - } - }, - "npm:jsesc@0.5.0": { - "type": "npm", - "name": "npm:jsesc@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "jsesc", - "hash": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==" - } - }, - "npm:json-buffer": { - "type": "npm", - "name": "npm:json-buffer", - "data": { - "version": "3.0.1", - "packageName": "json-buffer", - "hash": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" - } - }, - "npm:json-parse-even-better-errors": { - "type": "npm", - "name": "npm:json-parse-even-better-errors", - "data": { - "version": "3.0.2", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-fi0NG4bPjCHunUJffmLd0gxssIgkNmArMvis4iNah6Owg1MCJjWhEcDLmsK6iGkJq3tHwbDkTlce70/tmXN4cQ==" - } - }, - "npm:json-parse-even-better-errors@2.3.1": { - "type": "npm", - "name": "npm:json-parse-even-better-errors@2.3.1", - "data": { - "version": "2.3.1", - "packageName": "json-parse-even-better-errors", - "hash": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - } - }, - "npm:json-schema": { - "type": "npm", - "name": "npm:json-schema", - "data": { - "version": "0.4.0", - "packageName": "json-schema", - "hash": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - } - }, - "npm:json-stable-stringify-without-jsonify": { - "type": "npm", - "name": "npm:json-stable-stringify-without-jsonify", - "data": { - "version": "1.0.1", - "packageName": "json-stable-stringify-without-jsonify", - "hash": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" - } - }, - "npm:json-stringify-safe": { - "type": "npm", - "name": "npm:json-stringify-safe", - "data": { - "version": "5.0.1", - "packageName": "json-stringify-safe", - "hash": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - } - }, - "npm:json5": { - "type": "npm", - "name": "npm:json5", - "data": { - "version": "2.2.3", - "packageName": "json5", - "hash": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" - } - }, - "npm:jsonc-eslint-parser": { - "type": "npm", - "name": "npm:jsonc-eslint-parser", - "data": { - "version": "2.4.0", - "packageName": "jsonc-eslint-parser", - "hash": "sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==" - } - }, - "npm:jsonparse": { - "type": "npm", - "name": "npm:jsonparse", - "data": { - "version": "1.3.1", - "packageName": "jsonparse", - "hash": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==" - } - }, - "npm:JSONStream": { - "type": "npm", - "name": "npm:JSONStream", - "data": { - "version": "1.3.5", - "packageName": "JSONStream", - "hash": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==" - } - }, - "npm:jsonwebtoken": { - "type": "npm", - "name": "npm:jsonwebtoken", - "data": { - "version": "9.0.2", - "packageName": "jsonwebtoken", - "hash": "sha512-PRp66vJ865SSqOlgqS8hujT5U4AOgMfhrwYIuIhfKaoSCZcirrmASQr8CX7cUg+RMih+hgznrjp99o+W4pJLHQ==" - } - }, - "npm:jsprim": { - "type": "npm", - "name": "npm:jsprim", - "data": { - "version": "2.0.2", - "packageName": "jsprim", - "hash": "sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==" - } - }, - "npm:jwa": { - "type": "npm", - "name": "npm:jwa", - "data": { - "version": "1.4.1", - "packageName": "jwa", - "hash": "sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==" - } - }, - "npm:jws": { - "type": "npm", - "name": "npm:jws", - "data": { - "version": "3.2.2", - "packageName": "jws", - "hash": "sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==" - } - }, - "npm:karma-source-map-support": { - "type": "npm", - "name": "npm:karma-source-map-support", - "data": { - "version": "1.4.0", - "packageName": "karma-source-map-support", - "hash": "sha512-RsBECncGO17KAoJCYXjv+ckIz+Ii9NCi+9enk+rq6XC81ezYkb4/RHE6CTXdA7IOJqoF3wcaLfVG0CPmE5ca6A==" - } - }, - "npm:keygrip": { - "type": "npm", - "name": "npm:keygrip", - "data": { - "version": "1.1.0", - "packageName": "keygrip", - "hash": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==" - } - }, - "npm:keyv": { - "type": "npm", - "name": "npm:keyv", - "data": { - "version": "4.5.4", - "packageName": "keyv", - "hash": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" - } - }, - "npm:kind-of": { - "type": "npm", - "name": "npm:kind-of", - "data": { - "version": "6.0.3", - "packageName": "kind-of", - "hash": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" - } - }, - "npm:kleur": { - "type": "npm", - "name": "npm:kleur", - "data": { - "version": "3.0.3", - "packageName": "kleur", - "hash": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" - } - }, - "npm:kleur@4.1.5": { - "type": "npm", - "name": "npm:kleur@4.1.5", - "data": { - "version": "4.1.5", - "packageName": "kleur", - "hash": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==" - } - }, - "npm:klona": { - "type": "npm", - "name": "npm:klona", - "data": { - "version": "2.0.6", - "packageName": "klona", - "hash": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==" - } - }, - "npm:koa": { - "type": "npm", - "name": "npm:koa", - "data": { - "version": "2.11.0", - "packageName": "koa", - "hash": "sha512-EpR9dElBTDlaDgyhDMiLkXrPwp6ZqgAIBvhhmxQ9XN4TFgW+gEz6tkcsNI6BnUbUftrKDjVFj4lW2/J2aNBMMA==" - } - }, - "npm:koa-compose": { - "type": "npm", - "name": "npm:koa-compose", - "data": { - "version": "4.1.0", - "packageName": "koa-compose", - "hash": "sha512-8ODW8TrDuMYvXRwra/Kh7/rJo9BtOfPc6qO8eAfC80CnCvSjSl0bkRM24X6/XBBEyj0v1nRUQ1LyOy3dbqOWXw==" - } - }, - "npm:koa-compose@3.2.1": { - "type": "npm", - "name": "npm:koa-compose@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "koa-compose", - "hash": "sha512-8gen2cvKHIZ35eDEik5WOo8zbVp9t4cP8p4hW4uE55waxolLRexKKrqfCpwhGVppnB40jWeF8bZeTVg99eZgPw==" - } - }, - "npm:koa-convert": { - "type": "npm", - "name": "npm:koa-convert", - "data": { - "version": "1.2.0", - "packageName": "koa-convert", - "hash": "sha512-K9XqjmEDStGX09v3oxR7t5uPRy0jqJdvodHa6wxWTHrTfDq0WUNnYTOOUZN6g8OM8oZQXprQASbiIXG2Ez8ehA==" - } - }, - "npm:launch-editor": { - "type": "npm", - "name": "npm:launch-editor", - "data": { - "version": "2.6.1", - "packageName": "launch-editor", - "hash": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==" - } - }, - "npm:lazy-ass": { - "type": "npm", - "name": "npm:lazy-ass", - "data": { - "version": "1.6.0", - "packageName": "lazy-ass", - "hash": "sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==" - } - }, - "npm:leven": { - "type": "npm", - "name": "npm:leven", - "data": { - "version": "3.1.0", - "packageName": "leven", - "hash": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" - } - }, - "npm:levn": { - "type": "npm", - "name": "npm:levn", - "data": { - "version": "0.4.1", - "packageName": "levn", - "hash": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" - } - }, - "npm:license-webpack-plugin": { - "type": "npm", - "name": "npm:license-webpack-plugin", - "data": { - "version": "4.0.2", - "packageName": "license-webpack-plugin", - "hash": "sha512-771TFWFD70G1wLTC4oU2Cw4qvtmNrIw+wRvBtn+okgHl7slJVi7zfNcdmqDL72BojM30VNJ2UHylr1o77U37Jw==" - } - }, - "npm:lilconfig": { - "type": "npm", - "name": "npm:lilconfig", - "data": { - "version": "3.1.1", - "packageName": "lilconfig", - "hash": "sha512-O18pf7nyvHTckunPWCV1XUNXU1piu01y2b7ATJ0ppkUkk8ocqVWBrYjJBCwHDjD/ZWcfyrA0P4gKhzWGi5EINQ==" - } - }, - "npm:limiter": { - "type": "npm", - "name": "npm:limiter", - "data": { - "version": "1.1.5", - "packageName": "limiter", - "hash": "sha512-FWWMIEOxz3GwUI4Ts/IvgVy6LPvoMPgjMdQ185nN6psJyBJ4yOpzqm695/h5umdLJg2vW3GR5iG11MAkR2AzJA==" - } - }, - "npm:lines-and-columns": { - "type": "npm", - "name": "npm:lines-and-columns", - "data": { - "version": "2.0.4", - "packageName": "lines-and-columns", - "hash": "sha512-wM1+Z03eypVAVUCE7QdSqpVIvelbOakn1M0bPDoA4SGWPx3sNDVUiMo3L6To6WWGClB7VyXnhQ4Sn7gxiJbE6A==" - } - }, - "npm:lines-and-columns@1.2.4": { - "type": "npm", - "name": "npm:lines-and-columns@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "lines-and-columns", - "hash": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - } - }, - "npm:lmdb": { - "type": "npm", - "name": "npm:lmdb", - "data": { - "version": "3.0.12", - "packageName": "lmdb", - "hash": "sha512-JnoEulTgveoC64vlYJ9sufGLuNkk6TcxSYpKxSC9aM42I61jIv3pQH0fgb6qW7HV0+FNqA3g1WCQQYfhfawGoQ==" - } - }, - "npm:loader-runner": { - "type": "npm", - "name": "npm:loader-runner", - "data": { - "version": "4.3.0", - "packageName": "loader-runner", - "hash": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==" - } - }, - "npm:lockfile": { - "type": "npm", - "name": "npm:lockfile", - "data": { - "version": "1.0.4", - "packageName": "lockfile", - "hash": "sha512-cvbTwETRfsFh4nHsL1eGWapU1XFi5Ot9E85sWAwia7Y7EgB7vfqcZhTKZ+l7hCGxSPoushMv5GKhT5PdLv03WA==" - } - }, - "npm:lodash": { - "type": "npm", - "name": "npm:lodash", - "data": { - "version": "4.17.21", - "packageName": "lodash", - "hash": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - } - }, - "npm:lodash-es": { - "type": "npm", - "name": "npm:lodash-es", - "data": { - "version": "4.17.21", - "packageName": "lodash-es", - "hash": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" - } - }, - "npm:lodash.clonedeepwith": { - "type": "npm", - "name": "npm:lodash.clonedeepwith", - "data": { - "version": "4.5.0", - "packageName": "lodash.clonedeepwith", - "hash": "sha512-QRBRSxhbtsX1nc0baxSkkK5WlVTTm/s48DSukcGcWZwIyI8Zz+lB+kFiELJXtzfH4Aj6kMWQ1VWW4U5uUDgZMA==" - } - }, - "npm:lodash.debounce": { - "type": "npm", - "name": "npm:lodash.debounce", - "data": { - "version": "4.0.8", - "packageName": "lodash.debounce", - "hash": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - } - }, - "npm:lodash.includes": { - "type": "npm", - "name": "npm:lodash.includes", - "data": { - "version": "4.3.0", - "packageName": "lodash.includes", - "hash": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==" - } - }, - "npm:lodash.isboolean": { - "type": "npm", - "name": "npm:lodash.isboolean", - "data": { - "version": "3.0.3", - "packageName": "lodash.isboolean", - "hash": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" - } - }, - "npm:lodash.isfinite": { - "type": "npm", - "name": "npm:lodash.isfinite", - "data": { - "version": "3.3.2", - "packageName": "lodash.isfinite", - "hash": "sha512-7FGG40uhC8Mm633uKW1r58aElFlBlxCrg9JfSi3P6aYiWmfiWF0PgMd86ZUsxE5GwWPdHoS2+48bwTh2VPkIQA==" - } - }, - "npm:lodash.isinteger": { - "type": "npm", - "name": "npm:lodash.isinteger", - "data": { - "version": "4.0.4", - "packageName": "lodash.isinteger", - "hash": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==" - } - }, - "npm:lodash.isnumber": { - "type": "npm", - "name": "npm:lodash.isnumber", - "data": { - "version": "3.0.3", - "packageName": "lodash.isnumber", - "hash": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==" - } - }, - "npm:lodash.isplainobject": { - "type": "npm", - "name": "npm:lodash.isplainobject", - "data": { - "version": "4.0.6", - "packageName": "lodash.isplainobject", - "hash": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" - } - }, - "npm:lodash.isstring": { - "type": "npm", - "name": "npm:lodash.isstring", - "data": { - "version": "4.0.1", - "packageName": "lodash.isstring", - "hash": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==" - } - }, - "npm:lodash.memoize": { - "type": "npm", - "name": "npm:lodash.memoize", - "data": { - "version": "4.1.2", - "packageName": "lodash.memoize", - "hash": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - } - }, - "npm:lodash.merge": { - "type": "npm", - "name": "npm:lodash.merge", - "data": { - "version": "4.6.2", - "packageName": "lodash.merge", - "hash": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" - } - }, - "npm:lodash.once": { - "type": "npm", - "name": "npm:lodash.once", - "data": { - "version": "4.1.1", - "packageName": "lodash.once", - "hash": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==" - } - }, - "npm:lodash.uniq": { - "type": "npm", - "name": "npm:lodash.uniq", - "data": { - "version": "4.5.0", - "packageName": "lodash.uniq", - "hash": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - } - }, - "npm:log-symbols": { - "type": "npm", - "name": "npm:log-symbols", - "data": { - "version": "4.1.0", - "packageName": "log-symbols", - "hash": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" - } - }, - "npm:log4js": { - "type": "npm", - "name": "npm:log4js", - "data": { - "version": "6.9.1", - "packageName": "log4js", - "hash": "sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==" - } - }, - "npm:long-timeout": { - "type": "npm", - "name": "npm:long-timeout", - "data": { - "version": "0.1.1", - "packageName": "long-timeout", - "hash": "sha512-BFRuQUqc7x2NWxfJBCyUrN8iYUYznzL9JROmRz1gZ6KlOIgmoD+njPVbb+VNn2nGMKggMsK79iUNErillsrx7w==" - } - }, - "npm:lowdb": { - "type": "npm", - "name": "npm:lowdb", - "data": { - "version": "1.0.0", - "packageName": "lowdb", - "hash": "sha512-2+x8esE/Wb9SQ1F9IHaYWfsC9FIecLOPrK4g17FGEayjUWH172H6nwicRovGvSE2CPZouc2MCIqCI7h9d+GftQ==" - } - }, - "npm:lowercase-keys": { - "type": "npm", - "name": "npm:lowercase-keys", - "data": { - "version": "2.0.0", - "packageName": "lowercase-keys", - "hash": "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" - } - }, - "npm:luxon": { - "type": "npm", - "name": "npm:luxon", - "data": { - "version": "3.5.0", - "packageName": "luxon", - "hash": "sha512-rh+Zjr6DNfUYR3bPwJEnuwDdqMbxZW7LOQfUN4B54+Cl+0o5zaU9RJ6bcidfDtC1cWCZXQ+nvX8bf6bAji37QQ==" - } - }, - "npm:magic-string": { - "type": "npm", - "name": "npm:magic-string", - "data": { - "version": "0.30.10", - "packageName": "magic-string", - "hash": "sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==" - } - }, - "npm:make-error": { - "type": "npm", - "name": "npm:make-error", - "data": { - "version": "1.3.6", - "packageName": "make-error", - "hash": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" - } - }, - "npm:make-fetch-happen": { - "type": "npm", - "name": "npm:make-fetch-happen", - "data": { - "version": "13.0.1", - "packageName": "make-fetch-happen", - "hash": "sha512-cKTUFc/rbKUd/9meOvgrpJ2WrNzymt6jfRDdwg5UCnVzv9dTpEj9JS5m3wtziXVCjluIXyL8pcaukYqezIzZQA==" - } - }, - "npm:makeerror": { - "type": "npm", - "name": "npm:makeerror", - "data": { - "version": "1.0.12", - "packageName": "makeerror", - "hash": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==" - } - }, - "npm:media-typer": { - "type": "npm", - "name": "npm:media-typer", - "data": { - "version": "0.3.0", - "packageName": "media-typer", - "hash": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==" - } - }, - "npm:memfs": { - "type": "npm", - "name": "npm:memfs", - "data": { - "version": "3.5.3", - "packageName": "memfs", - "hash": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==" - } - }, - "npm:memfs@4.11.1": { - "type": "npm", - "name": "npm:memfs@4.11.1", - "data": { - "version": "4.11.1", - "packageName": "memfs", - "hash": "sha512-LZcMTBAgqUUKNXZagcZxvXXfgF1bHX7Y7nQ0QyEiNbRJgE29GhgPd8Yna1VQcLlPiHt/5RFJMWYN9Uv/VPNvjQ==" - } - }, - "npm:merge-descriptors": { - "type": "npm", - "name": "npm:merge-descriptors", - "data": { - "version": "1.0.1", - "packageName": "merge-descriptors", - "hash": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" - } - }, - "npm:merge-stream": { - "type": "npm", - "name": "npm:merge-stream", - "data": { - "version": "2.0.0", - "packageName": "merge-stream", - "hash": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" - } - }, - "npm:merge2": { - "type": "npm", - "name": "npm:merge2", - "data": { - "version": "1.4.1", - "packageName": "merge2", - "hash": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" - } - }, - "npm:methods": { - "type": "npm", - "name": "npm:methods", - "data": { - "version": "1.1.2", - "packageName": "methods", - "hash": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==" - } - }, - "npm:micromatch": { - "type": "npm", - "name": "npm:micromatch", - "data": { - "version": "4.0.5", - "packageName": "micromatch", - "hash": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==" - } - }, - "npm:mime-db": { - "type": "npm", - "name": "npm:mime-db", - "data": { - "version": "1.52.0", - "packageName": "mime-db", - "hash": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" - } - }, - "npm:mime-types": { - "type": "npm", - "name": "npm:mime-types", - "data": { - "version": "2.1.35", - "packageName": "mime-types", - "hash": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" - } - }, - "npm:mimic-fn": { - "type": "npm", - "name": "npm:mimic-fn", - "data": { - "version": "2.1.0", - "packageName": "mimic-fn", - "hash": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" - } - }, - "npm:mimic-function": { - "type": "npm", - "name": "npm:mimic-function", - "data": { - "version": "5.0.1", - "packageName": "mimic-function", - "hash": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==" - } - }, - "npm:minimalistic-assert": { - "type": "npm", - "name": "npm:minimalistic-assert", - "data": { - "version": "1.0.1", - "packageName": "minimalistic-assert", - "hash": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - } - }, - "npm:minimist": { - "type": "npm", - "name": "npm:minimist", - "data": { - "version": "1.2.8", - "packageName": "minimist", - "hash": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" - } - }, - "npm:minipass": { - "type": "npm", - "name": "npm:minipass", - "data": { - "version": "7.1.2", - "packageName": "minipass", - "hash": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" - } - }, - "npm:minipass@3.3.6": { - "type": "npm", - "name": "npm:minipass@3.3.6", - "data": { - "version": "3.3.6", - "packageName": "minipass", - "hash": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" - } - }, - "npm:minipass@5.0.0": { - "type": "npm", - "name": "npm:minipass@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "minipass", - "hash": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" - } - }, - "npm:minipass-collect": { - "type": "npm", - "name": "npm:minipass-collect", - "data": { - "version": "2.0.1", - "packageName": "minipass-collect", - "hash": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==" - } - }, - "npm:minipass-fetch": { - "type": "npm", - "name": "npm:minipass-fetch", - "data": { - "version": "3.0.5", - "packageName": "minipass-fetch", - "hash": "sha512-2N8elDQAtSnFV0Dk7gt15KHsS0Fyz6CbYZ360h0WTYV1Ty46li3rAXVOQj1THMNLdmrD9Vt5pBPtWtVkpwGBqg==" - } - }, - "npm:minipass-flush": { - "type": "npm", - "name": "npm:minipass-flush", - "data": { - "version": "1.0.5", - "packageName": "minipass-flush", - "hash": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" - } - }, - "npm:minipass-json-stream": { - "type": "npm", - "name": "npm:minipass-json-stream", - "data": { - "version": "1.0.1", - "packageName": "minipass-json-stream", - "hash": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==" - } - }, - "npm:minipass-pipeline": { - "type": "npm", - "name": "npm:minipass-pipeline", - "data": { - "version": "1.2.4", - "packageName": "minipass-pipeline", - "hash": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" - } - }, - "npm:minipass-sized": { - "type": "npm", - "name": "npm:minipass-sized", - "data": { - "version": "1.0.3", - "packageName": "minipass-sized", - "hash": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" - } - }, - "npm:minizlib": { - "type": "npm", - "name": "npm:minizlib", - "data": { - "version": "2.1.2", - "packageName": "minizlib", - "hash": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" - } - }, - "npm:mitt": { - "type": "npm", - "name": "npm:mitt", - "data": { - "version": "1.2.0", - "packageName": "mitt", - "hash": "sha512-r6lj77KlwqLhIUku9UWYes7KJtsczvolZkzp8hbaDPPaE24OmWl5s539Mytlj22siEQKosZ26qCBgda2PKwoJw==" - } - }, - "npm:msgpackr": { - "type": "npm", - "name": "npm:msgpackr", - "data": { - "version": "1.11.0", - "packageName": "msgpackr", - "hash": "sha512-I8qXuuALqJe5laEBYoFykChhSXLikZmUhccjGsPuSJ/7uPip2TJ7lwdIQwWSAi0jGZDXv4WOP8Qg65QZRuXxXw==" - } - }, - "npm:msgpackr-extract": { - "type": "npm", - "name": "npm:msgpackr-extract", - "data": { - "version": "3.0.3", - "packageName": "msgpackr-extract", - "hash": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==" - } - }, - "npm:multicast-dns": { - "type": "npm", - "name": "npm:multicast-dns", - "data": { - "version": "7.2.5", - "packageName": "multicast-dns", - "hash": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==" - } - }, - "npm:mute-stream": { - "type": "npm", - "name": "npm:mute-stream", - "data": { - "version": "1.0.0", - "packageName": "mute-stream", - "hash": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==" - } - }, - "npm:mv": { - "type": "npm", - "name": "npm:mv", - "data": { - "version": "2.1.1", - "packageName": "mv", - "hash": "sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==" - } - }, - "npm:rimraf@2.4.5": { - "type": "npm", - "name": "npm:rimraf@2.4.5", - "data": { - "version": "2.4.5", - "packageName": "rimraf", - "hash": "sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==" - } - }, - "npm:rimraf": { - "type": "npm", - "name": "npm:rimraf", - "data": { - "version": "3.0.2", - "packageName": "rimraf", - "hash": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" - } - }, - "npm:rimraf@5.0.10": { - "type": "npm", - "name": "npm:rimraf@5.0.10", - "data": { - "version": "5.0.10", - "packageName": "rimraf", - "hash": "sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==" - } - }, - "npm:nanoclone": { - "type": "npm", - "name": "npm:nanoclone", - "data": { - "version": "0.2.1", - "packageName": "nanoclone", - "hash": "sha512-wynEP02LmIbLpcYw8uBKpcfF6dmg2vcpKqxeH5UcoKEYdExslsdUA4ugFauuaeYdTB76ez6gJW8XAZ6CgkXYxA==" - } - }, - "npm:nanoid": { - "type": "npm", - "name": "npm:nanoid", - "data": { - "version": "3.3.7", - "packageName": "nanoid", - "hash": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==" - } - }, - "npm:natural-compare": { - "type": "npm", - "name": "npm:natural-compare", - "data": { - "version": "1.4.0", - "packageName": "natural-compare", - "hash": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" - } - }, - "npm:ncp": { - "type": "npm", - "name": "npm:ncp", - "data": { - "version": "2.0.0", - "packageName": "ncp", - "hash": "sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==" - } - }, - "npm:needle": { - "type": "npm", - "name": "npm:needle", - "data": { - "version": "3.3.1", - "packageName": "needle", - "hash": "sha512-6k0YULvhpw+RoLNiQCRKOl09Rv1dPLr8hHnVjHqdolKwDrdNyk+Hmrthi4lIGPPz3r39dLx0hsF5s40sZ3Us4Q==" - } - }, - "npm:negotiator": { - "type": "npm", - "name": "npm:negotiator", - "data": { - "version": "0.6.3", - "packageName": "negotiator", - "hash": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==" - } - }, - "npm:neo-async": { - "type": "npm", - "name": "npm:neo-async", - "data": { - "version": "2.6.2", - "packageName": "neo-async", - "hash": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - } - }, - "npm:ng-packagr": { - "type": "npm", - "name": "npm:ng-packagr", - "data": { - "version": "18.1.0", - "packageName": "ng-packagr", - "hash": "sha512-QfqiCIuRX7VhdHqE1goZIuaFh0aMmFTF6r+gP+iq7YyIookXlZWswEZYcnpyRw52Q1RHFdUJRm7foBRFyEXTLA==" - } - }, - "npm:nice-napi": { - "type": "npm", - "name": "npm:nice-napi", - "data": { - "version": "1.0.2", - "packageName": "nice-napi", - "hash": "sha512-px/KnJAJZf5RuBGcfD+Sp2pAKq0ytz8j+1NehvgIGFkvtvFrDM3T8E4x/JJODXK9WZow8RRGrbA9QQ3hs+pDhA==" - } - }, - "npm:node-addon-api@3.2.1": { - "type": "npm", - "name": "npm:node-addon-api@3.2.1", - "data": { - "version": "3.2.1", - "packageName": "node-addon-api", - "hash": "sha512-mmcei9JghVNDYydghQmeDX8KoAm0FAiYyIcUt/N4nhyAipB17pllZQDOJD2fotxABnt4Mdz+dKTO7eftLg4d0A==" - } - }, - "npm:node-addon-api": { - "type": "npm", - "name": "npm:node-addon-api", - "data": { - "version": "6.1.0", - "packageName": "node-addon-api", - "hash": "sha512-+eawOlIgy680F0kBzPUNFhMZGtJ1YmqM6l4+Crf4IkImjYrO/mqPwRMh352g23uIaQKFItcQ64I7KMaJxHgAVA==" - } - }, - "npm:node-abort-controller": { - "type": "npm", - "name": "npm:node-abort-controller", - "data": { - "version": "3.1.1", - "packageName": "node-abort-controller", - "hash": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==" - } - }, - "npm:node-fetch": { - "type": "npm", - "name": "npm:node-fetch", - "data": { - "version": "2.7.0", - "packageName": "node-fetch", - "hash": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==" - } - }, - "npm:tr46@0.0.3": { - "type": "npm", - "name": "npm:tr46@0.0.3", - "data": { - "version": "0.0.3", - "packageName": "tr46", - "hash": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" - } - }, - "npm:tr46": { - "type": "npm", - "name": "npm:tr46", - "data": { - "version": "3.0.0", - "packageName": "tr46", - "hash": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==" - } - }, - "npm:webidl-conversions@3.0.1": { - "type": "npm", - "name": "npm:webidl-conversions@3.0.1", - "data": { - "version": "3.0.1", - "packageName": "webidl-conversions", - "hash": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - } - }, - "npm:webidl-conversions": { - "type": "npm", - "name": "npm:webidl-conversions", - "data": { - "version": "7.0.0", - "packageName": "webidl-conversions", - "hash": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" - } - }, - "npm:whatwg-url@5.0.0": { - "type": "npm", - "name": "npm:whatwg-url@5.0.0", - "data": { - "version": "5.0.0", - "packageName": "whatwg-url", - "hash": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==" - } - }, - "npm:whatwg-url": { - "type": "npm", - "name": "npm:whatwg-url", - "data": { - "version": "11.0.0", - "packageName": "whatwg-url", - "hash": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==" - } - }, - "npm:node-forge": { - "type": "npm", - "name": "npm:node-forge", - "data": { - "version": "1.3.1", - "packageName": "node-forge", - "hash": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==" - } - }, - "npm:node-gyp": { - "type": "npm", - "name": "npm:node-gyp", - "data": { - "version": "10.1.0", - "packageName": "node-gyp", - "hash": "sha512-B4J5M1cABxPc5PwfjhbV5hoy2DP9p8lFXASnEN6hugXOa61416tnTZ29x9sSwAd0o99XNIcpvDDy1swAExsVKA==" - } - }, - "npm:node-gyp-build": { - "type": "npm", - "name": "npm:node-gyp-build", - "data": { - "version": "4.8.1", - "packageName": "node-gyp-build", - "hash": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==" - } - }, - "npm:node-gyp-build-optional-packages": { - "type": "npm", - "name": "npm:node-gyp-build-optional-packages", - "data": { - "version": "5.2.2", - "packageName": "node-gyp-build-optional-packages", - "hash": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==" - } - }, - "npm:node-int64": { - "type": "npm", - "name": "npm:node-int64", - "data": { - "version": "0.4.0", - "packageName": "node-int64", - "hash": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==" - } - }, - "npm:node-machine-id": { - "type": "npm", - "name": "npm:node-machine-id", - "data": { - "version": "1.1.12", - "packageName": "node-machine-id", - "hash": "sha512-QNABxbrPa3qEIfrE6GOJ7BYIuignnJw7iQ2YPbc3Nla1HzRJjXzZOiikfF8m7eAMfichLt3M4VgLOetqgDmgGQ==" - } - }, - "npm:node-releases": { - "type": "npm", - "name": "npm:node-releases", - "data": { - "version": "2.0.18", - "packageName": "node-releases", - "hash": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==" - } - }, - "npm:node-schedule": { - "type": "npm", - "name": "npm:node-schedule", - "data": { - "version": "2.1.1", - "packageName": "node-schedule", - "hash": "sha512-OXdegQq03OmXEjt2hZP33W2YPs/E5BcFQks46+G2gAxs4gHOIVD1u7EqlYLYSKsaIpyKCK9Gbk0ta1/gjRSMRQ==" - } - }, - "npm:node-watch": { - "type": "npm", - "name": "npm:node-watch", - "data": { - "version": "0.7.4", - "packageName": "node-watch", - "hash": "sha512-RinNxoz4W1cep1b928fuFhvAQ5ag/+1UlMDV7rbyGthBIgsiEouS4kvRayvvboxii4m8eolKOIBo3OjDqbc+uQ==" - } - }, - "npm:nopt": { - "type": "npm", - "name": "npm:nopt", - "data": { - "version": "7.2.1", - "packageName": "nopt", - "hash": "sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==" - } - }, - "npm:normalize-package-data": { - "type": "npm", - "name": "npm:normalize-package-data", - "data": { - "version": "6.0.1", - "packageName": "normalize-package-data", - "hash": "sha512-6rvCfeRW+OEZagAB4lMLSNuTNYZWLVtKccK79VSTf//yTY5VOCgcpH80O+bZK8Neps7pUnd5G+QlMg1yV/2iZQ==" - } - }, - "npm:normalize-path": { - "type": "npm", - "name": "npm:normalize-path", - "data": { - "version": "3.0.0", - "packageName": "normalize-path", - "hash": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" - } - }, - "npm:normalize-range": { - "type": "npm", - "name": "npm:normalize-range", - "data": { - "version": "0.1.2", - "packageName": "normalize-range", - "hash": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==" - } - }, - "npm:normalize-url": { - "type": "npm", - "name": "npm:normalize-url", - "data": { - "version": "6.1.0", - "packageName": "normalize-url", - "hash": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" - } - }, - "npm:npm-bundled": { - "type": "npm", - "name": "npm:npm-bundled", - "data": { - "version": "3.0.1", - "packageName": "npm-bundled", - "hash": "sha512-+AvaheE/ww1JEwRHOrn4WHNzOxGtVp+adrg2AeZS/7KuxGUYFuBta98wYpfHBbJp6Tg6j1NKSEVHNcfZzJHQwQ==" - } - }, - "npm:npm-install-checks": { - "type": "npm", - "name": "npm:npm-install-checks", - "data": { - "version": "6.3.0", - "packageName": "npm-install-checks", - "hash": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==" - } - }, - "npm:npm-normalize-package-bin": { - "type": "npm", - "name": "npm:npm-normalize-package-bin", - "data": { - "version": "3.0.1", - "packageName": "npm-normalize-package-bin", - "hash": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==" - } - }, - "npm:npm-packlist": { - "type": "npm", - "name": "npm:npm-packlist", - "data": { - "version": "8.0.2", - "packageName": "npm-packlist", - "hash": "sha512-shYrPFIS/JLP4oQmAwDyk5HcyysKW8/JLTEA32S0Z5TzvpaeeX2yMFfoK1fjEBnCBvVyIB/Jj/GBFdm0wsgzbA==" - } - }, - "npm:npm-pick-manifest": { - "type": "npm", - "name": "npm:npm-pick-manifest", - "data": { - "version": "9.0.1", - "packageName": "npm-pick-manifest", - "hash": "sha512-Udm1f0l2nXb3wxDpKjfohwgdFUSV50UVwzEIpDXVsbDMXVIEF81a/i0UhuQbhrPMMmdiq3+YMFLFIRVLs3hxQw==" - } - }, - "npm:npm-registry-fetch": { - "type": "npm", - "name": "npm:npm-registry-fetch", - "data": { - "version": "17.0.1", - "packageName": "npm-registry-fetch", - "hash": "sha512-fLu9MTdZTlJAHUek/VLklE6EpIiP3VZpTiuN7OOMCt2Sd67NCpSEetMaxHHEZiZxllp8ZLsUpvbEszqTFEc+wA==" - } - }, - "npm:npmlog": { - "type": "npm", - "name": "npm:npmlog", - "data": { - "version": "6.0.2", - "packageName": "npmlog", - "hash": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==" - } - }, - "npm:nth-check": { - "type": "npm", - "name": "npm:nth-check", - "data": { - "version": "2.1.1", - "packageName": "nth-check", - "hash": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==" - } - }, - "npm:nwsapi": { - "type": "npm", - "name": "npm:nwsapi", - "data": { - "version": "2.2.7", - "packageName": "nwsapi", - "hash": "sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==" - } - }, - "npm:nx": { - "type": "npm", - "name": "npm:nx", - "data": { - "version": "19.5.6", - "packageName": "nx", - "hash": "sha512-qjP17aa5ViXSpo0bDgJ7O3b8EY/0+PbX7ZIKvG1g6qasohtfM1y4Sx2bbSow0zCKU0+r1LnR53Q0lyX4OOgtUg==" - } - }, - "npm:object-assign": { - "type": "npm", - "name": "npm:object-assign", - "data": { - "version": "4.1.1", - "packageName": "object-assign", - "hash": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" - } - }, - "npm:object-inspect": { - "type": "npm", - "name": "npm:object-inspect", - "data": { - "version": "1.13.1", - "packageName": "object-inspect", - "hash": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==" - } - }, - "npm:obuf": { - "type": "npm", - "name": "npm:obuf", - "data": { - "version": "1.1.2", - "packageName": "obuf", - "hash": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" - } - }, - "npm:on-exit-leak-free": { - "type": "npm", - "name": "npm:on-exit-leak-free", - "data": { - "version": "0.2.0", - "packageName": "on-exit-leak-free", - "hash": "sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==" - } - }, - "npm:on-headers": { - "type": "npm", - "name": "npm:on-headers", - "data": { - "version": "1.0.2", - "packageName": "on-headers", - "hash": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" - } - }, - "npm:once": { - "type": "npm", - "name": "npm:once", - "data": { - "version": "1.4.0", - "packageName": "once", - "hash": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" - } - }, - "npm:only": { - "type": "npm", - "name": "npm:only", - "data": { - "version": "0.0.2", - "packageName": "only", - "hash": "sha512-Fvw+Jemq5fjjyWz6CpKx6w9s7xxqo3+JCyM0WXWeCSOboZ8ABkyvP8ID4CZuChA/wxSx+XSJmdOm8rGVyJ1hdQ==" - } - }, - "npm:opener": { - "type": "npm", - "name": "npm:opener", - "data": { - "version": "1.5.2", - "packageName": "opener", - "hash": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==" - } - }, - "npm:opn": { - "type": "npm", - "name": "npm:opn", - "data": { - "version": "5.3.0", - "packageName": "opn", - "hash": "sha512-bYJHo/LOmoTd+pfiYhfZDnf9zekVJrY+cnS2a5F2x+w5ppvTqObojTP7WiFG+kVZs9Inw+qQ/lw7TroWwhdd2g==" - } - }, - "npm:optionator": { - "type": "npm", - "name": "npm:optionator", - "data": { - "version": "0.9.4", - "packageName": "optionator", - "hash": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==" - } - }, - "npm:ordered-binary": { - "type": "npm", - "name": "npm:ordered-binary", - "data": { - "version": "1.5.1", - "packageName": "ordered-binary", - "hash": "sha512-5VyHfHY3cd0iza71JepYG50My+YUbrFtGoUz2ooEydPyPM7Aai/JW098juLr+RG6+rDJuzNNTsEQu2DZa1A41A==" - } - }, - "npm:os-filter-obj": { - "type": "npm", - "name": "npm:os-filter-obj", - "data": { - "version": "2.0.0", - "packageName": "os-filter-obj", - "hash": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==" - } - }, - "npm:os-shim": { - "type": "npm", - "name": "npm:os-shim", - "data": { - "version": "0.1.3", - "packageName": "os-shim", - "hash": "sha512-jd0cvB8qQ5uVt0lvCIexBaROw1KyKm5sbulg2fWOHjETisuCzWyt+eTZKEMs8v6HwzoGs8xik26jg7eCM6pS+A==" - } - }, - "npm:os-tmpdir": { - "type": "npm", - "name": "npm:os-tmpdir", - "data": { - "version": "1.0.2", - "packageName": "os-tmpdir", - "hash": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==" - } - }, - "npm:ospath": { - "type": "npm", - "name": "npm:ospath", - "data": { - "version": "1.2.2", - "packageName": "ospath", - "hash": "sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==" - } - }, - "npm:p-cancelable": { - "type": "npm", - "name": "npm:p-cancelable", - "data": { - "version": "2.1.1", - "packageName": "p-cancelable", - "hash": "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" - } - }, - "npm:p-finally": { - "type": "npm", - "name": "npm:p-finally", - "data": { - "version": "1.0.0", - "packageName": "p-finally", - "hash": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" - } - }, - "npm:p-map": { - "type": "npm", - "name": "npm:p-map", - "data": { - "version": "4.0.0", - "packageName": "p-map", - "hash": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" - } - }, - "npm:p-try": { - "type": "npm", - "name": "npm:p-try", - "data": { - "version": "2.2.0", - "packageName": "p-try", - "hash": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" - } - }, - "npm:package-json-from-dist": { - "type": "npm", - "name": "npm:package-json-from-dist", - "data": { - "version": "1.0.0", - "packageName": "package-json-from-dist", - "hash": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==" - } - }, - "npm:pacote": { - "type": "npm", - "name": "npm:pacote", - "data": { - "version": "18.0.6", - "packageName": "pacote", - "hash": "sha512-+eK3G27SMwsB8kLIuj4h1FUhHtwiEUo21Tw8wNjmvdlpOEr613edv+8FUsTj/4F/VN5ywGE19X18N7CC2EJk6A==" - } - }, - "npm:parent-module": { - "type": "npm", - "name": "npm:parent-module", - "data": { - "version": "1.0.1", - "packageName": "parent-module", - "hash": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" - } - }, - "npm:parse-json": { - "type": "npm", - "name": "npm:parse-json", - "data": { - "version": "5.2.0", - "packageName": "parse-json", - "hash": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" - } - }, - "npm:parse-node-version": { - "type": "npm", - "name": "npm:parse-node-version", - "data": { - "version": "1.0.1", - "packageName": "parse-node-version", - "hash": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==" - } - }, - "npm:parse-passwd": { - "type": "npm", - "name": "npm:parse-passwd", - "data": { - "version": "1.0.0", - "packageName": "parse-passwd", - "hash": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==" - } - }, - "npm:parse5-html-rewriting-stream": { - "type": "npm", - "name": "npm:parse5-html-rewriting-stream", - "data": { - "version": "7.0.0", - "packageName": "parse5-html-rewriting-stream", - "hash": "sha512-mazCyGWkmCRWDI15Zp+UiCqMp/0dgEmkZRvhlsqqKYr4SsVm/TvnSpD9fCvqCA2zoWJcfRym846ejWBBHRiYEg==" - } - }, - "npm:parse5-sax-parser": { - "type": "npm", - "name": "npm:parse5-sax-parser", - "data": { - "version": "7.0.0", - "packageName": "parse5-sax-parser", - "hash": "sha512-5A+v2SNsq8T6/mG3ahcz8ZtQ0OUFTatxPbeidoMB7tkJSGDY3tdfl4MHovtLQHkEn5CGxijNWRQHhRQ6IRpXKg==" - } - }, - "npm:parseurl": { - "type": "npm", - "name": "npm:parseurl", - "data": { - "version": "1.3.3", - "packageName": "parseurl", - "hash": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" - } - }, - "npm:path-is-absolute": { - "type": "npm", - "name": "npm:path-is-absolute", - "data": { - "version": "1.0.1", - "packageName": "path-is-absolute", - "hash": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" - } - }, - "npm:path-parse": { - "type": "npm", - "name": "npm:path-parse", - "data": { - "version": "1.0.7", - "packageName": "path-parse", - "hash": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" - } - }, - "npm:path-scurry": { - "type": "npm", - "name": "npm:path-scurry", - "data": { - "version": "1.11.1", - "packageName": "path-scurry", - "hash": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" - } - }, - "npm:path-to-regexp": { - "type": "npm", - "name": "npm:path-to-regexp", - "data": { - "version": "0.1.7", - "packageName": "path-to-regexp", - "hash": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" - } - }, - "npm:peek-readable": { - "type": "npm", - "name": "npm:peek-readable", - "data": { - "version": "5.0.0", - "packageName": "peek-readable", - "hash": "sha512-YtCKvLUOvwtMGmrniQPdO7MwPjgkFBtFIrmfSbYmYuq3tKDV/mcfAhBth1+C3ru7uXIZasc/pHnb+YDYNkkj4A==" - } - }, - "npm:pend": { - "type": "npm", - "name": "npm:pend", - "data": { - "version": "1.2.0", - "packageName": "pend", - "hash": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" - } - }, - "npm:performance-now": { - "type": "npm", - "name": "npm:performance-now", - "data": { - "version": "2.1.0", - "packageName": "performance-now", - "hash": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - } - }, - "npm:picocolors": { - "type": "npm", - "name": "npm:picocolors", - "data": { - "version": "1.0.1", - "packageName": "picocolors", - "hash": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==" - } - }, - "npm:pino": { - "type": "npm", - "name": "npm:pino", - "data": { - "version": "7.11.0", - "packageName": "pino", - "hash": "sha512-dMACeu63HtRLmCG8VKdy4cShCPKaYDR4youZqoSWLxl5Gu99HUw8bw75thbPv9Nip+H+QYX8o3ZJbTdVZZ2TVg==" - } - }, - "npm:pino-abstract-transport": { - "type": "npm", - "name": "npm:pino-abstract-transport", - "data": { - "version": "1.0.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-c7vo5OpW4wIS42hUVcT5REsL8ZljsUfBjqV/e2sFxmFEFZiq1XLUp5EYLtuDH6PEHq9W1egWqRbnLUP5FuZmOA==" - } - }, - "npm:pino-abstract-transport@0.5.0": { - "type": "npm", - "name": "npm:pino-abstract-transport@0.5.0", - "data": { - "version": "0.5.0", - "packageName": "pino-abstract-transport", - "hash": "sha512-+KAgmVeqXYbTtU2FScx1XS3kNyfZ5TrXY07V96QnUSFqo2gAqlvmaxH67Lj7SWazqsMabf+58ctdTcBgnOLUOQ==" - } - }, - "npm:pino-std-serializers": { - "type": "npm", - "name": "npm:pino-std-serializers", - "data": { - "version": "4.0.0", - "packageName": "pino-std-serializers", - "hash": "sha512-cK0pekc1Kjy5w9V2/n+8MkZwusa6EyyxfeQCB799CQRhRt/CqYKiWs5adeu8Shve2ZNffvfC/7J64A2PJo1W/Q==" - } - }, - "npm:sonic-boom@2.8.0": { - "type": "npm", - "name": "npm:sonic-boom@2.8.0", - "data": { - "version": "2.8.0", - "packageName": "sonic-boom", - "hash": "sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==" - } - }, - "npm:sonic-boom": { - "type": "npm", - "name": "npm:sonic-boom", - "data": { - "version": "3.3.0", - "packageName": "sonic-boom", - "hash": "sha512-LYxp34KlZ1a2Jb8ZQgFCK3niIHzibdwtwNUWKg0qQRzsDoJ3Gfgkf8KdBTFU3SkejDEIlWwnSnpVdOZIhFMl/g==" - } - }, - "npm:pirates": { - "type": "npm", - "name": "npm:pirates", - "data": { - "version": "4.0.6", - "packageName": "pirates", - "hash": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==" - } - }, - "npm:piscina": { - "type": "npm", - "name": "npm:piscina", - "data": { - "version": "4.6.1", - "packageName": "piscina", - "hash": "sha512-z30AwWGtQE+Apr+2WBZensP2lIvwoaMcOPkQlIEmSGMJNUvaYACylPYrQM6wSdUNJlnDVMSpLv7xTMJqlVshOA==" - } - }, - "npm:pkginfo": { - "type": "npm", - "name": "npm:pkginfo", - "data": { - "version": "0.4.1", - "packageName": "pkginfo", - "hash": "sha512-8xCNE/aT/EXKenuMDZ+xTVwkT8gsoHN2z/Q29l80u0ppGEXVvsKRzNMbtKhg8LS8k1tJLAHHylf6p4VFmP6XUQ==" - } - }, - "npm:portfinder": { - "type": "npm", - "name": "npm:portfinder", - "data": { - "version": "1.0.32", - "packageName": "portfinder", - "hash": "sha512-on2ZJVVDXRADWE6jnQaX0ioEylzgBpQk8r55NE4wjXW1ZxO+BgDlY6DXwj20i0V8eB4SenDQ00WEaxfiIQPcxg==" - } - }, - "npm:portscanner": { - "type": "npm", - "name": "npm:portscanner", - "data": { - "version": "2.2.0", - "packageName": "portscanner", - "hash": "sha512-IFroCz/59Lqa2uBvzK3bKDbDDIEaAY8XJ1jFxcLWTqosrsc32//P4VuSB2vZXoHiHqOmx8B5L5hnKOxL/7FlPw==" - } - }, - "npm:postcss": { - "type": "npm", - "name": "npm:postcss", - "data": { - "version": "8.4.38", - "packageName": "postcss", - "hash": "sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==" - } - }, - "npm:postcss-attribute-case-insensitive": { - "type": "npm", - "name": "npm:postcss-attribute-case-insensitive", - "data": { - "version": "5.0.2", - "packageName": "postcss-attribute-case-insensitive", - "hash": "sha512-XIidXV8fDr0kKt28vqki84fRK8VW8eTuIa4PChv2MqKuT6C9UjmSKzen6KaWhWEoYvwxFCa7n/tC1SZ3tyq4SQ==" - } - }, - "npm:postcss-calc": { - "type": "npm", - "name": "npm:postcss-calc", - "data": { - "version": "9.0.1", - "packageName": "postcss-calc", - "hash": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==" - } - }, - "npm:postcss-clamp": { - "type": "npm", - "name": "npm:postcss-clamp", - "data": { - "version": "4.1.0", - "packageName": "postcss-clamp", - "hash": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==" - } - }, - "npm:postcss-color-functional-notation": { - "type": "npm", - "name": "npm:postcss-color-functional-notation", - "data": { - "version": "4.2.4", - "packageName": "postcss-color-functional-notation", - "hash": "sha512-2yrTAUZUab9s6CpxkxC4rVgFEVaR6/2Pipvi6qcgvnYiVqZcbDHEoBDhrXzyb7Efh2CCfHQNtcqWcIruDTIUeg==" - } - }, - "npm:postcss-color-hex-alpha": { - "type": "npm", - "name": "npm:postcss-color-hex-alpha", - "data": { - "version": "8.0.4", - "packageName": "postcss-color-hex-alpha", - "hash": "sha512-nLo2DCRC9eE4w2JmuKgVA3fGL3d01kGq752pVALF68qpGLmx2Qrk91QTKkdUqqp45T1K1XV8IhQpcu1hoAQflQ==" - } - }, - "npm:postcss-color-rebeccapurple": { - "type": "npm", - "name": "npm:postcss-color-rebeccapurple", - "data": { - "version": "7.1.1", - "packageName": "postcss-color-rebeccapurple", - "hash": "sha512-pGxkuVEInwLHgkNxUc4sdg4g3py7zUeCQ9sMfwyHAT+Ezk8a4OaaVZ8lIY5+oNqA/BXXgLyXv0+5wHP68R79hg==" - } - }, - "npm:postcss-colormin": { - "type": "npm", - "name": "npm:postcss-colormin", - "data": { - "version": "6.1.0", - "packageName": "postcss-colormin", - "hash": "sha512-x9yX7DOxeMAR+BgGVnNSAxmAj98NX/YxEMNFP+SDCEeNLb2r3i6Hh1ksMsnW8Ub5SLCpbescQqn9YEbE9554Sw==" - } - }, - "npm:postcss-convert-values": { - "type": "npm", - "name": "npm:postcss-convert-values", - "data": { - "version": "6.1.0", - "packageName": "postcss-convert-values", - "hash": "sha512-zx8IwP/ts9WvUM6NkVSkiU902QZL1bwPhaVaLynPtCsOTqp+ZKbNi+s6XJg3rfqpKGA/oc7Oxk5t8pOQJcwl/w==" - } - }, - "npm:postcss-custom-media": { - "type": "npm", - "name": "npm:postcss-custom-media", - "data": { - "version": "8.0.2", - "packageName": "postcss-custom-media", - "hash": "sha512-7yi25vDAoHAkbhAzX9dHx2yc6ntS4jQvejrNcC+csQJAXjj15e7VcWfMgLqBNAbOvqi5uIa9huOVwdHbf+sKqg==" - } - }, - "npm:postcss-custom-properties": { - "type": "npm", - "name": "npm:postcss-custom-properties", - "data": { - "version": "12.1.11", - "packageName": "postcss-custom-properties", - "hash": "sha512-0IDJYhgU8xDv1KY6+VgUwuQkVtmYzRwu+dMjnmdMafXYv86SWqfxkc7qdDvWS38vsjaEtv8e0vGOUQrAiMBLpQ==" - } - }, - "npm:postcss-custom-selectors": { - "type": "npm", - "name": "npm:postcss-custom-selectors", - "data": { - "version": "6.0.3", - "packageName": "postcss-custom-selectors", - "hash": "sha512-fgVkmyiWDwmD3JbpCmB45SvvlCD6z9CG6Ie6Iere22W5aHea6oWa7EM2bpnv2Fj3I94L3VbtvX9KqwSi5aFzSg==" - } - }, - "npm:postcss-dir-pseudo-class": { - "type": "npm", - "name": "npm:postcss-dir-pseudo-class", - "data": { - "version": "6.0.5", - "packageName": "postcss-dir-pseudo-class", - "hash": "sha512-eqn4m70P031PF7ZQIvSgy9RSJ5uI2171O/OO/zcRNYpJbvaeKFUlar1aJ7rmgiQtbm0FSPsRewjpdS0Oew7MPA==" - } - }, - "npm:postcss-discard-comments": { - "type": "npm", - "name": "npm:postcss-discard-comments", - "data": { - "version": "6.0.2", - "packageName": "postcss-discard-comments", - "hash": "sha512-65w/uIqhSBBfQmYnG92FO1mWZjJ4GL5b8atm5Yw2UgrwD7HiNiSSNwJor1eCFGzUgYnN/iIknhNRVqjrrpuglw==" - } - }, - "npm:postcss-discard-duplicates": { - "type": "npm", - "name": "npm:postcss-discard-duplicates", - "data": { - "version": "6.0.3", - "packageName": "postcss-discard-duplicates", - "hash": "sha512-+JA0DCvc5XvFAxwx6f/e68gQu/7Z9ud584VLmcgto28eB8FqSFZwtrLwB5Kcp70eIoWP/HXqz4wpo8rD8gpsTw==" - } - }, - "npm:postcss-discard-empty": { - "type": "npm", - "name": "npm:postcss-discard-empty", - "data": { - "version": "6.0.3", - "packageName": "postcss-discard-empty", - "hash": "sha512-znyno9cHKQsK6PtxL5D19Fj9uwSzC2mB74cpT66fhgOadEUPyXFkbgwm5tvc3bt3NAy8ltE5MrghxovZRVnOjQ==" - } - }, - "npm:postcss-discard-overridden": { - "type": "npm", - "name": "npm:postcss-discard-overridden", - "data": { - "version": "6.0.2", - "packageName": "postcss-discard-overridden", - "hash": "sha512-j87xzI4LUggC5zND7KdjsI25APtyMuynXZSujByMaav2roV6OZX+8AaCUcZSWqckZpjAjRyFDdpqybgjFO0HJQ==" - } - }, - "npm:postcss-double-position-gradients": { - "type": "npm", - "name": "npm:postcss-double-position-gradients", - "data": { - "version": "3.1.2", - "packageName": "postcss-double-position-gradients", - "hash": "sha512-GX+FuE/uBR6eskOK+4vkXgT6pDkexLokPaz/AbJna9s5Kzp/yl488pKPjhy0obB475ovfT1Wv8ho7U/cHNaRgQ==" - } - }, - "npm:postcss-env-function": { - "type": "npm", - "name": "npm:postcss-env-function", - "data": { - "version": "4.0.6", - "packageName": "postcss-env-function", - "hash": "sha512-kpA6FsLra+NqcFnL81TnsU+Z7orGtDTxcOhl6pwXeEq1yFPpRMkCDpHhrz8CFQDr/Wfm0jLiNQ1OsGGPjlqPwA==" - } - }, - "npm:postcss-focus-visible": { - "type": "npm", - "name": "npm:postcss-focus-visible", - "data": { - "version": "6.0.4", - "packageName": "postcss-focus-visible", - "hash": "sha512-QcKuUU/dgNsstIK6HELFRT5Y3lbrMLEOwG+A4s5cA+fx3A3y/JTq3X9LaOj3OC3ALH0XqyrgQIgey/MIZ8Wczw==" - } - }, - "npm:postcss-focus-within": { - "type": "npm", - "name": "npm:postcss-focus-within", - "data": { - "version": "5.0.4", - "packageName": "postcss-focus-within", - "hash": "sha512-vvjDN++C0mu8jz4af5d52CB184ogg/sSxAFS+oUJQq2SuCe7T5U2iIsVJtsCp2d6R4j0jr5+q3rPkBVZkXD9fQ==" - } - }, - "npm:postcss-font-variant": { - "type": "npm", - "name": "npm:postcss-font-variant", - "data": { - "version": "5.0.0", - "packageName": "postcss-font-variant", - "hash": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==" - } - }, - "npm:postcss-gap-properties": { - "type": "npm", - "name": "npm:postcss-gap-properties", - "data": { - "version": "3.0.5", - "packageName": "postcss-gap-properties", - "hash": "sha512-IuE6gKSdoUNcvkGIqdtjtcMtZIFyXZhmFd5RUlg97iVEvp1BZKV5ngsAjCjrVy+14uhGBQl9tzmi1Qwq4kqVOg==" - } - }, - "npm:postcss-image-set-function": { - "type": "npm", - "name": "npm:postcss-image-set-function", - "data": { - "version": "4.0.7", - "packageName": "postcss-image-set-function", - "hash": "sha512-9T2r9rsvYzm5ndsBE8WgtrMlIT7VbtTfE7b3BQnudUqnBcBo7L758oc+o+pdj/dUV0l5wjwSdjeOH2DZtfv8qw==" - } - }, - "npm:postcss-import": { - "type": "npm", - "name": "npm:postcss-import", - "data": { - "version": "14.1.0", - "packageName": "postcss-import", - "hash": "sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==" - } - }, - "npm:postcss-initial": { - "type": "npm", - "name": "npm:postcss-initial", - "data": { - "version": "4.0.1", - "packageName": "postcss-initial", - "hash": "sha512-0ueD7rPqX8Pn1xJIjay0AZeIuDoF+V+VvMt/uOnn+4ezUKhZM/NokDeP6DwMNyIoYByuN/94IQnt5FEkaN59xQ==" - } - }, - "npm:postcss-lab-function": { - "type": "npm", - "name": "npm:postcss-lab-function", - "data": { - "version": "4.2.1", - "packageName": "postcss-lab-function", - "hash": "sha512-xuXll4isR03CrQsmxyz92LJB2xX9n+pZJ5jE9JgcnmsCammLyKdlzrBin+25dy6wIjfhJpKBAN80gsTlCgRk2w==" - } - }, - "npm:postcss-logical": { - "type": "npm", - "name": "npm:postcss-logical", - "data": { - "version": "5.0.4", - "packageName": "postcss-logical", - "hash": "sha512-RHXxplCeLh9VjinvMrZONq7im4wjWGlRJAqmAVLXyZaXwfDWP73/oq4NdIp+OZwhQUMj0zjqDfM5Fj7qby+B4g==" - } - }, - "npm:postcss-media-minmax": { - "type": "npm", - "name": "npm:postcss-media-minmax", - "data": { - "version": "5.0.0", - "packageName": "postcss-media-minmax", - "hash": "sha512-yDUvFf9QdFZTuCUg0g0uNSHVlJ5X1lSzDZjPSFaiCWvjgsvu8vEVxtahPrLMinIDEEGnx6cBe6iqdx5YWz08wQ==" - } - }, - "npm:postcss-media-query-parser": { - "type": "npm", - "name": "npm:postcss-media-query-parser", - "data": { - "version": "0.2.3", - "packageName": "postcss-media-query-parser", - "hash": "sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==" - } - }, - "npm:postcss-merge-longhand": { - "type": "npm", - "name": "npm:postcss-merge-longhand", - "data": { - "version": "6.0.5", - "packageName": "postcss-merge-longhand", - "hash": "sha512-5LOiordeTfi64QhICp07nzzuTDjNSO8g5Ksdibt44d+uvIIAE1oZdRn8y/W5ZtYgRH/lnLDlvi9F8btZcVzu3w==" - } - }, - "npm:postcss-merge-rules": { - "type": "npm", - "name": "npm:postcss-merge-rules", - "data": { - "version": "6.1.1", - "packageName": "postcss-merge-rules", - "hash": "sha512-KOdWF0gju31AQPZiD+2Ar9Qjowz1LTChSjFFbS+e2sFgc4uHOp3ZvVX4sNeTlk0w2O31ecFGgrFzhO0RSWbWwQ==" - } - }, - "npm:postcss-minify-font-values": { - "type": "npm", - "name": "npm:postcss-minify-font-values", - "data": { - "version": "6.1.0", - "packageName": "postcss-minify-font-values", - "hash": "sha512-gklfI/n+9rTh8nYaSJXlCo3nOKqMNkxuGpTn/Qm0gstL3ywTr9/WRKznE+oy6fvfolH6dF+QM4nCo8yPLdvGJg==" - } - }, - "npm:postcss-minify-gradients": { - "type": "npm", - "name": "npm:postcss-minify-gradients", - "data": { - "version": "6.0.3", - "packageName": "postcss-minify-gradients", - "hash": "sha512-4KXAHrYlzF0Rr7uc4VrfwDJ2ajrtNEpNEuLxFgwkhFZ56/7gaE4Nr49nLsQDZyUe+ds+kEhf+YAUolJiYXF8+Q==" - } - }, - "npm:postcss-minify-params": { - "type": "npm", - "name": "npm:postcss-minify-params", - "data": { - "version": "6.1.0", - "packageName": "postcss-minify-params", - "hash": "sha512-bmSKnDtyyE8ujHQK0RQJDIKhQ20Jq1LYiez54WiaOoBtcSuflfK3Nm596LvbtlFcpipMjgClQGyGr7GAs+H1uA==" - } - }, - "npm:postcss-minify-selectors": { - "type": "npm", - "name": "npm:postcss-minify-selectors", - "data": { - "version": "6.0.4", - "packageName": "postcss-minify-selectors", - "hash": "sha512-L8dZSwNLgK7pjTto9PzWRoMbnLq5vsZSTu8+j1P/2GB8qdtGQfn+K1uSvFgYvgh83cbyxT5m43ZZhUMTJDSClQ==" - } - }, - "npm:postcss-modules-extract-imports": { - "type": "npm", - "name": "npm:postcss-modules-extract-imports", - "data": { - "version": "3.1.0", - "packageName": "postcss-modules-extract-imports", - "hash": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==" - } - }, - "npm:postcss-modules-local-by-default": { - "type": "npm", - "name": "npm:postcss-modules-local-by-default", - "data": { - "version": "4.0.5", - "packageName": "postcss-modules-local-by-default", - "hash": "sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==" - } - }, - "npm:postcss-modules-scope": { - "type": "npm", - "name": "npm:postcss-modules-scope", - "data": { - "version": "3.2.0", - "packageName": "postcss-modules-scope", - "hash": "sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==" - } - }, - "npm:postcss-modules-values": { - "type": "npm", - "name": "npm:postcss-modules-values", - "data": { - "version": "4.0.0", - "packageName": "postcss-modules-values", - "hash": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==" - } - }, - "npm:postcss-nesting": { - "type": "npm", - "name": "npm:postcss-nesting", - "data": { - "version": "10.2.0", - "packageName": "postcss-nesting", - "hash": "sha512-EwMkYchxiDiKUhlJGzWsD9b2zvq/r2SSubcRrgP+jujMXFzqvANLt16lJANC+5uZ6hjI7lpRmI6O8JIl+8l1KA==" - } - }, - "npm:postcss-normalize-charset": { - "type": "npm", - "name": "npm:postcss-normalize-charset", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-charset", - "hash": "sha512-a8N9czmdnrjPHa3DeFlwqst5eaL5W8jYu3EBbTTkI5FHkfMhFZh1EGbku6jhHhIzTA6tquI2P42NtZ59M/H/kQ==" - } - }, - "npm:postcss-normalize-display-values": { - "type": "npm", - "name": "npm:postcss-normalize-display-values", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-display-values", - "hash": "sha512-8H04Mxsb82ON/aAkPeq8kcBbAtI5Q2a64X/mnRRfPXBq7XeogoQvReqxEfc0B4WPq1KimjezNC8flUtC3Qz6jg==" - } - }, - "npm:postcss-normalize-positions": { - "type": "npm", - "name": "npm:postcss-normalize-positions", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-positions", - "hash": "sha512-/JFzI441OAB9O7VnLA+RtSNZvQ0NCFZDOtp6QPFo1iIyawyXg0YI3CYM9HBy1WvwCRHnPep/BvI1+dGPKoXx/Q==" - } - }, - "npm:postcss-normalize-repeat-style": { - "type": "npm", - "name": "npm:postcss-normalize-repeat-style", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-repeat-style", - "hash": "sha512-YdCgsfHkJ2jEXwR4RR3Tm/iOxSfdRt7jplS6XRh9Js9PyCR/aka/FCb6TuHT2U8gQubbm/mPmF6L7FY9d79VwQ==" - } - }, - "npm:postcss-normalize-string": { - "type": "npm", - "name": "npm:postcss-normalize-string", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-string", - "hash": "sha512-vQZIivlxlfqqMp4L9PZsFE4YUkWniziKjQWUtsxUiVsSSPelQydwS8Wwcuw0+83ZjPWNTl02oxlIvXsmmG+CiQ==" - } - }, - "npm:postcss-normalize-timing-functions": { - "type": "npm", - "name": "npm:postcss-normalize-timing-functions", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-timing-functions", - "hash": "sha512-a+YrtMox4TBtId/AEwbA03VcJgtyW4dGBizPl7e88cTFULYsprgHWTbfyjSLyHeBcK/Q9JhXkt2ZXiwaVHoMzA==" - } - }, - "npm:postcss-normalize-unicode": { - "type": "npm", - "name": "npm:postcss-normalize-unicode", - "data": { - "version": "6.1.0", - "packageName": "postcss-normalize-unicode", - "hash": "sha512-QVC5TQHsVj33otj8/JD869Ndr5Xcc/+fwRh4HAsFsAeygQQXm+0PySrKbr/8tkDKzW+EVT3QkqZMfFrGiossDg==" - } - }, - "npm:postcss-normalize-url": { - "type": "npm", - "name": "npm:postcss-normalize-url", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-url", - "hash": "sha512-kVNcWhCeKAzZ8B4pv/DnrU1wNh458zBNp8dh4y5hhxih5RZQ12QWMuQrDgPRw3LRl8mN9vOVfHl7uhvHYMoXsQ==" - } - }, - "npm:postcss-normalize-whitespace": { - "type": "npm", - "name": "npm:postcss-normalize-whitespace", - "data": { - "version": "6.0.2", - "packageName": "postcss-normalize-whitespace", - "hash": "sha512-sXZ2Nj1icbJOKmdjXVT9pnyHQKiSAyuNQHSgRCUgThn2388Y9cGVDR+E9J9iAYbSbLHI+UUwLVl1Wzco/zgv0Q==" - } - }, - "npm:postcss-opacity-percentage": { - "type": "npm", - "name": "npm:postcss-opacity-percentage", - "data": { - "version": "1.1.3", - "packageName": "postcss-opacity-percentage", - "hash": "sha512-An6Ba4pHBiDtyVpSLymUUERMo2cU7s+Obz6BTrS+gxkbnSBNKSuD0AVUc+CpBMrpVPKKfoVz0WQCX+Tnst0i4A==" - } - }, - "npm:postcss-ordered-values": { - "type": "npm", - "name": "npm:postcss-ordered-values", - "data": { - "version": "6.0.2", - "packageName": "postcss-ordered-values", - "hash": "sha512-VRZSOB+JU32RsEAQrO94QPkClGPKJEL/Z9PCBImXMhIeK5KAYo6slP/hBYlLgrCjFxyqvn5VC81tycFEDBLG1Q==" - } - }, - "npm:postcss-overflow-shorthand": { - "type": "npm", - "name": "npm:postcss-overflow-shorthand", - "data": { - "version": "3.0.4", - "packageName": "postcss-overflow-shorthand", - "hash": "sha512-otYl/ylHK8Y9bcBnPLo3foYFLL6a6Ak+3EQBPOTR7luMYCOsiVTUk1iLvNf6tVPNGXcoL9Hoz37kpfriRIFb4A==" - } - }, - "npm:postcss-page-break": { - "type": "npm", - "name": "npm:postcss-page-break", - "data": { - "version": "3.0.4", - "packageName": "postcss-page-break", - "hash": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==" - } - }, - "npm:postcss-place": { - "type": "npm", - "name": "npm:postcss-place", - "data": { - "version": "7.0.5", - "packageName": "postcss-place", - "hash": "sha512-wR8igaZROA6Z4pv0d+bvVrvGY4GVHihBCBQieXFY3kuSuMyOmEnnfFzHl/tQuqHZkfkIVBEbDvYcFfHmpSet9g==" - } - }, - "npm:postcss-preset-env": { - "type": "npm", - "name": "npm:postcss-preset-env", - "data": { - "version": "7.5.0", - "packageName": "postcss-preset-env", - "hash": "sha512-0BJzWEfCdTtK2R3EiKKSdkE51/DI/BwnhlnicSW482Ym6/DGHud8K0wGLcdjip1epVX0HKo4c8zzTeV/SkiejQ==" - } - }, - "npm:postcss-pseudo-class-any-link": { - "type": "npm", - "name": "npm:postcss-pseudo-class-any-link", - "data": { - "version": "7.1.6", - "packageName": "postcss-pseudo-class-any-link", - "hash": "sha512-9sCtZkO6f/5ML9WcTLcIyV1yz9D1rf0tWc+ulKcvV30s0iZKS/ONyETvoWsr6vnrmW+X+KmuK3gV/w5EWnT37w==" - } - }, - "npm:postcss-reduce-initial": { - "type": "npm", - "name": "npm:postcss-reduce-initial", - "data": { - "version": "6.1.0", - "packageName": "postcss-reduce-initial", - "hash": "sha512-RarLgBK/CrL1qZags04oKbVbrrVK2wcxhvta3GCxrZO4zveibqbRPmm2VI8sSgCXwoUHEliRSbOfpR0b/VIoiw==" - } - }, - "npm:postcss-reduce-transforms": { - "type": "npm", - "name": "npm:postcss-reduce-transforms", - "data": { - "version": "6.0.2", - "packageName": "postcss-reduce-transforms", - "hash": "sha512-sB+Ya++3Xj1WaT9+5LOOdirAxP7dJZms3GRcYheSPi1PiTMigsxHAdkrbItHxwYHr4kt1zL7mmcHstgMYT+aiA==" - } - }, - "npm:postcss-replace-overflow-wrap": { - "type": "npm", - "name": "npm:postcss-replace-overflow-wrap", - "data": { - "version": "4.0.0", - "packageName": "postcss-replace-overflow-wrap", - "hash": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==" - } - }, - "npm:postcss-selector-not": { - "type": "npm", - "name": "npm:postcss-selector-not", - "data": { - "version": "5.0.0", - "packageName": "postcss-selector-not", - "hash": "sha512-/2K3A4TCP9orP4TNS7u3tGdRFVKqz/E6pX3aGnriPG0jU78of8wsUcqE4QAhWEU0d+WnMSF93Ah3F//vUtK+iQ==" - } - }, - "npm:postcss-selector-parser": { - "type": "npm", - "name": "npm:postcss-selector-parser", - "data": { - "version": "6.0.16", - "packageName": "postcss-selector-parser", - "hash": "sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw==" - } - }, - "npm:postcss-svgo": { - "type": "npm", - "name": "npm:postcss-svgo", - "data": { - "version": "6.0.3", - "packageName": "postcss-svgo", - "hash": "sha512-dlrahRmxP22bX6iKEjOM+c8/1p+81asjKT+V5lrgOH944ryx/OHpclnIbGsKVd3uWOXFLYJwCVf0eEkJGvO96g==" - } - }, - "npm:postcss-unique-selectors": { - "type": "npm", - "name": "npm:postcss-unique-selectors", - "data": { - "version": "6.0.4", - "packageName": "postcss-unique-selectors", - "hash": "sha512-K38OCaIrO8+PzpArzkLKB42dSARtC2tmG6PvD4b1o1Q2E9Os8jzfWFfSy/rixsHwohtsDdFtAWGjFVFUdwYaMg==" - } - }, - "npm:postcss-url": { - "type": "npm", - "name": "npm:postcss-url", - "data": { - "version": "10.1.3", - "packageName": "postcss-url", - "hash": "sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==" - } - }, - "npm:postcss-value-parser": { - "type": "npm", - "name": "npm:postcss-value-parser", - "data": { - "version": "4.2.0", - "packageName": "postcss-value-parser", - "hash": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - } - }, - "npm:pre-commit": { - "type": "npm", - "name": "npm:pre-commit", - "data": { - "version": "1.2.2", - "packageName": "pre-commit", - "hash": "sha512-qokTiqxD6GjODy5ETAIgzsRgnBWWQHQH2ghy86PU7mIn/wuWeTwF3otyNQZxWBwVn8XNr8Tdzj/QfUXpH+gRZA==" - } - }, - "npm:prelude-ls": { - "type": "npm", - "name": "npm:prelude-ls", - "data": { - "version": "1.2.1", - "packageName": "prelude-ls", - "hash": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" - } - }, - "npm:prettier": { - "type": "npm", - "name": "npm:prettier", - "data": { - "version": "2.6.2", - "packageName": "prettier", - "hash": "sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==" - } - }, - "npm:pretty-bytes": { - "type": "npm", - "name": "npm:pretty-bytes", - "data": { - "version": "5.6.0", - "packageName": "pretty-bytes", - "hash": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" - } - }, - "npm:pretty-format": { - "type": "npm", - "name": "npm:pretty-format", - "data": { - "version": "29.7.0", - "packageName": "pretty-format", - "hash": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==" - } - }, - "npm:process": { - "type": "npm", - "name": "npm:process", - "data": { - "version": "0.11.10", - "packageName": "process", - "hash": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==" - } - }, - "npm:process-nextick-args": { - "type": "npm", - "name": "npm:process-nextick-args", - "data": { - "version": "2.0.1", - "packageName": "process-nextick-args", - "hash": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - } - }, - "npm:process-warning": { - "type": "npm", - "name": "npm:process-warning", - "data": { - "version": "1.0.0", - "packageName": "process-warning", - "hash": "sha512-du4wfLyj4yCZq1VupnVSZmRsPJsNuxoDQFdCFHLaYiEbFBD7QE0a+I4D7hOxrVnh78QE/YipFAj9lXHiXocV+Q==" - } - }, - "npm:promise-inflight": { - "type": "npm", - "name": "npm:promise-inflight", - "data": { - "version": "1.0.1", - "packageName": "promise-inflight", - "hash": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" - } - }, - "npm:promise-retry": { - "type": "npm", - "name": "npm:promise-retry", - "data": { - "version": "2.0.1", - "packageName": "promise-retry", - "hash": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" - } - }, - "npm:prompts": { - "type": "npm", - "name": "npm:prompts", - "data": { - "version": "2.4.2", - "packageName": "prompts", - "hash": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==" - } - }, - "npm:property-expr": { - "type": "npm", - "name": "npm:property-expr", - "data": { - "version": "2.0.6", - "packageName": "property-expr", - "hash": "sha512-SVtmxhRE/CGkn3eZY1T6pC8Nln6Fr/lu1mKSgRud0eC73whjGfoAogbn78LkD8aFL0zz3bAFerKSnOl7NlErBA==" - } - }, - "npm:proxy-addr": { - "type": "npm", - "name": "npm:proxy-addr", - "data": { - "version": "2.0.7", - "packageName": "proxy-addr", - "hash": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==" - } - }, - "npm:prr": { - "type": "npm", - "name": "npm:prr", - "data": { - "version": "1.0.1", - "packageName": "prr", - "hash": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" - } - }, - "npm:pseudomap": { - "type": "npm", - "name": "npm:pseudomap", - "data": { - "version": "1.0.2", - "packageName": "pseudomap", - "hash": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - } - }, - "npm:psl": { - "type": "npm", - "name": "npm:psl", - "data": { - "version": "1.9.0", - "packageName": "psl", - "hash": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==" - } - }, - "npm:pump": { - "type": "npm", - "name": "npm:pump", - "data": { - "version": "3.0.0", - "packageName": "pump", - "hash": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" - } - }, - "npm:punycode": { - "type": "npm", - "name": "npm:punycode", - "data": { - "version": "2.3.1", - "packageName": "punycode", - "hash": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" - } - }, - "npm:pure-rand": { - "type": "npm", - "name": "npm:pure-rand", - "data": { - "version": "6.0.4", - "packageName": "pure-rand", - "hash": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==" - } - }, - "npm:querystringify": { - "type": "npm", - "name": "npm:querystringify", - "data": { - "version": "2.2.0", - "packageName": "querystringify", - "hash": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" - } - }, - "npm:queue-microtask": { - "type": "npm", - "name": "npm:queue-microtask", - "data": { - "version": "1.2.3", - "packageName": "queue-microtask", - "hash": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" - } - }, - "npm:quick-format-unescaped": { - "type": "npm", - "name": "npm:quick-format-unescaped", - "data": { - "version": "4.0.4", - "packageName": "quick-format-unescaped", - "hash": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==" - } - }, - "npm:quick-lru": { - "type": "npm", - "name": "npm:quick-lru", - "data": { - "version": "5.1.1", - "packageName": "quick-lru", - "hash": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" - } - }, - "npm:rambda": { - "type": "npm", - "name": "npm:rambda", - "data": { - "version": "9.2.1", - "packageName": "rambda", - "hash": "sha512-6Dp+QQVQuAuhwBlbIvL2FjJVHCKF29W+n9ca/BMTVDqpj+Q7KKqUh7UAINEna8aaB2/oRvPuL5hViCTQARa70Q==" - } - }, - "npm:randombytes": { - "type": "npm", - "name": "npm:randombytes", - "data": { - "version": "2.1.0", - "packageName": "randombytes", - "hash": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" - } - }, - "npm:range-parser": { - "type": "npm", - "name": "npm:range-parser", - "data": { - "version": "1.2.1", - "packageName": "range-parser", - "hash": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" - } - }, - "npm:react-is": { - "type": "npm", - "name": "npm:react-is", - "data": { - "version": "18.2.0", - "packageName": "react-is", - "hash": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" - } - }, - "npm:read-cache": { - "type": "npm", - "name": "npm:read-cache", - "data": { - "version": "1.0.0", - "packageName": "read-cache", - "hash": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==" - } - }, - "npm:readable-web-to-node-stream": { - "type": "npm", - "name": "npm:readable-web-to-node-stream", - "data": { - "version": "3.0.2", - "packageName": "readable-web-to-node-stream", - "hash": "sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==" - } - }, - "npm:readdirp": { - "type": "npm", - "name": "npm:readdirp", - "data": { - "version": "3.6.0", - "packageName": "readdirp", - "hash": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==" - } - }, - "npm:real-require": { - "type": "npm", - "name": "npm:real-require", - "data": { - "version": "0.1.0", - "packageName": "real-require", - "hash": "sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==" - } - }, - "npm:reflect-metadata": { - "type": "npm", - "name": "npm:reflect-metadata", - "data": { - "version": "0.2.2", - "packageName": "reflect-metadata", - "hash": "sha512-urBwgfrvVP/eAyXx4hluJivBKzuEbSQs9rKWCrCkbSxNv8mxPcUZKeuoF3Uy4mJl3Lwprp6yy5/39VWigZ4K6Q==" - } - }, - "npm:regenerate": { - "type": "npm", - "name": "npm:regenerate", - "data": { - "version": "1.4.2", - "packageName": "regenerate", - "hash": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - } - }, - "npm:regenerate-unicode-properties": { - "type": "npm", - "name": "npm:regenerate-unicode-properties", - "data": { - "version": "10.1.1", - "packageName": "regenerate-unicode-properties", - "hash": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==" - } - }, - "npm:regenerator-runtime": { - "type": "npm", - "name": "npm:regenerator-runtime", - "data": { - "version": "0.14.1", - "packageName": "regenerator-runtime", - "hash": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - } - }, - "npm:regenerator-transform": { - "type": "npm", - "name": "npm:regenerator-transform", - "data": { - "version": "0.15.2", - "packageName": "regenerator-transform", - "hash": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==" - } - }, - "npm:regex-parser": { - "type": "npm", - "name": "npm:regex-parser", - "data": { - "version": "2.3.0", - "packageName": "regex-parser", - "hash": "sha512-TVILVSz2jY5D47F4mA4MppkBrafEaiUWJO/TcZHEIuI13AqoZMkK1WMA4Om1YkYbTx+9Ki1/tSUXbceyr9saRg==" - } - }, - "npm:regexpu-core": { - "type": "npm", - "name": "npm:regexpu-core", - "data": { - "version": "5.3.2", - "packageName": "regexpu-core", - "hash": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==" - } - }, - "npm:regjsparser": { - "type": "npm", - "name": "npm:regjsparser", - "data": { - "version": "0.9.1", - "packageName": "regjsparser", - "hash": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==" - } - }, - "npm:request-progress": { - "type": "npm", - "name": "npm:request-progress", - "data": { - "version": "3.0.0", - "packageName": "request-progress", - "hash": "sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==" - } - }, - "npm:require-directory": { - "type": "npm", - "name": "npm:require-directory", - "data": { - "version": "2.1.1", - "packageName": "require-directory", - "hash": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" - } - }, - "npm:require-from-string": { - "type": "npm", - "name": "npm:require-from-string", - "data": { - "version": "2.0.2", - "packageName": "require-from-string", - "hash": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" - } - }, - "npm:requires-port": { - "type": "npm", - "name": "npm:requires-port", - "data": { - "version": "1.0.0", - "packageName": "requires-port", - "hash": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" - } - }, - "npm:resolve": { - "type": "npm", - "name": "npm:resolve", - "data": { - "version": "1.22.8", - "packageName": "resolve", - "hash": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==" - } - }, - "npm:resolve-alpn": { - "type": "npm", - "name": "npm:resolve-alpn", - "data": { - "version": "1.2.1", - "packageName": "resolve-alpn", - "hash": "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" - } - }, - "npm:resolve-cwd": { - "type": "npm", - "name": "npm:resolve-cwd", - "data": { - "version": "3.0.0", - "packageName": "resolve-cwd", - "hash": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" - } - }, - "npm:resolve-dir": { - "type": "npm", - "name": "npm:resolve-dir", - "data": { - "version": "1.0.1", - "packageName": "resolve-dir", - "hash": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==" - } - }, - "npm:resolve-url-loader": { - "type": "npm", - "name": "npm:resolve-url-loader", - "data": { - "version": "5.0.0", - "packageName": "resolve-url-loader", - "hash": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==" - } - }, - "npm:resp-modifier": { - "type": "npm", - "name": "npm:resp-modifier", - "data": { - "version": "6.0.2", - "packageName": "resp-modifier", - "hash": "sha512-U1+0kWC/+4ncRFYqQWTx/3qkfE6a4B/h3XXgmXypfa0SPZ3t7cbbaFk297PjQS/yov24R18h6OZe6iZwj3NSLw==" - } - }, - "npm:responselike": { - "type": "npm", - "name": "npm:responselike", - "data": { - "version": "2.0.1", - "packageName": "responselike", - "hash": "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" - } - }, - "npm:reusify": { - "type": "npm", - "name": "npm:reusify", - "data": { - "version": "1.0.4", - "packageName": "reusify", - "hash": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" - } - }, - "npm:rfdc": { - "type": "npm", - "name": "npm:rfdc", - "data": { - "version": "1.4.1", - "packageName": "rfdc", - "hash": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" - } - }, - "npm:rollup-plugin-esbuild": { - "type": "npm", - "name": "npm:rollup-plugin-esbuild", - "data": { - "version": "5.0.0", - "packageName": "rollup-plugin-esbuild", - "hash": "sha512-1cRIOHAPh8WQgdQQyyvFdeOdxuiyk+zB5zJ5+YOwrZP4cJ0MT3Fs48pQxrZeyZHcn+klFherytILVfE4aYrneg==" - } - }, - "npm:rollup-plugin-node-externals": { - "type": "npm", - "name": "npm:rollup-plugin-node-externals", - "data": { - "version": "6.1.2", - "packageName": "rollup-plugin-node-externals", - "hash": "sha512-2TWan0u0/zHcgPrKpIPgKSY8OMqwDAYD380I0hxx7iUQw8mrN34DWwG9sQUMEo5Yy4xd6/5QEAySYgiKN9fdBQ==" - } - }, - "npm:run-applescript": { - "type": "npm", - "name": "npm:run-applescript", - "data": { - "version": "7.0.0", - "packageName": "run-applescript", - "hash": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==" - } - }, - "npm:run-parallel": { - "type": "npm", - "name": "npm:run-parallel", - "data": { - "version": "1.2.0", - "packageName": "run-parallel", - "hash": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" - } - }, - "npm:rx": { - "type": "npm", - "name": "npm:rx", - "data": { - "version": "4.1.0", - "packageName": "rx", - "hash": "sha512-CiaiuN6gapkdl+cZUr67W6I8jquN4lkak3vtIsIWCl4XIPP8ffsoyN6/+PuGXnQy8Cu8W2y9Xxh31Rq4M6wUug==" - } - }, - "npm:rxjs": { - "type": "npm", - "name": "npm:rxjs", - "data": { - "version": "7.8.1", - "packageName": "rxjs", - "hash": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==" - } - }, - "npm:safe-stable-stringify": { - "type": "npm", - "name": "npm:safe-stable-stringify", - "data": { - "version": "2.4.3", - "packageName": "safe-stable-stringify", - "hash": "sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==" - } - }, - "npm:safer-buffer": { - "type": "npm", - "name": "npm:safer-buffer", - "data": { - "version": "2.1.2", - "packageName": "safer-buffer", - "hash": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - } - }, - "npm:sass": { - "type": "npm", - "name": "npm:sass", - "data": { - "version": "1.77.6", - "packageName": "sass", - "hash": "sha512-ByXE1oLD79GVq9Ht1PeHWCPMPB8XHpBuz1r85oByKHjZY6qV6rWnQovQzXJXuQ/XyE1Oj3iPk3lo28uzaRA2/Q==" - } - }, - "npm:sax": { - "type": "npm", - "name": "npm:sax", - "data": { - "version": "1.3.0", - "packageName": "sax", - "hash": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==" - } - }, - "npm:sax@1.2.4": { - "type": "npm", - "name": "npm:sax@1.2.4", - "data": { - "version": "1.2.4", - "packageName": "sax", - "hash": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" - } - }, - "npm:saxes": { - "type": "npm", - "name": "npm:saxes", - "data": { - "version": "6.0.0", - "packageName": "saxes", - "hash": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" - } - }, - "npm:secure-compare": { - "type": "npm", - "name": "npm:secure-compare", - "data": { - "version": "3.0.1", - "packageName": "secure-compare", - "hash": "sha512-AckIIV90rPDcBcglUwXPF3kg0P0qmPsPXAj6BBEENQE1p5yA1xfmDJzfi1Tappj37Pv2mVbKpL3Z1T+Nn7k1Qw==" - } - }, - "npm:select-hose": { - "type": "npm", - "name": "npm:select-hose", - "data": { - "version": "2.0.0", - "packageName": "select-hose", - "hash": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==" - } - }, - "npm:selfsigned": { - "type": "npm", - "name": "npm:selfsigned", - "data": { - "version": "2.4.1", - "packageName": "selfsigned", - "hash": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==" - } - }, - "npm:semver-regex": { - "type": "npm", - "name": "npm:semver-regex", - "data": { - "version": "4.0.5", - "packageName": "semver-regex", - "hash": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==" - } - }, - "npm:semver-truncate": { - "type": "npm", - "name": "npm:semver-truncate", - "data": { - "version": "3.0.0", - "packageName": "semver-truncate", - "hash": "sha512-LJWA9kSvMolR51oDE6PN3kALBNaUdkxzAGcexw8gjMA8xr5zUqK0JiR3CgARSqanYF3Z1YHvsErb1KDgh+v7Rg==" - } - }, - "npm:setprototypeof@1.1.0": { - "type": "npm", - "name": "npm:setprototypeof@1.1.0", - "data": { - "version": "1.1.0", - "packageName": "setprototypeof", - "hash": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" - } - }, - "npm:setprototypeof": { - "type": "npm", - "name": "npm:setprototypeof", - "data": { - "version": "1.2.0", - "packageName": "setprototypeof", - "hash": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - } - }, - "npm:serialize-javascript": { - "type": "npm", - "name": "npm:serialize-javascript", - "data": { - "version": "6.0.2", - "packageName": "serialize-javascript", - "hash": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==" - } - }, - "npm:serve-index": { - "type": "npm", - "name": "npm:serve-index", - "data": { - "version": "1.9.1", - "packageName": "serve-index", - "hash": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==" - } - }, - "npm:server-destroy": { - "type": "npm", - "name": "npm:server-destroy", - "data": { - "version": "1.0.1", - "packageName": "server-destroy", - "hash": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" - } - }, - "npm:set-blocking": { - "type": "npm", - "name": "npm:set-blocking", - "data": { - "version": "2.0.0", - "packageName": "set-blocking", - "hash": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==" - } - }, - "npm:set-function-length": { - "type": "npm", - "name": "npm:set-function-length", - "data": { - "version": "1.2.2", - "packageName": "set-function-length", - "hash": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" - } - }, - "npm:shallow-clone": { - "type": "npm", - "name": "npm:shallow-clone", - "data": { - "version": "3.0.1", - "packageName": "shallow-clone", - "hash": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==" - } - }, - "npm:shell-quote": { - "type": "npm", - "name": "npm:shell-quote", - "data": { - "version": "1.8.1", - "packageName": "shell-quote", - "hash": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==" - } - }, - "npm:side-channel": { - "type": "npm", - "name": "npm:side-channel", - "data": { - "version": "1.0.6", - "packageName": "side-channel", - "hash": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==" - } - }, - "npm:sigstore": { - "type": "npm", - "name": "npm:sigstore", - "data": { - "version": "2.3.1", - "packageName": "sigstore", - "hash": "sha512-8G+/XDU8wNsJOQS5ysDVO0Etg9/2uA5gR9l4ZwijjlwxBcrU6RPfwi2+jJmbP+Ap1Hlp/nVAaEO4Fj22/SL2gQ==" - } - }, - "npm:sisteransi": { - "type": "npm", - "name": "npm:sisteransi", - "data": { - "version": "1.0.5", - "packageName": "sisteransi", - "hash": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" - } - }, - "npm:smart-buffer": { - "type": "npm", - "name": "npm:smart-buffer", - "data": { - "version": "4.2.0", - "packageName": "smart-buffer", - "hash": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" - } - }, - "npm:socket.io": { - "type": "npm", - "name": "npm:socket.io", - "data": { - "version": "4.7.5", - "packageName": "socket.io", - "hash": "sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==" - } - }, - "npm:socket.io-adapter": { - "type": "npm", - "name": "npm:socket.io-adapter", - "data": { - "version": "2.5.4", - "packageName": "socket.io-adapter", - "hash": "sha512-wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==" - } - }, - "npm:socket.io-client": { - "type": "npm", - "name": "npm:socket.io-client", - "data": { - "version": "4.7.5", - "packageName": "socket.io-client", - "hash": "sha512-sJ/tqHOCe7Z50JCBCXrsY3I2k03iOiUe+tj1OmKeD2lXPiGH/RUCdTZFoqVyN7l1MnpIzPrGtLcijffmeouNlQ==" - } - }, - "npm:socket.io-parser": { - "type": "npm", - "name": "npm:socket.io-parser", - "data": { - "version": "4.2.4", - "packageName": "socket.io-parser", - "hash": "sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==" - } - }, - "npm:sockjs": { - "type": "npm", - "name": "npm:sockjs", - "data": { - "version": "0.3.24", - "packageName": "sockjs", - "hash": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==" - } - }, - "npm:socks": { - "type": "npm", - "name": "npm:socks", - "data": { - "version": "2.8.3", - "packageName": "socks", - "hash": "sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==" - } - }, - "npm:socks-proxy-agent": { - "type": "npm", - "name": "npm:socks-proxy-agent", - "data": { - "version": "8.0.3", - "packageName": "socks-proxy-agent", - "hash": "sha512-VNegTZKhuGq5vSD6XNKlbqWhyt/40CgoEw8XxD6dhnm8Jq9IEa3nIa4HwnM8XOqU0CdB0BwWVXusqiFXfHB3+A==" - } - }, - "npm:sort-keys": { - "type": "npm", - "name": "npm:sort-keys", - "data": { - "version": "1.1.2", - "packageName": "sort-keys", - "hash": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==" - } - }, - "npm:sort-keys-length": { - "type": "npm", - "name": "npm:sort-keys-length", - "data": { - "version": "1.0.1", - "packageName": "sort-keys-length", - "hash": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==" - } - }, - "npm:sorted-array-functions": { - "type": "npm", - "name": "npm:sorted-array-functions", - "data": { - "version": "1.3.0", - "packageName": "sorted-array-functions", - "hash": "sha512-2sqgzeFlid6N4Z2fUQ1cvFmTOLRi/sEDzSQ0OKYchqgoPmQBVyM3959qYx3fpS6Esef80KjmpgPeEr028dP3OA==" - } - }, - "npm:source-map-js": { - "type": "npm", - "name": "npm:source-map-js", - "data": { - "version": "1.2.0", - "packageName": "source-map-js", - "hash": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==" - } - }, - "npm:source-map-loader": { - "type": "npm", - "name": "npm:source-map-loader", - "data": { - "version": "5.0.0", - "packageName": "source-map-loader", - "hash": "sha512-k2Dur7CbSLcAH73sBcIkV5xjPV4SzqO1NJ7+XaQl8if3VODDUj3FNchNGpqgJSKbvUfJuhVdv8K2Eu8/TNl2eA==" - } - }, - "npm:spawn-sync": { - "type": "npm", - "name": "npm:spawn-sync", - "data": { - "version": "1.0.15", - "packageName": "spawn-sync", - "hash": "sha512-9DWBgrgYZzNghseho0JOuh+5fg9u6QWhAWa51QC7+U5rCheZ/j1DrEZnyE0RBBRqZ9uEXGPgSSM0nky6burpVw==" - } - }, - "npm:spdx-correct": { - "type": "npm", - "name": "npm:spdx-correct", - "data": { - "version": "3.2.0", - "packageName": "spdx-correct", - "hash": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==" - } - }, - "npm:spdx-exceptions": { - "type": "npm", - "name": "npm:spdx-exceptions", - "data": { - "version": "2.5.0", - "packageName": "spdx-exceptions", - "hash": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==" - } - }, - "npm:spdx-expression-parse": { - "type": "npm", - "name": "npm:spdx-expression-parse", - "data": { - "version": "3.0.1", - "packageName": "spdx-expression-parse", - "hash": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" - } - }, - "npm:spdx-license-ids": { - "type": "npm", - "name": "npm:spdx-license-ids", - "data": { - "version": "3.0.18", - "packageName": "spdx-license-ids", - "hash": "sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==" - } - }, - "npm:spdy": { - "type": "npm", - "name": "npm:spdy", - "data": { - "version": "4.0.2", - "packageName": "spdy", - "hash": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" - } - }, - "npm:spdy-transport": { - "type": "npm", - "name": "npm:spdy-transport", - "data": { - "version": "3.0.0", - "packageName": "spdy-transport", - "hash": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" - } - }, - "npm:split2": { - "type": "npm", - "name": "npm:split2", - "data": { - "version": "4.2.0", - "packageName": "split2", - "hash": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==" - } - }, - "npm:sshpk": { - "type": "npm", - "name": "npm:sshpk", - "data": { - "version": "1.18.0", - "packageName": "sshpk", - "hash": "sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==" - } - }, - "npm:ssri": { - "type": "npm", - "name": "npm:ssri", - "data": { - "version": "10.0.5", - "packageName": "ssri", - "hash": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==" - } - }, - "npm:stack-utils": { - "type": "npm", - "name": "npm:stack-utils", - "data": { - "version": "2.0.6", - "packageName": "stack-utils", - "hash": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==" - } - }, - "npm:steno": { - "type": "npm", - "name": "npm:steno", - "data": { - "version": "0.4.4", - "packageName": "steno", - "hash": "sha512-EEHMVYHNXFHfGtgjNITnka0aHhiAlo93F7z2/Pwd+g0teG9CnM3JIINM7hVVB5/rhw9voufD7Wukwgtw2uqh6w==" - } - }, - "npm:stream-shift": { - "type": "npm", - "name": "npm:stream-shift", - "data": { - "version": "1.0.3", - "packageName": "stream-shift", - "hash": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==" - } - }, - "npm:stream-throttle": { - "type": "npm", - "name": "npm:stream-throttle", - "data": { - "version": "0.1.3", - "packageName": "stream-throttle", - "hash": "sha512-889+B9vN9dq7/vLbGyuHeZ6/ctf5sNuGWsDy89uNxkFTAgzy0eK7+w5fL3KLNRTkLle7EgZGvHUphZW0Q26MnQ==" - } - }, - "npm:streamroller": { - "type": "npm", - "name": "npm:streamroller", - "data": { - "version": "3.1.5", - "packageName": "streamroller", - "hash": "sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==" - } - }, - "npm:string-length": { - "type": "npm", - "name": "npm:string-length", - "data": { - "version": "4.0.2", - "packageName": "string-length", - "hash": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==" - } - }, - "npm:string-width-cjs": { - "type": "npm", - "name": "npm:string-width-cjs", - "data": { - "version": "npm:string-width@4.2.3", - "packageName": "string-width-cjs", - "hash": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" - } - }, - "npm:strip-ansi-cjs": { - "type": "npm", - "name": "npm:strip-ansi-cjs", - "data": { - "version": "npm:strip-ansi@6.0.1", - "packageName": "strip-ansi-cjs", - "hash": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" - } - }, - "npm:strip-bom": { - "type": "npm", - "name": "npm:strip-bom", - "data": { - "version": "4.0.0", - "packageName": "strip-bom", - "hash": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" - } - }, - "npm:strip-bom@3.0.0": { - "type": "npm", - "name": "npm:strip-bom@3.0.0", - "data": { - "version": "3.0.0", - "packageName": "strip-bom", - "hash": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" - } - }, - "npm:strip-eof": { - "type": "npm", - "name": "npm:strip-eof", - "data": { - "version": "1.0.0", - "packageName": "strip-eof", - "hash": "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" - } - }, - "npm:strip-final-newline": { - "type": "npm", - "name": "npm:strip-final-newline", - "data": { - "version": "2.0.0", - "packageName": "strip-final-newline", - "hash": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" - } - }, - "npm:strip-json-comments": { - "type": "npm", - "name": "npm:strip-json-comments", - "data": { - "version": "3.1.1", - "packageName": "strip-json-comments", - "hash": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" - } - }, - "npm:strip-outer": { - "type": "npm", - "name": "npm:strip-outer", - "data": { - "version": "2.0.0", - "packageName": "strip-outer", - "hash": "sha512-A21Xsm1XzUkK0qK1ZrytDUvqsQWict2Cykhvi0fBQntGG5JSprESasEyV1EZ/4CiR5WB5KjzLTrP/bO37B0wPg==" - } - }, - "npm:strong-log-transformer": { - "type": "npm", - "name": "npm:strong-log-transformer", - "data": { - "version": "2.1.0", - "packageName": "strong-log-transformer", - "hash": "sha512-B3Hgul+z0L9a236FAUC9iZsL+nVHgoCJnqCbN588DjYxvGXaXaaFbfmQ/JhvKjZwsOukuR72XbHv71Qkug0HxA==" - } - }, - "npm:strtok3": { - "type": "npm", - "name": "npm:strtok3", - "data": { - "version": "7.0.0", - "packageName": "strtok3", - "hash": "sha512-pQ+V+nYQdC5H3Q7qBZAz/MO6lwGhoC2gOAjuouGf/VO0m7vQRh8QNMl2Uf6SwAtzZ9bOw3UIeBukEGNJl5dtXQ==" - } - }, - "npm:style-loader": { - "type": "npm", - "name": "npm:style-loader", - "data": { - "version": "3.3.4", - "packageName": "style-loader", - "hash": "sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==" - } - }, - "npm:stylehacks": { - "type": "npm", - "name": "npm:stylehacks", - "data": { - "version": "6.1.1", - "packageName": "stylehacks", - "hash": "sha512-gSTTEQ670cJNoaeIp9KX6lZmm8LJ3jPB5yJmX8Zq/wQxOsAFXV3qjWzHas3YYk1qesuVIyYWWUpZ0vSE/dTSGg==" - } - }, - "npm:stylus": { - "type": "npm", - "name": "npm:stylus", - "data": { - "version": "0.59.0", - "packageName": "stylus", - "hash": "sha512-lQ9w/XIOH5ZHVNuNbWW8D822r+/wBSO/d6XvtyHLF7LW4KaCIDeVbvn5DF8fGCJAUCwVhVi/h6J0NUcnylUEjg==" - } - }, - "npm:stylus-loader": { - "type": "npm", - "name": "npm:stylus-loader", - "data": { - "version": "7.1.3", - "packageName": "stylus-loader", - "hash": "sha512-TY0SKwiY7D2kMd3UxaWKSf3xHF0FFN/FAfsSqfrhxRT/koXTwffq2cgEWDkLQz7VojMu7qEEHt5TlMjkPx9UDw==" - } - }, - "npm:supports-preserve-symlinks-flag": { - "type": "npm", - "name": "npm:supports-preserve-symlinks-flag", - "data": { - "version": "1.0.0", - "packageName": "supports-preserve-symlinks-flag", - "hash": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" - } - }, - "npm:svgo": { - "type": "npm", - "name": "npm:svgo", - "data": { - "version": "3.3.2", - "packageName": "svgo", - "hash": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==" - } - }, - "npm:symbol-observable": { - "type": "npm", - "name": "npm:symbol-observable", - "data": { - "version": "4.0.0", - "packageName": "symbol-observable", - "hash": "sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ==" - } - }, - "npm:symbol-tree": { - "type": "npm", - "name": "npm:symbol-tree", - "data": { - "version": "3.2.4", - "packageName": "symbol-tree", - "hash": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" - } - }, - "npm:tapable": { - "type": "npm", - "name": "npm:tapable", - "data": { - "version": "2.2.1", - "packageName": "tapable", - "hash": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" - } - }, - "npm:tar": { - "type": "npm", - "name": "npm:tar", - "data": { - "version": "6.2.0", - "packageName": "tar", - "hash": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==" - } - }, - "npm:tar-stream": { - "type": "npm", - "name": "npm:tar-stream", - "data": { - "version": "2.2.0", - "packageName": "tar-stream", - "hash": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==" - } - }, - "npm:terser-webpack-plugin": { - "type": "npm", - "name": "npm:terser-webpack-plugin", - "data": { - "version": "5.3.10", - "packageName": "terser-webpack-plugin", - "hash": "sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==" - } - }, - "npm:test-exclude": { - "type": "npm", - "name": "npm:test-exclude", - "data": { - "version": "6.0.0", - "packageName": "test-exclude", - "hash": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" - } - }, - "npm:text-table": { - "type": "npm", - "name": "npm:text-table", - "data": { - "version": "0.2.0", - "packageName": "text-table", - "hash": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" - } - }, - "npm:thingies": { - "type": "npm", - "name": "npm:thingies", - "data": { - "version": "1.21.0", - "packageName": "thingies", - "hash": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==" - } - }, - "npm:thread-stream": { - "type": "npm", - "name": "npm:thread-stream", - "data": { - "version": "0.15.2", - "packageName": "thread-stream", - "hash": "sha512-UkEhKIg2pD+fjkHQKyJO3yoIvAP3N6RlNFt2dUhcS1FGvCD1cQa1M/PGknCLFIyZdtJOWQjejp7bdNqmN7zwdA==" - } - }, - "npm:throttleit": { - "type": "npm", - "name": "npm:throttleit", - "data": { - "version": "1.0.1", - "packageName": "throttleit", - "hash": "sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==" - } - }, - "npm:through": { - "type": "npm", - "name": "npm:through", - "data": { - "version": "2.3.8", - "packageName": "through", - "hash": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - } - }, - "npm:thunky": { - "type": "npm", - "name": "npm:thunky", - "data": { - "version": "1.1.0", - "packageName": "thunky", - "hash": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" - } - }, - "npm:tmpl": { - "type": "npm", - "name": "npm:tmpl", - "data": { - "version": "1.0.5", - "packageName": "tmpl", - "hash": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==" - } - }, - "npm:to-fast-properties": { - "type": "npm", - "name": "npm:to-fast-properties", - "data": { - "version": "2.0.0", - "packageName": "to-fast-properties", - "hash": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==" - } - }, - "npm:to-regex-range": { - "type": "npm", - "name": "npm:to-regex-range", - "data": { - "version": "5.0.1", - "packageName": "to-regex-range", - "hash": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" - } - }, - "npm:toidentifier": { - "type": "npm", - "name": "npm:toidentifier", - "data": { - "version": "1.0.1", - "packageName": "toidentifier", - "hash": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==" - } - }, - "npm:token-types": { - "type": "npm", - "name": "npm:token-types", - "data": { - "version": "5.0.1", - "packageName": "token-types", - "hash": "sha512-Y2fmSnZjQdDb9W4w4r1tswlMHylzWIeOKpx0aZH9BgGtACHhrk3OkT52AzwcuqTRBZtvvnTjDBh8eynMulu8Vg==" - } - }, - "npm:toposort": { - "type": "npm", - "name": "npm:toposort", - "data": { - "version": "2.0.2", - "packageName": "toposort", - "hash": "sha512-0a5EOkAUp8D4moMi2W8ZF8jcga7BgZd91O/yabJCFY8az+XSzeGyTKs0Aoo897iV1Nj6guFq8orWDS96z91oGg==" - } - }, - "npm:tough-cookie": { - "type": "npm", - "name": "npm:tough-cookie", - "data": { - "version": "4.1.3", - "packageName": "tough-cookie", - "hash": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==" - } - }, - "npm:tree-dump": { - "type": "npm", - "name": "npm:tree-dump", - "data": { - "version": "1.0.2", - "packageName": "tree-dump", - "hash": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==" - } - }, - "npm:tree-kill": { - "type": "npm", - "name": "npm:tree-kill", - "data": { - "version": "1.2.2", - "packageName": "tree-kill", - "hash": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" - } - }, - "npm:trim-repeated": { - "type": "npm", - "name": "npm:trim-repeated", - "data": { - "version": "2.0.0", - "packageName": "trim-repeated", - "hash": "sha512-QUHBFTJGdOwmp0tbOG505xAgOp/YliZP/6UgafFXYZ26WT1bvQmSMJUvkeVSASuJJHbqsFbynTvkd5W8RBTipg==" - } - }, - "npm:ts-api-utils": { - "type": "npm", - "name": "npm:ts-api-utils", - "data": { - "version": "1.3.0", - "packageName": "ts-api-utils", - "hash": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==" - } - }, - "npm:ts-jest": { - "type": "npm", - "name": "npm:ts-jest", - "data": { - "version": "29.1.1", - "packageName": "ts-jest", - "hash": "sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==" - } - }, - "npm:ts-loader": { - "type": "npm", - "name": "npm:ts-loader", - "data": { - "version": "9.5.1", - "packageName": "ts-loader", - "hash": "sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==" - } - }, - "npm:ts-node": { - "type": "npm", - "name": "npm:ts-node", - "data": { - "version": "10.9.1", - "packageName": "ts-node", - "hash": "sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==" - } - }, - "npm:tsconfig-paths": { - "type": "npm", - "name": "npm:tsconfig-paths", - "data": { - "version": "4.2.0", - "packageName": "tsconfig-paths", - "hash": "sha512-NoZ4roiN7LnbKn9QqE1amc9DJfzvZXxF4xDavcOWt1BPkdx+m+0gJuPM+S0vCe7zTJMYUP0R8pO2XMr+Y8oLIg==" - } - }, - "npm:tsconfig-paths-webpack-plugin": { - "type": "npm", - "name": "npm:tsconfig-paths-webpack-plugin", - "data": { - "version": "4.0.0", - "packageName": "tsconfig-paths-webpack-plugin", - "hash": "sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==" - } - }, - "npm:tslib": { - "type": "npm", - "name": "npm:tslib", - "data": { - "version": "2.6.3", - "packageName": "tslib", - "hash": "sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==" - } - }, - "npm:tsscmp": { - "type": "npm", - "name": "npm:tsscmp", - "data": { - "version": "1.0.6", - "packageName": "tsscmp", - "hash": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==" - } - }, - "npm:tuf-js": { - "type": "npm", - "name": "npm:tuf-js", - "data": { - "version": "2.2.1", - "packageName": "tuf-js", - "hash": "sha512-GwIJau9XaA8nLVbUXsN3IlFi7WmQ48gBUrl3FTkkL/XLu/POhBzfmX9hd33FNMX1qAsfl6ozO1iMmW9NC8YniA==" - } - }, - "npm:tunnel-agent": { - "type": "npm", - "name": "npm:tunnel-agent", - "data": { - "version": "0.6.0", - "packageName": "tunnel-agent", - "hash": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==" - } - }, - "npm:tweetnacl": { - "type": "npm", - "name": "npm:tweetnacl", - "data": { - "version": "0.14.5", - "packageName": "tweetnacl", - "hash": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==" - } - }, - "npm:typanion": { - "type": "npm", - "name": "npm:typanion", - "data": { - "version": "3.14.0", - "packageName": "typanion", - "hash": "sha512-ZW/lVMRabETuYCd9O9ZvMhAh8GslSqaUjxmK/JLPCh6l73CvLBiuXswj/+7LdnWOgYsQ130FqLzFz5aGT4I3Ug==" - } - }, - "npm:type-check": { - "type": "npm", - "name": "npm:type-check", - "data": { - "version": "0.4.0", - "packageName": "type-check", - "hash": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" - } - }, - "npm:type-detect": { - "type": "npm", - "name": "npm:type-detect", - "data": { - "version": "4.0.8", - "packageName": "type-detect", - "hash": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" - } - }, - "npm:type-is": { - "type": "npm", - "name": "npm:type-is", - "data": { - "version": "1.6.18", - "packageName": "type-is", - "hash": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" - } - }, - "npm:typed-assert": { - "type": "npm", - "name": "npm:typed-assert", - "data": { - "version": "1.0.9", - "packageName": "typed-assert", - "hash": "sha512-KNNZtayBCtmnNmbo5mG47p1XsCyrx6iVqomjcZnec/1Y5GGARaxPs6r49RnSPeUP3YjNYiU9sQHAtY4BBvnZwg==" - } - }, - "npm:typedarray": { - "type": "npm", - "name": "npm:typedarray", - "data": { - "version": "0.0.6", - "packageName": "typedarray", - "hash": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - } - }, - "npm:ua-parser-js": { - "type": "npm", - "name": "npm:ua-parser-js", - "data": { - "version": "1.0.37", - "packageName": "ua-parser-js", - "hash": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==" - } - }, - "npm:uglify-js": { - "type": "npm", - "name": "npm:uglify-js", - "data": { - "version": "3.17.4", - "packageName": "uglify-js", - "hash": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==" - } - }, - "npm:undici": { - "type": "npm", - "name": "npm:undici", - "data": { - "version": "6.19.2", - "packageName": "undici", - "hash": "sha512-JfjKqIauur3Q6biAtHJ564e3bWa8VvT+7cSiOJHFbX4Erv6CLGDpg8z+Fmg/1OI/47RA+GI2QZaF48SSaLvyBA==" - } - }, - "npm:unicode-canonical-property-names-ecmascript": { - "type": "npm", - "name": "npm:unicode-canonical-property-names-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-canonical-property-names-ecmascript", - "hash": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==" - } - }, - "npm:unicode-match-property-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-ecmascript", - "data": { - "version": "2.0.0", - "packageName": "unicode-match-property-ecmascript", - "hash": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==" - } - }, - "npm:unicode-match-property-value-ecmascript": { - "type": "npm", - "name": "npm:unicode-match-property-value-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-match-property-value-ecmascript", - "hash": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==" - } - }, - "npm:unicode-property-aliases-ecmascript": { - "type": "npm", - "name": "npm:unicode-property-aliases-ecmascript", - "data": { - "version": "2.1.0", - "packageName": "unicode-property-aliases-ecmascript", - "hash": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==" - } - }, - "npm:unicorn-magic": { - "type": "npm", - "name": "npm:unicorn-magic", - "data": { - "version": "0.1.0", - "packageName": "unicorn-magic", - "hash": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==" - } - }, - "npm:union": { - "type": "npm", - "name": "npm:union", - "data": { - "version": "0.5.0", - "packageName": "union", - "hash": "sha512-N6uOhuW6zO95P3Mel2I2zMsbsanvvtgn6jVqJv4vbVcz/JN0OkL9suomjQGmWtxJQXOCqUJvquc1sMeNz/IwlA==" - } - }, - "npm:unique-filename": { - "type": "npm", - "name": "npm:unique-filename", - "data": { - "version": "3.0.0", - "packageName": "unique-filename", - "hash": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==" - } - }, - "npm:unique-slug": { - "type": "npm", - "name": "npm:unique-slug", - "data": { - "version": "4.0.0", - "packageName": "unique-slug", - "hash": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==" - } - }, - "npm:unix-crypt-td-js": { - "type": "npm", - "name": "npm:unix-crypt-td-js", - "data": { - "version": "1.1.4", - "packageName": "unix-crypt-td-js", - "hash": "sha512-8rMeVYWSIyccIJscb9NdCfZKSRBKYTeVnwmiRYT2ulE3qd1RaDQ0xQDP+rI3ccIWbhu/zuo5cgN8z73belNZgw==" - } - }, - "npm:unpipe": { - "type": "npm", - "name": "npm:unpipe", - "data": { - "version": "1.0.0", - "packageName": "unpipe", - "hash": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==" - } - }, - "npm:untildify": { - "type": "npm", - "name": "npm:untildify", - "data": { - "version": "4.0.0", - "packageName": "untildify", - "hash": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==" - } - }, - "npm:upath": { - "type": "npm", - "name": "npm:upath", - "data": { - "version": "2.0.1", - "packageName": "upath", - "hash": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==" - } - }, - "npm:update-browserslist-db": { - "type": "npm", - "name": "npm:update-browserslist-db", - "data": { - "version": "1.1.0", - "packageName": "update-browserslist-db", - "hash": "sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==" - } - }, - "npm:uri-js": { - "type": "npm", - "name": "npm:uri-js", - "data": { - "version": "4.4.1", - "packageName": "uri-js", - "hash": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" - } - }, - "npm:url-join": { - "type": "npm", - "name": "npm:url-join", - "data": { - "version": "4.0.1", - "packageName": "url-join", - "hash": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==" - } - }, - "npm:url-parse": { - "type": "npm", - "name": "npm:url-parse", - "data": { - "version": "1.5.10", - "packageName": "url-parse", - "hash": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==" - } - }, - "npm:util-deprecate": { - "type": "npm", - "name": "npm:util-deprecate", - "data": { - "version": "1.0.2", - "packageName": "util-deprecate", - "hash": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" - } - }, - "npm:utils-merge": { - "type": "npm", - "name": "npm:utils-merge", - "data": { - "version": "1.0.1", - "packageName": "utils-merge", - "hash": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==" - } - }, - "npm:uuid": { - "type": "npm", - "name": "npm:uuid", - "data": { - "version": "8.3.2", - "packageName": "uuid", - "hash": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" - } - }, - "npm:v8-compile-cache-lib": { - "type": "npm", - "name": "npm:v8-compile-cache-lib", - "data": { - "version": "3.0.1", - "packageName": "v8-compile-cache-lib", - "hash": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==" - } - }, - "npm:v8-to-istanbul": { - "type": "npm", - "name": "npm:v8-to-istanbul", - "data": { - "version": "9.2.0", - "packageName": "v8-to-istanbul", - "hash": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==" - } - }, - "npm:validate-npm-package-license": { - "type": "npm", - "name": "npm:validate-npm-package-license", - "data": { - "version": "3.0.4", - "packageName": "validate-npm-package-license", - "hash": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" - } - }, - "npm:validate-npm-package-name": { - "type": "npm", - "name": "npm:validate-npm-package-name", - "data": { - "version": "5.0.0", - "packageName": "validate-npm-package-name", - "hash": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==" - } - }, - "npm:validator": { - "type": "npm", - "name": "npm:validator", - "data": { - "version": "13.11.0", - "packageName": "validator", - "hash": "sha512-Ii+sehpSfZy+At5nPdnyMhx78fEoPDkR2XW/zimHEL3MyGJQOCQ7WeP20jPYRz7ZCpcKLB21NxuXHF3bxjStBQ==" - } - }, - "npm:vary": { - "type": "npm", - "name": "npm:vary", - "data": { - "version": "1.1.2", - "packageName": "vary", - "hash": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==" - } - }, - "npm:verdaccio": { - "type": "npm", - "name": "npm:verdaccio", - "data": { - "version": "5.29.2", - "packageName": "verdaccio", - "hash": "sha512-Ra9Bv8mMsGaFnvFJl80gSNg6yhHRFUYATA03xpVrfqC1Z1IDZt/f0jZ94tPnfyaY1ljUS5jKsZsj6ihN/ZSVbQ==" - } - }, - "npm:verdaccio-audit": { - "type": "npm", - "name": "npm:verdaccio-audit", - "data": { - "version": "12.0.0-next-7.10", - "packageName": "verdaccio-audit", - "hash": "sha512-inL8J7c4y9BpFIkqLsw9yrdh8/CBKWbBrREiQHQ9ZnD7jLkHxTWsWW8jt4aUt9t2azc6eO5rUIqdo1W6VsYKeA==" - } - }, - "npm:verdaccio-htpasswd": { - "type": "npm", - "name": "npm:verdaccio-htpasswd", - "data": { - "version": "12.0.0-next-7.10", - "packageName": "verdaccio-htpasswd", - "hash": "sha512-+P7kxWgWSxRyTlP+IFySwgvQjt529zXTetNmupUgYtu09qCZMffdZ74aGASuCvWa4Vcqavmytzg8McqCNheFiA==" - } - }, - "npm:verror": { - "type": "npm", - "name": "npm:verror", - "data": { - "version": "1.10.0", - "packageName": "verror", - "hash": "sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==" - } - }, - "npm:vite": { - "type": "npm", - "name": "npm:vite", - "data": { - "version": "5.3.2", - "packageName": "vite", - "hash": "sha512-6lA7OBHBlXUxiJxbO5aAY2fsHHzDr1q7DvXYnyZycRs2Dz+dXBWuhpWHvmljTRTpQC2uvGmUFFkSHF2vGo90MA==" - } - }, - "npm:w3c-xmlserializer": { - "type": "npm", - "name": "npm:w3c-xmlserializer", - "data": { - "version": "4.0.0", - "packageName": "w3c-xmlserializer", - "hash": "sha512-d+BFHzbiCx6zGfz0HyQ6Rg69w9k19nviJspaj4yNscGjrHu94sVP+aRm75yEbCh+r2/yR+7q6hux9LVtbuTGBw==" - } - }, - "npm:walker": { - "type": "npm", - "name": "npm:walker", - "data": { - "version": "1.0.8", - "packageName": "walker", - "hash": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==" - } - }, - "npm:watchpack": { - "type": "npm", - "name": "npm:watchpack", - "data": { - "version": "2.4.1", - "packageName": "watchpack", - "hash": "sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==" - } - }, - "npm:wbuf": { - "type": "npm", - "name": "npm:wbuf", - "data": { - "version": "1.7.3", - "packageName": "wbuf", - "hash": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" - } - }, - "npm:wcwidth": { - "type": "npm", - "name": "npm:wcwidth", - "data": { - "version": "1.0.1", - "packageName": "wcwidth", - "hash": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" - } - }, - "npm:weak-lru-cache": { - "type": "npm", - "name": "npm:weak-lru-cache", - "data": { - "version": "1.2.2", - "packageName": "weak-lru-cache", - "hash": "sha512-DEAoo25RfSYMuTGc9vPJzZcZullwIqRDSI9LOy+fkCJPi6hykCnfKaXTuPBDuXAUcqHXyOgFtHNp/kB2FjYHbw==" - } - }, - "npm:webpack": { - "type": "npm", - "name": "npm:webpack", - "data": { - "version": "5.92.1", - "packageName": "webpack", - "hash": "sha512-JECQ7IwJb+7fgUFBlrJzbyu3GEuNBcdqr1LD7IbSzwkSmIevTm8PF+wej3Oxuz/JFBUZ6O1o43zsPkwm1C4TmA==" - } - }, - "npm:webpack-merge": { - "type": "npm", - "name": "npm:webpack-merge", - "data": { - "version": "5.10.0", - "packageName": "webpack-merge", - "hash": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==" - } - }, - "npm:webpack-node-externals": { - "type": "npm", - "name": "npm:webpack-node-externals", - "data": { - "version": "3.0.0", - "packageName": "webpack-node-externals", - "hash": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==" - } - }, - "npm:webpack-sources": { - "type": "npm", - "name": "npm:webpack-sources", - "data": { - "version": "3.2.3", - "packageName": "webpack-sources", - "hash": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==" - } - }, - "npm:webpack-subresource-integrity": { - "type": "npm", - "name": "npm:webpack-subresource-integrity", - "data": { - "version": "5.1.0", - "packageName": "webpack-subresource-integrity", - "hash": "sha512-sacXoX+xd8r4WKsy9MvH/q/vBtEHr86cpImXwyg74pFIpERKt6FmB8cXpeuh0ZLgclOlHI4Wcll7+R5L02xk9Q==" - } - }, - "npm:websocket-driver": { - "type": "npm", - "name": "npm:websocket-driver", - "data": { - "version": "0.7.4", - "packageName": "websocket-driver", - "hash": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" - } - }, - "npm:websocket-extensions": { - "type": "npm", - "name": "npm:websocket-extensions", - "data": { - "version": "0.1.4", - "packageName": "websocket-extensions", - "hash": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" - } - }, - "npm:whatwg-encoding": { - "type": "npm", - "name": "npm:whatwg-encoding", - "data": { - "version": "2.0.0", - "packageName": "whatwg-encoding", - "hash": "sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==" - } - }, - "npm:whatwg-mimetype": { - "type": "npm", - "name": "npm:whatwg-mimetype", - "data": { - "version": "3.0.0", - "packageName": "whatwg-mimetype", - "hash": "sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==" - } - }, - "npm:wide-align": { - "type": "npm", - "name": "npm:wide-align", - "data": { - "version": "1.1.5", - "packageName": "wide-align", - "hash": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==" - } - }, - "npm:wildcard": { - "type": "npm", - "name": "npm:wildcard", - "data": { - "version": "2.0.1", - "packageName": "wildcard", - "hash": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==" - } - }, - "npm:word-wrap": { - "type": "npm", - "name": "npm:word-wrap", - "data": { - "version": "1.2.5", - "packageName": "word-wrap", - "hash": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" - } - }, - "npm:wordwrap": { - "type": "npm", - "name": "npm:wordwrap", - "data": { - "version": "1.0.0", - "packageName": "wordwrap", - "hash": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==" - } - }, - "npm:wrap-ansi-cjs": { - "type": "npm", - "name": "npm:wrap-ansi-cjs", - "data": { - "version": "npm:wrap-ansi@7.0.0", - "packageName": "wrap-ansi-cjs", - "hash": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" - } - }, - "npm:wrappy": { - "type": "npm", - "name": "npm:wrappy", - "data": { - "version": "1.0.2", - "packageName": "wrappy", - "hash": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - } - }, - "npm:write-file-atomic": { - "type": "npm", - "name": "npm:write-file-atomic", - "data": { - "version": "4.0.2", - "packageName": "write-file-atomic", - "hash": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==" - } - }, - "npm:xml-name-validator": { - "type": "npm", - "name": "npm:xml-name-validator", - "data": { - "version": "4.0.0", - "packageName": "xml-name-validator", - "hash": "sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==" - } - }, - "npm:xmlchars": { - "type": "npm", - "name": "npm:xmlchars", - "data": { - "version": "2.2.0", - "packageName": "xmlchars", - "hash": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" - } - }, - "npm:xmlhttprequest-ssl": { - "type": "npm", - "name": "npm:xmlhttprequest-ssl", - "data": { - "version": "2.0.0", - "packageName": "xmlhttprequest-ssl", - "hash": "sha512-QKxVRxiRACQcVuQEYFsI1hhkrMlrXHPegbbd1yn9UHOmRxY+si12nQYzri3vbzt8VdTTRviqcKxcyllFas5z2A==" - } - }, - "npm:xxhashjs": { - "type": "npm", - "name": "npm:xxhashjs", - "data": { - "version": "0.2.2", - "packageName": "xxhashjs", - "hash": "sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==" - } - }, - "npm:y18n": { - "type": "npm", - "name": "npm:y18n", - "data": { - "version": "5.0.8", - "packageName": "y18n", - "hash": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" - } - }, - "npm:yaml": { - "type": "npm", - "name": "npm:yaml", - "data": { - "version": "1.10.2", - "packageName": "yaml", - "hash": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==" - } - }, - "npm:yargs": { - "type": "npm", - "name": "npm:yargs", - "data": { - "version": "17.7.2", - "packageName": "yargs", - "hash": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" - } - }, - "npm:yargs-parser": { - "type": "npm", - "name": "npm:yargs-parser", - "data": { - "version": "21.1.1", - "packageName": "yargs-parser", - "hash": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" - } - }, - "npm:yauzl": { - "type": "npm", - "name": "npm:yauzl", - "data": { - "version": "2.10.0", - "packageName": "yauzl", - "hash": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" - } - }, - "npm:ylru": { - "type": "npm", - "name": "npm:ylru", - "data": { - "version": "1.4.0", - "packageName": "ylru", - "hash": "sha512-2OQsPNEmBCvXuFlIni/a+Rn+R2pHW9INm0BxXJ4hVDA8TirqMj+J/Rp9ItLatT/5pZqWwefVrTQcHpixsxnVlA==" - } - }, - "npm:yn": { - "type": "npm", - "name": "npm:yn", - "data": { - "version": "3.1.1", - "packageName": "yn", - "hash": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" - } - }, - "npm:yoctocolors-cjs": { - "type": "npm", - "name": "npm:yoctocolors-cjs", - "data": { - "version": "2.1.2", - "packageName": "yoctocolors-cjs", - "hash": "sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==" - } - }, - "npm:yup": { - "type": "npm", - "name": "npm:yup", - "data": { - "version": "0.32.11", - "packageName": "yup", - "hash": "sha512-Z2Fe1bn+eLstG8DRR6FTavGD+MeAwyfmouhHsIUgaADz8jvFKbO/fXc2trJKZg+5EBjh4gGm3iU/t3onKlXHIg==" - } - }, - "npm:zone.js": { - "type": "npm", - "name": "npm:zone.js", - "data": { - "version": "0.14.2", - "packageName": "zone.js", - "hash": "sha512-X4U7J1isDhoOmHmFWiLhloWc2lzMkdnumtfQ1LXzf/IOZp5NQYuMUTaviVzG/q1ugMBIXzin2AqeVJUoSEkNyQ==" - } - } - }, - "dependencies": { - "native-federation-esbuild": [ - { - "source": "native-federation-esbuild", - "target": "npm:@rollup/plugin-commonjs", - "type": "static" - }, - { - "source": "native-federation-esbuild", - "target": "npm:@rollup/plugin-node-resolve", - "type": "static" - }, - { - "source": "native-federation-esbuild", - "target": "npm:@rollup/plugin-replace", - "type": "static" - }, - { - "source": "native-federation-esbuild", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "native-federation-esbuild", - "target": "npm:rollup-plugin-node-externals", - "type": "static" - }, - { - "source": "native-federation-esbuild", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "native-federation-esbuild", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "native-federation-esbuild", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "native-federation-esbuild", - "target": "native-federation-core", - "type": "static" - } - ], - "native-federation-runtime": [ - { - "source": "native-federation-runtime", - "target": "npm:jest-preset-angular", - "type": "static" - } - ], - "native-federation-core": [ - { - "source": "native-federation-core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "native-federation-core", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "native-federation-core", - "target": "native-federation-runtime", - "type": "static" - }, - { - "source": "native-federation-core", - "target": "npm:tslib", - "type": "static" - } - ], - "native-federation-node": [ - { - "source": "native-federation-node", - "target": "native-federation-runtime", - "type": "static" - } - ], - "native-federation-e2e": [ - { - "source": "native-federation-e2e", - "target": "native-federation", - "type": "implicit" - }, - { - "source": "native-federation-e2e", - "target": "npm:@nx/plugin", - "type": "static" - } - ], - "native-federation": [ - { - "source": "native-federation", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "native-federation", - "target": "native-federation-core", - "type": "static" - }, - { - "source": "native-federation", - "target": "native-federation-runtime", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:@types/browser-sync", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:browser-sync", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:process", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:@angular/build", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:es-module-shims", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "native-federation", - "target": "npm:json5", - "type": "static" - } - ], - "playground-e2e": [ - { - "source": "playground-e2e", - "target": "playground", - "type": "implicit" - }, - { - "source": "playground-e2e", - "target": "npm:@nx/cypress", - "type": "static" - } - ], - "playground-lib": [ - { - "source": "playground-lib", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "playground-lib", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "playground-lib", - "target": "npm:jest-preset-angular", - "type": "static" - } - ], - "mf-runtime": [ - { - "source": "mf-runtime", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "mf-runtime", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "mf-runtime", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "mf-runtime", - "target": "npm:jest-preset-angular", - "type": "static" - } - ], - "playground": [ - { - "source": "playground", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "playground", - "target": "native-federation", - "type": "static" - }, - { - "source": "playground", - "target": "playground-lib", - "type": "static" - }, - { - "source": "playground", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "playground", - "target": "npm:@angular/platform-browser-dynamic", - "type": "static" - }, - { - "source": "playground", - "target": "npm:zone.js", - "type": "static" - }, - { - "source": "playground", - "target": "npm:es-module-shims", - "type": "static" - }, - { - "source": "playground", - "target": "npm:jest-preset-angular", - "type": "static" - } - ], - "mf-tools": [ - { - "source": "mf-tools", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "mf-tools", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "mf-tools", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "mf-tools", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "mf-tools", - "target": "npm:@angular/router", - "type": "static" - }, - { - "source": "mf-tools", - "target": "mf-runtime", - "type": "static" - }, - { - "source": "mf-tools", - "target": "npm:jest-preset-angular", - "type": "static" - } - ], - "mfe1-e2e": [ - { - "source": "mfe1-e2e", - "target": "mfe1", - "type": "implicit" - }, - { - "source": "mfe1-e2e", - "target": "npm:@nx/cypress", - "type": "static" - } - ], - "mfe2-e2e": [ - { - "source": "mfe2-e2e", - "target": "mfe2", - "type": "implicit" - }, - { - "source": "mfe2-e2e", - "target": "npm:@nx/cypress", - "type": "static" - } - ], - "mfe1": [ - { - "source": "mfe1", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "mfe1", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "mfe1", - "target": "playground-lib", - "type": "static" - }, - { - "source": "mfe1", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "mfe1", - "target": "npm:@angular/platform-browser-dynamic", - "type": "static" - }, - { - "source": "mfe1", - "target": "native-federation", - "type": "static" - }, - { - "source": "mfe1", - "target": "npm:zone.js", - "type": "static" - }, - { - "source": "mfe1", - "target": "npm:es-module-shims", - "type": "static" - }, - { - "source": "mfe1", - "target": "npm:jest-preset-angular", - "type": "static" - } - ], - "mfe2": [ - { - "source": "mfe2", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "mfe2", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "mfe2", - "target": "npm:@angular/platform-browser-dynamic", - "type": "static" - }, - { - "source": "mfe2", - "target": "native-federation", - "type": "static" - }, - { - "source": "mfe2", - "target": "npm:zone.js", - "type": "static" - }, - { - "source": "mfe2", - "target": "npm:es-module-shims", - "type": "static" - }, - { - "source": "mfe2", - "target": "npm:jest-preset-angular", - "type": "static" - } - ], - "mf": [ - { - "source": "mf", - "target": "mf-runtime", - "type": "static" - }, - { - "source": "mf", - "target": "npm:word-wrap", - "type": "static" - }, - { - "source": "mf", - "target": "npm:callsite", - "type": "static" - }, - { - "source": "mf", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "mf", - "target": "npm:semver", - "type": "static" - }, - { - "source": "mf", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "mf", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "mf", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "mf", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "mf", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "mf", - "target": "npm:json5", - "type": "static" - }, - { - "source": "mf", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "mf", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "mf", - "target": "npm:webpack", - "type": "static" - } - ], - "angular-architects": [ - { - "source": "angular-architects", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular-eslint/eslint-plugin", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular-eslint/eslint-plugin-template", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular-eslint/template-parser", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/cli", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/language-service", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/angular", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/cypress", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/eslint-plugin", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/node", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/plugin", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@rollup/plugin-commonjs", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@rollup/plugin-json", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@rollup/plugin-node-resolve", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@rollup/plugin-replace", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@swc-node/register", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@swc/cli", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@types/browser-sync", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@types/cross-spawn", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@types/jest", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@types/npmlog", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@typescript-eslint/eslint-plugin", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:browser-sync", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:callsite", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:chalk", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:cypress", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:dotenv", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:eslint-plugin-cypress", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:jest", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:jest-preset-angular", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:json5", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:jsonc-eslint-parser", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:mrmime", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:ng-packagr", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:node-fetch", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:node-watch", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:npmlog", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:nx", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:postcss-import", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:postcss-preset-env", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:postcss-url", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:pre-commit", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:prettier", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:rollup-plugin-esbuild", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:rollup-plugin-node-externals", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:semver", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:ts-jest", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:verdaccio", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:word-wrap", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/animations", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/forms", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/platform-browser-dynamic", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@angular/router", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:@module-federation/vite", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:es-module-shims", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "angular-architects", - "target": "npm:zone.js", - "type": "static" - } - ], - "npm:@ampproject/remapping": [ - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@ampproject/remapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@angular-devkit/architect": [ - { - "source": "npm:@angular-devkit/architect", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/architect", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:@angular-devkit/build-angular": [ - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:browser-sync", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ng-packagr", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/build-webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@angular/build", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/core@7.24.7", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@discoveryjs/json-ext", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@ngtools/webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:@vitejs/plugin-basic-ssl", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:copy-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:critters", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:css-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:esbuild-wasm", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:karma-source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:less-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:license-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:loader-utils", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:mini-css-extract-plugin", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:mrmime@2.0.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:open@10.1.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:parse5-html-rewriting-stream", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:postcss-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:resolve-url-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:sass-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:source-map-loader", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:terser@5.29.2", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:tree-kill", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:undici", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-merge", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:webpack-subresource-integrity", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-angular", - "target": "npm:esbuild@0.21.5", - "type": "static" - } - ], - "npm:@babel/core@7.24.7": [ - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core@7.24.7", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:esbuild@0.21.5": [ - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/aix-ppc64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-arm@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/android-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/darwin-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/darwin-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/freebsd-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/freebsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-arm@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-ia32@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-loong64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-mips64el@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-ppc64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-riscv64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-s390x@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/linux-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/netbsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/openbsd-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/sunos-x64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-arm64@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-ia32@0.21.5", - "type": "static" - }, - { - "source": "npm:esbuild@0.21.5", - "target": "npm:@esbuild/win32-x64@0.21.5", - "type": "static" - } - ], - "npm:is-wsl@3.1.0": [ - { - "source": "npm:is-wsl@3.1.0", - "target": "npm:is-inside-container", - "type": "static" - } - ], - "npm:open@10.1.0": [ - { - "source": "npm:open@10.1.0", - "target": "npm:default-browser", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:define-lazy-prop@3.0.0", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:is-inside-container", - "type": "static" - }, - { - "source": "npm:open@10.1.0", - "target": "npm:is-wsl@3.1.0", - "type": "static" - } - ], - "npm:terser@5.29.2": [ - { - "source": "npm:terser@5.29.2", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser@5.29.2", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser@5.29.2", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser@5.29.2", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:@angular-devkit/build-webpack": [ - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:webpack-dev-server", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular-devkit/build-webpack", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:@angular-devkit/core": [ - { - "source": "npm:@angular-devkit/core", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:ajv@8.16.0", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:ajv-formats@3.0.1", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular-devkit/core", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:ajv@8.16.0": [ - { - "source": "npm:ajv@8.16.0", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@8.16.0", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv@8.16.0", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv@8.16.0", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv-formats@3.0.1": [ - { - "source": "npm:ajv-formats@3.0.1", - "target": "npm:ajv@8.16.0", - "type": "static" - } - ], - "npm:@angular-devkit/schematics": [ - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular-devkit/schematics", - "target": "npm:rxjs", - "type": "static" - } - ], - "npm:@angular-eslint/eslint-plugin": [ - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin", - "target": "npm:@angular-eslint/utils", - "type": "static" - } - ], - "npm:@angular-eslint/eslint-plugin-template": [ - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:@angular-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:aria-query", - "type": "static" - }, - { - "source": "npm:@angular-eslint/eslint-plugin-template", - "target": "npm:axobject-query", - "type": "static" - } - ], - "npm:@angular-eslint/template-parser": [ - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - }, - { - "source": "npm:@angular-eslint/template-parser", - "target": "npm:eslint-scope", - "type": "static" - } - ], - "npm:@angular-eslint/utils": [ - { - "source": "npm:@angular-eslint/utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular-eslint/utils", - "target": "npm:@angular-eslint/bundled-angular-compiler", - "type": "static" - } - ], - "npm:@angular/animations": [ - { - "source": "npm:@angular/animations", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/animations", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/build": [ - { - "source": "npm:@angular/build", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@babel/core@7.24.7", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@babel/helper-split-export-declaration", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@inquirer/confirm", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:@vitejs/plugin-basic-ssl", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:critters", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:esbuild@0.21.5", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:lmdb", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:mrmime@2.0.0", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:parse5-html-rewriting-stream", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:picomatch", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:rollup@4.18.0", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:undici", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:vite", - "type": "static" - }, - { - "source": "npm:@angular/build", - "target": "npm:watchpack", - "type": "static" - } - ], - "npm:rollup@4.18.0": [ - { - "source": "npm:rollup@4.18.0", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-android-arm-eabi", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-android-arm64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-darwin-arm64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-darwin-x64", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm-musleabihf", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-powerpc64le-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-riscv64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-s390x-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:@rollup/rollup-win32-x64-msvc", - "type": "static" - }, - { - "source": "npm:rollup@4.18.0", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:@angular/cli": [ - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/architect", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@inquirer/prompts", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@listr2/prompt-adapter-inquirer", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:ini", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:listr2@8.2.3", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:npm-package-arg@11.0.2", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:pacote", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:symbol-observable", - "type": "static" - }, - { - "source": "npm:@angular/cli", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:ansi-escapes@7.0.0": [ - { - "source": "npm:ansi-escapes@7.0.0", - "target": "npm:environment", - "type": "static" - } - ], - "npm:cli-cursor@5.0.0": [ - { - "source": "npm:cli-cursor@5.0.0", - "target": "npm:restore-cursor@5.1.0", - "type": "static" - } - ], - "npm:cli-truncate@4.0.0": [ - { - "source": "npm:cli-truncate@4.0.0", - "target": "npm:slice-ansi@5.0.0", - "type": "static" - }, - { - "source": "npm:cli-truncate@4.0.0", - "target": "npm:string-width@7.2.0", - "type": "static" - } - ], - "npm:listr2@8.2.3": [ - { - "source": "npm:listr2@8.2.3", - "target": "npm:cli-truncate@4.0.0", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:eventemitter3@5.0.1", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:log-update@6.1.0", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2@8.2.3", - "target": "npm:wrap-ansi@9.0.0", - "type": "static" - } - ], - "npm:log-update@6.1.0": [ - { - "source": "npm:log-update@6.1.0", - "target": "npm:ansi-escapes@7.0.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:cli-cursor@5.0.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:slice-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:log-update@6.1.0", - "target": "npm:wrap-ansi@9.0.0", - "type": "static" - } - ], - "npm:is-fullwidth-code-point@5.0.0": [ - { - "source": "npm:is-fullwidth-code-point@5.0.0", - "target": "npm:get-east-asian-width", - "type": "static" - } - ], - "npm:slice-ansi@7.1.0": [ - { - "source": "npm:slice-ansi@7.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi@7.1.0", - "target": "npm:is-fullwidth-code-point@5.0.0", - "type": "static" - } - ], - "npm:npm-package-arg@11.0.2": [ - { - "source": "npm:npm-package-arg@11.0.2", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.2", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.2", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg@11.0.2", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:onetime@7.0.0": [ - { - "source": "npm:onetime@7.0.0", - "target": "npm:mimic-function", - "type": "static" - } - ], - "npm:restore-cursor@5.1.0": [ - { - "source": "npm:restore-cursor@5.1.0", - "target": "npm:onetime@7.0.0", - "type": "static" - }, - { - "source": "npm:restore-cursor@5.1.0", - "target": "npm:signal-exit@4.1.0", - "type": "static" - } - ], - "npm:slice-ansi@5.0.0": [ - { - "source": "npm:slice-ansi@5.0.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:slice-ansi@5.0.0", - "target": "npm:is-fullwidth-code-point@4.0.0", - "type": "static" - } - ], - "npm:string-width@7.2.0": [ - { - "source": "npm:string-width@7.2.0", - "target": "npm:emoji-regex@10.3.0", - "type": "static" - }, - { - "source": "npm:string-width@7.2.0", - "target": "npm:get-east-asian-width", - "type": "static" - }, - { - "source": "npm:string-width@7.2.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:strip-ansi@7.1.0": [ - { - "source": "npm:strip-ansi@7.1.0", - "target": "npm:ansi-regex@6.0.1", - "type": "static" - } - ], - "npm:wrap-ansi@9.0.0": [ - { - "source": "npm:wrap-ansi@9.0.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@9.0.0", - "target": "npm:string-width@7.2.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@9.0.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:@angular/common": [ - { - "source": "npm:@angular/common", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/common", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/compiler": [ - { - "source": "npm:@angular/compiler", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/compiler", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/compiler-cli": [ - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:reflect-metadata", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@angular/compiler-cli", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:@angular/core": [ - { - "source": "npm:@angular/core", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:zone.js", - "type": "static" - }, - { - "source": "npm:@angular/core", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/forms": [ - { - "source": "npm:@angular/forms", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/forms", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/platform-browser": [ - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/animations", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/platform-browser-dynamic": [ - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/compiler", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/platform-browser-dynamic", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@angular/router": [ - { - "source": "npm:@angular/router", - "target": "npm:@angular/common", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:@angular/platform-browser", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@angular/router", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@babel/code-frame": [ - { - "source": "npm:@babel/code-frame", - "target": "npm:@babel/highlight", - "type": "static" - }, - { - "source": "npm:@babel/code-frame", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:@babel/core": [ - { - "source": "npm:@babel/core", - "target": "npm:@ampproject/remapping", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/generator@7.25.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/helpers", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:gensync", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@babel/core", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/generator@7.25.0": [ - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator@7.25.0", - "target": "npm:jsesc", - "type": "static" - } - ], - "npm:@babel/generator": [ - { - "source": "npm:@babel/generator", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@babel/generator", - "target": "npm:jsesc", - "type": "static" - } - ], - "npm:@babel/helper-annotate-as-pure": [ - { - "source": "npm:@babel/helper-annotate-as-pure", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-builder-binary-assignment-operator-visitor": [ - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-compilation-targets": [ - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:lru-cache", - "type": "static" - }, - { - "source": "npm:@babel/helper-compilation-targets", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-create-class-features-plugin": [ - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-class-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-create-regexp-features-plugin": [ - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:regexpu-core", - "type": "static" - }, - { - "source": "npm:@babel/helper-create-regexp-features-plugin", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/helper-define-polyfill-provider": [ - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:lodash.debounce", - "type": "static" - }, - { - "source": "npm:@babel/helper-define-polyfill-provider", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:@babel/helper-environment-visitor": [ - { - "source": "npm:@babel/helper-environment-visitor", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-member-expression-to-functions": [ - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-member-expression-to-functions", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-imports": [ - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-imports", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-module-transforms": [ - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-simple-access", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/helper-module-transforms", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/helper-optimise-call-expression": [ - { - "source": "npm:@babel/helper-optimise-call-expression", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-remap-async-to-generator": [ - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/helper-wrap-function", - "type": "static" - }, - { - "source": "npm:@babel/helper-remap-async-to-generator", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/helper-replace-supers": [ - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-member-expression-to-functions", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/helper-optimise-call-expression", - "type": "static" - }, - { - "source": "npm:@babel/helper-replace-supers", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/helper-simple-access": [ - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-simple-access", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-skip-transparent-expression-wrappers": [ - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-skip-transparent-expression-wrappers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-split-export-declaration": [ - { - "source": "npm:@babel/helper-split-export-declaration", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helper-wrap-function": [ - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/helper-wrap-function", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/helpers": [ - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/helpers", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/highlight": [ - { - "source": "npm:@babel/highlight", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:chalk@2.4.2", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@babel/highlight", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:ansi-styles@3.2.1": [ - { - "source": "npm:ansi-styles@3.2.1", - "target": "npm:color-convert", - "type": "static" - } - ], - "npm:chalk@2.4.2": [ - { - "source": "npm:chalk@2.4.2", - "target": "npm:ansi-styles@3.2.1", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - }, - { - "source": "npm:chalk@2.4.2", - "target": "npm:supports-color@5.5.0", - "type": "static" - } - ], - "npm:supports-color@5.5.0": [ - { - "source": "npm:supports-color@5.5.0", - "target": "npm:has-flag@3.0.0", - "type": "static" - } - ], - "npm:@babel/parser": [ - { - "source": "npm:@babel/parser", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key": [ - { - "source": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": [ - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": [ - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": [ - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-decorators": [ - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-proposal-decorators", - "target": "npm:@babel/plugin-syntax-decorators", - "type": "static" - } - ], - "npm:@babel/plugin-proposal-private-property-in-object": [ - { - "source": "npm:@babel/plugin-proposal-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-async-generators": [ - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-async-generators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-bigint": [ - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-bigint", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-class-properties": [ - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-class-static-block": [ - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-decorators": [ - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-decorators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-dynamic-import": [ - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-export-namespace-from": [ - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-assertions": [ - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-assertions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-attributes": [ - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-attributes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-import-meta": [ - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-import-meta", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-json-strings": [ - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-jsx": [ - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-jsx", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-logical-assignment-operators": [ - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-numeric-separator": [ - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-object-rest-spread": [ - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-optional-chaining": [ - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-private-property-in-object": [ - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-top-level-await": [ - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-top-level-await", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-typescript": [ - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-syntax-unicode-sets-regex": [ - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-syntax-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-arrow-functions": [ - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-arrow-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-async-generator-functions": [ - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-environment-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-generator-functions", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - } - ], - "npm:@babel/plugin-transform-async-to-generator": [ - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-async-to-generator", - "target": "npm:@babel/helper-remap-async-to-generator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-block-scoped-functions": [ - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoped-functions", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-block-scoping": [ - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-block-scoping", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-class-properties": [ - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-class-static-block": [ - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-class-static-block", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - } - ], - "npm:@babel/plugin-transform-classes": [ - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:@babel/traverse", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-classes", - "target": "npm:globals", - "type": "static" - } - ], - "npm:@babel/plugin-transform-computed-properties": [ - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-computed-properties", - "target": "npm:@babel/template", - "type": "static" - } - ], - "npm:@babel/plugin-transform-destructuring": [ - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-destructuring", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-dotall-regex": [ - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dotall-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-duplicate-keys": [ - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-duplicate-keys", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-dynamic-import": [ - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-dynamic-import", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - } - ], - "npm:@babel/plugin-transform-exponentiation-operator": [ - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-builder-binary-assignment-operator-visitor", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-exponentiation-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-export-namespace-from": [ - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-export-namespace-from", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - } - ], - "npm:@babel/plugin-transform-for-of": [ - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-for-of", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-function-name": [ - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-function-name", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/plugin-transform-json-strings": [ - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-json-strings", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - } - ], - "npm:@babel/plugin-transform-literals": [ - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-logical-assignment-operators": [ - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-logical-assignment-operators", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - } - ], - "npm:@babel/plugin-transform-member-expression-literals": [ - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-member-expression-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-amd": [ - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-amd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-commonjs": [ - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-commonjs", - "target": "npm:@babel/helper-simple-access", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-systemjs": [ - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-systemjs", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:@babel/plugin-transform-modules-umd": [ - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-module-transforms", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-modules-umd", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-named-capturing-groups-regex": [ - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-new-target": [ - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-new-target", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-nullish-coalescing-operator": [ - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-numeric-separator": [ - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-numeric-separator", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-rest-spread": [ - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-rest-spread", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - } - ], - "npm:@babel/plugin-transform-object-super": [ - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-object-super", - "target": "npm:@babel/helper-replace-supers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-optional-catch-binding": [ - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-catch-binding", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - } - ], - "npm:@babel/plugin-transform-optional-chaining": [ - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-optional-chaining", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - } - ], - "npm:@babel/plugin-transform-parameters": [ - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-parameters", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-private-methods": [ - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-methods", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-private-property-in-object": [ - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-private-property-in-object", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - } - ], - "npm:@babel/plugin-transform-property-literals": [ - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-property-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-regenerator": [ - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-regenerator", - "target": "npm:regenerator-transform", - "type": "static" - } - ], - "npm:@babel/plugin-transform-reserved-words": [ - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-reserved-words", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-runtime": [ - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-module-imports", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-runtime", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/plugin-transform-shorthand-properties": [ - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-shorthand-properties", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-spread": [ - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-spread", - "target": "npm:@babel/helper-skip-transparent-expression-wrappers", - "type": "static" - } - ], - "npm:@babel/plugin-transform-sticky-regex": [ - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-sticky-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-template-literals": [ - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-template-literals", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-typeof-symbol": [ - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typeof-symbol", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-typescript": [ - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-annotate-as-pure", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-create-class-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-typescript", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-escapes": [ - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-escapes", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-property-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-property-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/plugin-transform-unicode-sets-regex": [ - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-create-regexp-features-plugin", - "type": "static" - }, - { - "source": "npm:@babel/plugin-transform-unicode-sets-regex", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:@babel/preset-env": [ - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-compilation-targets", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-firefox-class-in-computed-class-key", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-proposal-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-assertions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-attributes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-syntax-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-arrow-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-generator-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-async-to-generator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoped-functions", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-block-scoping", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-class-static-block", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-classes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-computed-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-destructuring", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dotall-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-duplicate-keys", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-dynamic-import", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-exponentiation-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-export-namespace-from", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-for-of", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-function-name", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-json-strings", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-member-expression-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-amd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-systemjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-modules-umd", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-named-capturing-groups-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-new-target", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-numeric-separator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-rest-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-object-super", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-optional-chaining", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-parameters", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-methods", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-private-property-in-object", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-property-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-reserved-words", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-shorthand-properties", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-spread", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-sticky-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-template-literals", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-typeof-symbol", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-escapes", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-property-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/plugin-transform-unicode-sets-regex", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:@babel/preset-modules", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs2", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-corejs3", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:babel-plugin-polyfill-regenerator", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:core-js-compat", - "type": "static" - }, - { - "source": "npm:@babel/preset-env", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:@babel/preset-modules": [ - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/preset-modules", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:@babel/preset-typescript": [ - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/helper-validator-option", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-modules-commonjs", - "type": "static" - }, - { - "source": "npm:@babel/preset-typescript", - "target": "npm:@babel/plugin-transform-typescript", - "type": "static" - } - ], - "npm:@babel/runtime": [ - { - "source": "npm:@babel/runtime", - "target": "npm:regenerator-runtime", - "type": "static" - } - ], - "npm:@babel/template": [ - { - "source": "npm:@babel/template", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@babel/traverse": [ - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/generator@7.25.0", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@babel/traverse", - "target": "npm:globals", - "type": "static" - } - ], - "npm:@babel/types": [ - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-string-parser", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:@babel/helper-validator-identifier", - "type": "static" - }, - { - "source": "npm:@babel/types", - "target": "npm:to-fast-properties", - "type": "static" - } - ], - "npm:@cspotcode/source-map-support": [ - { - "source": "npm:@cspotcode/source-map-support", - "target": "npm:@jridgewell/trace-mapping@0.3.9", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping@0.3.9": [ - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping@0.3.9", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@csstools/postcss-color-function": [ - { - "source": "npm:@csstools/postcss-color-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-color-function", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-color-function", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-font-format-keywords": [ - { - "source": "npm:@csstools/postcss-font-format-keywords", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-font-format-keywords", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-hwb-function": [ - { - "source": "npm:@csstools/postcss-hwb-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-hwb-function", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-ic-unit": [ - { - "source": "npm:@csstools/postcss-ic-unit", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-ic-unit", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-ic-unit", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-is-pseudo-class": [ - { - "source": "npm:@csstools/postcss-is-pseudo-class", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-is-pseudo-class", - "target": "npm:@csstools/selector-specificity", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-is-pseudo-class", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-normalize-display-values": [ - { - "source": "npm:@csstools/postcss-normalize-display-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-oklab-function": [ - { - "source": "npm:@csstools/postcss-oklab-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-oklab-function", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-oklab-function", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-progressive-custom-properties": [ - { - "source": "npm:@csstools/postcss-progressive-custom-properties", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-progressive-custom-properties", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-stepped-value-functions": [ - { - "source": "npm:@csstools/postcss-stepped-value-functions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@csstools/postcss-stepped-value-functions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:@csstools/postcss-unset-value": [ - { - "source": "npm:@csstools/postcss-unset-value", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:@csstools/selector-specificity": [ - { - "source": "npm:@csstools/selector-specificity", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:@cypress/request": [ - { - "source": "npm:@cypress/request", - "target": "npm:aws-sign2", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:aws4", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:caseless", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:extend", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:forever-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:form-data", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:http-signature", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:is-typedarray", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:isstream", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:json-stringify-safe", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:performance-now", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:qs", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:tunnel-agent", - "type": "static" - }, - { - "source": "npm:@cypress/request", - "target": "npm:uuid", - "type": "static" - } - ], - "npm:@cypress/xvfb": [ - { - "source": "npm:@cypress/xvfb", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:@cypress/xvfb", - "target": "npm:lodash.once", - "type": "static" - } - ], - "npm:debug@3.2.7": [ - { - "source": "npm:debug@3.2.7", - "target": "npm:ms", - "type": "static" - } - ], - "npm:@emnapi/core": [ - { - "source": "npm:@emnapi/core", - "target": "npm:@emnapi/wasi-threads", - "type": "static" - }, - { - "source": "npm:@emnapi/core", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@emnapi/runtime": [ - { - "source": "npm:@emnapi/runtime", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@emnapi/wasi-threads": [ - { - "source": "npm:@emnapi/wasi-threads", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@eslint-community/eslint-utils": [ - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@eslint-community/eslint-utils", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@eslint/eslintrc": [ - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:@eslint/eslintrc", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:ajv@6.12.6": [ - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:json-schema-traverse@0.4.1", - "type": "static" - }, - { - "source": "npm:ajv@6.12.6", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:brace-expansion@1.1.11": [ - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:balanced-match", - "type": "static" - }, - { - "source": "npm:brace-expansion@1.1.11", - "target": "npm:concat-map", - "type": "static" - } - ], - "npm:globals@13.24.0": [ - { - "source": "npm:globals@13.24.0", - "target": "npm:type-fest@0.20.2", - "type": "static" - } - ], - "npm:minimatch@3.1.2": [ - { - "source": "npm:minimatch@3.1.2", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - } - ], - "npm:@humanwhocodes/config-array": [ - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:@humanwhocodes/object-schema", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@humanwhocodes/config-array", - "target": "npm:minimatch@3.1.2", - "type": "static" - } - ], - "npm:@inquirer/checkbox": [ - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/checkbox", - "target": "npm:yoctocolors-cjs", - "type": "static" - } - ], - "npm:@inquirer/core@9.0.10": [ - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/node@22.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core@9.0.10", - "target": "npm:yoctocolors-cjs", - "type": "static" - } - ], - "npm:@types/node@22.1.0": [ - { - "source": "npm:@types/node@22.1.0", - "target": "npm:undici-types@6.13.0", - "type": "static" - } - ], - "npm:@inquirer/confirm": [ - { - "source": "npm:@inquirer/confirm", - "target": "npm:@inquirer/core", - "type": "static" - }, - { - "source": "npm:@inquirer/confirm", - "target": "npm:@inquirer/type", - "type": "static" - } - ], - "npm:@inquirer/core": [ - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@types/mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@types/node@20.14.14", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:@types/wrap-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:cli-spinners@2.9.2", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:cli-width", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:mute-stream", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:signal-exit@4.1.0", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@inquirer/core", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:@types/node@20.14.14": [ - { - "source": "npm:@types/node@20.14.14", - "target": "npm:undici-types", - "type": "static" - } - ], - "npm:@inquirer/editor": [ - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/editor", - "target": "npm:external-editor", - "type": "static" - } - ], - "npm:@inquirer/expand": [ - { - "source": "npm:@inquirer/expand", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/expand", - "target": "npm:yoctocolors-cjs", - "type": "static" - } - ], - "npm:@inquirer/input": [ - { - "source": "npm:@inquirer/input", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/input", - "target": "npm:@inquirer/type", - "type": "static" - } - ], - "npm:@inquirer/password": [ - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/password", - "target": "npm:ansi-escapes", - "type": "static" - } - ], - "npm:@inquirer/prompts": [ - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/checkbox", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/confirm", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/editor", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/expand", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/input", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/password", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/rawlist", - "type": "static" - }, - { - "source": "npm:@inquirer/prompts", - "target": "npm:@inquirer/select", - "type": "static" - } - ], - "npm:@inquirer/rawlist": [ - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/rawlist", - "target": "npm:yoctocolors-cjs", - "type": "static" - } - ], - "npm:@inquirer/select": [ - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/core@9.0.10", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/figures", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:@inquirer/type", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@inquirer/select", - "target": "npm:yoctocolors-cjs", - "type": "static" - } - ], - "npm:@inquirer/type": [ - { - "source": "npm:@inquirer/type", - "target": "npm:mute-stream", - "type": "static" - } - ], - "npm:@isaacs/cliui": [ - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:string-width-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:strip-ansi-cjs", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi@8.1.0", - "type": "static" - }, - { - "source": "npm:@isaacs/cliui", - "target": "npm:wrap-ansi-cjs", - "type": "static" - } - ], - "npm:string-width@5.1.2": [ - { - "source": "npm:string-width@5.1.2", - "target": "npm:eastasianwidth", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:emoji-regex@9.2.2", - "type": "static" - }, - { - "source": "npm:string-width@5.1.2", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:wrap-ansi@8.1.0": [ - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:ansi-styles@6.2.1", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:string-width@5.1.2", - "type": "static" - }, - { - "source": "npm:wrap-ansi@8.1.0", - "target": "npm:strip-ansi@7.1.0", - "type": "static" - } - ], - "npm:@istanbuljs/load-nyc-config": [ - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:camelcase", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:find-up", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:get-package-type", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:@istanbuljs/load-nyc-config", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:argparse@1.0.10": [ - { - "source": "npm:argparse@1.0.10", - "target": "npm:sprintf-js", - "type": "static" - } - ], - "npm:js-yaml@3.14.1": [ - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:argparse@1.0.10", - "type": "static" - }, - { - "source": "npm:js-yaml@3.14.1", - "target": "npm:esprima", - "type": "static" - } - ], - "npm:@jest/console": [ - { - "source": "npm:@jest/console", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/console", - "target": "npm:slash", - "type": "static" - } - ], - "npm:ansi-styles@4.3.0": [ - { - "source": "npm:ansi-styles@4.3.0", - "target": "npm:color-convert@2.0.1", - "type": "static" - } - ], - "npm:chalk@4.1.2": [ - { - "source": "npm:chalk@4.1.2", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@4.1.2", - "target": "npm:supports-color@7.2.0", - "type": "static" - } - ], - "npm:color-convert@2.0.1": [ - { - "source": "npm:color-convert@2.0.1", - "target": "npm:color-name@1.1.4", - "type": "static" - } - ], - "npm:supports-color@7.2.0": [ - { - "source": "npm:supports-color@7.2.0", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:@jest/core": [ - { - "source": "npm:@jest/core", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-changed-files", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-resolve-dependencies", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/core", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:@jest/environment": [ - { - "source": "npm:@jest/environment", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/environment", - "target": "npm:jest-mock", - "type": "static" - } - ], - "npm:@jest/expect": [ - { - "source": "npm:@jest/expect", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@jest/expect", - "target": "npm:jest-snapshot", - "type": "static" - } - ], - "npm:@jest/expect-utils": [ - { - "source": "npm:@jest/expect-utils", - "target": "npm:jest-get-type", - "type": "static" - } - ], - "npm:@jest/fake-timers": [ - { - "source": "npm:@jest/fake-timers", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@sinonjs/fake-timers", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:@jest/fake-timers", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:@jest/globals": [ - { - "source": "npm:@jest/globals", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/globals", - "target": "npm:jest-mock", - "type": "static" - } - ], - "npm:@jest/reporters": [ - { - "source": "npm:@jest/reporters", - "target": "npm:@bcoe/v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-instrument", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-report", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-lib-source-maps", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:string-length", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:@jest/reporters", - "target": "npm:v8-to-istanbul", - "type": "static" - } - ], - "npm:@jest/schemas": [ - { - "source": "npm:@jest/schemas", - "target": "npm:@sinclair/typebox", - "type": "static" - } - ], - "npm:@jest/source-map": [ - { - "source": "npm:@jest/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:callsites", - "type": "static" - }, - { - "source": "npm:@jest/source-map", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:@jest/test-result": [ - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/test-result", - "target": "npm:collect-v8-coverage", - "type": "static" - } - ], - "npm:@jest/test-sequencer": [ - { - "source": "npm:@jest/test-sequencer", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/test-sequencer", - "target": "npm:slash", - "type": "static" - } - ], - "npm:@jest/transform": [ - { - "source": "npm:@jest/transform", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@jest/transform", - "target": "npm:write-file-atomic", - "type": "static" - } - ], - "npm:@jest/types": [ - { - "source": "npm:@jest/types", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/istanbul-reports", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:@types/yargs", - "type": "static" - }, - { - "source": "npm:@jest/types", - "target": "npm:chalk@4.1.2", - "type": "static" - } - ], - "npm:@jridgewell/gen-mapping": [ - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/set-array", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - }, - { - "source": "npm:@jridgewell/gen-mapping", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/source-map": [ - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/gen-mapping", - "type": "static" - }, - { - "source": "npm:@jridgewell/source-map", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - } - ], - "npm:@jridgewell/trace-mapping": [ - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/resolve-uri", - "type": "static" - }, - { - "source": "npm:@jridgewell/trace-mapping", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:@jsonjoy.com/base64": [ - { - "source": "npm:@jsonjoy.com/base64", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@jsonjoy.com/json-pack": [ - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:@jsonjoy.com/base64", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:@jsonjoy.com/util", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:hyperdyperid", - "type": "static" - }, - { - "source": "npm:@jsonjoy.com/json-pack", - "target": "npm:thingies", - "type": "static" - } - ], - "npm:@jsonjoy.com/util": [ - { - "source": "npm:@jsonjoy.com/util", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@listr2/prompt-adapter-inquirer": [ - { - "source": "npm:@listr2/prompt-adapter-inquirer", - "target": "npm:@inquirer/prompts", - "type": "static" - }, - { - "source": "npm:@listr2/prompt-adapter-inquirer", - "target": "npm:@inquirer/type", - "type": "static" - } - ], - "npm:@module-federation/bridge-react-webpack-plugin": [ - { - "source": "npm:@module-federation/bridge-react-webpack-plugin", - "target": "npm:@module-federation/sdk", - "type": "static" - } - ], - "npm:@module-federation/dts-plugin": [ - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:@module-federation/managers", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:@module-federation/third-party-dts-extractor", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:adm-zip", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:isomorphic-ws", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:koa", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:lodash.clonedeepwith", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:log4js", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:node-schedule", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:rambda", - "type": "static" - }, - { - "source": "npm:@module-federation/dts-plugin", - "target": "npm:ws", - "type": "static" - } - ], - "npm:chalk@3.0.0": [ - { - "source": "npm:chalk@3.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:chalk@3.0.0", - "target": "npm:supports-color@7.2.0", - "type": "static" - } - ], - "npm:fs-extra@9.1.0": [ - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:at-least-node", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@9.1.0", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:@module-federation/enhanced": [ - { - "source": "npm:@module-federation/enhanced", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/bridge-react-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/dts-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/managers", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/manifest", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/rspack", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/runtime-tools", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:btoa", - "type": "static" - }, - { - "source": "npm:@module-federation/enhanced", - "target": "npm:upath", - "type": "static" - } - ], - "npm:@module-federation/managers": [ - { - "source": "npm:@module-federation/managers", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/managers", - "target": "npm:find-pkg", - "type": "static" - }, - { - "source": "npm:@module-federation/managers", - "target": "npm:fs-extra@9.1.0", - "type": "static" - } - ], - "npm:@module-federation/manifest": [ - { - "source": "npm:@module-federation/manifest", - "target": "npm:@module-federation/dts-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:@module-federation/managers", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:chalk@3.0.0", - "type": "static" - }, - { - "source": "npm:@module-federation/manifest", - "target": "npm:find-pkg", - "type": "static" - } - ], - "npm:@module-federation/rspack": [ - { - "source": "npm:@module-federation/rspack", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/bridge-react-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/dts-plugin", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/managers", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/manifest", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/runtime-tools", - "type": "static" - }, - { - "source": "npm:@module-federation/rspack", - "target": "npm:@module-federation/sdk", - "type": "static" - } - ], - "npm:@module-federation/runtime": [ - { - "source": "npm:@module-federation/runtime", - "target": "npm:@module-federation/sdk", - "type": "static" - } - ], - "npm:@module-federation/runtime-tools": [ - { - "source": "npm:@module-federation/runtime-tools", - "target": "npm:@module-federation/runtime", - "type": "static" - }, - { - "source": "npm:@module-federation/runtime-tools", - "target": "npm:@module-federation/webpack-bundler-runtime", - "type": "static" - } - ], - "npm:@module-federation/third-party-dts-extractor": [ - { - "source": "npm:@module-federation/third-party-dts-extractor", - "target": "npm:find-pkg", - "type": "static" - }, - { - "source": "npm:@module-federation/third-party-dts-extractor", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:@module-federation/third-party-dts-extractor", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:@module-federation/vite": [ - { - "source": "npm:@module-federation/vite", - "target": "npm:@softarc/native-federation", - "type": "static" - } - ], - "npm:@module-federation/webpack-bundler-runtime": [ - { - "source": "npm:@module-federation/webpack-bundler-runtime", - "target": "npm:@module-federation/runtime", - "type": "static" - }, - { - "source": "npm:@module-federation/webpack-bundler-runtime", - "target": "npm:@module-federation/sdk", - "type": "static" - } - ], - "npm:@mole-inc/bin-wrapper": [ - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:bin-version-check", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:ext-name", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:file-type", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:filenamify", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:got", - "type": "static" - }, - { - "source": "npm:@mole-inc/bin-wrapper", - "target": "npm:os-filter-obj", - "type": "static" - } - ], - "npm:@napi-rs/wasm-runtime": [ - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/core", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@emnapi/runtime", - "type": "static" - }, - { - "source": "npm:@napi-rs/wasm-runtime", - "target": "npm:@tybys/wasm-util", - "type": "static" - } - ], - "npm:@ngtools/webpack": [ - { - "source": "npm:@ngtools/webpack", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@ngtools/webpack", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:@nodelib/fs.scandir": [ - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.scandir", - "target": "npm:run-parallel", - "type": "static" - } - ], - "npm:@nodelib/fs.walk": [ - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:@nodelib/fs.scandir", - "type": "static" - }, - { - "source": "npm:@nodelib/fs.walk", - "target": "npm:fastq", - "type": "static" - } - ], - "npm:@npmcli/agent": [ - { - "source": "npm:@npmcli/agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:http-proxy-agent@7.0.2", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:https-proxy-agent", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:lru-cache@10.2.2", - "type": "static" - }, - { - "source": "npm:@npmcli/agent", - "target": "npm:socks-proxy-agent", - "type": "static" - } - ], - "npm:http-proxy-agent@7.0.2": [ - { - "source": "npm:http-proxy-agent@7.0.2", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:http-proxy-agent@7.0.2", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@npmcli/fs": [ - { - "source": "npm:@npmcli/fs", - "target": "npm:semver", - "type": "static" - } - ], - "npm:@npmcli/git": [ - { - "source": "npm:@npmcli/git", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:lru-cache@10.2.2", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-inflight", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@npmcli/git", - "target": "npm:which@4.0.0", - "type": "static" - } - ], - "npm:which@4.0.0": [ - { - "source": "npm:which@4.0.0", - "target": "npm:isexe@3.1.1", - "type": "static" - } - ], - "npm:@npmcli/installed-package-contents": [ - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-bundled", - "type": "static" - }, - { - "source": "npm:@npmcli/installed-package-contents", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:@npmcli/package-json": [ - { - "source": "npm:@npmcli/package-json", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:glob@10.4.1", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:json-parse-even-better-errors", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:normalize-package-data", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:@npmcli/package-json", - "target": "npm:semver", - "type": "static" - } - ], - "npm:glob@10.4.1": [ - { - "source": "npm:glob@10.4.1", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:jackspeak@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:minimatch@9.0.4", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.4.1", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:jackspeak@3.1.2": [ - { - "source": "npm:jackspeak@3.1.2", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak@3.1.2", - "target": "npm:@pkgjs/parseargs", - "type": "static" - } - ], - "npm:minimatch@9.0.4": [ - { - "source": "npm:minimatch@9.0.4", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:@npmcli/promise-spawn": [ - { - "source": "npm:@npmcli/promise-spawn", - "target": "npm:which@4.0.0", - "type": "static" - } - ], - "npm:@npmcli/run-script": [ - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/package-json", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:node-gyp", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:@npmcli/run-script", - "target": "npm:which@4.0.0", - "type": "static" - } - ], - "npm:@nrwl/angular": [ - { - "source": "npm:@nrwl/angular", - "target": "npm:@nx/angular", - "type": "static" - }, - { - "source": "npm:@nrwl/angular", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nrwl/cypress": [ - { - "source": "npm:@nrwl/cypress", - "target": "npm:@nx/cypress", - "type": "static" - } - ], - "npm:@nrwl/devkit": [ - { - "source": "npm:@nrwl/devkit", - "target": "npm:@nx/devkit", - "type": "static" - } - ], - "npm:@nrwl/eslint-plugin-nx": [ - { - "source": "npm:@nrwl/eslint-plugin-nx", - "target": "npm:@nx/eslint-plugin", - "type": "static" - } - ], - "npm:@nrwl/jest": [ - { - "source": "npm:@nrwl/jest", - "target": "npm:@nx/jest", - "type": "static" - } - ], - "npm:@nrwl/js": [ - { - "source": "npm:@nrwl/js", - "target": "npm:@nx/js", - "type": "static" - } - ], - "npm:@nrwl/node": [ - { - "source": "npm:@nrwl/node", - "target": "npm:@nx/node", - "type": "static" - } - ], - "npm:@nrwl/nx-plugin": [ - { - "source": "npm:@nrwl/nx-plugin", - "target": "npm:@nx/plugin", - "type": "static" - } - ], - "npm:@nrwl/tao": [ - { - "source": "npm:@nrwl/tao", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nrwl/tao", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nrwl/web": [ - { - "source": "npm:@nrwl/web", - "target": "npm:@nx/web", - "type": "static" - } - ], - "npm:@nrwl/webpack": [ - { - "source": "npm:@nrwl/webpack", - "target": "npm:@nx/webpack", - "type": "static" - } - ], - "npm:@nrwl/workspace": [ - { - "source": "npm:@nrwl/workspace", - "target": "npm:@nx/workspace", - "type": "static" - } - ], - "npm:@nx/angular": [ - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@schematics/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@module-federation/enhanced", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nrwl/angular", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/web", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:magic-string", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/angular", - "target": "npm:webpack-merge", - "type": "static" - } - ], - "npm:@nx/cypress": [ - { - "source": "npm:@nx/cypress", - "target": "npm:cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nrwl/cypress", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/cypress", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/devkit": [ - { - "source": "npm:@nx/devkit", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:@nrwl/devkit", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ejs", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/devkit", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:@nx/eslint": [ - { - "source": "npm:@nx/eslint", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:@nx/linter", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/eslint", - "target": "npm:typescript@5.4.5", - "type": "static" - } - ], - "npm:@nx/eslint-plugin": [ - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:eslint-config-prettier", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nrwl/eslint-plugin-nx", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:confusing-browser-globals", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:jsonc-eslint-parser", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/eslint-plugin", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/jest": [ - { - "source": "npm:@nx/jest", - "target": "npm:@jest/reporters", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nrwl/jest", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:identity-obj-proxy", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:resolve.exports", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/jest", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:@nx/js": [ - { - "source": "npm:@nx/js", - "target": "npm:verdaccio", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-proposal-decorators", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-class-properties", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/plugin-transform-runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-env", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/preset-typescript", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nrwl/js", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:@nx/workspace", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-const-enum", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-macros", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:babel-plugin-transform-typescript-metadata", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:columnify", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fast-glob@3.2.7", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:js-tokens", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ora@5.3.0", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:source-map-support@0.5.19", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:@nx/js", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:fast-glob@3.2.7": [ - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob@3.2.7", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:ora@5.3.0": [ - { - "source": "npm:ora@5.3.0", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora@5.3.0", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:source-map-support@0.5.19": [ - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.19", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:@nx/linter": [ - { - "source": "npm:@nx/linter", - "target": "npm:@nx/eslint", - "type": "static" - } - ], - "npm:@nx/node": [ - { - "source": "npm:@nx/node", - "target": "npm:@nrwl/node", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/node", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/plugin": [ - { - "source": "npm:@nx/plugin", - "target": "npm:@nrwl/nx-plugin", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/eslint", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/jest", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:@nx/plugin", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/web": [ - { - "source": "npm:@nx/web", - "target": "npm:@nrwl/web", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:detect-port", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:http-server", - "type": "static" - }, - { - "source": "npm:@nx/web", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@nx/webpack": [ - { - "source": "npm:@nx/webpack", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@module-federation/enhanced", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@module-federation/sdk", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nrwl/webpack", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@nx/js", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:@phenomnomnominal/tsquery", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:babel-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:copy-webpack-plugin@10.2.4", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:css-loader@6.11.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:css-minimizer-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:express@4.19.2", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:fork-ts-checker-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:http-proxy-middleware", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less@4.1.3", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:less-loader@11.1.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:license-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:mini-css-extract-plugin@2.4.7", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:parse5", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss-import", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:postcss-loader@6.2.1", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:sass-loader@12.6.0", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:source-map-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:style-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:stylus-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:ts-loader", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tsconfig-paths-webpack-plugin", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-dev-server@4.15.2", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-node-externals", - "type": "static" - }, - { - "source": "npm:@nx/webpack", - "target": "npm:webpack-subresource-integrity", - "type": "static" - } - ], - "npm:body-parser@1.20.2": [ - { - "source": "npm:body-parser@1.20.2", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:destroy@1.2.0", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser@1.20.2", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:copy-webpack-plugin@10.2.4": [ - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:globby@12.2.0", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin@10.2.4", - "target": "npm:serialize-javascript", - "type": "static" - } - ], - "npm:cosmiconfig@7.1.0": [ - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig@7.1.0", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:css-loader@6.11.0": [ - { - "source": "npm:css-loader@6.11.0", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader@6.11.0", - "target": "npm:semver", - "type": "static" - } - ], - "npm:debug@2.6.9": [ - { - "source": "npm:debug@2.6.9", - "target": "npm:ms@2.0.0", - "type": "static" - } - ], - "npm:express@4.19.2": [ - { - "source": "npm:express@4.19.2", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:body-parser@1.20.2", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:cookie@0.6.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:finalhandler@1.2.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:serve-static@1.15.0", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express@4.19.2", - "target": "npm:vary", - "type": "static" - } - ], - "npm:finalhandler@1.2.0": [ - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:finalhandler@1.2.0", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:glob-parent@6.0.2": [ - { - "source": "npm:glob-parent@6.0.2", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:globby@12.2.0": [ - { - "source": "npm:globby@12.2.0", - "target": "npm:array-union@3.0.1", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby@12.2.0", - "target": "npm:slash@4.0.0", - "type": "static" - } - ], - "npm:http-proxy-middleware@2.0.6": [ - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware@2.0.6", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:less@4.1.3": [ - { - "source": "npm:less@4.1.3", - "target": "npm:copy-anything", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:needle", - "type": "static" - }, - { - "source": "npm:less@4.1.3", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:less-loader@11.1.0": [ - { - "source": "npm:less-loader@11.1.0", - "target": "npm:less@4.1.3", - "type": "static" - }, - { - "source": "npm:less-loader@11.1.0", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:less-loader@11.1.0", - "target": "npm:klona", - "type": "static" - } - ], - "npm:loader-utils@2.0.4": [ - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:big.js", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:emojis-list", - "type": "static" - }, - { - "source": "npm:loader-utils@2.0.4", - "target": "npm:json5", - "type": "static" - } - ], - "npm:make-dir@2.1.0": [ - { - "source": "npm:make-dir@2.1.0", - "target": "npm:pify@4.0.1", - "type": "static" - }, - { - "source": "npm:make-dir@2.1.0", - "target": "npm:semver@5.7.2", - "type": "static" - } - ], - "npm:mini-css-extract-plugin@2.4.7": [ - { - "source": "npm:mini-css-extract-plugin@2.4.7", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin@2.4.7", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:on-finished@2.4.1": [ - { - "source": "npm:on-finished@2.4.1", - "target": "npm:ee-first", - "type": "static" - } - ], - "npm:p-retry@4.6.2": [ - { - "source": "npm:p-retry@4.6.2", - "target": "npm:@types/retry@0.12.0", - "type": "static" - }, - { - "source": "npm:p-retry@4.6.2", - "target": "npm:retry@0.13.1", - "type": "static" - } - ], - "npm:postcss-loader@6.2.1": [ - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:postcss-loader@6.2.1", - "target": "npm:semver", - "type": "static" - } - ], - "npm:qs@6.11.0": [ - { - "source": "npm:qs@6.11.0", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:sass-loader@12.6.0": [ - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:klona", - "type": "static" - }, - { - "source": "npm:sass-loader@12.6.0", - "target": "npm:neo-async", - "type": "static" - } - ], - "npm:send@0.18.0": [ - { - "source": "npm:send@0.18.0", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:destroy@1.2.0", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:ms@2.1.3", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send@0.18.0", - "target": "npm:statuses@2.0.1", - "type": "static" - } - ], - "npm:serve-static@1.15.0": [ - { - "source": "npm:serve-static@1.15.0", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static@1.15.0", - "target": "npm:send@0.18.0", - "type": "static" - } - ], - "npm:webpack-dev-middleware@5.3.4": [ - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware@5.3.4", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:webpack-dev-server@4.15.2": [ - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:bonjour-service", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:connect-history-api-fallback@2.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:express@4.19.2", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:http-proxy-middleware@2.0.6", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:ipaddr.js@2.2.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:launch-editor", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:p-retry@4.6.2", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:rimraf", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:webpack-dev-middleware@5.3.4", - "type": "static" - }, - { - "source": "npm:webpack-dev-server@4.15.2", - "target": "npm:ws", - "type": "static" - } - ], - "npm:@nx/workspace": [ - { - "source": "npm:@nx/workspace", - "target": "npm:@nrwl/workspace", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:@nx/devkit", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:nx", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:@nx/workspace", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:@phenomnomnominal/tsquery": [ - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@phenomnomnominal/tsquery", - "target": "npm:esquery", - "type": "static" - } - ], - "npm:@rollup/plugin-commonjs": [ - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:glob@8.1.0", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:is-reference", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-commonjs", - "target": "npm:magic-string", - "type": "static" - } - ], - "npm:glob@8.1.0": [ - { - "source": "npm:glob@8.1.0", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:minimatch@5.1.6", - "type": "static" - }, - { - "source": "npm:glob@8.1.0", - "target": "npm:once", - "type": "static" - } - ], - "npm:minimatch@5.1.6": [ - { - "source": "npm:minimatch@5.1.6", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:@rollup/plugin-json": [ - { - "source": "npm:@rollup/plugin-json", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-json", - "target": "npm:@rollup/pluginutils", - "type": "static" - } - ], - "npm:@rollup/plugin-node-resolve": [ - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:@types/resolve", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:is-builtin-module", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:is-module", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-node-resolve", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:@rollup/plugin-replace": [ - { - "source": "npm:@rollup/plugin-replace", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-replace", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:@rollup/plugin-replace", - "target": "npm:magic-string", - "type": "static" - } - ], - "npm:@rollup/pluginutils": [ - { - "source": "npm:@rollup/pluginutils", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:estree-walker", - "type": "static" - }, - { - "source": "npm:@rollup/pluginutils", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:@rollup/wasm-node": [ - { - "source": "npm:@rollup/wasm-node", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@rollup/wasm-node", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:@schematics/angular": [ - { - "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/core", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:@angular-devkit/schematics", - "type": "static" - }, - { - "source": "npm:@schematics/angular", - "target": "npm:jsonc-parser@3.3.1", - "type": "static" - } - ], - "npm:@sigstore/bundle": [ - { - "source": "npm:@sigstore/bundle", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - } - ], - "npm:@sigstore/sign": [ - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/core", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:@sigstore/sign", - "target": "npm:promise-retry", - "type": "static" - } - ], - "npm:@sigstore/tuf": [ - { - "source": "npm:@sigstore/tuf", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:@sigstore/tuf", - "target": "npm:tuf-js", - "type": "static" - } - ], - "npm:@sigstore/verify": [ - { - "source": "npm:@sigstore/verify", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:@sigstore/verify", - "target": "npm:@sigstore/core", - "type": "static" - }, - { - "source": "npm:@sigstore/verify", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - } - ], - "npm:@sinonjs/commons": [ - { - "source": "npm:@sinonjs/commons", - "target": "npm:type-detect", - "type": "static" - } - ], - "npm:@sinonjs/fake-timers": [ - { - "source": "npm:@sinonjs/fake-timers", - "target": "npm:@sinonjs/commons", - "type": "static" - } - ], - "npm:@softarc/native-federation": [ - { - "source": "npm:@softarc/native-federation", - "target": "npm:@softarc/native-federation-runtime", - "type": "static" - }, - { - "source": "npm:@softarc/native-federation", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:@softarc/native-federation", - "target": "npm:npmlog", - "type": "static" - } - ], - "npm:@softarc/native-federation-runtime": [ - { - "source": "npm:@softarc/native-federation-runtime", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@swc-node/core": [ - { - "source": "npm:@swc-node/core", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc-node/core", - "target": "npm:@swc/types", - "type": "static" - } - ], - "npm:@swc-node/register": [ - { - "source": "npm:@swc-node/register", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc-node/core", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:@swc-node/sourcemap-support", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:pirates", - "type": "static" - }, - { - "source": "npm:@swc-node/register", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@swc-node/sourcemap-support": [ - { - "source": "npm:@swc-node/sourcemap-support", - "target": "npm:source-map-support", - "type": "static" - }, - { - "source": "npm:@swc-node/sourcemap-support", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@swc/cli": [ - { - "source": "npm:@swc/cli", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@mole-inc/bin-wrapper", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:@swc/counter", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:commander", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:@swc/cli", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:@swc/core": [ - { - "source": "npm:@swc/core", - "target": "npm:@swc/helpers", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/counter", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/types@0.1.7", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-arm64", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-darwin-x64", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-ia32-msvc", - "type": "static" - }, - { - "source": "npm:@swc/core", - "target": "npm:@swc/core-win32-x64-msvc", - "type": "static" - } - ], - "npm:@swc/types@0.1.7": [ - { - "source": "npm:@swc/types@0.1.7", - "target": "npm:@swc/counter", - "type": "static" - } - ], - "npm:@swc/helpers": [ - { - "source": "npm:@swc/helpers", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@swc/types": [ - { - "source": "npm:@swc/types", - "target": "npm:@swc/counter", - "type": "static" - } - ], - "npm:@szmarczak/http-timer": [ - { - "source": "npm:@szmarczak/http-timer", - "target": "npm:defer-to-connect", - "type": "static" - } - ], - "npm:@tufjs/models": [ - { - "source": "npm:@tufjs/models", - "target": "npm:@tufjs/canonical-json", - "type": "static" - }, - { - "source": "npm:@tufjs/models", - "target": "npm:minimatch@9.0.4", - "type": "static" - } - ], - "npm:@tybys/wasm-util": [ - { - "source": "npm:@tybys/wasm-util", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@types/babel__core": [ - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__generator", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__template", - "type": "static" - }, - { - "source": "npm:@types/babel__core", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:@types/babel__generator": [ - { - "source": "npm:@types/babel__generator", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__template": [ - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:@types/babel__template", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/babel__traverse": [ - { - "source": "npm:@types/babel__traverse", - "target": "npm:@babel/types", - "type": "static" - } - ], - "npm:@types/body-parser": [ - { - "source": "npm:@types/body-parser", - "target": "npm:@types/connect", - "type": "static" - }, - { - "source": "npm:@types/body-parser", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/bonjour": [ - { - "source": "npm:@types/bonjour", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/browser-sync": [ - { - "source": "npm:@types/browser-sync", - "target": "npm:@types/micromatch", - "type": "static" - }, - { - "source": "npm:@types/browser-sync", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/browser-sync", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:@types/browser-sync", - "target": "npm:chokidar", - "type": "static" - } - ], - "npm:@types/cacheable-request": [ - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/http-cache-semantics", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/keyv", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/cacheable-request", - "target": "npm:@types/responselike", - "type": "static" - } - ], - "npm:@types/connect": [ - { - "source": "npm:@types/connect", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/connect-history-api-fallback": [ - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/connect-history-api-fallback", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/cors": [ - { - "source": "npm:@types/cors", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/cross-spawn": [ - { - "source": "npm:@types/cross-spawn", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/eslint": [ - { - "source": "npm:@types/eslint", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:@types/eslint", - "target": "npm:@types/json-schema", - "type": "static" - } - ], - "npm:@types/eslint-scope": [ - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/eslint", - "type": "static" - }, - { - "source": "npm:@types/eslint-scope", - "target": "npm:@types/estree", - "type": "static" - } - ], - "npm:@types/express": [ - { - "source": "npm:@types/express", - "target": "npm:@types/body-parser", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/express-serve-static-core", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express", - "target": "npm:@types/serve-static", - "type": "static" - } - ], - "npm:@types/express-serve-static-core": [ - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/qs", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/range-parser", - "type": "static" - }, - { - "source": "npm:@types/express-serve-static-core", - "target": "npm:@types/send", - "type": "static" - } - ], - "npm:@types/graceful-fs": [ - { - "source": "npm:@types/graceful-fs", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/http-proxy": [ - { - "source": "npm:@types/http-proxy", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/istanbul-lib-report": [ - { - "source": "npm:@types/istanbul-lib-report", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - } - ], - "npm:@types/istanbul-reports": [ - { - "source": "npm:@types/istanbul-reports", - "target": "npm:@types/istanbul-lib-report", - "type": "static" - } - ], - "npm:@types/jest": [ - { - "source": "npm:@types/jest", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:@types/jest", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:@types/jsdom": [ - { - "source": "npm:@types/jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:@types/tough-cookie", - "type": "static" - }, - { - "source": "npm:@types/jsdom", - "target": "npm:parse5@7.1.2", - "type": "static" - } - ], - "npm:parse5@7.1.2": [ - { - "source": "npm:parse5@7.1.2", - "target": "npm:entities", - "type": "static" - } - ], - "npm:@types/keyv": [ - { - "source": "npm:@types/keyv", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/micromatch": [ - { - "source": "npm:@types/micromatch", - "target": "npm:@types/parse-glob", - "type": "static" - } - ], - "npm:@types/mute-stream": [ - { - "source": "npm:@types/mute-stream", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/node": [ - { - "source": "npm:@types/node", - "target": "npm:undici-types", - "type": "static" - } - ], - "npm:@types/node-forge": [ - { - "source": "npm:@types/node-forge", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/npmlog": [ - { - "source": "npm:@types/npmlog", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/responselike": [ - { - "source": "npm:@types/responselike", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/send": [ - { - "source": "npm:@types/send", - "target": "npm:@types/mime@1.3.5", - "type": "static" - }, - { - "source": "npm:@types/send", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/serve-index": [ - { - "source": "npm:@types/serve-index", - "target": "npm:@types/express", - "type": "static" - } - ], - "npm:@types/serve-static": [ - { - "source": "npm:@types/serve-static", - "target": "npm:@types/http-errors", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/mime", - "type": "static" - }, - { - "source": "npm:@types/serve-static", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/sockjs": [ - { - "source": "npm:@types/sockjs", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/ws": [ - { - "source": "npm:@types/ws", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@types/yargs": [ - { - "source": "npm:@types/yargs", - "target": "npm:@types/yargs-parser", - "type": "static" - } - ], - "npm:@types/yauzl": [ - { - "source": "npm:@types/yauzl", - "target": "npm:@types/node", - "type": "static" - } - ], - "npm:@typescript-eslint/eslint-plugin": [ - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/parser", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/type-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/eslint-plugin", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/parser": [ - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/parser", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@typescript-eslint/scope-manager": [ - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/scope-manager", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - } - ], - "npm:@typescript-eslint/type-utils": [ - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:@typescript-eslint/utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/type-utils", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:@typescript-eslint/typescript-estree": [ - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:@typescript-eslint/visitor-keys", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:globby", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:minimatch@9.0.5", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/typescript-estree", - "target": "npm:ts-api-utils", - "type": "static" - } - ], - "npm:minimatch@9.0.5": [ - { - "source": "npm:minimatch@9.0.5", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:@typescript-eslint/utils": [ - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/scope-manager", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/utils", - "target": "npm:@typescript-eslint/typescript-estree", - "type": "static" - } - ], - "npm:@typescript-eslint/visitor-keys": [ - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:@typescript-eslint/types", - "type": "static" - }, - { - "source": "npm:@typescript-eslint/visitor-keys", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:@verdaccio/commons-api": [ - { - "source": "npm:@verdaccio/commons-api", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:@verdaccio/commons-api", - "target": "npm:http-status-codes@2.2.0", - "type": "static" - } - ], - "npm:@verdaccio/config": [ - { - "source": "npm:@verdaccio/config", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:minimatch@7.4.6", - "type": "static" - }, - { - "source": "npm:@verdaccio/config", - "target": "npm:yup", - "type": "static" - } - ], - "npm:minimatch@7.4.6": [ - { - "source": "npm:minimatch@7.4.6", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:@verdaccio/core": [ - { - "source": "npm:@verdaccio/core", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:http-status-codes", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:@verdaccio/core", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:lru-cache@6.0.0": [ - { - "source": "npm:lru-cache@6.0.0", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:semver@7.5.4": [ - { - "source": "npm:semver@7.5.4", - "target": "npm:lru-cache@6.0.0", - "type": "static" - } - ], - "npm:@verdaccio/file-locking": [ - { - "source": "npm:@verdaccio/file-locking", - "target": "npm:lockfile", - "type": "static" - } - ], - "npm:@verdaccio/local-storage": [ - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/commons-api", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/file-locking", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:@verdaccio/streams", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:async@3.2.4", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:lowdb", - "type": "static" - }, - { - "source": "npm:@verdaccio/local-storage", - "target": "npm:mkdirp@1.0.4", - "type": "static" - } - ], - "npm:@verdaccio/logger-7": [ - { - "source": "npm:@verdaccio/logger-7", - "target": "npm:@verdaccio/logger-commons", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-7", - "target": "npm:pino", - "type": "static" - } - ], - "npm:@verdaccio/logger-commons": [ - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:@verdaccio/logger-prettify", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-commons", - "target": "npm:debug", - "type": "static" - } - ], - "npm:@verdaccio/logger-prettify": [ - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:dayjs@1.11.7", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:pino-abstract-transport", - "type": "static" - }, - { - "source": "npm:@verdaccio/logger-prettify", - "target": "npm:sonic-boom", - "type": "static" - } - ], - "npm:@verdaccio/middleware": [ - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:express-rate-limit", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:@verdaccio/middleware", - "target": "npm:mime@2.6.0", - "type": "static" - } - ], - "npm:@verdaccio/signature": [ - { - "source": "npm:@verdaccio/signature", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/signature", - "target": "npm:jsonwebtoken", - "type": "static" - } - ], - "npm:@verdaccio/tarball": [ - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/tarball", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:@verdaccio/url": [ - { - "source": "npm:@verdaccio/url", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/url", - "target": "npm:validator", - "type": "static" - } - ], - "npm:@verdaccio/utils": [ - { - "source": "npm:@verdaccio/utils", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:minimatch@7.4.6", - "type": "static" - }, - { - "source": "npm:@verdaccio/utils", - "target": "npm:semver@7.5.4", - "type": "static" - } - ], - "npm:@vitejs/plugin-basic-ssl": [ - { - "source": "npm:@vitejs/plugin-basic-ssl", - "target": "npm:vite", - "type": "static" - } - ], - "npm:@webassemblyjs/ast": [ - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-numbers", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/ast", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-numbers": [ - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/floating-point-hex-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-numbers", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/helper-wasm-section": [ - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/helper-wasm-section", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - } - ], - "npm:@webassemblyjs/ieee754": [ - { - "source": "npm:@webassemblyjs/ieee754", - "target": "npm:@xtuc/ieee754", - "type": "static" - } - ], - "npm:@webassemblyjs/leb128": [ - { - "source": "npm:@webassemblyjs/leb128", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-edit": [ - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/helper-wasm-section", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-opt", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-edit", - "target": "npm:@webassemblyjs/wast-printer", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-gen": [ - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-gen", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-opt": [ - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/helper-buffer", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-gen", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-opt", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - } - ], - "npm:@webassemblyjs/wasm-parser": [ - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-api-error", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/helper-wasm-bytecode", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/ieee754", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/leb128", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wasm-parser", - "target": "npm:@webassemblyjs/utf8", - "type": "static" - } - ], - "npm:@webassemblyjs/wast-printer": [ - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:@webassemblyjs/wast-printer", - "target": "npm:@xtuc/long", - "type": "static" - } - ], - "npm:@yarnpkg/parsers": [ - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:js-yaml@3.14.1", - "type": "static" - }, - { - "source": "npm:@yarnpkg/parsers", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:@zkochan/js-yaml": [ - { - "source": "npm:@zkochan/js-yaml", - "target": "npm:argparse", - "type": "static" - } - ], - "npm:abort-controller": [ - { - "source": "npm:abort-controller", - "target": "npm:event-target-shim", - "type": "static" - } - ], - "npm:accepts": [ - { - "source": "npm:accepts", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:accepts", - "target": "npm:negotiator", - "type": "static" - } - ], - "npm:acorn-globals": [ - { - "source": "npm:acorn-globals", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:acorn-globals", - "target": "npm:acorn-walk", - "type": "static" - } - ], - "npm:acorn-import-attributes": [ - { - "source": "npm:acorn-import-attributes", - "target": "npm:acorn", - "type": "static" - } - ], - "npm:acorn-jsx": [ - { - "source": "npm:acorn-jsx", - "target": "npm:acorn", - "type": "static" - } - ], - "npm:adjust-sourcemap-loader": [ - { - "source": "npm:adjust-sourcemap-loader", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:adjust-sourcemap-loader", - "target": "npm:regex-parser", - "type": "static" - } - ], - "npm:agent-base": [ - { - "source": "npm:agent-base", - "target": "npm:debug", - "type": "static" - } - ], - "npm:aggregate-error": [ - { - "source": "npm:aggregate-error", - "target": "npm:clean-stack", - "type": "static" - }, - { - "source": "npm:aggregate-error", - "target": "npm:indent-string", - "type": "static" - } - ], - "npm:ajv": [ - { - "source": "npm:ajv", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:json-schema-traverse", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:require-from-string", - "type": "static" - }, - { - "source": "npm:ajv", - "target": "npm:uri-js", - "type": "static" - } - ], - "npm:ajv-formats": [ - { - "source": "npm:ajv-formats", - "target": "npm:ajv", - "type": "static" - } - ], - "npm:ajv-keywords": [ - { - "source": "npm:ajv-keywords", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ajv-keywords", - "target": "npm:fast-deep-equal", - "type": "static" - } - ], - "npm:ansi-escapes": [ - { - "source": "npm:ansi-escapes", - "target": "npm:type-fest", - "type": "static" - } - ], - "npm:anymatch": [ - { - "source": "npm:anymatch", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:anymatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:are-we-there-yet": [ - { - "source": "npm:are-we-there-yet", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:are-we-there-yet", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:aria-query": [ - { - "source": "npm:aria-query", - "target": "npm:dequal", - "type": "static" - } - ], - "npm:asn1": [ - { - "source": "npm:asn1", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:autoprefixer": [ - { - "source": "npm:autoprefixer", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:fraction.js", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:normalize-range", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:autoprefixer", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:axios": [ - { - "source": "npm:axios", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:axios", - "target": "npm:proxy-from-env@1.1.0", - "type": "static" - } - ], - "npm:form-data@4.0.0": [ - { - "source": "npm:form-data@4.0.0", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data@4.0.0", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:babel-jest": [ - { - "source": "npm:babel-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-plugin-istanbul", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:babel-preset-jest", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:babel-jest", - "target": "npm:slash", - "type": "static" - } - ], - "npm:babel-loader": [ - { - "source": "npm:babel-loader", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:find-cache-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:babel-loader", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:find-cache-dir@4.0.0": [ - { - "source": "npm:find-cache-dir@4.0.0", - "target": "npm:common-path-prefix", - "type": "static" - }, - { - "source": "npm:find-cache-dir@4.0.0", - "target": "npm:pkg-dir@7.0.0", - "type": "static" - } - ], - "npm:find-up@6.3.0": [ - { - "source": "npm:find-up@6.3.0", - "target": "npm:locate-path@7.2.0", - "type": "static" - }, - { - "source": "npm:find-up@6.3.0", - "target": "npm:path-exists@5.0.0", - "type": "static" - } - ], - "npm:locate-path@7.2.0": [ - { - "source": "npm:locate-path@7.2.0", - "target": "npm:p-locate@6.0.0", - "type": "static" - } - ], - "npm:p-limit@4.0.0": [ - { - "source": "npm:p-limit@4.0.0", - "target": "npm:yocto-queue@1.0.0", - "type": "static" - } - ], - "npm:p-locate@6.0.0": [ - { - "source": "npm:p-locate@6.0.0", - "target": "npm:p-limit@4.0.0", - "type": "static" - } - ], - "npm:pkg-dir@7.0.0": [ - { - "source": "npm:pkg-dir@7.0.0", - "target": "npm:find-up@6.3.0", - "type": "static" - } - ], - "npm:babel-plugin-const-enum": [ - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:babel-plugin-const-enum", - "target": "npm:@babel/traverse", - "type": "static" - } - ], - "npm:babel-plugin-istanbul": [ - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/load-nyc-config", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:istanbul-lib-instrument@5.2.1", - "type": "static" - }, - { - "source": "npm:babel-plugin-istanbul", - "target": "npm:test-exclude", - "type": "static" - } - ], - "npm:istanbul-lib-instrument@5.2.1": [ - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument@5.2.1", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:babel-plugin-jest-hoist": [ - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/template", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__core", - "type": "static" - }, - { - "source": "npm:babel-plugin-jest-hoist", - "target": "npm:@types/babel__traverse", - "type": "static" - } - ], - "npm:babel-plugin-macros": [ - { - "source": "npm:babel-plugin-macros", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:cosmiconfig", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs2": [ - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/compat-data", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs2", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-corejs3": [ - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-corejs3", - "target": "npm:core-js-compat", - "type": "static" - } - ], - "npm:babel-plugin-polyfill-regenerator": [ - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-plugin-polyfill-regenerator", - "target": "npm:@babel/helper-define-polyfill-provider", - "type": "static" - } - ], - "npm:babel-plugin-transform-typescript-metadata": [ - { - "source": "npm:babel-plugin-transform-typescript-metadata", - "target": "npm:@babel/helper-plugin-utils", - "type": "static" - } - ], - "npm:babel-preset-current-node-syntax": [ - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-async-generators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-bigint", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-class-properties", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-import-meta", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-json-strings", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-logical-assignment-operators", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-nullish-coalescing-operator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-numeric-separator", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-object-rest-spread", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-catch-binding", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-optional-chaining", - "type": "static" - }, - { - "source": "npm:babel-preset-current-node-syntax", - "target": "npm:@babel/plugin-syntax-top-level-await", - "type": "static" - } - ], - "npm:babel-preset-jest": [ - { - "source": "npm:babel-preset-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-plugin-jest-hoist", - "type": "static" - }, - { - "source": "npm:babel-preset-jest", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - } - ], - "npm:basic-auth": [ - { - "source": "npm:basic-auth", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - } - ], - "npm:bcrypt-pbkdf": [ - { - "source": "npm:bcrypt-pbkdf", - "target": "npm:tweetnacl", - "type": "static" - } - ], - "npm:bin-check": [ - { - "source": "npm:bin-check", - "target": "npm:execa", - "type": "static" - }, - { - "source": "npm:bin-check", - "target": "npm:executable", - "type": "static" - } - ], - "npm:bin-version": [ - { - "source": "npm:bin-version", - "target": "npm:execa@5.1.1", - "type": "static" - }, - { - "source": "npm:bin-version", - "target": "npm:find-versions", - "type": "static" - } - ], - "npm:bin-version-check": [ - { - "source": "npm:bin-version-check", - "target": "npm:bin-version", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:bin-version-check", - "target": "npm:semver-truncate", - "type": "static" - } - ], - "npm:execa@5.1.1": [ - { - "source": "npm:execa@5.1.1", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:get-stream@6.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:human-signals", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@5.1.1", - "target": "npm:strip-final-newline", - "type": "static" - } - ], - "npm:bl": [ - { - "source": "npm:bl", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:bl", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:body-parser": [ - { - "source": "npm:body-parser", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:destroy@1.2.0", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:raw-body@2.5.1", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:body-parser", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:raw-body@2.5.1": [ - { - "source": "npm:raw-body@2.5.1", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:raw-body@2.5.1", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:bonjour-service": [ - { - "source": "npm:bonjour-service", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:bonjour-service", - "target": "npm:multicast-dns", - "type": "static" - } - ], - "npm:brace-expansion": [ - { - "source": "npm:brace-expansion", - "target": "npm:balanced-match", - "type": "static" - } - ], - "npm:braces": [ - { - "source": "npm:braces", - "target": "npm:fill-range", - "type": "static" - } - ], - "npm:browser-sync": [ - { - "source": "npm:browser-sync", - "target": "npm:browser-sync-client", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:browser-sync-ui", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:bs-recipes", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:connect", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:dev-ip", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:easy-extender", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:eazy-logger", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:fs-extra@3.0.1", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:opn", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:portscanner", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:raw-body", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:resp-modifier", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:rx", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:send", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:serve-static", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:socket.io", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:ua-parser-js", - "type": "static" - }, - { - "source": "npm:browser-sync", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:browser-sync-client": [ - { - "source": "npm:browser-sync-client", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:browser-sync-client", - "target": "npm:mitt", - "type": "static" - } - ], - "npm:browser-sync-ui": [ - { - "source": "npm:browser-sync-ui", - "target": "npm:async-each-series", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:immutable", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:server-destroy", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:socket.io-client", - "type": "static" - }, - { - "source": "npm:browser-sync-ui", - "target": "npm:stream-throttle", - "type": "static" - } - ], - "npm:fs-extra@3.0.1": [ - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:jsonfile@3.0.1", - "type": "static" - }, - { - "source": "npm:fs-extra@3.0.1", - "target": "npm:universalify@0.1.2", - "type": "static" - } - ], - "npm:jsonfile@3.0.1": [ - { - "source": "npm:jsonfile@3.0.1", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:browserslist": [ - { - "source": "npm:browserslist", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:electron-to-chromium", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:node-releases", - "type": "static" - }, - { - "source": "npm:browserslist", - "target": "npm:update-browserslist-db", - "type": "static" - } - ], - "npm:bs-logger": [ - { - "source": "npm:bs-logger", - "target": "npm:fast-json-stable-stringify", - "type": "static" - } - ], - "npm:bser": [ - { - "source": "npm:bser", - "target": "npm:node-int64", - "type": "static" - } - ], - "npm:buffer": [ - { - "source": "npm:buffer", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:builtins": [ - { - "source": "npm:builtins", - "target": "npm:semver", - "type": "static" - } - ], - "npm:bundle-name": [ - { - "source": "npm:bundle-name", - "target": "npm:run-applescript", - "type": "static" - } - ], - "npm:cacache": [ - { - "source": "npm:cacache", - "target": "npm:@npmcli/fs", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:glob@10.3.10", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:lru-cache@10.2.0", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-collect", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:cacache", - "target": "npm:unique-filename", - "type": "static" - } - ], - "npm:glob@10.3.10": [ - { - "source": "npm:glob@10.3.10", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:jackspeak", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.3.10", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:cache-content-type": [ - { - "source": "npm:cache-content-type", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:cache-content-type", - "target": "npm:ylru", - "type": "static" - } - ], - "npm:cacheable-request": [ - { - "source": "npm:cacheable-request", - "target": "npm:clone-response", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:normalize-url", - "type": "static" - }, - { - "source": "npm:cacheable-request", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:get-stream@5.2.0": [ - { - "source": "npm:get-stream@5.2.0", - "target": "npm:pump", - "type": "static" - } - ], - "npm:call-bind": [ - { - "source": "npm:call-bind", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:call-bind", - "target": "npm:set-function-length", - "type": "static" - } - ], - "npm:caniuse-api": [ - { - "source": "npm:caniuse-api", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:caniuse-lite", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:caniuse-api", - "target": "npm:lodash.uniq", - "type": "static" - } - ], - "npm:chokidar": [ - { - "source": "npm:chokidar", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-binary-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:readdirp", - "type": "static" - }, - { - "source": "npm:chokidar", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:cli-cursor": [ - { - "source": "npm:cli-cursor", - "target": "npm:restore-cursor", - "type": "static" - } - ], - "npm:cli-table3": [ - { - "source": "npm:cli-table3", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cli-table3", - "target": "npm:@colors/colors", - "type": "static" - } - ], - "npm:cli-truncate": [ - { - "source": "npm:cli-truncate", - "target": "npm:slice-ansi", - "type": "static" - }, - { - "source": "npm:cli-truncate", - "target": "npm:string-width", - "type": "static" - } - ], - "npm:clipanion": [ - { - "source": "npm:clipanion", - "target": "npm:typanion", - "type": "static" - } - ], - "npm:cliui": [ - { - "source": "npm:cliui", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:cliui", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - } - ], - "npm:wrap-ansi@7.0.0": [ - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi@7.0.0", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:clone-deep": [ - { - "source": "npm:clone-deep", - "target": "npm:is-plain-object", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:kind-of", - "type": "static" - }, - { - "source": "npm:clone-deep", - "target": "npm:shallow-clone", - "type": "static" - } - ], - "npm:clone-response": [ - { - "source": "npm:clone-response", - "target": "npm:mimic-response", - "type": "static" - } - ], - "npm:color-convert": [ - { - "source": "npm:color-convert", - "target": "npm:color-name", - "type": "static" - } - ], - "npm:columnify": [ - { - "source": "npm:columnify", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:columnify", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:combined-stream": [ - { - "source": "npm:combined-stream", - "target": "npm:delayed-stream", - "type": "static" - } - ], - "npm:compressible": [ - { - "source": "npm:compressible", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:compression": [ - { - "source": "npm:compression", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:bytes@3.0.0", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:compressible", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:on-headers", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:compression", - "target": "npm:vary", - "type": "static" - } - ], - "npm:concat-stream": [ - { - "source": "npm:concat-stream", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:concat-stream", - "target": "npm:typedarray", - "type": "static" - } - ], - "npm:readable-stream@2.3.8": [ - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:isarray", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:process-nextick-args", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:string_decoder@1.1.1", - "type": "static" - }, - { - "source": "npm:readable-stream@2.3.8", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:string_decoder@1.1.1": [ - { - "source": "npm:string_decoder@1.1.1", - "target": "npm:safe-buffer@5.1.2", - "type": "static" - } - ], - "npm:connect": [ - { - "source": "npm:connect", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:finalhandler", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:connect", - "target": "npm:utils-merge", - "type": "static" - } - ], - "npm:content-disposition": [ - { - "source": "npm:content-disposition", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:cookies": [ - { - "source": "npm:cookies", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:cookies", - "target": "npm:keygrip", - "type": "static" - } - ], - "npm:copy-anything": [ - { - "source": "npm:copy-anything", - "target": "npm:is-what", - "type": "static" - } - ], - "npm:copy-webpack-plugin": [ - { - "source": "npm:copy-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:globby@14.0.2", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:normalize-path", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:copy-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - } - ], - "npm:globby@14.0.2": [ - { - "source": "npm:globby@14.0.2", - "target": "npm:@sindresorhus/merge-streams", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:path-type@5.0.0", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:slash@5.1.0", - "type": "static" - }, - { - "source": "npm:globby@14.0.2", - "target": "npm:unicorn-magic", - "type": "static" - } - ], - "npm:core-js-compat": [ - { - "source": "npm:core-js-compat", - "target": "npm:browserslist", - "type": "static" - } - ], - "npm:cors": [ - { - "source": "npm:cors", - "target": "npm:object-assign", - "type": "static" - }, - { - "source": "npm:cors", - "target": "npm:vary", - "type": "static" - } - ], - "npm:cosmiconfig": [ - { - "source": "npm:cosmiconfig", - "target": "npm:@types/parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:path-type", - "type": "static" - }, - { - "source": "npm:cosmiconfig", - "target": "npm:yaml", - "type": "static" - } - ], - "npm:create-jest": [ - { - "source": "npm:create-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:create-jest", - "target": "npm:prompts", - "type": "static" - } - ], - "npm:critters": [ - { - "source": "npm:critters", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:htmlparser2", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:critters", - "target": "npm:postcss-media-query-parser", - "type": "static" - } - ], - "npm:cron-parser": [ - { - "source": "npm:cron-parser", - "target": "npm:luxon", - "type": "static" - } - ], - "npm:cross-spawn": [ - { - "source": "npm:cross-spawn", - "target": "npm:path-key", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:shebang-command", - "type": "static" - }, - { - "source": "npm:cross-spawn", - "target": "npm:which", - "type": "static" - } - ], - "npm:css-blank-pseudo": [ - { - "source": "npm:css-blank-pseudo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-blank-pseudo", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:css-declaration-sorter": [ - { - "source": "npm:css-declaration-sorter", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:css-has-pseudo": [ - { - "source": "npm:css-has-pseudo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-has-pseudo", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:css-loader": [ - { - "source": "npm:css-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-extract-imports", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-local-by-default", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-scope", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-modules-values", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:css-loader", - "target": "npm:semver", - "type": "static" - } - ], - "npm:css-minimizer-webpack-plugin": [ - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:cssnano", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:css-minimizer-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - } - ], - "npm:css-prefers-color-scheme": [ - { - "source": "npm:css-prefers-color-scheme", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:css-select": [ - { - "source": "npm:css-select", - "target": "npm:boolbase", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:css-select", - "target": "npm:nth-check", - "type": "static" - } - ], - "npm:css-tree": [ - { - "source": "npm:css-tree", - "target": "npm:mdn-data", - "type": "static" - }, - { - "source": "npm:css-tree", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:cssnano": [ - { - "source": "npm:cssnano", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:cssnano-preset-default", - "type": "static" - }, - { - "source": "npm:cssnano", - "target": "npm:lilconfig", - "type": "static" - } - ], - "npm:cssnano-preset-default": [ - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:css-declaration-sorter", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-calc", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-colormin", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-convert-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-comments", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-duplicates", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-empty", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-discard-overridden", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-longhand", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-merge-rules", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-font-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-gradients", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-params", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-minify-selectors", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-charset", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-positions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-repeat-style", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-string", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-timing-functions", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-unicode", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-url", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-normalize-whitespace", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-ordered-values", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-initial", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-reduce-transforms", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-svgo", - "type": "static" - }, - { - "source": "npm:cssnano-preset-default", - "target": "npm:postcss-unique-selectors", - "type": "static" - } - ], - "npm:cssnano-utils": [ - { - "source": "npm:cssnano-utils", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:csso": [ - { - "source": "npm:csso", - "target": "npm:css-tree@2.2.1", - "type": "static" - } - ], - "npm:css-tree@2.2.1": [ - { - "source": "npm:css-tree@2.2.1", - "target": "npm:mdn-data@2.0.28", - "type": "static" - }, - { - "source": "npm:css-tree@2.2.1", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:cssstyle": [ - { - "source": "npm:cssstyle", - "target": "npm:cssom@0.3.8", - "type": "static" - } - ], - "npm:cypress": [ - { - "source": "npm:cypress", - "target": "npm:@cypress/request", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@cypress/xvfb", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sinonjs__fake-timers", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:@types/sizzle", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:arch", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:blob-util", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:bluebird", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:buffer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cachedir", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:check-more-types", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:cli-table3", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:commander@6.2.1", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:common-tags", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:dayjs", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:eventemitter2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:execa@4.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:executable", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:extract-zip", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:fs-extra@9.1.0", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:getos", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-ci", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:is-installed-globally", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lazy-ass", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:listr2", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:ospath", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:pretty-bytes", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:proxy-from-env", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:request-progress", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:supports-color", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:untildify", - "type": "static" - }, - { - "source": "npm:cypress", - "target": "npm:yauzl", - "type": "static" - } - ], - "npm:execa@4.1.0": [ - { - "source": "npm:execa@4.1.0", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:human-signals@1.1.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:is-stream@2.0.1", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa@4.1.0", - "target": "npm:strip-final-newline", - "type": "static" - } - ], - "npm:dashdash": [ - { - "source": "npm:dashdash", - "target": "npm:assert-plus", - "type": "static" - } - ], - "npm:data-urls": [ - { - "source": "npm:data-urls", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:data-urls", - "target": "npm:whatwg-url", - "type": "static" - } - ], - "npm:debug": [ - { - "source": "npm:debug", - "target": "npm:ms", - "type": "static" - } - ], - "npm:decompress-response": [ - { - "source": "npm:decompress-response", - "target": "npm:mimic-response@3.1.0", - "type": "static" - } - ], - "npm:default-browser": [ - { - "source": "npm:default-browser", - "target": "npm:bundle-name", - "type": "static" - }, - { - "source": "npm:default-browser", - "target": "npm:default-browser-id", - "type": "static" - } - ], - "npm:default-gateway": [ - { - "source": "npm:default-gateway", - "target": "npm:execa@5.1.1", - "type": "static" - } - ], - "npm:defaults": [ - { - "source": "npm:defaults", - "target": "npm:clone", - "type": "static" - } - ], - "npm:define-data-property": [ - { - "source": "npm:define-data-property", - "target": "npm:es-define-property", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:define-data-property", - "target": "npm:gopd", - "type": "static" - } - ], - "npm:detect-port": [ - { - "source": "npm:detect-port", - "target": "npm:address", - "type": "static" - }, - { - "source": "npm:detect-port", - "target": "npm:debug", - "type": "static" - } - ], - "npm:dir-glob": [ - { - "source": "npm:dir-glob", - "target": "npm:path-type", - "type": "static" - } - ], - "npm:dns-packet": [ - { - "source": "npm:dns-packet", - "target": "npm:@leichtgewicht/ip-codec", - "type": "static" - } - ], - "npm:doctrine": [ - { - "source": "npm:doctrine", - "target": "npm:esutils", - "type": "static" - } - ], - "npm:dom-serializer": [ - { - "source": "npm:dom-serializer", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:dom-serializer", - "target": "npm:entities", - "type": "static" - } - ], - "npm:domexception": [ - { - "source": "npm:domexception", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:domhandler": [ - { - "source": "npm:domhandler", - "target": "npm:domelementtype", - "type": "static" - } - ], - "npm:domutils": [ - { - "source": "npm:domutils", - "target": "npm:dom-serializer", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:domutils", - "target": "npm:domhandler", - "type": "static" - } - ], - "npm:dotenv-expand": [ - { - "source": "npm:dotenv-expand", - "target": "npm:dotenv@16.4.5", - "type": "static" - } - ], - "npm:duplexify": [ - { - "source": "npm:duplexify", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:duplexify", - "target": "npm:stream-shift", - "type": "static" - } - ], - "npm:easy-extender": [ - { - "source": "npm:easy-extender", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:eazy-logger": [ - { - "source": "npm:eazy-logger", - "target": "npm:chalk@4.1.2", - "type": "static" - } - ], - "npm:ecc-jsbn": [ - { - "source": "npm:ecc-jsbn", - "target": "npm:jsbn@0.1.1", - "type": "static" - }, - { - "source": "npm:ecc-jsbn", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:ecdsa-sig-formatter": [ - { - "source": "npm:ecdsa-sig-formatter", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:ejs": [ - { - "source": "npm:ejs", - "target": "npm:jake", - "type": "static" - } - ], - "npm:encoding": [ - { - "source": "npm:encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - } - ], - "npm:iconv-lite@0.6.3": [ - { - "source": "npm:iconv-lite@0.6.3", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:end-of-stream": [ - { - "source": "npm:end-of-stream", - "target": "npm:once", - "type": "static" - } - ], - "npm:engine.io": [ - { - "source": "npm:engine.io", - "target": "npm:@types/cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cookie", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io", - "target": "npm:ws@8.11.0", - "type": "static" - } - ], - "npm:engine.io-client": [ - { - "source": "npm:engine.io-client", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:engine.io-parser", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:ws@8.11.0", - "type": "static" - }, - { - "source": "npm:engine.io-client", - "target": "npm:xmlhttprequest-ssl", - "type": "static" - } - ], - "npm:enhanced-resolve": [ - { - "source": "npm:enhanced-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:enhanced-resolve", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:enquirer": [ - { - "source": "npm:enquirer", - "target": "npm:ansi-colors", - "type": "static" - } - ], - "npm:errno": [ - { - "source": "npm:errno", - "target": "npm:prr", - "type": "static" - } - ], - "npm:error-ex": [ - { - "source": "npm:error-ex", - "target": "npm:is-arrayish", - "type": "static" - } - ], - "npm:es-define-property": [ - { - "source": "npm:es-define-property", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:esbuild": [ - { - "source": "npm:esbuild", - "target": "npm:@esbuild/aix-ppc64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/android-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/darwin-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/freebsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ia32", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-loong64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-mips64el", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-ppc64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-riscv64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-s390x", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/linux-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/netbsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/openbsd-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/sunos-x64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-arm64", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-ia32", - "type": "static" - }, - { - "source": "npm:esbuild", - "target": "npm:@esbuild/win32-x64", - "type": "static" - } - ], - "npm:escodegen": [ - { - "source": "npm:escodegen", - "target": "npm:esprima", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:estraverse", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:escodegen", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:eslint": [ - { - "source": "npm:eslint", - "target": "npm:@eslint-community/eslint-utils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint-community/regexpp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/eslintrc", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@eslint/js", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/config-array", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@humanwhocodes/module-importer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:@ungap/structured-clone", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:doctrine", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:escape-string-regexp", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-scope@7.2.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esquery", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:esutils", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:fast-deep-equal", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:file-entry-cache", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:find-up@5.0.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:glob-parent@6.0.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:globals@13.24.0", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:graphemer", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:is-path-inside", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:json-stable-stringify-without-jsonify", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:lodash.merge", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:optionator", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:eslint", - "target": "npm:text-table", - "type": "static" - } - ], - "npm:eslint-config-prettier": [ - { - "source": "npm:eslint-config-prettier", - "target": "npm:eslint", - "type": "static" - } - ], - "npm:eslint-plugin-cypress": [ - { - "source": "npm:eslint-plugin-cypress", - "target": "npm:eslint", - "type": "static" - }, - { - "source": "npm:eslint-plugin-cypress", - "target": "npm:globals@13.24.0", - "type": "static" - } - ], - "npm:eslint-scope": [ - { - "source": "npm:eslint-scope", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:eslint-scope@7.2.2": [ - { - "source": "npm:eslint-scope@7.2.2", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@7.2.2", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:find-up@5.0.0": [ - { - "source": "npm:find-up@5.0.0", - "target": "npm:locate-path@6.0.0", - "type": "static" - }, - { - "source": "npm:find-up@5.0.0", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:locate-path@6.0.0": [ - { - "source": "npm:locate-path@6.0.0", - "target": "npm:p-locate@5.0.0", - "type": "static" - } - ], - "npm:p-locate@5.0.0": [ - { - "source": "npm:p-locate@5.0.0", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:espree": [ - { - "source": "npm:espree", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:acorn-jsx", - "type": "static" - }, - { - "source": "npm:espree", - "target": "npm:eslint-visitor-keys", - "type": "static" - } - ], - "npm:esquery": [ - { - "source": "npm:esquery", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:esrecurse": [ - { - "source": "npm:esrecurse", - "target": "npm:estraverse", - "type": "static" - } - ], - "npm:execa": [ - { - "source": "npm:execa", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:get-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:is-stream", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:npm-run-path@2.0.2", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:p-finally", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:execa", - "target": "npm:strip-eof", - "type": "static" - } - ], - "npm:cross-spawn@5.1.0": [ - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:lru-cache@4.1.5", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:shebang-command@1.2.0", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.3.1", - "type": "static" - }, - { - "source": "npm:cross-spawn@5.1.0", - "target": "npm:which@1.2.14", - "type": "static" - } - ], - "npm:lru-cache@4.1.5": [ - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:pseudomap", - "type": "static" - }, - { - "source": "npm:lru-cache@4.1.5", - "target": "npm:yallist@2.1.2", - "type": "static" - } - ], - "npm:npm-run-path@2.0.2": [ - { - "source": "npm:npm-run-path@2.0.2", - "target": "npm:path-key@2.0.1", - "type": "static" - } - ], - "npm:shebang-command@1.2.0": [ - { - "source": "npm:shebang-command@1.2.0", - "target": "npm:shebang-regex@1.0.0", - "type": "static" - } - ], - "npm:which@1.3.1": [ - { - "source": "npm:which@1.3.1", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:executable": [ - { - "source": "npm:executable", - "target": "npm:pify", - "type": "static" - } - ], - "npm:expand-tilde": [ - { - "source": "npm:expand-tilde", - "target": "npm:homedir-polyfill", - "type": "static" - } - ], - "npm:expect": [ - { - "source": "npm:expect", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:expect", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:express": [ - { - "source": "npm:express", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:array-flatten", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:body-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie@0.5.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:cookie-signature", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:finalhandler@1.2.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:merge-descriptors", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:methods", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:path-to-regexp", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:proxy-addr", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:qs@6.11.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:send@0.18.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:serve-static@1.15.0", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:utils-merge", - "type": "static" - }, - { - "source": "npm:express", - "target": "npm:vary", - "type": "static" - } - ], - "npm:ext-list": [ - { - "source": "npm:ext-list", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:ext-name": [ - { - "source": "npm:ext-name", - "target": "npm:ext-list", - "type": "static" - }, - { - "source": "npm:ext-name", - "target": "npm:sort-keys-length", - "type": "static" - } - ], - "npm:external-editor": [ - { - "source": "npm:external-editor", - "target": "npm:chardet", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:external-editor", - "target": "npm:tmp@0.0.33", - "type": "static" - } - ], - "npm:tmp@0.0.33": [ - { - "source": "npm:tmp@0.0.33", - "target": "npm:os-tmpdir", - "type": "static" - } - ], - "npm:extract-zip": [ - { - "source": "npm:extract-zip", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:get-stream@5.2.0", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:yauzl", - "type": "static" - }, - { - "source": "npm:extract-zip", - "target": "npm:@types/yauzl", - "type": "static" - } - ], - "npm:fast-glob": [ - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.stat", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:@nodelib/fs.walk", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:glob-parent", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:fast-glob", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:fastq": [ - { - "source": "npm:fastq", - "target": "npm:reusify", - "type": "static" - } - ], - "npm:faye-websocket": [ - { - "source": "npm:faye-websocket", - "target": "npm:websocket-driver", - "type": "static" - } - ], - "npm:fb-watchman": [ - { - "source": "npm:fb-watchman", - "target": "npm:bser", - "type": "static" - } - ], - "npm:fd-slicer": [ - { - "source": "npm:fd-slicer", - "target": "npm:pend", - "type": "static" - } - ], - "npm:figures": [ - { - "source": "npm:figures", - "target": "npm:escape-string-regexp@1.0.5", - "type": "static" - } - ], - "npm:file-entry-cache": [ - { - "source": "npm:file-entry-cache", - "target": "npm:flat-cache", - "type": "static" - } - ], - "npm:file-type": [ - { - "source": "npm:file-type", - "target": "npm:readable-web-to-node-stream", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:strtok3", - "type": "static" - }, - { - "source": "npm:file-type", - "target": "npm:token-types", - "type": "static" - } - ], - "npm:filelist": [ - { - "source": "npm:filelist", - "target": "npm:minimatch@5.1.6", - "type": "static" - } - ], - "npm:filenamify": [ - { - "source": "npm:filenamify", - "target": "npm:filename-reserved-regex", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:strip-outer", - "type": "static" - }, - { - "source": "npm:filenamify", - "target": "npm:trim-repeated", - "type": "static" - } - ], - "npm:fill-range": [ - { - "source": "npm:fill-range", - "target": "npm:to-regex-range", - "type": "static" - } - ], - "npm:finalhandler": [ - { - "source": "npm:finalhandler", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:statuses", - "type": "static" - }, - { - "source": "npm:finalhandler", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:find-cache-dir": [ - { - "source": "npm:find-cache-dir", - "target": "npm:commondir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:find-cache-dir", - "target": "npm:pkg-dir", - "type": "static" - } - ], - "npm:find-file-up": [ - { - "source": "npm:find-file-up", - "target": "npm:resolve-dir", - "type": "static" - } - ], - "npm:find-pkg": [ - { - "source": "npm:find-pkg", - "target": "npm:find-file-up", - "type": "static" - } - ], - "npm:find-up": [ - { - "source": "npm:find-up", - "target": "npm:locate-path", - "type": "static" - }, - { - "source": "npm:find-up", - "target": "npm:path-exists", - "type": "static" - } - ], - "npm:find-versions": [ - { - "source": "npm:find-versions", - "target": "npm:semver-regex", - "type": "static" - } - ], - "npm:flat-cache": [ - { - "source": "npm:flat-cache", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:keyv", - "type": "static" - }, - { - "source": "npm:flat-cache", - "target": "npm:rimraf", - "type": "static" - } - ], - "npm:foreground-child": [ - { - "source": "npm:foreground-child", - "target": "npm:cross-spawn", - "type": "static" - }, - { - "source": "npm:foreground-child", - "target": "npm:signal-exit@4.1.0", - "type": "static" - } - ], - "npm:fork-ts-checker-webpack-plugin": [ - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:fs-extra@10.1.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:memfs", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:node-abort-controller", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:fork-ts-checker-webpack-plugin", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:ajv-keywords@3.5.2": [ - { - "source": "npm:ajv-keywords@3.5.2", - "target": "npm:ajv@6.12.6", - "type": "static" - } - ], - "npm:fs-extra@10.1.0": [ - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra@10.1.0", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:schema-utils@3.3.0": [ - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv@6.12.6", - "type": "static" - }, - { - "source": "npm:schema-utils@3.3.0", - "target": "npm:ajv-keywords@3.5.2", - "type": "static" - } - ], - "npm:form-data": [ - { - "source": "npm:form-data", - "target": "npm:asynckit", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:combined-stream", - "type": "static" - }, - { - "source": "npm:form-data", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:front-matter": [ - { - "source": "npm:front-matter", - "target": "npm:js-yaml@3.14.1", - "type": "static" - } - ], - "npm:fs-extra": [ - { - "source": "npm:fs-extra", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:jsonfile", - "type": "static" - }, - { - "source": "npm:fs-extra", - "target": "npm:universalify", - "type": "static" - } - ], - "npm:fs-minipass": [ - { - "source": "npm:fs-minipass", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:gauge": [ - { - "source": "npm:gauge", - "target": "npm:aproba", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:color-support", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:has-unicode", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:signal-exit", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:gauge", - "target": "npm:wide-align", - "type": "static" - } - ], - "npm:get-intrinsic": [ - { - "source": "npm:get-intrinsic", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-proto", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:has-symbols", - "type": "static" - }, - { - "source": "npm:get-intrinsic", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:getos": [ - { - "source": "npm:getos", - "target": "npm:async", - "type": "static" - } - ], - "npm:getpass": [ - { - "source": "npm:getpass", - "target": "npm:assert-plus", - "type": "static" - } - ], - "npm:glob": [ - { - "source": "npm:glob", - "target": "npm:fs.realpath", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:glob-parent": [ - { - "source": "npm:glob-parent", - "target": "npm:is-glob", - "type": "static" - } - ], - "npm:global-dirs": [ - { - "source": "npm:global-dirs", - "target": "npm:ini@2.0.0", - "type": "static" - } - ], - "npm:global-modules": [ - { - "source": "npm:global-modules", - "target": "npm:global-prefix", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-modules", - "target": "npm:resolve-dir", - "type": "static" - } - ], - "npm:global-prefix": [ - { - "source": "npm:global-prefix", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:homedir-polyfill", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:ini@1.3.8", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:is-windows", - "type": "static" - }, - { - "source": "npm:global-prefix", - "target": "npm:which@1.3.1", - "type": "static" - } - ], - "npm:globby": [ - { - "source": "npm:globby", - "target": "npm:array-union", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:dir-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:merge2", - "type": "static" - }, - { - "source": "npm:globby", - "target": "npm:slash", - "type": "static" - } - ], - "npm:gopd": [ - { - "source": "npm:gopd", - "target": "npm:get-intrinsic", - "type": "static" - } - ], - "npm:got": [ - { - "source": "npm:got", - "target": "npm:@sindresorhus/is", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@szmarczak/http-timer", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:@types/responselike", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-lookup", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:cacheable-request", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:decompress-response", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:http2-wrapper", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:lowercase-keys", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:p-cancelable", - "type": "static" - }, - { - "source": "npm:got", - "target": "npm:responselike", - "type": "static" - } - ], - "npm:handlebars": [ - { - "source": "npm:handlebars", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:source-map@0.6.1", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:wordwrap", - "type": "static" - }, - { - "source": "npm:handlebars", - "target": "npm:uglify-js", - "type": "static" - } - ], - "npm:has-property-descriptors": [ - { - "source": "npm:has-property-descriptors", - "target": "npm:es-define-property", - "type": "static" - } - ], - "npm:has-tostringtag": [ - { - "source": "npm:has-tostringtag", - "target": "npm:has-symbols", - "type": "static" - } - ], - "npm:hasown": [ - { - "source": "npm:hasown", - "target": "npm:function-bind", - "type": "static" - } - ], - "npm:homedir-polyfill": [ - { - "source": "npm:homedir-polyfill", - "target": "npm:parse-passwd", - "type": "static" - } - ], - "npm:hosted-git-info": [ - { - "source": "npm:hosted-git-info", - "target": "npm:lru-cache@10.2.0", - "type": "static" - } - ], - "npm:hpack.js": [ - { - "source": "npm:hpack.js", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:readable-stream@2.3.8", - "type": "static" - }, - { - "source": "npm:hpack.js", - "target": "npm:wbuf", - "type": "static" - } - ], - "npm:html-encoding-sniffer": [ - { - "source": "npm:html-encoding-sniffer", - "target": "npm:whatwg-encoding", - "type": "static" - } - ], - "npm:htmlparser2": [ - { - "source": "npm:htmlparser2", - "target": "npm:domelementtype", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domhandler", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:domutils", - "type": "static" - }, - { - "source": "npm:htmlparser2", - "target": "npm:entities", - "type": "static" - } - ], - "npm:http-assert": [ - { - "source": "npm:http-assert", - "target": "npm:deep-equal", - "type": "static" - }, - { - "source": "npm:http-assert", - "target": "npm:http-errors@1.8.1", - "type": "static" - } - ], - "npm:http-errors@1.8.1": [ - { - "source": "npm:http-errors@1.8.1", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.8.1", - "target": "npm:toidentifier", - "type": "static" - } - ], - "npm:http-errors": [ - { - "source": "npm:http-errors", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:setprototypeof", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:statuses@2.0.1", - "type": "static" - }, - { - "source": "npm:http-errors", - "target": "npm:toidentifier", - "type": "static" - } - ], - "npm:http-proxy": [ - { - "source": "npm:http-proxy", - "target": "npm:eventemitter3", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:follow-redirects", - "type": "static" - }, - { - "source": "npm:http-proxy", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:http-proxy-agent": [ - { - "source": "npm:http-proxy-agent", - "target": "npm:@tootallnate/once", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:http-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:agent-base@6.0.2": [ - { - "source": "npm:agent-base@6.0.2", - "target": "npm:debug", - "type": "static" - } - ], - "npm:http-proxy-middleware": [ - { - "source": "npm:http-proxy-middleware", - "target": "npm:@types/http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-glob", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:is-plain-obj", - "type": "static" - }, - { - "source": "npm:http-proxy-middleware", - "target": "npm:micromatch", - "type": "static" - } - ], - "npm:http-server": [ - { - "source": "npm:http-server", - "target": "npm:basic-auth", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:corser", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:he", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:http-proxy", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:opener", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:portfinder", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:secure-compare", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:union", - "type": "static" - }, - { - "source": "npm:http-server", - "target": "npm:url-join", - "type": "static" - } - ], - "npm:http-signature": [ - { - "source": "npm:http-signature", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:jsprim", - "type": "static" - }, - { - "source": "npm:http-signature", - "target": "npm:sshpk", - "type": "static" - } - ], - "npm:http2-wrapper": [ - { - "source": "npm:http2-wrapper", - "target": "npm:quick-lru", - "type": "static" - }, - { - "source": "npm:http2-wrapper", - "target": "npm:resolve-alpn", - "type": "static" - } - ], - "npm:https-proxy-agent": [ - { - "source": "npm:https-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:https-proxy-agent", - "target": "npm:debug", - "type": "static" - } - ], - "npm:iconv-lite": [ - { - "source": "npm:iconv-lite", - "target": "npm:safer-buffer", - "type": "static" - } - ], - "npm:icss-utils": [ - { - "source": "npm:icss-utils", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:identity-obj-proxy": [ - { - "source": "npm:identity-obj-proxy", - "target": "npm:harmony-reflect", - "type": "static" - } - ], - "npm:ignore-walk": [ - { - "source": "npm:ignore-walk", - "target": "npm:minimatch", - "type": "static" - } - ], - "npm:import-fresh": [ - { - "source": "npm:import-fresh", - "target": "npm:parent-module", - "type": "static" - }, - { - "source": "npm:import-fresh", - "target": "npm:resolve-from@4.0.0", - "type": "static" - } - ], - "npm:import-local": [ - { - "source": "npm:import-local", - "target": "npm:pkg-dir", - "type": "static" - }, - { - "source": "npm:import-local", - "target": "npm:resolve-cwd", - "type": "static" - } - ], - "npm:inflight": [ - { - "source": "npm:inflight", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:inflight", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:injection-js": [ - { - "source": "npm:injection-js", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:ip-address": [ - { - "source": "npm:ip-address", - "target": "npm:jsbn", - "type": "static" - }, - { - "source": "npm:ip-address", - "target": "npm:sprintf-js@1.1.3", - "type": "static" - } - ], - "npm:is-binary-path": [ - { - "source": "npm:is-binary-path", - "target": "npm:binary-extensions", - "type": "static" - } - ], - "npm:is-builtin-module": [ - { - "source": "npm:is-builtin-module", - "target": "npm:builtin-modules", - "type": "static" - } - ], - "npm:is-ci": [ - { - "source": "npm:is-ci", - "target": "npm:ci-info", - "type": "static" - } - ], - "npm:is-core-module": [ - { - "source": "npm:is-core-module", - "target": "npm:hasown", - "type": "static" - } - ], - "npm:is-generator-function": [ - { - "source": "npm:is-generator-function", - "target": "npm:has-tostringtag", - "type": "static" - } - ], - "npm:is-glob": [ - { - "source": "npm:is-glob", - "target": "npm:is-extglob", - "type": "static" - } - ], - "npm:is-inside-container": [ - { - "source": "npm:is-inside-container", - "target": "npm:is-docker@3.0.0", - "type": "static" - } - ], - "npm:is-installed-globally": [ - { - "source": "npm:is-installed-globally", - "target": "npm:global-dirs", - "type": "static" - }, - { - "source": "npm:is-installed-globally", - "target": "npm:is-path-inside", - "type": "static" - } - ], - "npm:is-number-like": [ - { - "source": "npm:is-number-like", - "target": "npm:lodash.isfinite", - "type": "static" - } - ], - "npm:is-plain-object": [ - { - "source": "npm:is-plain-object", - "target": "npm:isobject", - "type": "static" - } - ], - "npm:is-reference": [ - { - "source": "npm:is-reference", - "target": "npm:@types/estree", - "type": "static" - } - ], - "npm:is-wsl": [ - { - "source": "npm:is-wsl", - "target": "npm:is-docker", - "type": "static" - } - ], - "npm:isomorphic-ws": [ - { - "source": "npm:isomorphic-ws", - "target": "npm:ws", - "type": "static" - } - ], - "npm:istanbul-lib-instrument": [ - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@babel/parser", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-instrument", - "target": "npm:semver", - "type": "static" - } - ], - "npm:istanbul-lib-report": [ - { - "source": "npm:istanbul-lib-report", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:make-dir@4.0.0", - "type": "static" - }, - { - "source": "npm:istanbul-lib-report", - "target": "npm:supports-color@7.2.0", - "type": "static" - } - ], - "npm:make-dir@4.0.0": [ - { - "source": "npm:make-dir@4.0.0", - "target": "npm:semver", - "type": "static" - } - ], - "npm:istanbul-lib-source-maps": [ - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:istanbul-lib-source-maps", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:istanbul-reports": [ - { - "source": "npm:istanbul-reports", - "target": "npm:html-escaper", - "type": "static" - }, - { - "source": "npm:istanbul-reports", - "target": "npm:istanbul-lib-report", - "type": "static" - } - ], - "npm:jackspeak": [ - { - "source": "npm:jackspeak", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak", - "target": "npm:@pkgjs/parseargs", - "type": "static" - } - ], - "npm:jake": [ - { - "source": "npm:jake", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:filelist", - "type": "static" - }, - { - "source": "npm:jake", - "target": "npm:minimatch@3.1.2", - "type": "static" - } - ], - "npm:jest": [ - { - "source": "npm:jest", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest", - "target": "npm:jest-cli", - "type": "static" - } - ], - "npm:jest-changed-files": [ - { - "source": "npm:jest-changed-files", - "target": "npm:execa@5.1.1", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-changed-files", - "target": "npm:p-limit", - "type": "static" - } - ], - "npm:jest-circus": [ - { - "source": "npm:jest-circus", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/expect", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:dedent@1.5.1", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:is-generator-fn", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-each", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:pure-rand", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-circus", - "target": "npm:stack-utils", - "type": "static" - } - ], - "npm:babel-plugin-macros@3.1.0": [ - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:cosmiconfig@7.1.0", - "type": "static" - }, - { - "source": "npm:babel-plugin-macros@3.1.0", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:dedent@1.5.1": [ - { - "source": "npm:dedent@1.5.1", - "target": "npm:babel-plugin-macros@3.1.0", - "type": "static" - } - ], - "npm:jest-cli": [ - { - "source": "npm:jest-cli", - "target": "npm:@jest/core", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:create-jest", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:exit", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:import-local", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-config", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-cli", - "target": "npm:yargs", - "type": "static" - } - ], - "npm:jest-config": [ - { - "source": "npm:jest-config", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ts-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/test-sequencer", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:deepmerge", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-circus", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-runner", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:parse-json", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-config", - "target": "npm:strip-json-comments", - "type": "static" - } - ], - "npm:jest-diff": [ - { - "source": "npm:jest-diff", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:diff-sequences", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-diff", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-docblock": [ - { - "source": "npm:jest-docblock", - "target": "npm:detect-newline", - "type": "static" - } - ], - "npm:jest-each": [ - { - "source": "npm:jest-each", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-each", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-environment-jsdom": [ - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/jsdom", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-environment-jsdom", - "target": "npm:jsdom", - "type": "static" - } - ], - "npm:jest-environment-node": [ - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-environment-node", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-haste-map": [ - { - "source": "npm:jest-haste-map", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:anymatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fb-watchman", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:walker", - "type": "static" - }, - { - "source": "npm:jest-haste-map", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:jest-leak-detector": [ - { - "source": "npm:jest-leak-detector", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-leak-detector", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-matcher-utils": [ - { - "source": "npm:jest-matcher-utils", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-matcher-utils", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-message-util": [ - { - "source": "npm:jest-message-util", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:@types/stack-utils", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-message-util", - "target": "npm:stack-utils", - "type": "static" - } - ], - "npm:jest-mock": [ - { - "source": "npm:jest-mock", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-mock", - "target": "npm:jest-util", - "type": "static" - } - ], - "npm:jest-pnp-resolver": [ - { - "source": "npm:jest-pnp-resolver", - "target": "npm:jest-resolve", - "type": "static" - } - ], - "npm:jest-preset-angular": [ - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular-devkit/build-angular", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/core", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:@angular/platform-browser-dynamic", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:esbuild-wasm", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest-environment-jsdom", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:ts-jest", - "type": "static" - }, - { - "source": "npm:jest-preset-angular", - "target": "npm:esbuild", - "type": "static" - } - ], - "npm:jest-resolve": [ - { - "source": "npm:jest-resolve", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-pnp-resolver", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:jest-validate", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:resolve.exports@2.0.2", - "type": "static" - }, - { - "source": "npm:jest-resolve", - "target": "npm:slash", - "type": "static" - } - ], - "npm:jest-resolve-dependencies": [ - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-resolve-dependencies", - "target": "npm:jest-snapshot", - "type": "static" - } - ], - "npm:jest-runner": [ - { - "source": "npm:jest-runner", - "target": "npm:@jest/console", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-docblock", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-environment-node", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-leak-detector", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-runtime", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-watcher", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:jest-worker", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:p-limit", - "type": "static" - }, - { - "source": "npm:jest-runner", - "target": "npm:source-map-support@0.5.13", - "type": "static" - } - ], - "npm:source-map-support@0.5.13": [ - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support@0.5.13", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:jest-runtime": [ - { - "source": "npm:jest-runtime", - "target": "npm:@jest/environment", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/fake-timers", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/globals", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/source-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:cjs-module-lexer", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:collect-v8-coverage", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-haste-map", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-mock", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-regex-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-resolve", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-snapshot", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:slash", - "type": "static" - }, - { - "source": "npm:jest-runtime", - "target": "npm:strip-bom", - "type": "static" - } - ], - "npm:jest-snapshot": [ - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/generator", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-jsx", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/plugin-syntax-typescript", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@babel/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/expect-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/transform", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:babel-preset-current-node-syntax", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:expect", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-matcher-utils", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-message-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:natural-compare", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:pretty-format", - "type": "static" - }, - { - "source": "npm:jest-snapshot", - "target": "npm:semver", - "type": "static" - } - ], - "npm:jest-util": [ - { - "source": "npm:jest-util", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:ci-info", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:jest-util", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:jest-validate": [ - { - "source": "npm:jest-validate", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:camelcase@6.3.0", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:jest-get-type", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:leven", - "type": "static" - }, - { - "source": "npm:jest-validate", - "target": "npm:pretty-format", - "type": "static" - } - ], - "npm:jest-watcher": [ - { - "source": "npm:jest-watcher", - "target": "npm:@jest/test-result", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:emittery", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-watcher", - "target": "npm:string-length", - "type": "static" - } - ], - "npm:jest-worker": [ - { - "source": "npm:jest-worker", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:js-yaml": [ - { - "source": "npm:js-yaml", - "target": "npm:argparse", - "type": "static" - } - ], - "npm:jsdom": [ - { - "source": "npm:jsdom", - "target": "npm:abab", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:acorn-globals", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssom", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:cssstyle", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:data-urls", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:decimal.js", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:domexception", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:escodegen", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:form-data@4.0.0", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:html-encoding-sniffer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:http-proxy-agent", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:https-proxy-agent@5.0.1", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:is-potential-custom-element-name", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:nwsapi", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:parse5@7.1.2", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:saxes", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:symbol-tree", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:tough-cookie", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:w3c-xmlserializer", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:webidl-conversions", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-encoding", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-mimetype", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:whatwg-url", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:ws", - "type": "static" - }, - { - "source": "npm:jsdom", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:https-proxy-agent@5.0.1": [ - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:agent-base@6.0.2", - "type": "static" - }, - { - "source": "npm:https-proxy-agent@5.0.1", - "target": "npm:debug", - "type": "static" - } - ], - "npm:jsonc-eslint-parser": [ - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:eslint-visitor-keys", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:espree", - "type": "static" - }, - { - "source": "npm:jsonc-eslint-parser", - "target": "npm:semver", - "type": "static" - } - ], - "npm:jsonfile": [ - { - "source": "npm:jsonfile", - "target": "npm:universalify", - "type": "static" - }, - { - "source": "npm:jsonfile", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:JSONStream": [ - { - "source": "npm:JSONStream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:JSONStream", - "target": "npm:through", - "type": "static" - } - ], - "npm:jsonwebtoken": [ - { - "source": "npm:jsonwebtoken", - "target": "npm:jws", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.includes", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isboolean", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isinteger", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isnumber", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isplainobject", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.isstring", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:lodash.once", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:ms", - "type": "static" - }, - { - "source": "npm:jsonwebtoken", - "target": "npm:semver", - "type": "static" - } - ], - "npm:jsprim": [ - { - "source": "npm:jsprim", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:extsprintf", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:json-schema", - "type": "static" - }, - { - "source": "npm:jsprim", - "target": "npm:verror", - "type": "static" - } - ], - "npm:jwa": [ - { - "source": "npm:jwa", - "target": "npm:buffer-equal-constant-time", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:ecdsa-sig-formatter", - "type": "static" - }, - { - "source": "npm:jwa", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:jws": [ - { - "source": "npm:jws", - "target": "npm:jwa", - "type": "static" - }, - { - "source": "npm:jws", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:karma-source-map-support": [ - { - "source": "npm:karma-source-map-support", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:keygrip": [ - { - "source": "npm:keygrip", - "target": "npm:tsscmp", - "type": "static" - } - ], - "npm:keyv": [ - { - "source": "npm:keyv", - "target": "npm:json-buffer", - "type": "static" - } - ], - "npm:koa": [ - { - "source": "npm:koa", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:cache-content-type", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:content-disposition", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:content-type", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:cookies@0.8.0", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:debug@3.1.0", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:delegates", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:error-inject", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:http-assert", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:http-errors@1.8.1", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:is-generator-function", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:koa-compose", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:koa-convert", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:only", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:statuses@1.5.0", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:type-is", - "type": "static" - }, - { - "source": "npm:koa", - "target": "npm:vary", - "type": "static" - } - ], - "npm:koa-convert": [ - { - "source": "npm:koa-convert", - "target": "npm:co", - "type": "static" - }, - { - "source": "npm:koa-convert", - "target": "npm:koa-compose@3.2.1", - "type": "static" - } - ], - "npm:koa-compose@3.2.1": [ - { - "source": "npm:koa-compose@3.2.1", - "target": "npm:any-promise", - "type": "static" - } - ], - "npm:cookies@0.8.0": [ - { - "source": "npm:cookies@0.8.0", - "target": "npm:depd", - "type": "static" - }, - { - "source": "npm:cookies@0.8.0", - "target": "npm:keygrip", - "type": "static" - } - ], - "npm:debug@3.1.0": [ - { - "source": "npm:debug@3.1.0", - "target": "npm:ms@2.0.0", - "type": "static" - } - ], - "npm:launch-editor": [ - { - "source": "npm:launch-editor", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:launch-editor", - "target": "npm:shell-quote", - "type": "static" - } - ], - "npm:less": [ - { - "source": "npm:less", - "target": "npm:copy-anything", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:parse-node-version", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:errno", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:image-size", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:make-dir@2.1.0", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:mime", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:needle", - "type": "static" - }, - { - "source": "npm:less", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:less-loader": [ - { - "source": "npm:less-loader", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:less-loader", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:levn": [ - { - "source": "npm:levn", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:levn", - "target": "npm:type-check", - "type": "static" - } - ], - "npm:license-webpack-plugin": [ - { - "source": "npm:license-webpack-plugin", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:listr2": [ - { - "source": "npm:listr2", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:cli-truncate", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:log-update", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:p-map", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:through", - "type": "static" - }, - { - "source": "npm:listr2", - "target": "npm:wrap-ansi@7.0.0", - "type": "static" - } - ], - "npm:lmdb": [ - { - "source": "npm:lmdb", - "target": "npm:msgpackr", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:node-addon-api", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:node-gyp-build-optional-packages", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:ordered-binary", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:weak-lru-cache", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-darwin-arm64", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-darwin-x64", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-linux-arm", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-linux-arm64", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-linux-x64", - "type": "static" - }, - { - "source": "npm:lmdb", - "target": "npm:@lmdb/lmdb-win32-x64", - "type": "static" - } - ], - "npm:locate-path": [ - { - "source": "npm:locate-path", - "target": "npm:p-locate", - "type": "static" - } - ], - "npm:lockfile": [ - { - "source": "npm:lockfile", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:log-symbols": [ - { - "source": "npm:log-symbols", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:log-symbols", - "target": "npm:is-unicode-supported", - "type": "static" - } - ], - "npm:log-update": [ - { - "source": "npm:log-update", - "target": "npm:ansi-escapes", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:slice-ansi@4.0.0", - "type": "static" - }, - { - "source": "npm:log-update", - "target": "npm:wrap-ansi", - "type": "static" - } - ], - "npm:slice-ansi@4.0.0": [ - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi@4.0.0", - "target": "npm:is-fullwidth-code-point", - "type": "static" - } - ], - "npm:log4js": [ - { - "source": "npm:log4js", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:flatted", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:rfdc", - "type": "static" - }, - { - "source": "npm:log4js", - "target": "npm:streamroller", - "type": "static" - } - ], - "npm:lowdb": [ - { - "source": "npm:lowdb", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:is-promise", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:pify@3.0.0", - "type": "static" - }, - { - "source": "npm:lowdb", - "target": "npm:steno", - "type": "static" - } - ], - "npm:lru-cache": [ - { - "source": "npm:lru-cache", - "target": "npm:yallist", - "type": "static" - } - ], - "npm:magic-string": [ - { - "source": "npm:magic-string", - "target": "npm:@jridgewell/sourcemap-codec", - "type": "static" - } - ], - "npm:make-dir": [ - { - "source": "npm:make-dir", - "target": "npm:semver@6.3.1", - "type": "static" - } - ], - "npm:make-fetch-happen": [ - { - "source": "npm:make-fetch-happen", - "target": "npm:@npmcli/agent", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:http-cache-semantics", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:is-lambda", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-flush", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:minipass-pipeline", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:negotiator", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:make-fetch-happen", - "target": "npm:ssri", - "type": "static" - } - ], - "npm:makeerror": [ - { - "source": "npm:makeerror", - "target": "npm:tmpl", - "type": "static" - } - ], - "npm:memfs": [ - { - "source": "npm:memfs", - "target": "npm:fs-monkey", - "type": "static" - } - ], - "npm:micromatch": [ - { - "source": "npm:micromatch", - "target": "npm:braces", - "type": "static" - }, - { - "source": "npm:micromatch", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:mime-types": [ - { - "source": "npm:mime-types", - "target": "npm:mime-db", - "type": "static" - } - ], - "npm:mini-css-extract-plugin": [ - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:mini-css-extract-plugin", - "target": "npm:tapable", - "type": "static" - } - ], - "npm:minimatch": [ - { - "source": "npm:minimatch", - "target": "npm:brace-expansion", - "type": "static" - } - ], - "npm:minipass-collect": [ - { - "source": "npm:minipass-collect", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:minipass-fetch": [ - { - "source": "npm:minipass-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minipass-sized", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:minipass-fetch", - "target": "npm:encoding", - "type": "static" - } - ], - "npm:minipass-flush": [ - { - "source": "npm:minipass-flush", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass@3.3.6": [ - { - "source": "npm:minipass@3.3.6", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:minipass-json-stream": [ - { - "source": "npm:minipass-json-stream", - "target": "npm:jsonparse", - "type": "static" - }, - { - "source": "npm:minipass-json-stream", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass-pipeline": [ - { - "source": "npm:minipass-pipeline", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minipass-sized": [ - { - "source": "npm:minipass-sized", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:minizlib": [ - { - "source": "npm:minizlib", - "target": "npm:minipass@3.3.6", - "type": "static" - }, - { - "source": "npm:minizlib", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:mkdirp": [ - { - "source": "npm:mkdirp", - "target": "npm:minimist", - "type": "static" - } - ], - "npm:msgpackr": [ - { - "source": "npm:msgpackr", - "target": "npm:msgpackr-extract", - "type": "static" - } - ], - "npm:msgpackr-extract": [ - { - "source": "npm:msgpackr-extract", - "target": "npm:node-gyp-build-optional-packages", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-darwin-arm64", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-darwin-x64", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-linux-arm", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-linux-arm64", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-linux-x64", - "type": "static" - }, - { - "source": "npm:msgpackr-extract", - "target": "npm:@msgpackr-extract/msgpackr-extract-win32-x64", - "type": "static" - } - ], - "npm:multicast-dns": [ - { - "source": "npm:multicast-dns", - "target": "npm:dns-packet", - "type": "static" - }, - { - "source": "npm:multicast-dns", - "target": "npm:thunky", - "type": "static" - } - ], - "npm:mv": [ - { - "source": "npm:mv", - "target": "npm:mkdirp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:ncp", - "type": "static" - }, - { - "source": "npm:mv", - "target": "npm:rimraf@2.4.5", - "type": "static" - } - ], - "npm:glob@6.0.4": [ - { - "source": "npm:glob@6.0.4", - "target": "npm:inflight", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:minimatch@3.1.2", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:once", - "type": "static" - }, - { - "source": "npm:glob@6.0.4", - "target": "npm:path-is-absolute", - "type": "static" - } - ], - "npm:rimraf@2.4.5": [ - { - "source": "npm:rimraf@2.4.5", - "target": "npm:glob@6.0.4", - "type": "static" - } - ], - "npm:needle": [ - { - "source": "npm:needle", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:needle", - "target": "npm:sax", - "type": "static" - } - ], - "npm:ng-packagr": [ - { - "source": "npm:ng-packagr", - "target": "npm:@angular/compiler-cli", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:@rollup/plugin-json", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:@rollup/plugin-node-resolve", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:@rollup/wasm-node", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:ansi-colors", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:commander@12.1.0", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:dependency-graph", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:esbuild@0.23.0", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:find-cache-dir", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:injection-js", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:ora", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:piscina", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:rxjs", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:ng-packagr", - "target": "npm:rollup@4.18.0", - "type": "static" - } - ], - "npm:esbuild@0.23.0": [ - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/aix-ppc64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/android-arm@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/android-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/android-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/darwin-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/darwin-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/freebsd-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/freebsd-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-arm@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-ia32@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-loong64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-mips64el@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-ppc64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-riscv64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-s390x@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/linux-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/netbsd-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/openbsd-arm64", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/openbsd-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/sunos-x64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/win32-arm64@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/win32-ia32@0.23.0", - "type": "static" - }, - { - "source": "npm:esbuild@0.23.0", - "target": "npm:@esbuild/win32-x64@0.23.0", - "type": "static" - } - ], - "npm:nice-napi": [ - { - "source": "npm:nice-napi", - "target": "npm:node-addon-api@3.2.1", - "type": "static" - }, - { - "source": "npm:nice-napi", - "target": "npm:node-gyp-build", - "type": "static" - } - ], - "npm:node-fetch": [ - { - "source": "npm:node-fetch", - "target": "npm:encoding", - "type": "static" - }, - { - "source": "npm:node-fetch", - "target": "npm:whatwg-url@5.0.0", - "type": "static" - } - ], - "npm:whatwg-url@5.0.0": [ - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:tr46@0.0.3", - "type": "static" - }, - { - "source": "npm:whatwg-url@5.0.0", - "target": "npm:webidl-conversions@3.0.1", - "type": "static" - } - ], - "npm:node-gyp": [ - { - "source": "npm:node-gyp", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:exponential-backoff", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:glob@10.4.1", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:nopt", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:tar", - "type": "static" - }, - { - "source": "npm:node-gyp", - "target": "npm:which@4.0.0", - "type": "static" - } - ], - "npm:node-gyp-build-optional-packages": [ - { - "source": "npm:node-gyp-build-optional-packages", - "target": "npm:detect-libc", - "type": "static" - } - ], - "npm:node-schedule": [ - { - "source": "npm:node-schedule", - "target": "npm:cron-parser", - "type": "static" - }, - { - "source": "npm:node-schedule", - "target": "npm:long-timeout", - "type": "static" - }, - { - "source": "npm:node-schedule", - "target": "npm:sorted-array-functions", - "type": "static" - } - ], - "npm:nopt": [ - { - "source": "npm:nopt", - "target": "npm:abbrev", - "type": "static" - } - ], - "npm:normalize-package-data": [ - { - "source": "npm:normalize-package-data", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:normalize-package-data", - "target": "npm:validate-npm-package-license", - "type": "static" - } - ], - "npm:npm-bundled": [ - { - "source": "npm:npm-bundled", - "target": "npm:npm-normalize-package-bin", - "type": "static" - } - ], - "npm:npm-install-checks": [ - { - "source": "npm:npm-install-checks", - "target": "npm:semver", - "type": "static" - } - ], - "npm:npm-package-arg": [ - { - "source": "npm:npm-package-arg", - "target": "npm:hosted-git-info", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:proc-log", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:npm-package-arg", - "target": "npm:validate-npm-package-name", - "type": "static" - } - ], - "npm:npm-packlist": [ - { - "source": "npm:npm-packlist", - "target": "npm:ignore-walk", - "type": "static" - } - ], - "npm:npm-pick-manifest": [ - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-install-checks", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-normalize-package-bin", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-pick-manifest", - "target": "npm:semver", - "type": "static" - } - ], - "npm:npm-registry-fetch": [ - { - "source": "npm:npm-registry-fetch", - "target": "npm:@npmcli/redact", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:make-fetch-happen", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-fetch", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minipass-json-stream", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:npm-registry-fetch", - "target": "npm:proc-log@4.2.0", - "type": "static" - } - ], - "npm:npm-run-path": [ - { - "source": "npm:npm-run-path", - "target": "npm:path-key", - "type": "static" - } - ], - "npm:npmlog": [ - { - "source": "npm:npmlog", - "target": "npm:are-we-there-yet", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:console-control-strings", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:gauge", - "type": "static" - }, - { - "source": "npm:npmlog", - "target": "npm:set-blocking", - "type": "static" - } - ], - "npm:nth-check": [ - { - "source": "npm:nth-check", - "target": "npm:boolbase", - "type": "static" - } - ], - "npm:nx": [ - { - "source": "npm:nx", - "target": "npm:@swc-node/register", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@napi-rs/wasm-runtime", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nrwl/tao", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/lockfile", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@yarnpkg/parsers", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@zkochan/js-yaml", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:axios", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv@16.4.5", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:dotenv-expand", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:enquirer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:figures", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:front-matter", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:fs-extra", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ignore", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jest-diff", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:jsonc-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:lines-and-columns", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:minimatch", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:node-machine-id", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:npm-run-path", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:open", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:ora@5.3.0", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:strong-log-transformer", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tar-stream", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tmp", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tsconfig-paths", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:tslib", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:yargs-parser", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-arm64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-darwin-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-freebsd-x64", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm-gnueabihf", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-arm64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-gnu", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-linux-x64-musl", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-arm64-msvc", - "type": "static" - }, - { - "source": "npm:nx", - "target": "npm:@nx/nx-win32-x64-msvc", - "type": "static" - } - ], - "npm:on-finished": [ - { - "source": "npm:on-finished", - "target": "npm:ee-first", - "type": "static" - } - ], - "npm:once": [ - { - "source": "npm:once", - "target": "npm:wrappy", - "type": "static" - } - ], - "npm:onetime": [ - { - "source": "npm:onetime", - "target": "npm:mimic-fn", - "type": "static" - } - ], - "npm:open": [ - { - "source": "npm:open", - "target": "npm:define-lazy-prop", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-docker", - "type": "static" - }, - { - "source": "npm:open", - "target": "npm:is-wsl", - "type": "static" - } - ], - "npm:opn": [ - { - "source": "npm:opn", - "target": "npm:is-wsl@1.1.0", - "type": "static" - } - ], - "npm:optionator": [ - { - "source": "npm:optionator", - "target": "npm:deep-is", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:fast-levenshtein", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:levn", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:prelude-ls", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:type-check", - "type": "static" - }, - { - "source": "npm:optionator", - "target": "npm:word-wrap", - "type": "static" - } - ], - "npm:ora": [ - { - "source": "npm:ora", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-cursor", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:cli-spinners", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-interactive", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:is-unicode-supported", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:log-symbols", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:strip-ansi", - "type": "static" - }, - { - "source": "npm:ora", - "target": "npm:wcwidth", - "type": "static" - } - ], - "npm:os-filter-obj": [ - { - "source": "npm:os-filter-obj", - "target": "npm:arch", - "type": "static" - } - ], - "npm:p-limit": [ - { - "source": "npm:p-limit", - "target": "npm:yocto-queue", - "type": "static" - } - ], - "npm:p-locate": [ - { - "source": "npm:p-locate", - "target": "npm:p-limit@2.3.0", - "type": "static" - } - ], - "npm:p-limit@2.3.0": [ - { - "source": "npm:p-limit@2.3.0", - "target": "npm:p-try", - "type": "static" - } - ], - "npm:p-map": [ - { - "source": "npm:p-map", - "target": "npm:aggregate-error", - "type": "static" - } - ], - "npm:p-retry": [ - { - "source": "npm:p-retry", - "target": "npm:@types/retry", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:is-network-error", - "type": "static" - }, - { - "source": "npm:p-retry", - "target": "npm:retry@0.13.1", - "type": "static" - } - ], - "npm:pacote": [ - { - "source": "npm:pacote", - "target": "npm:@npmcli/git", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/installed-package-contents", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/package-json", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/promise-spawn", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:@npmcli/run-script", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:cacache", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:fs-minipass", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-package-arg", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-packlist", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-pick-manifest", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:npm-registry-fetch", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:proc-log@4.2.0", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:promise-retry", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:sigstore", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:ssri", - "type": "static" - }, - { - "source": "npm:pacote", - "target": "npm:tar", - "type": "static" - } - ], - "npm:parent-module": [ - { - "source": "npm:parent-module", - "target": "npm:callsites", - "type": "static" - } - ], - "npm:parse-json": [ - { - "source": "npm:parse-json", - "target": "npm:@babel/code-frame", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:error-ex", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:json-parse-even-better-errors@2.3.1", - "type": "static" - }, - { - "source": "npm:parse-json", - "target": "npm:lines-and-columns@1.2.4", - "type": "static" - } - ], - "npm:parse5-html-rewriting-stream": [ - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:entities", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:parse5@7.1.2", - "type": "static" - }, - { - "source": "npm:parse5-html-rewriting-stream", - "target": "npm:parse5-sax-parser", - "type": "static" - } - ], - "npm:parse5-sax-parser": [ - { - "source": "npm:parse5-sax-parser", - "target": "npm:parse5@7.1.2", - "type": "static" - } - ], - "npm:path-scurry": [ - { - "source": "npm:path-scurry", - "target": "npm:lru-cache@10.2.0", - "type": "static" - }, - { - "source": "npm:path-scurry", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:pino": [ - { - "source": "npm:pino", - "target": "npm:atomic-sleep", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:fast-redact", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:on-exit-leak-free", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-abstract-transport@0.5.0", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:pino-std-serializers", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:process-warning", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:quick-format-unescaped", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:real-require", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:safe-stable-stringify", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:sonic-boom@2.8.0", - "type": "static" - }, - { - "source": "npm:pino", - "target": "npm:thread-stream", - "type": "static" - } - ], - "npm:pino-abstract-transport": [ - { - "source": "npm:pino-abstract-transport", - "target": "npm:readable-stream@4.5.2", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport", - "target": "npm:split2", - "type": "static" - } - ], - "npm:buffer@6.0.3": [ - { - "source": "npm:buffer@6.0.3", - "target": "npm:base64-js", - "type": "static" - }, - { - "source": "npm:buffer@6.0.3", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:readable-stream@4.5.2": [ - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:abort-controller", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:buffer@6.0.3", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:process", - "type": "static" - }, - { - "source": "npm:readable-stream@4.5.2", - "target": "npm:string_decoder", - "type": "static" - } - ], - "npm:pino-abstract-transport@0.5.0": [ - { - "source": "npm:pino-abstract-transport@0.5.0", - "target": "npm:duplexify", - "type": "static" - }, - { - "source": "npm:pino-abstract-transport@0.5.0", - "target": "npm:split2", - "type": "static" - } - ], - "npm:sonic-boom@2.8.0": [ - { - "source": "npm:sonic-boom@2.8.0", - "target": "npm:atomic-sleep", - "type": "static" - } - ], - "npm:piscina": [ - { - "source": "npm:piscina", - "target": "npm:nice-napi", - "type": "static" - } - ], - "npm:pkg-dir": [ - { - "source": "npm:pkg-dir", - "target": "npm:find-up", - "type": "static" - } - ], - "npm:portfinder": [ - { - "source": "npm:portfinder", - "target": "npm:async@2.6.4", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:debug@3.2.7", - "type": "static" - }, - { - "source": "npm:portfinder", - "target": "npm:mkdirp", - "type": "static" - } - ], - "npm:async@2.6.4": [ - { - "source": "npm:async@2.6.4", - "target": "npm:lodash", - "type": "static" - } - ], - "npm:portscanner": [ - { - "source": "npm:portscanner", - "target": "npm:async@2.6.4", - "type": "static" - }, - { - "source": "npm:portscanner", - "target": "npm:is-number-like", - "type": "static" - } - ], - "npm:postcss": [ - { - "source": "npm:postcss", - "target": "npm:nanoid", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:picocolors", - "type": "static" - }, - { - "source": "npm:postcss", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:postcss-attribute-case-insensitive": [ - { - "source": "npm:postcss-attribute-case-insensitive", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-attribute-case-insensitive", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-calc": [ - { - "source": "npm:postcss-calc", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-calc", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-clamp": [ - { - "source": "npm:postcss-clamp", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-clamp", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-color-functional-notation": [ - { - "source": "npm:postcss-color-functional-notation", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-color-functional-notation", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-color-hex-alpha": [ - { - "source": "npm:postcss-color-hex-alpha", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-color-hex-alpha", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-color-rebeccapurple": [ - { - "source": "npm:postcss-color-rebeccapurple", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-color-rebeccapurple", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-colormin": [ - { - "source": "npm:postcss-colormin", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-colormin", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-convert-values": [ - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-convert-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-custom-media": [ - { - "source": "npm:postcss-custom-media", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-custom-media", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-custom-properties": [ - { - "source": "npm:postcss-custom-properties", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-custom-properties", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-custom-selectors": [ - { - "source": "npm:postcss-custom-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-custom-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-dir-pseudo-class": [ - { - "source": "npm:postcss-dir-pseudo-class", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-dir-pseudo-class", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-discard-comments": [ - { - "source": "npm:postcss-discard-comments", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-duplicates": [ - { - "source": "npm:postcss-discard-duplicates", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-empty": [ - { - "source": "npm:postcss-discard-empty", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-discard-overridden": [ - { - "source": "npm:postcss-discard-overridden", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-double-position-gradients": [ - { - "source": "npm:postcss-double-position-gradients", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-double-position-gradients", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:postcss-double-position-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-env-function": [ - { - "source": "npm:postcss-env-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-env-function", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-focus-visible": [ - { - "source": "npm:postcss-focus-visible", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-focus-visible", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-focus-within": [ - { - "source": "npm:postcss-focus-within", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-focus-within", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-font-variant": [ - { - "source": "npm:postcss-font-variant", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-gap-properties": [ - { - "source": "npm:postcss-gap-properties", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-image-set-function": [ - { - "source": "npm:postcss-image-set-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-image-set-function", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-import": [ - { - "source": "npm:postcss-import", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:read-cache", - "type": "static" - }, - { - "source": "npm:postcss-import", - "target": "npm:resolve", - "type": "static" - } - ], - "npm:postcss-initial": [ - { - "source": "npm:postcss-initial", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-lab-function": [ - { - "source": "npm:postcss-lab-function", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-lab-function", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:postcss-lab-function", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-loader": [ - { - "source": "npm:postcss-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:cosmiconfig@9.0.0", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:jiti", - "type": "static" - }, - { - "source": "npm:postcss-loader", - "target": "npm:semver", - "type": "static" - } - ], - "npm:cosmiconfig@9.0.0": [ - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:env-paths", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:import-fresh", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:cosmiconfig@9.0.0", - "target": "npm:parse-json", - "type": "static" - } - ], - "npm:postcss-logical": [ - { - "source": "npm:postcss-logical", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-media-minmax": [ - { - "source": "npm:postcss-media-minmax", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-merge-longhand": [ - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-merge-longhand", - "target": "npm:stylehacks", - "type": "static" - } - ], - "npm:postcss-merge-rules": [ - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:caniuse-api", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-merge-rules", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-minify-font-values": [ - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-font-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-gradients": [ - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:colord", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-gradients", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-params": [ - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-minify-params", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-minify-selectors": [ - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-minify-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-modules-extract-imports": [ - { - "source": "npm:postcss-modules-extract-imports", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-modules-local-by-default": [ - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:icss-utils", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-selector-parser", - "type": "static" - }, - { - "source": "npm:postcss-modules-local-by-default", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-modules-scope": [ - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-scope", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-modules-values": [ - { - "source": "npm:postcss-modules-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-modules-values", - "target": "npm:icss-utils", - "type": "static" - } - ], - "npm:postcss-nesting": [ - { - "source": "npm:postcss-nesting", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-nesting", - "target": "npm:@csstools/selector-specificity", - "type": "static" - }, - { - "source": "npm:postcss-nesting", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-normalize-charset": [ - { - "source": "npm:postcss-normalize-charset", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-normalize-display-values": [ - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-display-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-positions": [ - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-positions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-repeat-style": [ - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-repeat-style", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-string": [ - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-string", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-timing-functions": [ - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-timing-functions", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-unicode": [ - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-normalize-unicode", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-url": [ - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-url", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-normalize-whitespace": [ - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-normalize-whitespace", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-opacity-percentage": [ - { - "source": "npm:postcss-opacity-percentage", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-ordered-values": [ - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:cssnano-utils", - "type": "static" - }, - { - "source": "npm:postcss-ordered-values", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-overflow-shorthand": [ - { - "source": "npm:postcss-overflow-shorthand", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-overflow-shorthand", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-page-break": [ - { - "source": "npm:postcss-page-break", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-place": [ - { - "source": "npm:postcss-place", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-place", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-preset-env": [ - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-color-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-font-format-keywords", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-hwb-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-ic-unit", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-is-pseudo-class", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-normalize-display-values", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-oklab-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-progressive-custom-properties", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-stepped-value-functions", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:@csstools/postcss-unset-value", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:autoprefixer", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:css-blank-pseudo", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:css-has-pseudo", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:css-prefers-color-scheme", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:cssdb", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-attribute-case-insensitive", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-clamp", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-color-functional-notation", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-color-hex-alpha", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-color-rebeccapurple", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-custom-media", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-custom-properties", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-custom-selectors", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-dir-pseudo-class", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-double-position-gradients", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-env-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-focus-visible", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-focus-within", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-font-variant", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-gap-properties", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-image-set-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-initial", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-lab-function", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-logical", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-media-minmax", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-nesting", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-opacity-percentage", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-overflow-shorthand", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-page-break", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-place", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-pseudo-class-any-link", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-replace-overflow-wrap", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-selector-not", - "type": "static" - }, - { - "source": "npm:postcss-preset-env", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-pseudo-class-any-link": [ - { - "source": "npm:postcss-pseudo-class-any-link", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-pseudo-class-any-link", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-reduce-initial": [ - { - "source": "npm:postcss-reduce-initial", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:postcss-reduce-initial", - "target": "npm:caniuse-api", - "type": "static" - } - ], - "npm:postcss-reduce-transforms": [ - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-reduce-transforms", - "target": "npm:postcss-value-parser", - "type": "static" - } - ], - "npm:postcss-replace-overflow-wrap": [ - { - "source": "npm:postcss-replace-overflow-wrap", - "target": "npm:postcss", - "type": "static" - } - ], - "npm:postcss-selector-not": [ - { - "source": "npm:postcss-selector-not", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-selector-not", - "target": "npm:balanced-match", - "type": "static" - } - ], - "npm:postcss-selector-parser": [ - { - "source": "npm:postcss-selector-parser", - "target": "npm:cssesc", - "type": "static" - }, - { - "source": "npm:postcss-selector-parser", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:postcss-svgo": [ - { - "source": "npm:postcss-svgo", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:postcss-value-parser", - "type": "static" - }, - { - "source": "npm:postcss-svgo", - "target": "npm:svgo", - "type": "static" - } - ], - "npm:postcss-unique-selectors": [ - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-unique-selectors", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:postcss-url": [ - { - "source": "npm:postcss-url", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:make-dir", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:mime@2.5.2", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:minimatch@3.0.8", - "type": "static" - }, - { - "source": "npm:postcss-url", - "target": "npm:xxhashjs", - "type": "static" - } - ], - "npm:minimatch@3.0.8": [ - { - "source": "npm:minimatch@3.0.8", - "target": "npm:brace-expansion@1.1.11", - "type": "static" - } - ], - "npm:pre-commit": [ - { - "source": "npm:pre-commit", - "target": "npm:cross-spawn@5.1.0", - "type": "static" - }, - { - "source": "npm:pre-commit", - "target": "npm:spawn-sync", - "type": "static" - }, - { - "source": "npm:pre-commit", - "target": "npm:which@1.2.14", - "type": "static" - } - ], - "npm:which@1.2.14": [ - { - "source": "npm:which@1.2.14", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:pretty-format": [ - { - "source": "npm:pretty-format", - "target": "npm:@jest/schemas", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:ansi-styles", - "type": "static" - }, - { - "source": "npm:pretty-format", - "target": "npm:react-is", - "type": "static" - } - ], - "npm:promise-retry": [ - { - "source": "npm:promise-retry", - "target": "npm:err-code", - "type": "static" - }, - { - "source": "npm:promise-retry", - "target": "npm:retry", - "type": "static" - } - ], - "npm:prompts": [ - { - "source": "npm:prompts", - "target": "npm:kleur", - "type": "static" - }, - { - "source": "npm:prompts", - "target": "npm:sisteransi", - "type": "static" - } - ], - "npm:proxy-addr": [ - { - "source": "npm:proxy-addr", - "target": "npm:forwarded", - "type": "static" - }, - { - "source": "npm:proxy-addr", - "target": "npm:ipaddr.js", - "type": "static" - } - ], - "npm:pump": [ - { - "source": "npm:pump", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:pump", - "target": "npm:once", - "type": "static" - } - ], - "npm:qs": [ - { - "source": "npm:qs", - "target": "npm:side-channel", - "type": "static" - } - ], - "npm:randombytes": [ - { - "source": "npm:randombytes", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:raw-body": [ - { - "source": "npm:raw-body", - "target": "npm:bytes", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:iconv-lite", - "type": "static" - }, - { - "source": "npm:raw-body", - "target": "npm:unpipe", - "type": "static" - } - ], - "npm:read-cache": [ - { - "source": "npm:read-cache", - "target": "npm:pify", - "type": "static" - } - ], - "npm:readable-stream": [ - { - "source": "npm:readable-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:string_decoder", - "type": "static" - }, - { - "source": "npm:readable-stream", - "target": "npm:util-deprecate", - "type": "static" - } - ], - "npm:readable-web-to-node-stream": [ - { - "source": "npm:readable-web-to-node-stream", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:readdirp": [ - { - "source": "npm:readdirp", - "target": "npm:picomatch@2.3.1", - "type": "static" - } - ], - "npm:regenerate-unicode-properties": [ - { - "source": "npm:regenerate-unicode-properties", - "target": "npm:regenerate", - "type": "static" - } - ], - "npm:regenerator-transform": [ - { - "source": "npm:regenerator-transform", - "target": "npm:@babel/runtime", - "type": "static" - } - ], - "npm:regexpu-core": [ - { - "source": "npm:regexpu-core", - "target": "npm:@babel/regjsgen", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regenerate-unicode-properties", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:regjsparser", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-ecmascript", - "type": "static" - }, - { - "source": "npm:regexpu-core", - "target": "npm:unicode-match-property-value-ecmascript", - "type": "static" - } - ], - "npm:regjsparser": [ - { - "source": "npm:regjsparser", - "target": "npm:jsesc@0.5.0", - "type": "static" - } - ], - "npm:request-progress": [ - { - "source": "npm:request-progress", - "target": "npm:throttleit", - "type": "static" - } - ], - "npm:resolve": [ - { - "source": "npm:resolve", - "target": "npm:is-core-module", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:path-parse", - "type": "static" - }, - { - "source": "npm:resolve", - "target": "npm:supports-preserve-symlinks-flag", - "type": "static" - } - ], - "npm:resolve-cwd": [ - { - "source": "npm:resolve-cwd", - "target": "npm:resolve-from", - "type": "static" - } - ], - "npm:resolve-dir": [ - { - "source": "npm:resolve-dir", - "target": "npm:expand-tilde", - "type": "static" - }, - { - "source": "npm:resolve-dir", - "target": "npm:global-modules", - "type": "static" - } - ], - "npm:resolve-url-loader": [ - { - "source": "npm:resolve-url-loader", - "target": "npm:adjust-sourcemap-loader", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:convert-source-map", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:loader-utils@2.0.4", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:resolve-url-loader", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:resp-modifier": [ - { - "source": "npm:resp-modifier", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:resp-modifier", - "target": "npm:minimatch@3.1.2", - "type": "static" - } - ], - "npm:responselike": [ - { - "source": "npm:responselike", - "target": "npm:lowercase-keys", - "type": "static" - } - ], - "npm:restore-cursor": [ - { - "source": "npm:restore-cursor", - "target": "npm:onetime", - "type": "static" - }, - { - "source": "npm:restore-cursor", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:rimraf": [ - { - "source": "npm:rimraf", - "target": "npm:glob", - "type": "static" - } - ], - "npm:rollup": [ - { - "source": "npm:rollup", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:rollup-plugin-esbuild": [ - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:esbuild", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:rollup", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:@rollup/pluginutils", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:joycon", - "type": "static" - }, - { - "source": "npm:rollup-plugin-esbuild", - "target": "npm:jsonc-parser", - "type": "static" - } - ], - "npm:rollup-plugin-node-externals": [ - { - "source": "npm:rollup-plugin-node-externals", - "target": "npm:rollup", - "type": "static" - } - ], - "npm:run-parallel": [ - { - "source": "npm:run-parallel", - "target": "npm:queue-microtask", - "type": "static" - } - ], - "npm:rxjs": [ - { - "source": "npm:rxjs", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:sass": [ - { - "source": "npm:sass", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:immutable@4.3.5", - "type": "static" - }, - { - "source": "npm:sass", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:sass-loader": [ - { - "source": "npm:sass-loader", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:sass-loader", - "target": "npm:neo-async", - "type": "static" - } - ], - "npm:saxes": [ - { - "source": "npm:saxes", - "target": "npm:xmlchars", - "type": "static" - } - ], - "npm:schema-utils": [ - { - "source": "npm:schema-utils", - "target": "npm:@types/json-schema", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-formats", - "type": "static" - }, - { - "source": "npm:schema-utils", - "target": "npm:ajv-keywords", - "type": "static" - } - ], - "npm:selfsigned": [ - { - "source": "npm:selfsigned", - "target": "npm:@types/node-forge", - "type": "static" - }, - { - "source": "npm:selfsigned", - "target": "npm:node-forge", - "type": "static" - } - ], - "npm:semver-truncate": [ - { - "source": "npm:semver-truncate", - "target": "npm:semver", - "type": "static" - } - ], - "npm:send": [ - { - "source": "npm:send", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:destroy", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:etag", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:fresh", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:mime@1.4.1", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:ms@2.0.0", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:on-finished", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:send", - "target": "npm:statuses@1.4.0", - "type": "static" - } - ], - "npm:http-errors@1.6.3": [ - { - "source": "npm:http-errors@1.6.3", - "target": "npm:depd@1.1.2", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:inherits@2.0.3", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:setprototypeof@1.1.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.4.0", - "type": "static" - }, - { - "source": "npm:http-errors@1.6.3", - "target": "npm:statuses@1.5.0", - "type": "static" - } - ], - "npm:serialize-javascript": [ - { - "source": "npm:serialize-javascript", - "target": "npm:randombytes", - "type": "static" - } - ], - "npm:serve-index": [ - { - "source": "npm:serve-index", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:batch", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:debug@2.6.9", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:http-errors@1.6.3", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:serve-index", - "target": "npm:parseurl", - "type": "static" - } - ], - "npm:serve-static": [ - { - "source": "npm:serve-static", - "target": "npm:encodeurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:escape-html", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:parseurl", - "type": "static" - }, - { - "source": "npm:serve-static", - "target": "npm:send", - "type": "static" - } - ], - "npm:set-function-length": [ - { - "source": "npm:set-function-length", - "target": "npm:define-data-property", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:function-bind", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:gopd", - "type": "static" - }, - { - "source": "npm:set-function-length", - "target": "npm:has-property-descriptors", - "type": "static" - } - ], - "npm:shallow-clone": [ - { - "source": "npm:shallow-clone", - "target": "npm:kind-of", - "type": "static" - } - ], - "npm:shebang-command": [ - { - "source": "npm:shebang-command", - "target": "npm:shebang-regex", - "type": "static" - } - ], - "npm:side-channel": [ - { - "source": "npm:side-channel", - "target": "npm:call-bind", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:es-errors", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:get-intrinsic", - "type": "static" - }, - { - "source": "npm:side-channel", - "target": "npm:object-inspect", - "type": "static" - } - ], - "npm:sigstore": [ - { - "source": "npm:sigstore", - "target": "npm:@sigstore/bundle", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/core", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/protobuf-specs", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/sign", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/tuf", - "type": "static" - }, - { - "source": "npm:sigstore", - "target": "npm:@sigstore/verify", - "type": "static" - } - ], - "npm:slice-ansi": [ - { - "source": "npm:slice-ansi", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:astral-regex", - "type": "static" - }, - { - "source": "npm:slice-ansi", - "target": "npm:is-fullwidth-code-point", - "type": "static" - } - ], - "npm:socket.io": [ - { - "source": "npm:socket.io", - "target": "npm:accepts", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:base64id", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:engine.io", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-adapter", - "type": "static" - }, - { - "source": "npm:socket.io", - "target": "npm:socket.io-parser", - "type": "static" - } - ], - "npm:socket.io-adapter": [ - { - "source": "npm:socket.io-adapter", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io-adapter", - "target": "npm:ws@8.11.0", - "type": "static" - } - ], - "npm:socket.io-client": [ - { - "source": "npm:socket.io-client", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:engine.io-client", - "type": "static" - }, - { - "source": "npm:socket.io-client", - "target": "npm:socket.io-parser", - "type": "static" - } - ], - "npm:socket.io-parser": [ - { - "source": "npm:socket.io-parser", - "target": "npm:@socket.io/component-emitter", - "type": "static" - }, - { - "source": "npm:socket.io-parser", - "target": "npm:debug", - "type": "static" - } - ], - "npm:sockjs": [ - { - "source": "npm:sockjs", - "target": "npm:faye-websocket", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:uuid", - "type": "static" - }, - { - "source": "npm:sockjs", - "target": "npm:websocket-driver", - "type": "static" - } - ], - "npm:socks": [ - { - "source": "npm:socks", - "target": "npm:ip-address", - "type": "static" - }, - { - "source": "npm:socks", - "target": "npm:smart-buffer", - "type": "static" - } - ], - "npm:socks-proxy-agent": [ - { - "source": "npm:socks-proxy-agent", - "target": "npm:agent-base", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:socks-proxy-agent", - "target": "npm:socks", - "type": "static" - } - ], - "npm:sonic-boom": [ - { - "source": "npm:sonic-boom", - "target": "npm:atomic-sleep", - "type": "static" - } - ], - "npm:sort-keys": [ - { - "source": "npm:sort-keys", - "target": "npm:is-plain-obj@1.1.0", - "type": "static" - } - ], - "npm:sort-keys-length": [ - { - "source": "npm:sort-keys-length", - "target": "npm:sort-keys", - "type": "static" - } - ], - "npm:source-map-loader": [ - { - "source": "npm:source-map-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - }, - { - "source": "npm:source-map-loader", - "target": "npm:source-map-js", - "type": "static" - } - ], - "npm:source-map-support": [ - { - "source": "npm:source-map-support", - "target": "npm:buffer-from", - "type": "static" - }, - { - "source": "npm:source-map-support", - "target": "npm:source-map@0.6.1", - "type": "static" - } - ], - "npm:spawn-sync": [ - { - "source": "npm:spawn-sync", - "target": "npm:concat-stream", - "type": "static" - }, - { - "source": "npm:spawn-sync", - "target": "npm:os-shim", - "type": "static" - } - ], - "npm:spdx-correct": [ - { - "source": "npm:spdx-correct", - "target": "npm:spdx-expression-parse", - "type": "static" - }, - { - "source": "npm:spdx-correct", - "target": "npm:spdx-license-ids", - "type": "static" - } - ], - "npm:spdx-expression-parse": [ - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-exceptions", - "type": "static" - }, - { - "source": "npm:spdx-expression-parse", - "target": "npm:spdx-license-ids", - "type": "static" - } - ], - "npm:spdy": [ - { - "source": "npm:spdy", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:handle-thing", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:http-deceiver", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:select-hose", - "type": "static" - }, - { - "source": "npm:spdy", - "target": "npm:spdy-transport", - "type": "static" - } - ], - "npm:spdy-transport": [ - { - "source": "npm:spdy-transport", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:detect-node", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:hpack.js", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:obuf", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:readable-stream", - "type": "static" - }, - { - "source": "npm:spdy-transport", - "target": "npm:wbuf", - "type": "static" - } - ], - "npm:sshpk": [ - { - "source": "npm:sshpk", - "target": "npm:asn1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:bcrypt-pbkdf", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:dashdash", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:ecc-jsbn", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:getpass", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:jsbn@0.1.1", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:safer-buffer", - "type": "static" - }, - { - "source": "npm:sshpk", - "target": "npm:tweetnacl", - "type": "static" - } - ], - "npm:ssri": [ - { - "source": "npm:ssri", - "target": "npm:minipass", - "type": "static" - } - ], - "npm:stack-utils": [ - { - "source": "npm:stack-utils", - "target": "npm:escape-string-regexp@2.0.0", - "type": "static" - } - ], - "npm:steno": [ - { - "source": "npm:steno", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:stream-throttle": [ - { - "source": "npm:stream-throttle", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:stream-throttle", - "target": "npm:limiter", - "type": "static" - } - ], - "npm:streamroller": [ - { - "source": "npm:streamroller", - "target": "npm:date-format", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:streamroller", - "target": "npm:fs-extra@8.1.0", - "type": "static" - } - ], - "npm:fs-extra@8.1.0": [ - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:jsonfile@4.0.0", - "type": "static" - }, - { - "source": "npm:fs-extra@8.1.0", - "target": "npm:universalify@0.1.2", - "type": "static" - } - ], - "npm:jsonfile@4.0.0": [ - { - "source": "npm:jsonfile@4.0.0", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:string_decoder": [ - { - "source": "npm:string_decoder", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:string-length": [ - { - "source": "npm:string-length", - "target": "npm:char-regex", - "type": "static" - }, - { - "source": "npm:string-length", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:string-width": [ - { - "source": "npm:string-width", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:string-width-cjs": [ - { - "source": "npm:string-width-cjs", - "target": "npm:emoji-regex", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:is-fullwidth-code-point", - "type": "static" - }, - { - "source": "npm:string-width-cjs", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:strip-ansi": [ - { - "source": "npm:strip-ansi", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strip-ansi-cjs": [ - { - "source": "npm:strip-ansi-cjs", - "target": "npm:ansi-regex", - "type": "static" - } - ], - "npm:strong-log-transformer": [ - { - "source": "npm:strong-log-transformer", - "target": "npm:duplexer", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:strong-log-transformer", - "target": "npm:through", - "type": "static" - } - ], - "npm:strtok3": [ - { - "source": "npm:strtok3", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:strtok3", - "target": "npm:peek-readable", - "type": "static" - } - ], - "npm:style-loader": [ - { - "source": "npm:style-loader", - "target": "npm:webpack", - "type": "static" - } - ], - "npm:stylehacks": [ - { - "source": "npm:stylehacks", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:stylehacks", - "target": "npm:postcss-selector-parser", - "type": "static" - } - ], - "npm:stylus": [ - { - "source": "npm:stylus", - "target": "npm:@adobe/css-tools", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:sax@1.2.4", - "type": "static" - }, - { - "source": "npm:stylus", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:stylus-loader": [ - { - "source": "npm:stylus-loader", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:fast-glob", - "type": "static" - }, - { - "source": "npm:stylus-loader", - "target": "npm:normalize-path", - "type": "static" - } - ], - "npm:supports-color": [ - { - "source": "npm:supports-color", - "target": "npm:has-flag", - "type": "static" - } - ], - "npm:svgo": [ - { - "source": "npm:svgo", - "target": "npm:@trysound/sax", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:commander@7.2.0", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-select", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-tree", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:css-what", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:csso", - "type": "static" - }, - { - "source": "npm:svgo", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:tar": [ - { - "source": "npm:tar", - "target": "npm:chownr", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:fs-minipass@2.1.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minipass@5.0.0", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:minizlib", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:tar", - "target": "npm:yallist@4.0.0", - "type": "static" - } - ], - "npm:tar-stream": [ - { - "source": "npm:tar-stream", - "target": "npm:bl", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:end-of-stream", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:fs-constants", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:inherits", - "type": "static" - }, - { - "source": "npm:tar-stream", - "target": "npm:readable-stream", - "type": "static" - } - ], - "npm:fs-minipass@2.1.0": [ - { - "source": "npm:fs-minipass@2.1.0", - "target": "npm:minipass@3.3.6", - "type": "static" - } - ], - "npm:terser": [ - { - "source": "npm:terser", - "target": "npm:@jridgewell/source-map", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:commander@2.20.3", - "type": "static" - }, - { - "source": "npm:terser", - "target": "npm:source-map-support", - "type": "static" - } - ], - "npm:terser-webpack-plugin": [ - { - "source": "npm:terser-webpack-plugin", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:jest-worker@27.5.1", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:serialize-javascript", - "type": "static" - }, - { - "source": "npm:terser-webpack-plugin", - "target": "npm:terser", - "type": "static" - } - ], - "npm:jest-worker@27.5.1": [ - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:merge-stream", - "type": "static" - }, - { - "source": "npm:jest-worker@27.5.1", - "target": "npm:supports-color", - "type": "static" - } - ], - "npm:test-exclude": [ - { - "source": "npm:test-exclude", - "target": "npm:@istanbuljs/schema", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:glob", - "type": "static" - }, - { - "source": "npm:test-exclude", - "target": "npm:minimatch@3.1.2", - "type": "static" - } - ], - "npm:thingies": [ - { - "source": "npm:thingies", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:thread-stream": [ - { - "source": "npm:thread-stream", - "target": "npm:real-require", - "type": "static" - } - ], - "npm:to-regex-range": [ - { - "source": "npm:to-regex-range", - "target": "npm:is-number", - "type": "static" - } - ], - "npm:token-types": [ - { - "source": "npm:token-types", - "target": "npm:@tokenizer/token", - "type": "static" - }, - { - "source": "npm:token-types", - "target": "npm:ieee754", - "type": "static" - } - ], - "npm:tough-cookie": [ - { - "source": "npm:tough-cookie", - "target": "npm:psl", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:punycode", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:universalify@0.2.0", - "type": "static" - }, - { - "source": "npm:tough-cookie", - "target": "npm:url-parse", - "type": "static" - } - ], - "npm:tr46": [ - { - "source": "npm:tr46", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:tree-dump": [ - { - "source": "npm:tree-dump", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:trim-repeated": [ - { - "source": "npm:trim-repeated", - "target": "npm:escape-string-regexp@5.0.0", - "type": "static" - } - ], - "npm:ts-api-utils": [ - { - "source": "npm:ts-api-utils", - "target": "npm:typescript", - "type": "static" - } - ], - "npm:ts-jest": [ - { - "source": "npm:ts-jest", - "target": "npm:@babel/core", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:@jest/types", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:babel-jest", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:bs-logger", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:fast-json-stable-stringify", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:jest-util", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:lodash.memoize", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ts-jest", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:ts-loader": [ - { - "source": "npm:ts-loader", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:micromatch", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:semver", - "type": "static" - }, - { - "source": "npm:ts-loader", - "target": "npm:source-map", - "type": "static" - } - ], - "npm:ts-node": [ - { - "source": "npm:ts-node", - "target": "npm:@swc/core", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:typescript", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@cspotcode/source-map-support", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node10", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node12", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node14", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:@tsconfig/node16", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:acorn-walk", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:arg", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:create-require", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:diff", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:make-error", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:v8-compile-cache-lib", - "type": "static" - }, - { - "source": "npm:ts-node", - "target": "npm:yn", - "type": "static" - } - ], - "npm:tsconfig-paths": [ - { - "source": "npm:tsconfig-paths", - "target": "npm:json5", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:minimist", - "type": "static" - }, - { - "source": "npm:tsconfig-paths", - "target": "npm:strip-bom@3.0.0", - "type": "static" - } - ], - "npm:tsconfig-paths-webpack-plugin": [ - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:chalk@4.1.2", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:tsconfig-paths-webpack-plugin", - "target": "npm:tsconfig-paths", - "type": "static" - } - ], - "npm:tuf-js": [ - { - "source": "npm:tuf-js", - "target": "npm:@tufjs/models", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:tuf-js", - "target": "npm:make-fetch-happen", - "type": "static" - } - ], - "npm:tunnel-agent": [ - { - "source": "npm:tunnel-agent", - "target": "npm:safe-buffer", - "type": "static" - } - ], - "npm:type-check": [ - { - "source": "npm:type-check", - "target": "npm:prelude-ls", - "type": "static" - } - ], - "npm:type-is": [ - { - "source": "npm:type-is", - "target": "npm:media-typer", - "type": "static" - }, - { - "source": "npm:type-is", - "target": "npm:mime-types", - "type": "static" - } - ], - "npm:unicode-match-property-ecmascript": [ - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-canonical-property-names-ecmascript", - "type": "static" - }, - { - "source": "npm:unicode-match-property-ecmascript", - "target": "npm:unicode-property-aliases-ecmascript", - "type": "static" - } - ], - "npm:union": [ - { - "source": "npm:union", - "target": "npm:qs", - "type": "static" - } - ], - "npm:unique-filename": [ - { - "source": "npm:unique-filename", - "target": "npm:unique-slug", - "type": "static" - } - ], - "npm:unique-slug": [ - { - "source": "npm:unique-slug", - "target": "npm:imurmurhash", - "type": "static" - } - ], - "npm:update-browserslist-db": [ - { - "source": "npm:update-browserslist-db", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:update-browserslist-db", - "target": "npm:picocolors", - "type": "static" - } - ], - "npm:uri-js": [ - { - "source": "npm:uri-js", - "target": "npm:punycode", - "type": "static" - } - ], - "npm:url-parse": [ - { - "source": "npm:url-parse", - "target": "npm:querystringify", - "type": "static" - }, - { - "source": "npm:url-parse", - "target": "npm:requires-port", - "type": "static" - } - ], - "npm:v8-to-istanbul": [ - { - "source": "npm:v8-to-istanbul", - "target": "npm:@jridgewell/trace-mapping", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:@types/istanbul-lib-coverage", - "type": "static" - }, - { - "source": "npm:v8-to-istanbul", - "target": "npm:convert-source-map@2.0.0", - "type": "static" - } - ], - "npm:validate-npm-package-license": [ - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-correct", - "type": "static" - }, - { - "source": "npm:validate-npm-package-license", - "target": "npm:spdx-expression-parse", - "type": "static" - } - ], - "npm:validate-npm-package-name": [ - { - "source": "npm:validate-npm-package-name", - "target": "npm:builtins", - "type": "static" - } - ], - "npm:verdaccio": [ - { - "source": "npm:verdaccio", - "target": "npm:@cypress/request", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/local-storage", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/logger-7", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/middleware", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/search", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/signature", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/streams", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/tarball", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/ui-theme", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/url", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:@verdaccio/utils", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:async", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:clipanion", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:cookies", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:cors", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:envinfo", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:express-rate-limit", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:fast-safe-stringify", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:handlebars", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:js-yaml", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:JSONStream", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:jsonwebtoken", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:kleur@4.1.5", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:lru-cache@7.18.3", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mime@3.0.0", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mkdirp@1.0.4", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:mv", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:pkginfo", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:semver@7.5.4", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:validator", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:verdaccio-audit", - "type": "static" - }, - { - "source": "npm:verdaccio", - "target": "npm:verdaccio-htpasswd", - "type": "static" - } - ], - "npm:verdaccio-audit": [ - { - "source": "npm:verdaccio-audit", - "target": "npm:@verdaccio/config", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:verdaccio-audit", - "target": "npm:https-proxy-agent@5.0.1", - "type": "static" - } - ], - "npm:verdaccio-htpasswd": [ - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/core", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:@verdaccio/file-locking@12.0.0-next.1", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:apache-md5", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:bcryptjs", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:core-js", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:debug", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:http-errors", - "type": "static" - }, - { - "source": "npm:verdaccio-htpasswd", - "target": "npm:unix-crypt-td-js", - "type": "static" - } - ], - "npm:@verdaccio/file-locking@12.0.0-next.1": [ - { - "source": "npm:@verdaccio/file-locking@12.0.0-next.1", - "target": "npm:lockfile", - "type": "static" - } - ], - "npm:verror": [ - { - "source": "npm:verror", - "target": "npm:assert-plus", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:core-util-is", - "type": "static" - }, - { - "source": "npm:verror", - "target": "npm:extsprintf", - "type": "static" - } - ], - "npm:vite": [ - { - "source": "npm:vite", - "target": "npm:@types/node", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:less", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:sass", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:stylus", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:terser", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:esbuild@0.21.5", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:postcss", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:rollup@4.20.0", - "type": "static" - }, - { - "source": "npm:vite", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:rollup@4.20.0": [ - { - "source": "npm:rollup@4.20.0", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-android-arm-eabi@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-android-arm64@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-darwin-arm64@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-darwin-x64@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-arm-gnueabihf@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-arm-musleabihf@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-arm64-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-arm64-musl@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-powerpc64le-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-riscv64-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-s390x-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-x64-gnu@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-linux-x64-musl@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-win32-arm64-msvc@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-win32-ia32-msvc@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:@rollup/rollup-win32-x64-msvc@4.20.0", - "type": "static" - }, - { - "source": "npm:rollup@4.20.0", - "target": "npm:fsevents", - "type": "static" - } - ], - "npm:w3c-xmlserializer": [ - { - "source": "npm:w3c-xmlserializer", - "target": "npm:xml-name-validator", - "type": "static" - } - ], - "npm:walker": [ - { - "source": "npm:walker", - "target": "npm:makeerror", - "type": "static" - } - ], - "npm:watchpack": [ - { - "source": "npm:watchpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:watchpack", - "target": "npm:graceful-fs", - "type": "static" - } - ], - "npm:wbuf": [ - { - "source": "npm:wbuf", - "target": "npm:minimalistic-assert", - "type": "static" - } - ], - "npm:wcwidth": [ - { - "source": "npm:wcwidth", - "target": "npm:defaults", - "type": "static" - } - ], - "npm:webpack": [ - { - "source": "npm:webpack", - "target": "npm:@types/eslint-scope", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@types/estree", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/ast", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-edit", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:@webassemblyjs/wasm-parser", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:acorn-import-attributes", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:browserslist", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:chrome-trace-event", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:enhanced-resolve", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:es-module-lexer", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:eslint-scope@5.1.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:events", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:glob-to-regexp", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:json-parse-even-better-errors@2.3.1", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:loader-runner", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:neo-async", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:schema-utils@3.3.0", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:tapable", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:terser-webpack-plugin", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:watchpack", - "type": "static" - }, - { - "source": "npm:webpack", - "target": "npm:webpack-sources", - "type": "static" - } - ], - "npm:webpack-dev-middleware": [ - { - "source": "npm:webpack-dev-middleware", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:memfs@4.11.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:mime-types", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:on-finished@2.4.1", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:range-parser", - "type": "static" - }, - { - "source": "npm:webpack-dev-middleware", - "target": "npm:schema-utils", - "type": "static" - } - ], - "npm:memfs@4.11.1": [ - { - "source": "npm:memfs@4.11.1", - "target": "npm:@jsonjoy.com/json-pack", - "type": "static" - }, - { - "source": "npm:memfs@4.11.1", - "target": "npm:@jsonjoy.com/util", - "type": "static" - }, - { - "source": "npm:memfs@4.11.1", - "target": "npm:tree-dump", - "type": "static" - }, - { - "source": "npm:memfs@4.11.1", - "target": "npm:tslib", - "type": "static" - } - ], - "npm:webpack-dev-server": [ - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/bonjour", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/connect-history-api-fallback", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/serve-static", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:@types/ws", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ansi-html-community", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:bonjour-service", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:chokidar", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:colorette", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:compression", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:connect-history-api-fallback@2.0.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:default-gateway", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:express", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:graceful-fs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:html-entities", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:http-proxy-middleware@2.0.6", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ipaddr.js@2.2.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:launch-editor", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:open@10.1.0", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:p-retry", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:rimraf@5.0.10", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:schema-utils", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:selfsigned", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:serve-index", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:sockjs", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:spdy", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:webpack-dev-middleware", - "type": "static" - }, - { - "source": "npm:webpack-dev-server", - "target": "npm:ws", - "type": "static" - } - ], - "npm:glob@10.4.5": [ - { - "source": "npm:glob@10.4.5", - "target": "npm:foreground-child", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:jackspeak@3.4.3", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:minimatch@9.0.5", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:minipass", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:package-json-from-dist", - "type": "static" - }, - { - "source": "npm:glob@10.4.5", - "target": "npm:path-scurry", - "type": "static" - } - ], - "npm:jackspeak@3.4.3": [ - { - "source": "npm:jackspeak@3.4.3", - "target": "npm:@isaacs/cliui", - "type": "static" - }, - { - "source": "npm:jackspeak@3.4.3", - "target": "npm:@pkgjs/parseargs", - "type": "static" - } - ], - "npm:rimraf@5.0.10": [ - { - "source": "npm:rimraf@5.0.10", - "target": "npm:glob@10.4.5", - "type": "static" - } - ], - "npm:webpack-merge": [ - { - "source": "npm:webpack-merge", - "target": "npm:clone-deep", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:flat", - "type": "static" - }, - { - "source": "npm:webpack-merge", - "target": "npm:wildcard", - "type": "static" - } - ], - "npm:webpack-subresource-integrity": [ - { - "source": "npm:webpack-subresource-integrity", - "target": "npm:webpack", - "type": "static" - }, - { - "source": "npm:webpack-subresource-integrity", - "target": "npm:typed-assert", - "type": "static" - } - ], - "npm:eslint-scope@5.1.1": [ - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:esrecurse", - "type": "static" - }, - { - "source": "npm:eslint-scope@5.1.1", - "target": "npm:estraverse@4.3.0", - "type": "static" - } - ], - "npm:websocket-driver": [ - { - "source": "npm:websocket-driver", - "target": "npm:http-parser-js", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:safe-buffer", - "type": "static" - }, - { - "source": "npm:websocket-driver", - "target": "npm:websocket-extensions", - "type": "static" - } - ], - "npm:whatwg-encoding": [ - { - "source": "npm:whatwg-encoding", - "target": "npm:iconv-lite@0.6.3", - "type": "static" - } - ], - "npm:whatwg-url": [ - { - "source": "npm:whatwg-url", - "target": "npm:tr46", - "type": "static" - }, - { - "source": "npm:whatwg-url", - "target": "npm:webidl-conversions", - "type": "static" - } - ], - "npm:which": [ - { - "source": "npm:which", - "target": "npm:isexe", - "type": "static" - } - ], - "npm:wide-align": [ - { - "source": "npm:wide-align", - "target": "npm:string-width", - "type": "static" - } - ], - "npm:wrap-ansi": [ - { - "source": "npm:wrap-ansi", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:wrap-ansi-cjs": [ - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:ansi-styles@4.3.0", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:wrap-ansi-cjs", - "target": "npm:strip-ansi", - "type": "static" - } - ], - "npm:write-file-atomic": [ - { - "source": "npm:write-file-atomic", - "target": "npm:imurmurhash", - "type": "static" - }, - { - "source": "npm:write-file-atomic", - "target": "npm:signal-exit", - "type": "static" - } - ], - "npm:xxhashjs": [ - { - "source": "npm:xxhashjs", - "target": "npm:cuint", - "type": "static" - } - ], - "npm:yargs": [ - { - "source": "npm:yargs", - "target": "npm:cliui", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:escalade", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:get-caller-file", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:require-directory", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:string-width", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:y18n", - "type": "static" - }, - { - "source": "npm:yargs", - "target": "npm:yargs-parser", - "type": "static" - } - ], - "npm:yauzl": [ - { - "source": "npm:yauzl", - "target": "npm:buffer-crc32", - "type": "static" - }, - { - "source": "npm:yauzl", - "target": "npm:fd-slicer", - "type": "static" - } - ], - "npm:yup": [ - { - "source": "npm:yup", - "target": "npm:@babel/runtime", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:@types/lodash", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:lodash", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:lodash-es", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:nanoclone", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:property-expr", - "type": "static" - }, - { - "source": "npm:yup", - "target": "npm:toposort", - "type": "static" - } - ], - "npm:zone.js": [ - { - "source": "npm:zone.js", - "target": "npm:tslib", - "type": "static" - } - ] - }, - "version": "6.0" -} \ No newline at end of file diff --git a/.nx/workspace-data/task-history.csv b/.nx/workspace-data/task-history.csv deleted file mode 100644 index 32e3d357..00000000 --- a/.nx/workspace-data/task-history.csv +++ /dev/null @@ -1,163 +0,0 @@ -project,target,configuration,hash,code,status,start,end -native-federation-runtime,build,production,16204365670547407691,1,failure,1726256171407,1726256172142 -native-federation-runtime,build,production,17017957250569306944,0,success,1726256289419,1726256290173 -native-federation-node,build,,10550700468579144322,0,success,1726256290173,1726256290765 -native-federation-runtime,build,production,17017957250569306944,0,local-cache-kept-existing,1726256390362,1726256390379 -native-federation-node,build,,4708996080303521505,0,success,1726256390380,1726256391003 -native-federation-runtime,build,production,17017957250569306944,0,local-cache-kept-existing,1726256425749,1726256425764 -native-federation-node,build,,7792907095522909932,0,success,1726256425766,1726256426344 -native-federation-runtime,build,production,17017957250569306944,0,local-cache-kept-existing,1726256538337,1726256538354 -native-federation-node,build,,12185056943203295686,0,success,1726256538356,1726256538880 -native-federation-runtime,build,production,17017957250569306944,0,local-cache-kept-existing,1726256742338,1726256742354 -native-federation-node,build,,1429474606505435012,0,success,1726256742355,1726256742986 -native-federation-runtime,build,production,1964010631498650377,0,success,1726257817771,1726257818609 -native-federation-core,build,,13841264374381191728,0,success,1726257818609,1726257819367 -native-federation-esbuild,build,,1126710489789174357,0,success,1726257819368,1726257820029 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726257818609,1726257820572 -native-federation,build,,16955657735499413630,0,success,1726257819368,1726257820764 -native-federation,post-build,,11398177176863654430,0,success,1726257820765,1726257820790 -native-federation,publish-local,,1861036809270389725,0,success,1726257820790,1726257821468 -native-federation-core,publish-local,,14894214120418178249,0,success,1726257820030,1726257821928 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726257820572,1726257822469 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726257934443,1726257934459 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726257934462,1726257934467 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726257934469,1726257934470 -native-federation,post-build,,11398177176863654430,0,success,1726257934472,1726257934494 -native-federation-esbuild,build,,1126710489789174357,0,local-cache-kept-existing,1726257934495,1726257934496 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726257934462,1726257935041 -native-federation-core,publish-local,,14894214120418178249,0,success,1726257934497,1726257935075 -native-federation-node,build,,7623757750092389434,0,success,1726257934462,1726257935081 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726257935075,1726257935643 -native-federation,publish-local,,1861036809270389725,0,success,1726257935041,1726257935674 -native-federation-node,publish-local,,10341419517347327799,1,failure,1726257935081,1726257936209 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726257967651,1726257967667 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726257967669,1726257967672 -native-federation-node,build,,7623757750092389434,0,local-cache-kept-existing,1726257967669,1726257967672 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726257967674,1726257967675 -native-federation-esbuild,build,,1126710489789174357,0,local-cache-kept-existing,1726257967674,1726257967676 -native-federation,post-build,,11398177176863654430,0,success,1726257967677,1726257967699 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726257967669,1726257968654 -native-federation-core,publish-local,,14894214120418178249,0,success,1726257967678,1726257968690 -native-federation,publish-local,,1861036809270389725,0,success,1726257967700,1726257968701 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726257968690,1726257969489 -native-federation-node,publish-local,,10341419517347327799,1,failure,1726257968654,1726257969904 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726258041316,1726258041331 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726258041334,1726258041336 -native-federation-node,build,,7623757750092389434,0,local-cache-kept-existing,1726258041334,1726258041337 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726258041338,1726258041340 -native-federation-esbuild,build,,1126710489789174357,0,local-cache-kept-existing,1726258041339,1726258041341 -native-federation,post-build,,11398177176863654430,0,success,1726258041342,1726258041364 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726258041334,1726258041884 -native-federation-core,publish-local,,14894214120418178249,0,success,1726258041343,1726258041908 -native-federation,publish-local,,1861036809270389725,0,success,1726258041365,1726258041938 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726258041908,1726258042421 -native-federation-node,publish-local,,10341419517347327799,1,failure,1726258041884,1726258042799 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726258154792,1726258154809 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726258154811,1726258154814 -native-federation-node,build,,7623757750092389434,0,local-cache-kept-existing,1726258154811,1726258154815 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726258154816,1726258154818 -native-federation-esbuild,build,,1126710489789174357,0,local-cache-kept-existing,1726258154817,1726258154818 -native-federation,post-build,,11398177176863654430,0,success,1726258154820,1726258154842 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726258154811,1726258156482 -native-federation,publish-local,,1861036809270389725,0,success,1726258154843,1726258156766 -native-federation-core,publish-local,,14894214120418178249,0,success,1726258154821,1726258156863 -native-federation-node,publish-local,,10341419517347327799,0,success,1726258156482,1726258158184 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726258156766,1726258158516 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726303896628,1726303896644 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726303896647,1726303896650 -native-federation-node,build,,7623757750092389434,0,local-cache-kept-existing,1726303896647,1726303896651 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726303896653,1726303896656 -native-federation-esbuild,build,,1126710489789174357,0,local-cache,1726303896653,1726303896660 -native-federation,post-build,,11398177176863654430,0,success,1726303896660,1726303896684 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726303896647,1726303898621 -native-federation,publish-local,,1861036809270389725,0,success,1726303896684,1726303898660 -native-federation-core,publish-local,,14894214120418178249,0,success,1726303896662,1726303898709 -native-federation-node,publish-local,,10341419517347327799,0,success,1726303898621,1726303900178 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726303898660,1726303900432 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726322888601,1726322888618 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726322888621,1726322888627 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726322888629,1726322888632 -native-federation,post-build,,11398177176863654430,0,success,1726322888634,1726322888657 -native-federation-esbuild,build,,1126710489789174357,0,local-cache,1726322888658,1726322888662 -native-federation-node,build,,16149302657444064177,0,success,1726322888621,1726322889293 -native-federation,publish-local,,1861036809270389725,0,success,1726322889293,1726322890120 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726322888620,1726322890502 -native-federation-core,publish-local,,14894214120418178249,0,success,1726322888664,1726322890684 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726322890120,1726322891887 -native-federation-node,publish-local,,11552657501314713665,0,success,1726322890502,1726322892032 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726326444798,1726326444814 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726326444816,1726326444823 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726326444824,1726326444826 -native-federation,post-build,,11398177176863654430,0,success,1726326444828,1726326444852 -native-federation-esbuild,build,,1126710489789174357,0,local-cache-kept-existing,1726326444852,1726326444854 -native-federation-node,build,,10736522673289663725,0,success,1726326444816,1726326445531 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726326444816,1726326446851 -native-federation-core,publish-local,,14894214120418178249,0,success,1726326444855,1726326446919 -native-federation,publish-local,,1861036809270389725,0,success,1726326445531,1726326447389 -native-federation-node,publish-local,,9352197523686273526,0,success,1726326446919,1726326448524 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726326446851,1726326448636 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726351254894,1726351254910 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726351254913,1726351254919 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726351254920,1726351254922 -native-federation,post-build,,11398177176863654430,0,success,1726351254924,1726351254948 -native-federation-esbuild,build,,1126710489789174357,0,local-cache,1726351254948,1726351254953 -native-federation-node,build,,8781336515896066819,0,success,1726351254913,1726351255623 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726351254913,1726351256907 -native-federation-core,publish-local,,14894214120418178249,0,success,1726351254954,1726351256969 -native-federation,publish-local,,1861036809270389725,0,success,1726351255624,1726351257394 -native-federation-node,publish-local,,15725191571634548076,0,success,1726351256969,1726351258583 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726351256907,1726351258803 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726353352862,1726353352880 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726353352882,1726353352888 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726353352890,1726353352892 -native-federation,post-build,,11398177176863654430,0,success,1726353352894,1726353352917 -native-federation-esbuild,build,,1126710489789174357,0,local-cache,1726353352918,1726353352922 -native-federation-node,build,,5132439344919781103,0,success,1726353352882,1726353353562 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726353352882,1726353354786 -native-federation-core,publish-local,,14894214120418178249,0,success,1726353352923,1726353354905 -native-federation,publish-local,,1861036809270389725,0,success,1726353353563,1726353355311 -native-federation-node,publish-local,,15877656969451714315,0,success,1726353354905,1726353356406 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726353354786,1726353356560 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726353365254,1726353365277 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726353365279,1726353365283 -native-federation-node,build,,5132439344919781103,0,local-cache-kept-existing,1726353365279,1726353365283 -native-federation-esbuild,build,,1126710489789174357,0,local-cache,1726353365286,1726353365289 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726353365285,1726353365291 -native-federation,post-build,,11398177176863654430,0,success,1726353365293,1726353365315 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726353365279,1726353365888 -native-federation-core,publish-local,,14894214120418178249,0,success,1726353365290,1726353365916 -native-federation,publish-local,,1861036809270389725,0,success,1726353365315,1726353365946 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726353365916,1726353366451 -native-federation-node,publish-local,,15877656969451714315,0,success,1726353365888,1726353367444 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726353951988,1726353952009 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726353952012,1726353952020 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726353952022,1726353952024 -native-federation,post-build,,11398177176863654430,0,success,1726353952026,1726353952050 -native-federation-esbuild,build,,1126710489789174357,0,local-cache-kept-existing,1726353952051,1726353952052 -native-federation-node,build,,8809120865456304418,0,success,1726353952012,1726353952703 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726353952012,1726353953896 -native-federation-core,publish-local,,14894214120418178249,0,success,1726353952053,1726353954052 -native-federation,publish-local,,1861036809270389725,0,success,1726353952704,1726353954448 -native-federation-node,publish-local,,5504308643632712067,0,success,1726353954052,1726353955532 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726353953896,1726353955639 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726354312646,1726354312663 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726354312665,1726354312671 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726354312673,1726354312675 -native-federation,post-build,,11398177176863654430,0,success,1726354312676,1726354312700 -native-federation-esbuild,build,,1126710489789174357,0,local-cache-kept-existing,1726354312701,1726354312702 -native-federation-node,build,,15878842813795929937,1,failure,1726354312665,1726354313321 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726354312665,1726354314471 -native-federation-core,publish-local,,14894214120418178249,0,success,1726354312703,1726354314644 -native-federation,publish-local,,1861036809270389725,0,success,1726354313321,1726354315235 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726354314471,1726354316397 -native-federation-runtime,build,production,1964010631498650377,0,local-cache-kept-existing,1726354343547,1726354343563 -native-federation-core,build,,13841264374381191728,0,local-cache-kept-existing,1726354343565,1726354343571 -native-federation,build,,16955657735499413630,0,local-cache-kept-existing,1726354343573,1726354343575 -native-federation,post-build,,11398177176863654430,0,success,1726354343576,1726354343599 -native-federation-esbuild,build,,1126710489789174357,0,local-cache-kept-existing,1726354343600,1726354343601 -native-federation-runtime,publish-local,,2771437393669266362,0,success,1726354343565,1726354344233 -native-federation-core,publish-local,,14894214120418178249,0,success,1726354343601,1726354344258 -native-federation-node,build,,17466049652059571799,0,success,1726354343565,1726354344262 -native-federation-esbuild,publish-local,,11571366829124840657,0,success,1726354344258,1726354344842 -native-federation,publish-local,,1861036809270389725,0,success,1726354344233,1726354344878 -native-federation-node,publish-local,,405619093381758836,0,success,1726354344263,1726354345861 diff --git a/libs/native-federation-runtime/package.json b/libs/native-federation-runtime/package.json index d4df7eb8..db5fff58 100644 --- a/libs/native-federation-runtime/package.json +++ b/libs/native-federation-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@softarc/native-federation-runtime", - "version": "2.0.10", + "version": "2.0.10-hotfix.2", "dependencies": { "tslib": "^2.3.0" }, diff --git a/libs/native-federation-runtime/src/lib/process-remote-shared.ts b/libs/native-federation-runtime/src/lib/process-remote-shared.ts index 18d32ec1..06842bbc 100644 --- a/libs/native-federation-runtime/src/lib/process-remote-shared.ts +++ b/libs/native-federation-runtime/src/lib/process-remote-shared.ts @@ -65,15 +65,11 @@ export function processRemoteShared( } if (hostShared.version && remoteShared.version) { - console.log( - 'SINGLETON', - remoteShared.packageName, - hostShared, - remoteShared, - satisfies(onlyMajorMinorPatch(hostShared.version), remoteShared.requiredVersion) - ); if ( - satisfies(onlyMajorMinorPatch(hostShared.version), remoteShared.requiredVersion) + satisfies( + onlyMajorMinorPatch(hostShared.version), + remoteShared.requiredVersion + ) ) { // Use the host's version of the package scope[packageName] = relHostBundlesPath + hostShared.outFileName; @@ -95,16 +91,18 @@ export function processRemoteShared( (!hostShared.version && !remoteShared.version) || // Neither host nor remote has version info, it is a shared mapping (hostShared.version && remoteShared.version && - satisfies(onlyMajorMinorPatch(hostShared.version), remoteShared.requiredVersion)) // Host's version is compatible + satisfies( + onlyMajorMinorPatch(hostShared.version), + remoteShared.requiredVersion + )) // Host's version is compatible ) { // Use the host's version of the package scope[packageName] = relHostBundlesPath + hostShared.outFileName; } } - function onlyMajorMinorPatch(version: string) { const o = parse(version); - if(!o) throw new Error('Cannot parse version ' + version); + if (!o) throw new Error('Cannot parse version ' + version); return o.major + '.' + o.minor + '.' + o.patch; }