chore: Upgraded NX from version 16.8.1 to 21.3.11 (#1076)

-  NX Version: 21.3.11 (Local)
-  All existing projects properly recognized: @hyperdx/common-utils, @hyperdx/api, @hyperdx/app
-  All NX commands are working properly
-  Edited the `.vscode/settings.json` adding `editor.tabSize`, `editor.insertSpaces`, `editor.detectIndentation` to keep the format standard for all developers.
-  Updated the `changeset`

## Why? Benefits

- Monorepo optimization - Improved incremental builds when only one package changes
- Enhanced Caching - More granular and intelligent caching mechanisms reduce redundant work
  - 20-40% faster build times in CI/CD due to improved caching 
- Improved Project Graph - Improved support for modern build tools (ESBuild, SWC, etc.)
- Enhanced visualization and analysis of project dependencies
- Clearer migration guides for future upgrades
- More intuitive commands and better error messages


## Tested

- `npx nx show projects`
- `npx nx graph --dry-run`
- `npx nx run @hyperdx/common-utils:dev --help`
- `bun run app:dev:local`

Lint

```
hyperdx/packages/common-utils && npm run build
npx nx run-many -t ci:lint
```

<img width="1126" height="314" alt="CleanShot 2025-08-17 at 22 47 19@2x" src="https://github.com/user-attachments/assets/e5186e1b-9799-491f-8ee8-25b26bd82a54" />


## Evidence

<img width="3810" height="1724" alt="CleanShot 2025-07-24 at 21 15 24@2x" src="https://github.com/user-attachments/assets/1f4d316e-de14-4e35-9098-3b33420afc18" />
This commit is contained in:
Candido Sales Gomes 2025-08-18 13:16:05 -04:00 committed by GitHub
parent 4c459dc03e
commit 5a59d32c00
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 373 additions and 298 deletions

View file

@ -0,0 +1,7 @@
---
'@hyperdx/api': major
'@hyperdx/app': major
'@hyperdx/common-utils': major
---
Upgraded NX from version 16.8.1 to 21.3.11

3
.gitignore vendored
View file

@ -67,3 +67,6 @@ scripts/*.csv
# docker
docker-compose.prod.yml
.volumes
# NX
.nx/

18
.vscode/settings.json vendored
View file

@ -1,4 +1,7 @@
{
"editor.tabSize": 2,
"editor.insertSpaces": true,
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "always",
@ -16,7 +19,11 @@
"[css]": {
"editor.defaultFormatter": "stylelint.vscode-stylelint"
},
"stylelint.validate": ["css", "postcss", "scss"],
"stylelint.validate": [
"css",
"postcss",
"scss"
],
"cssVariables.lookupFiles": [
"**/*.css",
"**/*.scss",
@ -32,5 +39,10 @@
"**/yarn.lock": true,
"**/yarn-*.cjs": true
},
"cSpell.words": ["micropip", "opamp", "pyimport", "pyodide"]
}
"cSpell.words": [
"micropip",
"opamp",
"pyimport",
"pyodide"
]
}

26
nx.json
View file

@ -8,15 +8,35 @@
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"]
"dependsOn": [
"^build"
]
}
},
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "lint", "test"]
"cacheableOperations": [
"build",
"lint",
"test"
]
}
}
},
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/jest.config.[jt]s",
"!{projectRoot}/.eslintrc.json"
],
"sharedGlobals": []
}
}
}

View file

@ -8,7 +8,7 @@
],
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@nx/workspace": "16.8.1",
"@nx/workspace": "21.3.11",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"concurrently": "^9.1.2",
@ -24,7 +24,7 @@
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"nx": "16.8.1",
"nx": "21.3.11",
"prettier": "3.3.3"
},
"scripts": {

View file

@ -94,8 +94,8 @@
"dev": "DOTENV_CONFIG_PATH=.env.development nodemon --signal SIGTERM -e ts,json --exec 'ts-node' --transpile-only -r tsconfig-paths/register -r dotenv-expand/config -r '@hyperdx/node-opentelemetry/build/src/tracing' ./src/index.ts",
"dev-task": "DOTENV_CONFIG_PATH=.env.development nodemon --signal SIGTERM -e ts,json --exec 'ts-node' --transpile-only -r tsconfig-paths/register -r dotenv-expand/config -r '@hyperdx/node-opentelemetry/build/src/tracing' ./src/tasks/index.ts",
"build": "tsc && tsc-alias && esbuild ../../node_modules/@hyperdx/node-opentelemetry/build/src/tracing --bundle --minify --platform=node --outfile=dist/tracing.js && esbuild ./build/src/index.js ./build/src/tasks/index.js --bundle --minify --platform=node --target=node22 --outdir=dist --alias:@='./src' && mkdir -p dist/opamp && cp -r src/opamp/proto dist/opamp/proto && rimraf ./build",
"lint": "eslint --quiet . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint": "npx eslint --quiet . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix",
"ci:lint": "yarn lint && yarn tsc --noEmit",
"ci:int": "DOTENV_CONFIG_PATH=.env.test jest --runInBand --ci --forceExit --coverage",
"dev:int": "DOTENV_CONFIG_PATH=.env.test jest --watchAll --runInBand --detectOpenHandles",

View file

@ -11,8 +11,8 @@
"dev:local": "NEXT_PUBLIC_IS_LOCAL_MODE=true npx dotenv -e .env.development -- next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --quiet . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"lint": "npx eslint --quiet . --ext .ts,.tsx",
"lint:fix": "npx eslint . --ext .ts,.tsx --fix",
"lint:styles": "stylelint **/*/*.{css,scss}",
"ci:lint": "yarn lint && yarn tsc --noEmit && yarn lint:styles --quiet",
"ci:unit": "jest --ci --coverage",

View file

@ -51,8 +51,8 @@
"dev": "nodemon --watch ./src --ext ts --exec \"tsup\"",
"build": "tsup",
"ci:build": "tsup",
"lint": "eslint --quiet . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"lint": "npx eslint --quiet . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix",
"ci:lint": "yarn lint && yarn tsc --noEmit",
"ci:unit": "jest --runInBand --ci --forceExit --coverage",
"dev:unit": "jest --watchAll --runInBand --detectOpenHandles"

601
yarn.lock
View file

@ -3422,6 +3422,25 @@ __metadata:
languageName: node
linkType: hard
"@emnapi/core@npm:^1.1.0":
version: 1.4.5
resolution: "@emnapi/core@npm:1.4.5"
dependencies:
"@emnapi/wasi-threads": "npm:1.0.4"
tslib: "npm:^2.4.0"
checksum: 10c0/da4a57f65f325d720d0e0d1a9c6618b90c4c43a5027834a110476984e1d47c95ebaed4d316b5dddb9c0ed9a493ffeb97d1934f9677035f336d8a36c1f3b2818f
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.0":
version: 1.4.5
resolution: "@emnapi/runtime@npm:1.4.5"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/37a0278be5ac81e918efe36f1449875cbafba947039c53c65a1f8fc238001b866446fc66041513b286baaff5d6f9bec667f5164b3ca481373a8d9cb65bfc984b
languageName: node
linkType: hard
"@emnapi/runtime@npm:^1.1.1":
version: 1.2.0
resolution: "@emnapi/runtime@npm:1.2.0"
@ -3431,6 +3450,15 @@ __metadata:
languageName: node
linkType: hard
"@emnapi/wasi-threads@npm:1.0.4":
version: 1.0.4
resolution: "@emnapi/wasi-threads@npm:1.0.4"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/2c91a53e62f875800baf035c4d42c9c0d18e5afd9a31ca2aac8b435aeaeaeaac386b5b3d0d0e70aa7a5a9852bbe05106b1f680cd82cce03145c703b423d41313
languageName: node
linkType: hard
"@emotion/babel-plugin@npm:^11.10.6":
version: 11.10.6
resolution: "@emotion/babel-plugin@npm:11.10.6"
@ -5161,6 +5189,13 @@ __metadata:
languageName: node
linkType: hard
"@jest/diff-sequences@npm:30.0.1":
version: 30.0.1
resolution: "@jest/diff-sequences@npm:30.0.1"
checksum: 10c0/3a840404e6021725ef7f86b11f7b2d13dd02846481264db0e447ee33b7ee992134e402cdc8b8b0ac969d37c6c0183044e382dedee72001cdf50cfb3c8088de74
languageName: node
linkType: hard
"@jest/environment@npm:^28.1.3":
version: 28.1.3
resolution: "@jest/environment@npm:28.1.3"
@ -5241,6 +5276,13 @@ __metadata:
languageName: node
linkType: hard
"@jest/get-type@npm:30.0.1":
version: 30.0.1
resolution: "@jest/get-type@npm:30.0.1"
checksum: 10c0/92437ae42d0df57e8acc2d067288151439db4752cde4f5e680c73c8a6e34568bbd8c1c81a2f2f9a637a619c2aac8bc87553fb80e31475b59e2ed789a71e5e540
languageName: node
linkType: hard
"@jest/globals@npm:^28.1.3":
version: 28.1.3
resolution: "@jest/globals@npm:28.1.3"
@ -5290,6 +5332,15 @@ __metadata:
languageName: node
linkType: hard
"@jest/schemas@npm:30.0.5":
version: 30.0.5
resolution: "@jest/schemas@npm:30.0.5"
dependencies:
"@sinclair/typebox": "npm:^0.34.0"
checksum: 10c0/449dcd7ec5c6505e9ac3169d1143937e67044ae3e66a729ce4baf31812dfd30535f2b3b2934393c97cfdf5984ff581120e6b38f62b8560c8b5b7cc07f4175f65
languageName: node
linkType: hard
"@jest/schemas@npm:^28.1.3":
version: 28.1.3
resolution: "@jest/schemas@npm:28.1.3"
@ -5883,6 +5934,17 @@ __metadata:
languageName: node
linkType: hard
"@napi-rs/wasm-runtime@npm:0.2.4":
version: 0.2.4
resolution: "@napi-rs/wasm-runtime@npm:0.2.4"
dependencies:
"@emnapi/core": "npm:^1.1.0"
"@emnapi/runtime": "npm:^1.1.0"
"@tybys/wasm-util": "npm:^0.9.0"
checksum: 10c0/1040de49b2ef509db207e2517465dbf7fb3474f20e8ec32897672a962ff4f59872385666dac61dc9dbeae3cae5dad265d8dc3865da756adeb07d1634c67b03a1
languageName: node
linkType: hard
"@ndelangen/get-tarball@npm:^3.0.7":
version: 3.0.9
resolution: "@ndelangen/get-tarball@npm:3.0.9"
@ -6038,137 +6100,107 @@ __metadata:
languageName: node
linkType: hard
"@nrwl/devkit@npm:16.8.1":
version: 16.8.1
resolution: "@nrwl/devkit@npm:16.8.1"
"@nx/devkit@npm:21.3.11":
version: 21.3.11
resolution: "@nx/devkit@npm:21.3.11"
dependencies:
"@nx/devkit": "npm:16.8.1"
checksum: 10c0/94497fbdb62a814236206db7d16e26249d830ef625a60de5a65f6d5375fe55687985588f8a5d7f8386a555aab2ce342dc27b38bf088deb59967ab38bc48d4443
languageName: node
linkType: hard
"@nrwl/tao@npm:16.8.1":
version: 16.8.1
resolution: "@nrwl/tao@npm:16.8.1"
dependencies:
nx: "npm:16.8.1"
tslib: "npm:^2.3.0"
bin:
tao: index.js
checksum: 10c0/d3c5319183e74088735f53f7e379aa260acc2b7ab42e4469d628db8c83c36de156887e6fa25c41c012c72fb192571ca2f6e4889fb5ee248dda57948bc55132ab
languageName: node
linkType: hard
"@nrwl/workspace@npm:16.8.1":
version: 16.8.1
resolution: "@nrwl/workspace@npm:16.8.1"
dependencies:
"@nx/workspace": "npm:16.8.1"
checksum: 10c0/ba117c995dbf814db62c60517ac01cb689fc3ef95d011827db69bc71aff973ae1b4bc38a1cffb5325d0083f18f105f4e9041299c8bc63c0430612c2c5efc1e94
languageName: node
linkType: hard
"@nx/devkit@npm:16.8.1":
version: 16.8.1
resolution: "@nx/devkit@npm:16.8.1"
dependencies:
"@nrwl/devkit": "npm:16.8.1"
ejs: "npm:^3.1.7"
enquirer: "npm:~2.3.6"
ignore: "npm:^5.0.4"
semver: "npm:7.5.3"
minimatch: "npm:9.0.3"
semver: "npm:^7.5.3"
tmp: "npm:~0.2.1"
tslib: "npm:^2.3.0"
yargs-parser: "npm:21.1.1"
peerDependencies:
nx: ">= 15 <= 17"
checksum: 10c0/b320a5c2385ed0c1c1e6521a2e86bb9e72ca97d21d63332f9b00f271b9e9a31cd0bd32dc76139dbf754cf4b58cc153913c5057f478aa60da2c18c47604e4d566
nx: 21.3.11
checksum: 10c0/3af10cbc5eea359e7eede4aa742aa6785e7562ec525b28ec61fa087bc259c344a1cb22d01997e111231e194f4518a68344f3a0a0c6baa470a0c965359fca8a52
languageName: node
linkType: hard
"@nx/nx-darwin-arm64@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-darwin-arm64@npm:16.8.1"
"@nx/nx-darwin-arm64@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-darwin-arm64@npm:21.3.11"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
"@nx/nx-darwin-x64@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-darwin-x64@npm:16.8.1"
"@nx/nx-darwin-x64@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-darwin-x64@npm:21.3.11"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
"@nx/nx-freebsd-x64@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-freebsd-x64@npm:16.8.1"
"@nx/nx-freebsd-x64@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-freebsd-x64@npm:21.3.11"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
"@nx/nx-linux-arm-gnueabihf@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-linux-arm-gnueabihf@npm:16.8.1"
"@nx/nx-linux-arm-gnueabihf@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-linux-arm-gnueabihf@npm:21.3.11"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
"@nx/nx-linux-arm64-gnu@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-linux-arm64-gnu@npm:16.8.1"
"@nx/nx-linux-arm64-gnu@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-linux-arm64-gnu@npm:21.3.11"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
"@nx/nx-linux-arm64-musl@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-linux-arm64-musl@npm:16.8.1"
"@nx/nx-linux-arm64-musl@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-linux-arm64-musl@npm:21.3.11"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
"@nx/nx-linux-x64-gnu@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-linux-x64-gnu@npm:16.8.1"
"@nx/nx-linux-x64-gnu@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-linux-x64-gnu@npm:21.3.11"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
"@nx/nx-linux-x64-musl@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-linux-x64-musl@npm:16.8.1"
"@nx/nx-linux-x64-musl@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-linux-x64-musl@npm:21.3.11"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
"@nx/nx-win32-arm64-msvc@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-win32-arm64-msvc@npm:16.8.1"
"@nx/nx-win32-arm64-msvc@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-win32-arm64-msvc@npm:21.3.11"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
"@nx/nx-win32-x64-msvc@npm:16.8.1":
version: 16.8.1
resolution: "@nx/nx-win32-x64-msvc@npm:16.8.1"
"@nx/nx-win32-x64-msvc@npm:21.3.11":
version: 21.3.11
resolution: "@nx/nx-win32-x64-msvc@npm:21.3.11"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
"@nx/workspace@npm:16.8.1":
version: 16.8.1
resolution: "@nx/workspace@npm:16.8.1"
"@nx/workspace@npm:21.3.11":
version: 21.3.11
resolution: "@nx/workspace@npm:21.3.11"
dependencies:
"@nrwl/workspace": "npm:16.8.1"
"@nx/devkit": "npm:16.8.1"
"@nx/devkit": "npm:21.3.11"
"@zkochan/js-yaml": "npm:0.0.7"
chalk: "npm:^4.1.0"
enquirer: "npm:~2.3.6"
ignore: "npm:^5.0.4"
nx: "npm:16.8.1"
rxjs: "npm:^7.8.0"
nx: "npm:21.3.11"
picomatch: "npm:4.0.2"
tslib: "npm:^2.3.0"
yargs-parser: "npm:21.1.1"
checksum: 10c0/a0d4ee3a14dec30a09155f3c2b37ed8f3582650de86585dcf884cd961a2f0f30296b3edfc86db08af3e799db7e98f20553ae78dd6929aa14b0a5bf5c4f466116
checksum: 10c0/d652c048cfffa6467e7294115fb4b6849d25fbbca1c020740b173c9dddcd0d80df15b0b94fd36775885470478ebd1b4e41202bb5af98910e1dd84f15fee4c123
languageName: node
linkType: hard
@ -7639,17 +7671,6 @@ __metadata:
languageName: node
linkType: hard
"@parcel/watcher@npm:2.0.4":
version: 2.0.4
resolution: "@parcel/watcher@npm:2.0.4"
dependencies:
node-addon-api: "npm:^3.2.1"
node-gyp: "npm:latest"
node-gyp-build: "npm:^4.3.0"
checksum: 10c0/7c7e8fa2879371135039cf6559122808fc37d436701dd804f3e0b4897d5690a2c92c73795ad4a015d8715990bfb4226dc6d14fea429522fcb5662ce370508e8d
languageName: node
linkType: hard
"@pkgjs/parseargs@npm:^0.11.0":
version: 0.11.0
resolution: "@pkgjs/parseargs@npm:0.11.0"
@ -8307,6 +8328,13 @@ __metadata:
languageName: node
linkType: hard
"@sinclair/typebox@npm:^0.34.0":
version: 0.34.40
resolution: "@sinclair/typebox@npm:0.34.40"
checksum: 10c0/95d7003d49844b31b1f02e023bf0c5bb13cceb07297b20c4df23fb4ba075bd138c20ad2538b862c50a171c76e4a93b93ae831814a6884a7d50bf7c79b2819efb
languageName: node
linkType: hard
"@sindresorhus/merge-streams@npm:^2.1.0":
version: 2.3.0
resolution: "@sindresorhus/merge-streams@npm:2.3.0"
@ -9518,6 +9546,15 @@ __metadata:
languageName: node
linkType: hard
"@tybys/wasm-util@npm:^0.9.0":
version: 0.9.0
resolution: "@tybys/wasm-util@npm:0.9.0"
dependencies:
tslib: "npm:^2.4.0"
checksum: 10c0/f9fde5c554455019f33af6c8215f1a1435028803dc2a2825b077d812bed4209a1a64444a4ca0ce2ea7e1175c8d88e2f9173a36a33c199e8a5c671aa31de8242d
languageName: node
linkType: hard
"@types/accepts@npm:*":
version: 1.3.5
resolution: "@types/accepts@npm:1.3.5"
@ -11427,24 +11464,24 @@ __metadata:
languageName: node
linkType: hard
"@yarnpkg/parsers@npm:3.0.0-rc.46":
version: 3.0.0-rc.46
resolution: "@yarnpkg/parsers@npm:3.0.0-rc.46"
"@yarnpkg/parsers@npm:3.0.2":
version: 3.0.2
resolution: "@yarnpkg/parsers@npm:3.0.2"
dependencies:
js-yaml: "npm:^3.10.0"
tslib: "npm:^2.4.0"
checksum: 10c0/c7f421c6885142f351459031c093fb2e79abcce6f4a89765a10e600bb7ab122949c54bcea2b23de9572a2b34ba29f822b17831c1c43ba50373ceb8cb5b336667
checksum: 10c0/a0c340e13129643162423d7e666061c0b39b143bfad3fc5a74c7d92a30fd740f6665d41cd4e61832c20375889d793eea1d1d103cacb39ed68f7acd168add8c53
languageName: node
linkType: hard
"@zkochan/js-yaml@npm:0.0.6":
version: 0.0.6
resolution: "@zkochan/js-yaml@npm:0.0.6"
"@zkochan/js-yaml@npm:0.0.7":
version: 0.0.7
resolution: "@zkochan/js-yaml@npm:0.0.7"
dependencies:
argparse: "npm:^2.0.1"
bin:
js-yaml: bin/js-yaml.js
checksum: 10c0/5ce27ae75fb1db9657d4065bf6b380b4c0f756feb1bdf42bfde40551a74bcc0ec918f748cbdbd5d95b7107d00bc2f731ee731b5cfe93acb6f7da5639b16aa1f8
checksum: 10c0/c8b3525717912811f9422ed50e94c5751ed6f771eb1b7e5cde097f14835654931e2bdaecb1e5fc37b51cf8d822410a307f16dd1581d46149398c30215f3f9bac
languageName: node
linkType: hard
@ -11781,7 +11818,7 @@ __metadata:
languageName: node
linkType: hard
"ansi-styles@npm:^5.0.0":
"ansi-styles@npm:^5.0.0, ansi-styles@npm:^5.2.0":
version: 5.2.0
resolution: "ansi-styles@npm:5.2.0"
checksum: 10c0/9c4ca80eb3c2fb7b33841c210d2f20807f40865d27008d7c3f707b7f95cab7d67462a565e2388ac3285b71cb3d9bb2173de8da37c57692a362885ec34d6e27df
@ -12166,17 +12203,6 @@ __metadata:
languageName: node
linkType: hard
"axios@npm:^1.0.0":
version: 1.3.4
resolution: "axios@npm:1.3.4"
dependencies:
follow-redirects: "npm:^1.15.0"
form-data: "npm:^4.0.0"
proxy-from-env: "npm:^1.1.0"
checksum: 10c0/39f03d83a9ed5760094f92a677af2533ab159448c8e22bfba98d8957bdef2babe142e117a0a7d9a5aff1d5f28f8ced28eb0471b6a91d33410375c89e49032193
languageName: node
linkType: hard
"axios@npm:^1.6.2":
version: 1.6.2
resolution: "axios@npm:1.6.2"
@ -12188,6 +12214,17 @@ __metadata:
languageName: node
linkType: hard
"axios@npm:^1.8.3":
version: 1.11.0
resolution: "axios@npm:1.11.0"
dependencies:
follow-redirects: "npm:^1.15.6"
form-data: "npm:^4.0.4"
proxy-from-env: "npm:^1.1.0"
checksum: 10c0/5de273d33d43058610e4d252f0963cc4f10714da0bfe872e8ef2cbc23c2c999acc300fd357b6bce0fc84a2ca9bd45740fa6bb28199ce2c1266c8b1a393f2b36e
languageName: node
linkType: hard
"axobject-query@npm:^3.2.1":
version: 3.2.1
resolution: "axobject-query@npm:3.2.1"
@ -13369,17 +13406,6 @@ __metadata:
languageName: node
linkType: hard
"cliui@npm:^7.0.2":
version: 7.0.4
resolution: "cliui@npm:7.0.4"
dependencies:
string-width: "npm:^4.2.0"
strip-ansi: "npm:^6.0.0"
wrap-ansi: "npm:^7.0.0"
checksum: 10c0/6035f5daf7383470cef82b3d3db00bec70afb3423538c50394386ffbbab135e26c3689c41791f911fa71b62d13d3863c712fdd70f0fbdffd938a1e6fd09aac00
languageName: node
linkType: hard
"cliui@npm:^8.0.1":
version: 8.0.1
resolution: "cliui@npm:8.0.1"
@ -14823,7 +14849,7 @@ __metadata:
languageName: node
linkType: hard
"dotenv-expand@npm:^10.0.0, dotenv-expand@npm:~10.0.0":
"dotenv-expand@npm:^10.0.0":
version: 10.0.0
resolution: "dotenv-expand@npm:10.0.0"
checksum: 10c0/298f5018e29cfdcb0b5f463ba8e8627749103fbcf6cf81c561119115754ed582deee37b49dfc7253028aaba875ab7aea5fa90e5dac88e511d009ab0e6677924e
@ -14839,6 +14865,15 @@ __metadata:
languageName: node
linkType: hard
"dotenv-expand@npm:~11.0.6":
version: 11.0.7
resolution: "dotenv-expand@npm:11.0.7"
dependencies:
dotenv: "npm:^16.4.5"
checksum: 10c0/d80b8a7be085edf351270b96ac0e794bc3ddd7f36157912939577cb4d33ba6492ebee349d59798b71b90e36f498d24a2a564fb4aa00073b2ef4c2a3a49c467b1
languageName: node
linkType: hard
"dotenv@npm:^16.0.0":
version: 16.4.5
resolution: "dotenv@npm:16.4.5"
@ -14846,20 +14881,13 @@ __metadata:
languageName: node
linkType: hard
"dotenv@npm:^16.3.0, dotenv@npm:^16.4.5, dotenv@npm:^16.4.7":
"dotenv@npm:^16.3.0, dotenv@npm:^16.4.5, dotenv@npm:^16.4.7, dotenv@npm:~16.4.5":
version: 16.4.7
resolution: "dotenv@npm:16.4.7"
checksum: 10c0/be9f597e36a8daf834452daa1f4cc30e5375a5968f98f46d89b16b983c567398a330580c88395069a77473943c06b877d1ca25b4afafcdd6d4adb549e8293462
languageName: node
linkType: hard
"dotenv@npm:~16.3.1":
version: 16.3.1
resolution: "dotenv@npm:16.3.1"
checksum: 10c0/b95ff1bbe624ead85a3cd70dbd827e8e06d5f05f716f2d0cbc476532d54c7c9469c3bc4dd93ea519f6ad711cb522c00ac9a62b6eb340d5affae8008facc3fbd7
languageName: node
linkType: hard
"dunder-proto@npm:^1.0.1":
version: 1.0.1
resolution: "dunder-proto@npm:1.0.1"
@ -14871,13 +14899,6 @@ __metadata:
languageName: node
linkType: hard
"duplexer@npm:^0.1.1":
version: 0.1.2
resolution: "duplexer@npm:0.1.2"
checksum: 10c0/c57bcd4bdf7e623abab2df43a7b5b23d18152154529d166c1e0da6bee341d84c432d157d7e97b32fecb1bf3a8b8857dd85ed81a915789f550637ed25b8e64fc2
languageName: node
linkType: hard
"duplexify@npm:^3.5.0, duplexify@npm:^3.6.0":
version: 3.7.1
resolution: "duplexify@npm:3.7.1"
@ -15318,6 +15339,18 @@ __metadata:
languageName: node
linkType: hard
"es-set-tostringtag@npm:^2.1.0":
version: 2.1.0
resolution: "es-set-tostringtag@npm:2.1.0"
dependencies:
es-errors: "npm:^1.3.0"
get-intrinsic: "npm:^1.2.6"
has-tostringtag: "npm:^1.0.2"
hasown: "npm:^2.0.2"
checksum: 10c0/ef2ca9ce49afe3931cb32e35da4dcb6d86ab02592cfc2ce3e49ced199d9d0bb5085fc7e73e06312213765f5efa47cc1df553a6a5154584b21448e9fb8355b1af
languageName: node
linkType: hard
"es-shim-unscopables@npm:^1.0.0":
version: 1.0.0
resolution: "es-shim-unscopables@npm:1.0.0"
@ -16494,19 +16527,6 @@ __metadata:
languageName: node
linkType: hard
"fast-glob@npm:3.2.7":
version: 3.2.7
resolution: "fast-glob@npm:3.2.7"
dependencies:
"@nodelib/fs.stat": "npm:^2.0.2"
"@nodelib/fs.walk": "npm:^1.2.3"
glob-parent: "npm:^5.1.2"
merge2: "npm:^1.3.0"
micromatch: "npm:^4.0.4"
checksum: 10c0/cc820a9acbd99c51267d525ed3c0c368b57d273f8d34e2401eef824390ff38ff419af3c0308d4ec1aef3dae0e24d1ac1dfe3156e5c702d63416a4c877ab7e0c4
languageName: node
linkType: hard
"fast-glob@npm:^3.2.11, fast-glob@npm:^3.3.1, fast-glob@npm:^3.3.2":
version: 3.3.2
resolution: "fast-glob@npm:3.3.2"
@ -16926,6 +16946,16 @@ __metadata:
languageName: node
linkType: hard
"follow-redirects@npm:^1.15.6":
version: 1.15.11
resolution: "follow-redirects@npm:1.15.11"
peerDependenciesMeta:
debug:
optional: true
checksum: 10c0/d301f430542520a54058d4aeeb453233c564aaccac835d29d15e050beb33f339ad67d9bddbce01739c5dc46a6716dbe3d9d0d5134b1ca203effa11a7ef092343
languageName: node
linkType: hard
"for-each@npm:^0.3.3":
version: 0.3.3
resolution: "for-each@npm:0.3.3"
@ -16988,6 +17018,19 @@ __metadata:
languageName: node
linkType: hard
"form-data@npm:^4.0.4":
version: 4.0.4
resolution: "form-data@npm:4.0.4"
dependencies:
asynckit: "npm:^0.4.0"
combined-stream: "npm:^1.0.8"
es-set-tostringtag: "npm:^2.1.0"
hasown: "npm:^2.0.2"
mime-types: "npm:^2.1.12"
checksum: 10c0/373525a9a034b9d57073e55eab79e501a714ffac02e7a9b01be1c820780652b16e4101819785e1e18f8d98f0aee866cc654d660a435c378e16a72f2e7cac9695
languageName: node
linkType: hard
"formdata-polyfill@npm:^4.0.10":
version: 4.0.10
resolution: "formdata-polyfill@npm:4.0.10"
@ -17030,6 +17073,15 @@ __metadata:
languageName: node
linkType: hard
"front-matter@npm:^4.0.2":
version: 4.0.2
resolution: "front-matter@npm:4.0.2"
dependencies:
js-yaml: "npm:^3.13.1"
checksum: 10c0/7a0df5ca37428dd563c057bc17a8940481fe53876609bcdc443a02ce463c70f1842c7cb4628b80916de46a253732794b36fb6a31105db0f185698a93acee4011
languageName: node
linkType: hard
"fs-constants@npm:^1.0.0":
version: 1.0.0
resolution: "fs-constants@npm:1.0.0"
@ -17274,7 +17326,7 @@ __metadata:
languageName: node
linkType: hard
"get-intrinsic@npm:^1.3.0":
"get-intrinsic@npm:^1.2.6, get-intrinsic@npm:^1.3.0":
version: 1.3.0
resolution: "get-intrinsic@npm:1.3.0"
dependencies:
@ -17461,20 +17513,6 @@ __metadata:
languageName: node
linkType: hard
"glob@npm:7.1.4":
version: 7.1.4
resolution: "glob@npm:7.1.4"
dependencies:
fs.realpath: "npm:^1.0.0"
inflight: "npm:^1.0.4"
inherits: "npm:2"
minimatch: "npm:^3.0.4"
once: "npm:^1.3.0"
path-is-absolute: "npm:^1.0.0"
checksum: 10c0/7f6fcbf600eb2298cce34c65f6d8bbe6933ddd4f88aa5b38a9c6feec82b615bb33b63b120725303e89c4b50284413c21d2ff883414717a5c7d0c9f7cd7a0e5fe
languageName: node
linkType: hard
"glob@npm:7.1.6":
version: 7.1.6
resolution: "glob@npm:7.1.6"
@ -18234,7 +18272,7 @@ __metadata:
resolution: "hyperdx@workspace:."
dependencies:
"@changesets/cli": "npm:^2.26.2"
"@nx/workspace": "npm:16.8.1"
"@nx/workspace": "npm:21.3.11"
"@typescript-eslint/eslint-plugin": "npm:^8.7.0"
"@typescript-eslint/parser": "npm:^8.7.0"
concurrently: "npm:^9.1.2"
@ -18250,7 +18288,7 @@ __metadata:
eslint-plugin-simple-import-sort: "npm:^12.1.1"
husky: "npm:^8.0.3"
lint-staged: "npm:^13.1.2"
nx: "npm:16.8.1"
nx: "npm:21.3.11"
prettier: "npm:3.3.3"
languageName: unknown
linkType: soft
@ -19340,6 +19378,18 @@ __metadata:
languageName: node
linkType: hard
"jest-diff@npm:^30.0.2":
version: 30.0.5
resolution: "jest-diff@npm:30.0.5"
dependencies:
"@jest/diff-sequences": "npm:30.0.1"
"@jest/get-type": "npm:30.0.1"
chalk: "npm:^4.1.2"
pretty-format: "npm:30.0.5"
checksum: 10c0/b218ced37b7676f578ea866762f04caa74901bdcf3f593872aa9a4991a586302651a1d16bb0386772adacc7580a452ec621359af75d733c0b50ea947fe1881d3
languageName: node
linkType: hard
"jest-docblock@npm:^28.1.1":
version: 28.1.1
resolution: "jest-docblock@npm:28.1.1"
@ -19812,17 +19862,6 @@ __metadata:
languageName: node
linkType: hard
"js-yaml@npm:4.1.0, js-yaml@npm:^4.1.0":
version: 4.1.0
resolution: "js-yaml@npm:4.1.0"
dependencies:
argparse: "npm:^2.0.1"
bin:
js-yaml: bin/js-yaml.js
checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f
languageName: node
linkType: hard
"js-yaml@npm:^3.10.0, js-yaml@npm:^3.13.0, js-yaml@npm:^3.13.1, js-yaml@npm:^3.6.1":
version: 3.14.1
resolution: "js-yaml@npm:3.14.1"
@ -19835,6 +19874,17 @@ __metadata:
languageName: node
linkType: hard
"js-yaml@npm:^4.1.0":
version: 4.1.0
resolution: "js-yaml@npm:4.1.0"
dependencies:
argparse: "npm:^2.0.1"
bin:
js-yaml: bin/js-yaml.js
checksum: 10c0/184a24b4eaacfce40ad9074c64fd42ac83cf74d8c8cd137718d456ced75051229e5061b8633c3366b8aada17945a7a356b337828c19da92b51ae62126575018f
languageName: node
linkType: hard
"jsbn@npm:1.1.0":
version: 1.1.0
resolution: "jsbn@npm:1.1.0"
@ -20280,6 +20330,13 @@ __metadata:
languageName: node
linkType: hard
"lines-and-columns@npm:2.0.3":
version: 2.0.3
resolution: "lines-and-columns@npm:2.0.3"
checksum: 10c0/09525c10010a925b7efe858f1dd3184eeac34f0a9bc34993075ec490efad71e948147746b18e9540279cc87cd44085b038f986903db3de65ffe96d38a7b91c4c
languageName: node
linkType: hard
"lines-and-columns@npm:^1.1.6":
version: 1.2.4
resolution: "lines-and-columns@npm:1.2.4"
@ -20287,13 +20344,6 @@ __metadata:
languageName: node
linkType: hard
"lines-and-columns@npm:~2.0.3":
version: 2.0.3
resolution: "lines-and-columns@npm:2.0.3"
checksum: 10c0/09525c10010a925b7efe858f1dd3184eeac34f0a9bc34993075ec490efad71e948147746b18e9540279cc87cd44085b038f986903db3de65ffe96d38a7b91c4c
languageName: node
linkType: hard
"lint-staged@npm:^13.1.2":
version: 13.1.2
resolution: "lint-staged@npm:13.1.2"
@ -20533,7 +20583,7 @@ __metadata:
languageName: node
linkType: hard
"log-symbols@npm:^4.1.0":
"log-symbols@npm:^4.0.0, log-symbols@npm:^4.1.0":
version: 4.1.0
resolution: "log-symbols@npm:4.1.0"
dependencies:
@ -21722,15 +21772,6 @@ __metadata:
languageName: node
linkType: hard
"minimatch@npm:3.0.5":
version: 3.0.5
resolution: "minimatch@npm:3.0.5"
dependencies:
brace-expansion: "npm:^1.1.7"
checksum: 10c0/f398652d0d260137c289c270a4ac98ebe0a27cd316fa0fac72b096e96cbdc89f71d80d47ac7065c716ba3b0b730783b19180bd85a35f9247535d2adfe96bba76
languageName: node
linkType: hard
"minimatch@npm:9.0.3":
version: 9.0.3
resolution: "minimatch@npm:9.0.3"
@ -22394,15 +22435,6 @@ __metadata:
languageName: node
linkType: hard
"node-addon-api@npm:^3.2.1":
version: 3.2.1
resolution: "node-addon-api@npm:3.2.1"
dependencies:
node-gyp: "npm:latest"
checksum: 10c0/41f21c9d12318875a2c429befd06070ce367065a3ef02952cfd4ea17ef69fa14012732f510b82b226e99c254da8d671847ea018cad785f839a5366e02dd56302
languageName: node
linkType: hard
"node-dir@npm:^0.1.17":
version: 0.1.17
resolution: "node-dir@npm:0.1.17"
@ -22451,17 +22483,6 @@ __metadata:
languageName: node
linkType: hard
"node-gyp-build@npm:^4.3.0":
version: 4.6.0
resolution: "node-gyp-build@npm:4.6.0"
bin:
node-gyp-build: bin.js
node-gyp-build-optional: optional.js
node-gyp-build-test: build-test.js
checksum: 10c0/147add65942acd3cf641d11d9becd030128c7298a5b4aec4ebf3ad4afcc3d0298ad2562afba3e7b2bf70160c5e2e82235e3bc043ff9c52dc68bdd36c856764fe
languageName: node
linkType: hard
"node-gyp@npm:latest":
version: 10.2.0
resolution: "node-gyp@npm:10.2.0"
@ -22679,59 +22700,58 @@ __metadata:
languageName: node
linkType: hard
"nx@npm:16.8.1":
version: 16.8.1
resolution: "nx@npm:16.8.1"
"nx@npm:21.3.11":
version: 21.3.11
resolution: "nx@npm:21.3.11"
dependencies:
"@nrwl/tao": "npm:16.8.1"
"@nx/nx-darwin-arm64": "npm:16.8.1"
"@nx/nx-darwin-x64": "npm:16.8.1"
"@nx/nx-freebsd-x64": "npm:16.8.1"
"@nx/nx-linux-arm-gnueabihf": "npm:16.8.1"
"@nx/nx-linux-arm64-gnu": "npm:16.8.1"
"@nx/nx-linux-arm64-musl": "npm:16.8.1"
"@nx/nx-linux-x64-gnu": "npm:16.8.1"
"@nx/nx-linux-x64-musl": "npm:16.8.1"
"@nx/nx-win32-arm64-msvc": "npm:16.8.1"
"@nx/nx-win32-x64-msvc": "npm:16.8.1"
"@parcel/watcher": "npm:2.0.4"
"@napi-rs/wasm-runtime": "npm:0.2.4"
"@nx/nx-darwin-arm64": "npm:21.3.11"
"@nx/nx-darwin-x64": "npm:21.3.11"
"@nx/nx-freebsd-x64": "npm:21.3.11"
"@nx/nx-linux-arm-gnueabihf": "npm:21.3.11"
"@nx/nx-linux-arm64-gnu": "npm:21.3.11"
"@nx/nx-linux-arm64-musl": "npm:21.3.11"
"@nx/nx-linux-x64-gnu": "npm:21.3.11"
"@nx/nx-linux-x64-musl": "npm:21.3.11"
"@nx/nx-win32-arm64-msvc": "npm:21.3.11"
"@nx/nx-win32-x64-msvc": "npm:21.3.11"
"@yarnpkg/lockfile": "npm:^1.1.0"
"@yarnpkg/parsers": "npm:3.0.0-rc.46"
"@zkochan/js-yaml": "npm:0.0.6"
axios: "npm:^1.0.0"
"@yarnpkg/parsers": "npm:3.0.2"
"@zkochan/js-yaml": "npm:0.0.7"
axios: "npm:^1.8.3"
chalk: "npm:^4.1.0"
cli-cursor: "npm:3.1.0"
cli-spinners: "npm:2.6.1"
cliui: "npm:^7.0.2"
dotenv: "npm:~16.3.1"
dotenv-expand: "npm:~10.0.0"
cliui: "npm:^8.0.1"
dotenv: "npm:~16.4.5"
dotenv-expand: "npm:~11.0.6"
enquirer: "npm:~2.3.6"
fast-glob: "npm:3.2.7"
figures: "npm:3.2.0"
flat: "npm:^5.0.2"
fs-extra: "npm:^11.1.0"
glob: "npm:7.1.4"
front-matter: "npm:^4.0.2"
ignore: "npm:^5.0.4"
js-yaml: "npm:4.1.0"
jest-diff: "npm:^30.0.2"
jsonc-parser: "npm:3.2.0"
lines-and-columns: "npm:~2.0.3"
minimatch: "npm:3.0.5"
lines-and-columns: "npm:2.0.3"
minimatch: "npm:9.0.3"
node-machine-id: "npm:1.1.12"
npm-run-path: "npm:^4.0.1"
open: "npm:^8.4.0"
semver: "npm:7.5.3"
ora: "npm:5.3.0"
resolve.exports: "npm:2.0.3"
semver: "npm:^7.5.3"
string-width: "npm:^4.2.3"
strong-log-transformer: "npm:^2.1.0"
tar-stream: "npm:~2.2.0"
tmp: "npm:~0.2.1"
tree-kill: "npm:^1.2.2"
tsconfig-paths: "npm:^4.1.2"
tslib: "npm:^2.3.0"
v8-compile-cache: "npm:2.3.0"
yaml: "npm:^2.6.0"
yargs: "npm:^17.6.2"
yargs-parser: "npm:21.1.1"
peerDependencies:
"@swc-node/register": ^1.4.2
"@swc/core": ^1.2.173
"@swc-node/register": ^1.8.0
"@swc/core": ^1.3.85
dependenciesMeta:
"@nx/nx-darwin-arm64":
optional: true
@ -22760,7 +22780,8 @@ __metadata:
optional: true
bin:
nx: bin/nx.js
checksum: 10c0/a1a65981054651b7a182367ffac493804dd02742b777055363a7b31204c7f1586f5454c9f607c034424c0e4d5564956fd677200f537ce586be60c7b56484f37d
nx-cloud: bin/nx-cloud.js
checksum: 10c0/ef1177345605a285514a736dd11ecf4706aa2b892d4f8181eaaa28e47686f5217987150bd3aeb11ef8f65b80780c8004c84636aac154e0d531182dedc28ad4f7
languageName: node
linkType: hard
@ -23036,6 +23057,22 @@ __metadata:
languageName: node
linkType: hard
"ora@npm:5.3.0":
version: 5.3.0
resolution: "ora@npm:5.3.0"
dependencies:
bl: "npm:^4.0.3"
chalk: "npm:^4.1.0"
cli-cursor: "npm:^3.1.0"
cli-spinners: "npm:^2.5.0"
is-interactive: "npm:^1.0.0"
log-symbols: "npm:^4.0.0"
strip-ansi: "npm:^6.0.0"
wcwidth: "npm:^1.0.1"
checksum: 10c0/30d5f3218eb75b0a2028c5fb9aa88e83e38a2f1745ab56839abb06c3ba31bae35f768f4e72c4f9e04e2a66be6a898e9312e8cf85c9333e1e3613eabb8c7cdf57
languageName: node
linkType: hard
"ora@npm:^5.4.1":
version: 5.4.1
resolution: "ora@npm:5.4.1"
@ -23580,6 +23617,13 @@ __metadata:
languageName: node
linkType: hard
"picomatch@npm:4.0.2, picomatch@npm:^4.0.1, picomatch@npm:^4.0.2":
version: 4.0.2
resolution: "picomatch@npm:4.0.2"
checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc
languageName: node
linkType: hard
"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1, picomatch@npm:^2.2.3, picomatch@npm:^2.3.0, picomatch@npm:^2.3.1":
version: 2.3.1
resolution: "picomatch@npm:2.3.1"
@ -23587,13 +23631,6 @@ __metadata:
languageName: node
linkType: hard
"picomatch@npm:^4.0.1, picomatch@npm:^4.0.2":
version: 4.0.2
resolution: "picomatch@npm:4.0.2"
checksum: 10c0/7c51f3ad2bb42c776f49ebf964c644958158be30d0a510efd5a395e8d49cb5acfed5b82c0c5b365523ce18e6ab85013c9ebe574f60305892ec3fa8eee8304ccc
languageName: node
linkType: hard
"pidtree@npm:^0.6.0":
version: 0.6.0
resolution: "pidtree@npm:0.6.0"
@ -24037,6 +24074,17 @@ __metadata:
languageName: node
linkType: hard
"pretty-format@npm:30.0.5":
version: 30.0.5
resolution: "pretty-format@npm:30.0.5"
dependencies:
"@jest/schemas": "npm:30.0.5"
ansi-styles: "npm:^5.2.0"
react-is: "npm:^18.3.1"
checksum: 10c0/9f6cf1af5c3169093866c80adbfdad32f69c692b62f24ba3ca8cdec8519336123323f896396f9fa40346a41b197c5f6be15aec4d8620819f12496afaaca93f81
languageName: node
linkType: hard
"pretty-format@npm:^27.0.2":
version: 27.5.1
resolution: "pretty-format@npm:27.5.1"
@ -25553,6 +25601,13 @@ __metadata:
languageName: node
linkType: hard
"resolve.exports@npm:2.0.3":
version: 2.0.3
resolution: "resolve.exports@npm:2.0.3"
checksum: 10c0/1ade1493f4642a6267d0a5e68faeac20b3d220f18c28b140343feb83694d8fed7a286852aef43689d16042c61e2ddb270be6578ad4a13990769e12065191200d
languageName: node
linkType: hard
"resolve.exports@npm:^1.1.0":
version: 1.1.1
resolution: "resolve.exports@npm:1.1.1"
@ -26064,17 +26119,6 @@ __metadata:
languageName: node
linkType: hard
"semver@npm:7.5.3":
version: 7.5.3
resolution: "semver@npm:7.5.3"
dependencies:
lru-cache: "npm:^6.0.0"
bin:
semver: bin/semver.js
checksum: 10c0/4cf3bab7e8cf8c2ae521fc4bcc50a4d6912a836360796b23b9f1c26f45d27a73f870e47664df4770bde0dd60dc4d4781a05fd49fe91d72376ea5519b9e791459
languageName: node
linkType: hard
"semver@npm:7.x, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.3.8, semver@npm:^7.5.2":
version: 7.5.2
resolution: "semver@npm:7.5.2"
@ -27128,19 +27172,6 @@ __metadata:
languageName: node
linkType: hard
"strong-log-transformer@npm:^2.1.0":
version: 2.1.0
resolution: "strong-log-transformer@npm:2.1.0"
dependencies:
duplexer: "npm:^0.1.1"
minimist: "npm:^1.2.0"
through: "npm:^2.3.4"
bin:
sl-log-transformer: bin/sl-log-transformer.js
checksum: 10c0/3c3b8aa8f34d661910563ff996412e2f527fc814e699a376854b554d4a4294ab7e285b4e2c08a080a7b19c5600a9b93a98798d3ac600fe3de545ca6605c07829
languageName: node
linkType: hard
"style-loader@npm:^3.3.1":
version: 3.3.4
resolution: "style-loader@npm:3.3.4"
@ -27738,7 +27769,7 @@ __metadata:
languageName: node
linkType: hard
"through@npm:^2.3.4, through@npm:^2.3.8":
"through@npm:^2.3.8":
version: 2.3.8
resolution: "through@npm:2.3.8"
checksum: 10c0/4b09f3774099de0d4df26d95c5821a62faee32c7e96fb1f4ebd54a2d7c11c57fe88b0a0d49cf375de5fee5ae6bf4eb56dbbf29d07366864e2ee805349970d3cc
@ -29097,13 +29128,6 @@ __metadata:
languageName: node
linkType: hard
"v8-compile-cache@npm:2.3.0":
version: 2.3.0
resolution: "v8-compile-cache@npm:2.3.0"
checksum: 10c0/b2d866febf943fbbf0b5e8d43ae9a9b0dacd11dd76e6a9c8e8032268f0136f081e894a2723774ae2d86befa994be4d4046b0717d82df4f3a10e067994ad5c688
languageName: node
linkType: hard
"v8-to-istanbul@npm:^9.0.1":
version: 9.1.0
resolution: "v8-to-istanbul@npm:9.1.0"
@ -29814,6 +29838,15 @@ __metadata:
languageName: node
linkType: hard
"yaml@npm:^2.6.0":
version: 2.8.1
resolution: "yaml@npm:2.8.1"
bin:
yaml: bin.mjs
checksum: 10c0/7c587be00d9303d2ae1566e03bc5bc7fe978ba0d9bf39cc418c3139d37929dfcb93a230d9749f2cb578b6aa5d9ebebc322415e4b653cb83acd8bc0bc321707f3
languageName: node
linkType: hard
"yargs-parser@npm:21.1.1, yargs-parser@npm:^21.0.1, yargs-parser@npm:^21.1.1":
version: 21.1.1
resolution: "yargs-parser@npm:21.1.1"