From 96df82be00aedb4cb01b3c84d3fea94972b76f50 Mon Sep 17 00:00:00 2001 From: Zoltan Kochan Date: Mon, 21 Feb 2022 03:18:39 +0200 Subject: [PATCH] chore: use pnpm v7 --- .github/workflows/ci.yml | 4 +- .github/workflows/release.yml | 2 +- .husky/pre-push | 2 +- .meta-updater/src/index.ts | 2 +- package.json | 16 +- packages/audit/package.json | 2 +- packages/build-modules/package.json | 2 +- packages/cafs/package.json | 2 +- packages/calc-dep-state/package.json | 2 +- packages/cli-meta/package.json | 2 +- packages/cli-utils/package.json | 2 +- packages/client/package.json | 2 +- packages/command/package.json | 2 +- packages/common-cli-options-help/package.json | 2 +- packages/config/package.json | 2 +- packages/constants/package.json | 2 +- packages/core-loggers/package.json | 2 +- packages/core/package.json | 2 +- packages/default-reporter/package.json | 2 +- packages/default-resolver/package.json | 2 +- packages/dependencies-hierarchy/package.json | 2 +- packages/dependency-path/package.json | 2 +- packages/directory-fetcher/package.json | 2 +- packages/error/package.json | 2 +- packages/exe/package.json | 2 +- packages/exportable-manifest/package.json | 2 +- packages/fetch/package.json | 2 +- packages/fetcher-base/package.json | 2 +- packages/fetching-types/package.json | 2 +- packages/file-reporter/package.json | 2 +- packages/filter-lockfile/package.json | 2 +- .../filter-workspace-packages/package.json | 2 +- packages/find-packages/package.json | 2 +- packages/find-workspace-dir/package.json | 2 +- packages/find-workspace-packages/package.json | 2 +- packages/get-context/package.json | 2 +- packages/git-fetcher/package.json | 2 +- packages/git-resolver/package.json | 2 +- packages/global-bin-dir/package.json | 2 +- packages/graceful-fs/package.json | 2 +- packages/headless/package.json | 2 +- packages/hoist/package.json | 2 +- packages/lifecycle/package.json | 2 +- packages/link-bins/package.json | 2 +- packages/list/package.json | 4 +- packages/local-resolver/package.json | 2 +- packages/lockfile-file/package.json | 2 +- packages/lockfile-to-pnp/package.json | 2 +- packages/lockfile-types/package.json | 2 +- packages/lockfile-utils/package.json | 2 +- packages/lockfile-walker/package.json | 2 +- packages/make-dedicated-lockfile/package.json | 2 +- packages/manifest-utils/package.json | 2 +- packages/matcher/package.json | 2 +- packages/merge-lockfile-changes/package.json | 2 +- packages/modules-cleaner/package.json | 2 +- packages/modules-yaml/package.json | 2 +- packages/mount-modules/package.json | 2 +- packages/normalize-registries/package.json | 2 +- packages/npm-registry-agent/package.json | 2 +- packages/npm-resolver/package.json | 2 +- packages/outdated/package.json | 2 +- packages/package-bins/package.json | 2 +- packages/package-is-installable/package.json | 2 +- packages/package-requester/package.json | 2 +- packages/package-store/package.json | 2 +- packages/parse-cli-args/package.json | 2 +- packages/parse-overrides/package.json | 2 +- packages/parse-wanted-dependency/package.json | 2 +- .../pick-registry-for-package/package.json | 2 +- packages/pkgs-graph/package.json | 2 +- packages/plugin-commands-audit/package.json | 2 +- packages/plugin-commands-env/package.json | 2 +- .../plugin-commands-installation/package.json | 2 +- packages/plugin-commands-listing/package.json | 2 +- .../plugin-commands-outdated/package.json | 2 +- .../plugin-commands-publishing/package.json | 2 +- packages/plugin-commands-rebuild/package.json | 2 +- .../package.json | 2 +- packages/plugin-commands-server/package.json | 2 +- packages/plugin-commands-setup/package.json | 2 +- packages/plugin-commands-store/package.json | 2 +- packages/pnpm/package.json | 2 +- packages/pnpm/test/run.ts | 14 +- packages/pnpmfile/package.json | 2 +- packages/prepare-package/package.json | 2 +- packages/prune-lockfile/package.json | 2 +- packages/read-modules-dir/package.json | 2 +- packages/read-package-json/package.json | 2 +- packages/read-project-manifest/package.json | 2 +- packages/read-projects-context/package.json | 2 +- packages/real-hoist/package.json | 2 +- packages/remove-bins/package.json | 2 +- packages/render-peer-issues/package.json | 2 +- packages/resolve-dependencies/package.json | 2 +- packages/resolve-workspace-range/package.json | 2 +- packages/resolver-base/package.json | 2 +- packages/run-npm/package.json | 2 +- packages/server/package.json | 2 +- packages/sort-packages/package.json | 2 +- .../store-connection-manager/package.json | 2 +- packages/store-controller-types/package.json | 2 +- packages/symlink-dependency/package.json | 2 +- packages/tarball-fetcher/package.json | 2 +- packages/tarball-resolver/package.json | 2 +- packages/types/package.json | 2 +- packages/which-version-is-pinned/package.json | 2 +- packages/write-project-manifest/package.json | 2 +- pnpm-lock.yaml | 726 +++++++++--------- 109 files changed, 492 insertions(+), 480 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2749f6f71..bc4e656e04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,14 +29,14 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v2.1.0 with: - version: 6.31.0 + version: 7.0.0-alpha.2 - name: Setup Node uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} cache: 'pnpm' - name: Install npm@7 - run: pnpm add --global npm@7 + run: npm add --global npm@7 - name: pnpm install run: pnpm install - name: Audit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34095cbc00..daecd9cf4b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: sudo mv ldid /usr/local/bin - name: install pnpm and npm run: | - curl -L https://get.pnpm.io/v6.16.js | node - add --global pnpm@6.31.0 npm@7 + curl -L https://get.pnpm.io/v6.16.js | node - add --global pnpm@7.0.0-alpha.2 npm@7 - name: pnpm install run: pnpm install - name: Publish Packages diff --git a/.husky/pre-push b/.husky/pre-push index 9522b8e05c..eaa54dcb4f 100755 --- a/.husky/pre-push +++ b/.husky/pre-push @@ -1,4 +1,4 @@ #!/bin/sh . "$(dirname "$0")/_/husky.sh" -pnpm run lint -- --quiet +pnpm run lint --quiet diff --git a/.meta-updater/src/index.ts b/.meta-updater/src/index.ts index 91e154f224..b3110f9dbf 100644 --- a/.meta-updater/src/index.ts +++ b/.meta-updater/src/index.ts @@ -180,7 +180,7 @@ async function updateManifest (workspaceDir: string, manifest: ProjectManifest, scripts._test += ' --detectOpenHandles' } } - scripts.compile = 'tsc --build && pnpm run lint -- --fix' + scripts.compile = 'tsc --build && pnpm run lint --fix' delete scripts.tsc let homepage: string let repository: string | { type: 'git', url: string } diff --git a/package.json b/package.json index 48a08bcad3..fba446ddab 100644 --- a/package.json +++ b/package.json @@ -8,21 +8,21 @@ "prepare": "pnpm --dir=verdaccio install && husky install", "pretest": "pnpm run compile-only && pnpm --dir=fixtures run prepareFixtures", "lint": "pnpm lint:meta && syncpack list-mismatches && eslint **/src/**/*.ts **/test/**/*.ts", - "test-main": "pnpm pretest && pnpm lint -- --quiet && run-p -r verdaccio test-pkgs-main", + "test-main": "pnpm pretest && pnpm lint --quiet && run-p -r verdaccio test-pkgs-main", "remove-temp-dir": "shx rm -rf ../pnpm_tmp", "test-pkgs-main": "pnpm remove-temp-dir && cross-env PNPM_REGISTRY_MOCK_UPLINK=http://localhost:7348 pnpm --filter=./packages/** --filter=./privatePackages/** run --no-sort --workspace-concurrency=2 _test", - "test-branch": "pnpm pretest && pnpm lint -- --quiet && git remote set-branches --add origin main && git fetch && run-p -r verdaccio test-pkgs-branch", + "test-branch": "pnpm pretest && pnpm lint --quiet && git remote set-branches --add origin v6 && git fetch && run-p -r verdaccio test-pkgs-branch", "test-pkgs-branch": "pnpm remove-temp-dir && cross-env PNPM_REGISTRY_MOCK_UPLINK=http://localhost:7348 pnpm --filter=...[origin/v6] run --no-sort _test", "verdaccio": "verdaccio --config=./verdaccio.yaml --listen=7348", "compile-only": "pnpm --workspace-concurrency=1 --filter=pnpm --filter=@pnpm/make-dedicated-lockfile --filter=@pnpm/mount-modules run compile", "compile": "pnpm compile-only && pnpm run update-manifests", - "watch": "pnpm --filter=@pnpm/fetch run compile && pnpm --filter=pnpm run compile -- --watch", + "watch": "pnpm --filter=@pnpm/fetch run compile && pnpm --filter=pnpm run compile --watch", "make-lcov": "shx mkdir -p coverage && lcov-result-merger './packages/*/coverage/lcov.info' 'coverage/lcov.info'", "update-manifests": "pnpm run meta-updater && pnpm install", "meta-updater": "pnpm --filter=@pnpm-private/updater compile && pnpm --config.use-node-version=16.4.0 exec meta-updater", - "lint:meta": "pnpm run meta-updater -- --test", + "lint:meta": "pnpm run meta-updater --test", "copy-artifacts": "ts-node utils/scripts/src/copy-artifacts.ts", - "make-release-description": "pnpm run write-release-text --filter @pnpm/get-release-text", + "make-release-description": "pnpm --filter=@pnpm/get-release-text run write-release-text", "release": "pnpm --filter=@pnpm/exe publish --tag=next-6 --access=public && pnpm publish --filter=!pnpm --filter=!@pnpm/exe --access=public && pnpm publish --filter=pnpm --tag=next-6 --access=public" }, "devDependencies": { @@ -58,8 +58,9 @@ "verdaccio": "^5.5.2" }, "engines": { - "pnpm": ">=6" + "pnpm": ">=7" }, + "packageManager": "pnpm@7.0.0-alpha.2", "pnpm": { "overrides": { "@yarnpkg/core": "3.2.0-rc.9", @@ -119,6 +120,5 @@ "@typescript-eslint/eslint-plugin": "^5.6.0" } } - }, - "packageManager": "pnpm@6.23.0" + } } diff --git a/packages/audit/package.json b/packages/audit/package.json index a39d65c9ba..ed5a63e242 100644 --- a/packages/audit/package.json +++ b/packages/audit/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/audit", "keywords": [ diff --git a/packages/build-modules/package.json b/packages/build-modules/package.json index e8cc729593..1039dbba27 100644 --- a/packages/build-modules/package.json +++ b/packages/build-modules/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/build-modules", "keywords": [ diff --git a/packages/cafs/package.json b/packages/cafs/package.json index 2169140dcc..ce466f8f01 100644 --- a/packages/cafs/package.json +++ b/packages/cafs/package.json @@ -8,7 +8,7 @@ "lint": "eslint src/**/*.ts test/**/*.ts", "_test": "jest", "test": "pnpm run compile && pnpm run _test", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "prepublishOnly": "pnpm run compile" }, "keywords": [ diff --git a/packages/calc-dep-state/package.json b/packages/calc-dep-state/package.json index 8839da3853..b354ddc537 100644 --- a/packages/calc-dep-state/package.json +++ b/packages/calc-dep-state/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/calc-dep-state", "keywords": [ diff --git a/packages/cli-meta/package.json b/packages/cli-meta/package.json index bc70ddbc32..547da92e6b 100644 --- a/packages/cli-meta/package.json +++ b/packages/cli-meta/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/cli-meta", "keywords": [ diff --git a/packages/cli-utils/package.json b/packages/cli-utils/package.json index 1896dc66e4..25489a0208 100644 --- a/packages/cli-utils/package.json +++ b/packages/cli-utils/package.json @@ -14,7 +14,7 @@ "scripts": { "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "test": "pnpm run compile" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/cli-utils", diff --git a/packages/client/package.json b/packages/client/package.json index 4d23cde4a3..bd5db08050 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/client", "keywords": [ diff --git a/packages/command/package.json b/packages/command/package.json index c8daebafe7..a7f4165bea 100644 --- a/packages/command/package.json +++ b/packages/command/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/command", "keywords": [ diff --git a/packages/common-cli-options-help/package.json b/packages/common-cli-options-help/package.json index adf6d7d7bc..310b1daaab 100644 --- a/packages/common-cli-options-help/package.json +++ b/packages/common-cli-options-help/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/common-cli-options-help", "keywords": [ diff --git a/packages/config/package.json b/packages/config/package.json index d1c3fecf18..e6d336033b 100644 --- a/packages/config/package.json +++ b/packages/config/package.json @@ -15,7 +15,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "start": "tsc --watch", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/config", "keywords": [ diff --git a/packages/constants/package.json b/packages/constants/package.json index 5c5a6e4859..7cfe0b63b8 100644 --- a/packages/constants/package.json +++ b/packages/constants/package.json @@ -15,7 +15,7 @@ "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", "lint": "eslint src/**/*.ts", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/constants", "keywords": [ diff --git a/packages/core-loggers/package.json b/packages/core-loggers/package.json index a233376bc1..afff67f397 100644 --- a/packages/core-loggers/package.json +++ b/packages/core-loggers/package.json @@ -34,7 +34,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/types": "workspace:7.9.0" diff --git a/packages/core/package.json b/packages/core/package.json index 7aa17beb3e..15e86f0cbd 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -143,7 +143,7 @@ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=4873 pnpm run test:e2e", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "funding": "https://opencollective.com/pnpm" } diff --git a/packages/default-reporter/package.json b/packages/default-reporter/package.json index c19b9caca7..56819787bb 100644 --- a/packages/default-reporter/package.json +++ b/packages/default-reporter/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/default-reporter", "keywords": [ diff --git a/packages/default-resolver/package.json b/packages/default-resolver/package.json index 80c21a8cd9..7bfcb17c43 100644 --- a/packages/default-resolver/package.json +++ b/packages/default-resolver/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/default-resolver", "keywords": [ diff --git a/packages/dependencies-hierarchy/package.json b/packages/dependencies-hierarchy/package.json index 3e6cb22218..2a6d40a878 100644 --- a/packages/dependencies-hierarchy/package.json +++ b/packages/dependencies-hierarchy/package.json @@ -13,7 +13,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "engines": { "node": ">=12.17" diff --git a/packages/dependency-path/package.json b/packages/dependency-path/package.json index 23de25091c..e24d9cdc11 100644 --- a/packages/dependency-path/package.json +++ b/packages/dependency-path/package.json @@ -13,7 +13,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/dependency-path", "keywords": [ diff --git a/packages/directory-fetcher/package.json b/packages/directory-fetcher/package.json index 1dfc8439fb..16942f1ea3 100644 --- a/packages/directory-fetcher/package.json +++ b/packages/directory-fetcher/package.json @@ -14,7 +14,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/directory-fetcher", "engines": { diff --git a/packages/error/package.json b/packages/error/package.json index 1bf0293aad..724b7c7ea5 100644 --- a/packages/error/package.json +++ b/packages/error/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/error", "keywords": [ diff --git a/packages/exe/package.json b/packages/exe/package.json index 577c33e90a..3a1fc79f53 100644 --- a/packages/exe/package.json +++ b/packages/exe/package.json @@ -30,7 +30,7 @@ "scripts": { "preinstall": "node setup.js", "prepare": "node prepare.js", - "prepublishOnly": "pnpm run compile --filter pnpm && ts-node ./scripts/build-artifacts.ts" + "prepublishOnly": "pnpm --filter=pnpm run compile && ts-node ./scripts/build-artifacts.ts" }, "keywords": [ "pnpm6" diff --git a/packages/exportable-manifest/package.json b/packages/exportable-manifest/package.json index 1f7fc7aeb6..71fc4366be 100644 --- a/packages/exportable-manifest/package.json +++ b/packages/exportable-manifest/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts test/**/*.ts", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "_test": "jest" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/exportable-manifest", diff --git a/packages/fetch/package.json b/packages/fetch/package.json index ba627a620d..fe43e672c6 100644 --- a/packages/fetch/package.json +++ b/packages/fetch/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/fetch", "keywords": [ diff --git a/packages/fetcher-base/package.json b/packages/fetcher-base/package.json index 1b7d9ac281..e5b1c6f97a 100644 --- a/packages/fetcher-base/package.json +++ b/packages/fetcher-base/package.json @@ -13,7 +13,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/fetcher-base", "keywords": [ diff --git a/packages/fetching-types/package.json b/packages/fetching-types/package.json index 990b1c9055..a546684bee 100644 --- a/packages/fetching-types/package.json +++ b/packages/fetching-types/package.json @@ -23,7 +23,7 @@ }, "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/fetching-types#readme", "scripts": { - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", "test": "pnpm run compile" diff --git a/packages/file-reporter/package.json b/packages/file-reporter/package.json index 8145839c1f..48d87e0978 100644 --- a/packages/file-reporter/package.json +++ b/packages/file-reporter/package.json @@ -13,7 +13,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "_test": "jest", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/file-reporter", "keywords": [ diff --git a/packages/filter-lockfile/package.json b/packages/filter-lockfile/package.json index 0555b0f1a9..140796ee94 100644 --- a/packages/filter-lockfile/package.json +++ b/packages/filter-lockfile/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/filter-lockfile", "keywords": [ diff --git a/packages/filter-workspace-packages/package.json b/packages/filter-workspace-packages/package.json index b4591143a3..d15585dd9c 100644 --- a/packages/filter-workspace-packages/package.json +++ b/packages/filter-workspace-packages/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/filter-workspace-packages", "keywords": [ diff --git a/packages/find-packages/package.json b/packages/find-packages/package.json index 25549ae03e..721fc25151 100644 --- a/packages/find-packages/package.json +++ b/packages/find-packages/package.json @@ -13,7 +13,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/find-packages", "keywords": [ diff --git a/packages/find-workspace-dir/package.json b/packages/find-workspace-dir/package.json index 1085ebe0a8..503432b63f 100644 --- a/packages/find-workspace-dir/package.json +++ b/packages/find-workspace-dir/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/find-workspace-dir", "keywords": [ diff --git a/packages/find-workspace-packages/package.json b/packages/find-workspace-packages/package.json index e99cf9066c..5dad044c2a 100644 --- a/packages/find-workspace-packages/package.json +++ b/packages/find-workspace-packages/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/find-workspace-packages", "keywords": [ diff --git a/packages/get-context/package.json b/packages/get-context/package.json index 39a937d24e..82227faae3 100644 --- a/packages/get-context/package.json +++ b/packages/get-context/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/get-context", "keywords": [ diff --git a/packages/git-fetcher/package.json b/packages/git-fetcher/package.json index 35c38a05da..37cb11e1be 100644 --- a/packages/git-fetcher/package.json +++ b/packages/git-fetcher/package.json @@ -13,7 +13,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/git-fetcher", "engines": { diff --git a/packages/git-resolver/package.json b/packages/git-resolver/package.json index ba2f5a0d09..c5f69136b8 100644 --- a/packages/git-resolver/package.json +++ b/packages/git-resolver/package.json @@ -17,7 +17,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/git-resolver", "keywords": [ diff --git a/packages/global-bin-dir/package.json b/packages/global-bin-dir/package.json index fccbfb9f86..87b6c4655c 100644 --- a/packages/global-bin-dir/package.json +++ b/packages/global-bin-dir/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts test/**/*.ts", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "_test": "jest" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/global-bin-dir", diff --git a/packages/graceful-fs/package.json b/packages/graceful-fs/package.json index 7de0270e0a..ed61f29871 100644 --- a/packages/graceful-fs/package.json +++ b/packages/graceful-fs/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/graceful-fs", "keywords": [ diff --git a/packages/headless/package.json b/packages/headless/package.json index faee5e9639..8aa151b6f2 100644 --- a/packages/headless/package.json +++ b/packages/headless/package.json @@ -64,7 +64,7 @@ "prepublishOnly": "pnpm run compile", "runPrepareFixtures": "node ../pnpm/bin/pnpm.cjs i -r -C test/fixtures --no-shared-workspace-lockfile --no-link-workspace-packages --lockfile-only --registry http://localhost:4873/ --ignore-scripts --force --no-strict-peer-dependencies", "prepareFixtures": "registry-mock prepare && run-p -r registry-mock runPrepareFixtures", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/build-modules": "workspace:8.0.1", diff --git a/packages/hoist/package.json b/packages/hoist/package.json index 48537e6087..d666411103 100644 --- a/packages/hoist/package.json +++ b/packages/hoist/package.json @@ -37,7 +37,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/constants": "workspace:5.0.0", diff --git a/packages/lifecycle/package.json b/packages/lifecycle/package.json index deb2bdbe06..998e434943 100644 --- a/packages/lifecycle/package.json +++ b/packages/lifecycle/package.json @@ -17,7 +17,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/lifecycle", "keywords": [ diff --git a/packages/link-bins/package.json b/packages/link-bins/package.json index 759adbcad5..7cf5da36b1 100644 --- a/packages/link-bins/package.json +++ b/packages/link-bins/package.json @@ -17,7 +17,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "fix": "tslint -c tslint.json --project . --fix", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/link-bins", "keywords": [ diff --git a/packages/list/package.json b/packages/list/package.json index 6e37df94ec..06346d618b 100644 --- a/packages/list/package.json +++ b/packages/list/package.json @@ -13,10 +13,10 @@ "lint": "eslint src/**/*.ts test/**/*.ts", "prepareFixtures": "cd test && node ../../pnpm recursive install --no-link-workspace-packages --no-shared-workspace-lockfile -f && cd ..", "prepublishOnly": "pnpm run compile", - "pretest": "pnpm run pretest --filter dependencies-hierarchy", + "pretest": "pnpm run --filter dependencies-hierarchy pretest", "_test": "pnpm pretest && jest", "test": "pnpm run compile && pnpm run _test", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/list", "keywords": [ diff --git a/packages/local-resolver/package.json b/packages/local-resolver/package.json index ecc6c7a7e7..dafc598a5a 100644 --- a/packages/local-resolver/package.json +++ b/packages/local-resolver/package.json @@ -17,7 +17,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/local-resolver", "keywords": [ diff --git a/packages/lockfile-file/package.json b/packages/lockfile-file/package.json index 4efeafeb1d..34df76f83a 100644 --- a/packages/lockfile-file/package.json +++ b/packages/lockfile-file/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/lockfile-file", "keywords": [ diff --git a/packages/lockfile-to-pnp/package.json b/packages/lockfile-to-pnp/package.json index d9a1859bb0..bee2a2a133 100644 --- a/packages/lockfile-to-pnp/package.json +++ b/packages/lockfile-to-pnp/package.json @@ -16,7 +16,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "_test": "jest", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/lockfile-to-pnp", "keywords": [ diff --git a/packages/lockfile-types/package.json b/packages/lockfile-types/package.json index 0eaf462301..03beffca95 100644 --- a/packages/lockfile-types/package.json +++ b/packages/lockfile-types/package.json @@ -24,7 +24,7 @@ "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/lockfile-types#readme", "scripts": { "lint": "eslint src/**/*.ts", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "prepublishOnly": "pnpm run compile" }, "funding": "https://opencollective.com/pnpm", diff --git a/packages/lockfile-utils/package.json b/packages/lockfile-utils/package.json index d968adc71d..4090cb039a 100644 --- a/packages/lockfile-utils/package.json +++ b/packages/lockfile-utils/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/lockfile-utils", "keywords": [ diff --git a/packages/lockfile-walker/package.json b/packages/lockfile-walker/package.json index f62e3ea967..f3920d7e22 100644 --- a/packages/lockfile-walker/package.json +++ b/packages/lockfile-walker/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/lockfile-walker", "keywords": [ diff --git a/packages/make-dedicated-lockfile/package.json b/packages/make-dedicated-lockfile/package.json index a9e170ed24..ab46aea76f 100644 --- a/packages/make-dedicated-lockfile/package.json +++ b/packages/make-dedicated-lockfile/package.json @@ -18,7 +18,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/make-dedicated-lockfile", "keywords": [ diff --git a/packages/manifest-utils/package.json b/packages/manifest-utils/package.json index 6d78cfa189..8ed2765161 100644 --- a/packages/manifest-utils/package.json +++ b/packages/manifest-utils/package.json @@ -25,7 +25,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/core-loggers": "workspace:6.1.3", diff --git a/packages/matcher/package.json b/packages/matcher/package.json index 95fbf0080d..ed23f1b094 100644 --- a/packages/matcher/package.json +++ b/packages/matcher/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/matcher", "keywords": [ diff --git a/packages/merge-lockfile-changes/package.json b/packages/merge-lockfile-changes/package.json index 5c92d58a17..5877f34954 100644 --- a/packages/merge-lockfile-changes/package.json +++ b/packages/merge-lockfile-changes/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/merge-lockfile-changes", "keywords": [ diff --git a/packages/modules-cleaner/package.json b/packages/modules-cleaner/package.json index d93c010d75..64dbdc575b 100644 --- a/packages/modules-cleaner/package.json +++ b/packages/modules-cleaner/package.json @@ -25,7 +25,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/core-loggers": "workspace:6.1.3", diff --git a/packages/modules-yaml/package.json b/packages/modules-yaml/package.json index 49aa602782..c861861ea2 100644 --- a/packages/modules-yaml/package.json +++ b/packages/modules-yaml/package.json @@ -17,7 +17,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/modules-yaml", "keywords": [ diff --git a/packages/mount-modules/package.json b/packages/mount-modules/package.json index 8f37ea083c..d594afa487 100644 --- a/packages/mount-modules/package.json +++ b/packages/mount-modules/package.json @@ -19,7 +19,7 @@ "prepublishOnly": "pnpm run compile", "pretest": "pnpm install --dir=test/__fixtures__/simple", "_test": "pnpm pretest && jest", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/mount-modules", "keywords": [ diff --git a/packages/normalize-registries/package.json b/packages/normalize-registries/package.json index 0860144e6b..c197892b2c 100644 --- a/packages/normalize-registries/package.json +++ b/packages/normalize-registries/package.json @@ -23,7 +23,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/types": "workspace:7.9.0", diff --git a/packages/npm-registry-agent/package.json b/packages/npm-registry-agent/package.json index 3681cb9cad..196beec331 100644 --- a/packages/npm-registry-agent/package.json +++ b/packages/npm-registry-agent/package.json @@ -15,7 +15,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "devDependencies": { "@pnpm/npm-registry-agent": "workspace:5.0.2", diff --git a/packages/npm-resolver/package.json b/packages/npm-resolver/package.json index 1a8a367679..416865f873 100644 --- a/packages/npm-resolver/package.json +++ b/packages/npm-resolver/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/npm-resolver", "keywords": [ diff --git a/packages/outdated/package.json b/packages/outdated/package.json index 8aef0d7f60..90aca656d8 100644 --- a/packages/outdated/package.json +++ b/packages/outdated/package.json @@ -19,7 +19,7 @@ "test:jest": "jest", "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7771 pnpm run test:e2e", "test:e2e": "registry-mock prepare && run-p -r registry-mock test:jest", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/outdated", "keywords": [ diff --git a/packages/package-bins/package.json b/packages/package-bins/package.json index 06c5e0b34e..6bd1c2303d 100644 --- a/packages/package-bins/package.json +++ b/packages/package-bins/package.json @@ -17,7 +17,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "fix": "tslint -c tslint.json --project . --fix", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/package-bins", "keywords": [ diff --git a/packages/package-is-installable/package.json b/packages/package-is-installable/package.json index 373e24af3f..b5fd388925 100644 --- a/packages/package-is-installable/package.json +++ b/packages/package-is-installable/package.json @@ -26,7 +26,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/core-loggers": "workspace:6.1.3", diff --git a/packages/package-requester/package.json b/packages/package-requester/package.json index eb90b7ed20..3aea311e69 100644 --- a/packages/package-requester/package.json +++ b/packages/package-requester/package.json @@ -17,7 +17,7 @@ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7772 pnpm run test:e2e", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "registry-mock": "registry-mock", "test:jest": "jest", "test:e2e": "registry-mock prepare && run-p -r registry-mock test:jest" diff --git a/packages/package-store/package.json b/packages/package-store/package.json index 57f5fed9fd..1179f7ffee 100644 --- a/packages/package-store/package.json +++ b/packages/package-store/package.json @@ -71,7 +71,7 @@ "_test": "pnpm pretest && jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "funding": "https://opencollective.com/pnpm" } diff --git a/packages/parse-cli-args/package.json b/packages/parse-cli-args/package.json index cc6cab3af6..24241a7c50 100644 --- a/packages/parse-cli-args/package.json +++ b/packages/parse-cli-args/package.json @@ -17,7 +17,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "start": "tsc --watch", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/parse-cli-args", "keywords": [ diff --git a/packages/parse-overrides/package.json b/packages/parse-overrides/package.json index d47e27d870..f435bd17a3 100644 --- a/packages/parse-overrides/package.json +++ b/packages/parse-overrides/package.json @@ -24,7 +24,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/parse-overrides#readme", "funding": "https://opencollective.com/pnpm", diff --git a/packages/parse-wanted-dependency/package.json b/packages/parse-wanted-dependency/package.json index 2dc2950f4a..3cc2853a48 100644 --- a/packages/parse-wanted-dependency/package.json +++ b/packages/parse-wanted-dependency/package.json @@ -27,7 +27,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "validate-npm-package-name": "3.0.0" diff --git a/packages/pick-registry-for-package/package.json b/packages/pick-registry-for-package/package.json index 3a740c567a..21ffdcc918 100644 --- a/packages/pick-registry-for-package/package.json +++ b/packages/pick-registry-for-package/package.json @@ -24,7 +24,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/types": "workspace:7.9.0" diff --git a/packages/pkgs-graph/package.json b/packages/pkgs-graph/package.json index a6c1a7fe34..5d09a16413 100644 --- a/packages/pkgs-graph/package.json +++ b/packages/pkgs-graph/package.json @@ -13,7 +13,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/pkgs-graph", "license": "MIT", diff --git a/packages/plugin-commands-audit/package.json b/packages/plugin-commands-audit/package.json index a7e5ea86a1..65dda73684 100644 --- a/packages/plugin-commands-audit/package.json +++ b/packages/plugin-commands-audit/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "update-responses": "ts-node test/utils/responses/update.ts" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-audit", diff --git a/packages/plugin-commands-env/package.json b/packages/plugin-commands-env/package.json index 1726bee913..3dea26d3fd 100644 --- a/packages/plugin-commands-env/package.json +++ b/packages/plugin-commands-env/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-env", "keywords": [ diff --git a/packages/plugin-commands-installation/package.json b/packages/plugin-commands-installation/package.json index 33f28672d7..aaf061ba00 100644 --- a/packages/plugin-commands-installation/package.json +++ b/packages/plugin-commands-installation/package.json @@ -20,7 +20,7 @@ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7773 pnpm run test:e2e", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-installation", "keywords": [ diff --git a/packages/plugin-commands-listing/package.json b/packages/plugin-commands-listing/package.json index 737ebabda0..fd4a69bd4e 100644 --- a/packages/plugin-commands-listing/package.json +++ b/packages/plugin-commands-listing/package.json @@ -19,7 +19,7 @@ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7774 pnpm run test:e2e", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-listing", "keywords": [ diff --git a/packages/plugin-commands-outdated/package.json b/packages/plugin-commands-outdated/package.json index d53ab3a185..552e2d4821 100644 --- a/packages/plugin-commands-outdated/package.json +++ b/packages/plugin-commands-outdated/package.json @@ -19,7 +19,7 @@ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7775 pnpm run test:e2e", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-outdated", "keywords": [ diff --git a/packages/plugin-commands-publishing/package.json b/packages/plugin-commands-publishing/package.json index 580a33f2d2..fc6052ce44 100644 --- a/packages/plugin-commands-publishing/package.json +++ b/packages/plugin-commands-publishing/package.json @@ -20,7 +20,7 @@ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7776 pnpm run test:e2e", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-publishing", "keywords": [ diff --git a/packages/plugin-commands-rebuild/package.json b/packages/plugin-commands-rebuild/package.json index 41e1f7c212..e55834e85c 100644 --- a/packages/plugin-commands-rebuild/package.json +++ b/packages/plugin-commands-rebuild/package.json @@ -19,7 +19,7 @@ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7777 pnpm run test:e2e", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-rebuild", "keywords": [ diff --git a/packages/plugin-commands-script-runners/package.json b/packages/plugin-commands-script-runners/package.json index 6564996ab8..12d044c9e6 100644 --- a/packages/plugin-commands-script-runners/package.json +++ b/packages/plugin-commands-script-runners/package.json @@ -20,7 +20,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", "start": "tsc --watch", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-script-runners", "keywords": [ diff --git a/packages/plugin-commands-server/package.json b/packages/plugin-commands-server/package.json index a0219a1bc3..c3d8d5e9da 100644 --- a/packages/plugin-commands-server/package.json +++ b/packages/plugin-commands-server/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-server", "keywords": [ diff --git a/packages/plugin-commands-setup/package.json b/packages/plugin-commands-setup/package.json index d4907f17c1..f3506d499f 100644 --- a/packages/plugin-commands-setup/package.json +++ b/packages/plugin-commands-setup/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-setup", "keywords": [ diff --git a/packages/plugin-commands-store/package.json b/packages/plugin-commands-store/package.json index 33a4c859c3..4c219c17f3 100644 --- a/packages/plugin-commands-store/package.json +++ b/packages/plugin-commands-store/package.json @@ -19,7 +19,7 @@ "_test": "cross-env PNPM_REGISTRY_MOCK_PORT=7779 pnpm run test:e2e", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/plugin-commands-store", "keywords": [ diff --git a/packages/pnpm/package.json b/packages/pnpm/package.json index 461e44bc8a..93d5de239a 100644 --- a/packages/pnpm/package.json +++ b/packages/pnpm/package.json @@ -159,7 +159,7 @@ "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm compile && npm cache clear --force && publish-packed --prune --npm-client=pnpm --dest=dist", "postpublish": "publish-packed", - "compile": "tsc --build && pnpm run lint -- --fix && rimraf dist bin/nodes && pnpm run bundle && shx cp -r node-gyp-bin dist/node-gyp-bin && shx cp -r node_modules/@pnpm/tabtab/lib/scripts dist/scripts && shx cp -r node_modules/ps-list/vendor dist/vendor && shx cp pnpmrc dist/pnpmrc" + "compile": "tsc --build && pnpm run lint --fix && rimraf dist bin/nodes && pnpm run bundle && shx cp -r node-gyp-bin dist/node-gyp-bin && shx cp -r node_modules/@pnpm/tabtab/lib/scripts dist/scripts && shx cp -r node_modules/ps-list/vendor dist/vendor && shx cp pnpmrc dist/pnpmrc" }, "publishConfig": { "tag": "next-6", diff --git a/packages/pnpm/test/run.ts b/packages/pnpm/test/run.ts index 7d54278be4..96e049817e 100644 --- a/packages/pnpm/test/run.ts +++ b/packages/pnpm/test/run.ts @@ -1,5 +1,6 @@ -import { promises as fs } from 'fs' +import { promises as fs, mkdirSync } from 'fs' import path from 'path' +import PATH_NAME from 'path-name' import prepare, { preparePackages } from '@pnpm/prepare' import { execPnpm, execPnpmSync } from './utils' @@ -80,8 +81,17 @@ test('silent run only prints the output of the child process', async () => { test('silent dlx prints the output of the child process only', async () => { prepare({}) + const global = path.resolve('..', 'global') + const pnpmHome = path.join(global, 'pnpm') + mkdirSync(global) - const result = execPnpmSync(['--silent', 'dlx', 'shx', 'echo', 'hi']) + const env = { + [PATH_NAME]: `${pnpmHome}${path.delimiter}${process.env[PATH_NAME]}`, // eslint-disable-line + PNPM_HOME: pnpmHome, + XDG_DATA_HOME: global, + } + + const result = execPnpmSync(['--silent', 'dlx', 'shx', 'echo', 'hi'], { env }) expect(result.stdout.toString().trim()).toBe('hi') }) diff --git a/packages/pnpmfile/package.json b/packages/pnpmfile/package.json index b2742aaf39..c066f21918 100644 --- a/packages/pnpmfile/package.json +++ b/packages/pnpmfile/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/pnpmfile", "keywords": [ diff --git a/packages/prepare-package/package.json b/packages/prepare-package/package.json index 2b18115127..cff8546261 100644 --- a/packages/prepare-package/package.json +++ b/packages/prepare-package/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/prepare-package", "keywords": [ diff --git a/packages/prune-lockfile/package.json b/packages/prune-lockfile/package.json index 6f0fb98845..401c3212e8 100644 --- a/packages/prune-lockfile/package.json +++ b/packages/prune-lockfile/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/prune-lockfile", "keywords": [ diff --git a/packages/read-modules-dir/package.json b/packages/read-modules-dir/package.json index 49a59c1cd3..a14f4aba3f 100644 --- a/packages/read-modules-dir/package.json +++ b/packages/read-modules-dir/package.json @@ -22,7 +22,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "bugs": { "url": "https://github.com/pnpm/pnpm/issues" diff --git a/packages/read-package-json/package.json b/packages/read-package-json/package.json index 30386152e4..449a364584 100644 --- a/packages/read-package-json/package.json +++ b/packages/read-package-json/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/read-package-json", "keywords": [ diff --git a/packages/read-project-manifest/package.json b/packages/read-project-manifest/package.json index 03f43255e2..f34ef98585 100644 --- a/packages/read-project-manifest/package.json +++ b/packages/read-project-manifest/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/read-project-manifest", "keywords": [ diff --git a/packages/read-projects-context/package.json b/packages/read-projects-context/package.json index a160094d3b..cb4c97465e 100644 --- a/packages/read-projects-context/package.json +++ b/packages/read-projects-context/package.json @@ -25,7 +25,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/lockfile-file": "workspace:4.2.6", diff --git a/packages/real-hoist/package.json b/packages/real-hoist/package.json index 56a60c0979..845af4bcec 100644 --- a/packages/real-hoist/package.json +++ b/packages/real-hoist/package.json @@ -27,7 +27,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/lockfile-utils": "workspace:3.2.0", diff --git a/packages/remove-bins/package.json b/packages/remove-bins/package.json index 7377dca95e..eee9158f84 100644 --- a/packages/remove-bins/package.json +++ b/packages/remove-bins/package.json @@ -25,7 +25,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/core-loggers": "workspace:6.1.3", diff --git a/packages/render-peer-issues/package.json b/packages/render-peer-issues/package.json index 3c27d57255..76630ecdc8 100644 --- a/packages/render-peer-issues/package.json +++ b/packages/render-peer-issues/package.json @@ -24,7 +24,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/render-peer-issues#readme", "funding": "https://opencollective.com/pnpm", diff --git a/packages/resolve-dependencies/package.json b/packages/resolve-dependencies/package.json index 17953f6854..6aaf3ff57b 100644 --- a/packages/resolve-dependencies/package.json +++ b/packages/resolve-dependencies/package.json @@ -25,7 +25,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "_test": "jest" }, "dependencies": { diff --git a/packages/resolve-workspace-range/package.json b/packages/resolve-workspace-range/package.json index 9a150a24fd..d33ee52a57 100644 --- a/packages/resolve-workspace-range/package.json +++ b/packages/resolve-workspace-range/package.json @@ -22,7 +22,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "semver": "^7.3.4" diff --git a/packages/resolver-base/package.json b/packages/resolver-base/package.json index 9de51d1581..c4dd3dc432 100644 --- a/packages/resolver-base/package.json +++ b/packages/resolver-base/package.json @@ -13,7 +13,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/resolver-base", "keywords": [ diff --git a/packages/run-npm/package.json b/packages/run-npm/package.json index de4bf7b23a..4cd2fbe867 100644 --- a/packages/run-npm/package.json +++ b/packages/run-npm/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/run-npm", "keywords": [ diff --git a/packages/server/package.json b/packages/server/package.json index 558b788011..09b490916a 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -16,7 +16,7 @@ "_test": "jest --detectOpenHandles", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/server", "keywords": [ diff --git a/packages/sort-packages/package.json b/packages/sort-packages/package.json index b9182ded77..77cbc1bc67 100644 --- a/packages/sort-packages/package.json +++ b/packages/sort-packages/package.json @@ -15,7 +15,7 @@ "lint": "eslint src/**/*.ts", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/sort-packages", "keywords": [ diff --git a/packages/store-connection-manager/package.json b/packages/store-connection-manager/package.json index dd075e86e2..1c24c27b1c 100644 --- a/packages/store-connection-manager/package.json +++ b/packages/store-connection-manager/package.json @@ -16,7 +16,7 @@ "pretest": "rimraf node_modules/.bin/pnpm", "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/store-connection-manager", "keywords": [ diff --git a/packages/store-controller-types/package.json b/packages/store-controller-types/package.json index 720062e80f..4b20ab553b 100644 --- a/packages/store-controller-types/package.json +++ b/packages/store-controller-types/package.json @@ -14,7 +14,7 @@ "scripts": { "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "lint": "eslint src/**/*.ts" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/store-controller-types", diff --git a/packages/symlink-dependency/package.json b/packages/symlink-dependency/package.json index 8f4fd7bd86..ce7908e6f3 100644 --- a/packages/symlink-dependency/package.json +++ b/packages/symlink-dependency/package.json @@ -36,7 +36,7 @@ "test": "pnpm run compile", "lint": "eslint src/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "dependencies": { "@pnpm/core-loggers": "workspace:6.1.3", diff --git a/packages/tarball-fetcher/package.json b/packages/tarball-fetcher/package.json index 2a40b93083..ffdf5f3a65 100644 --- a/packages/tarball-fetcher/package.json +++ b/packages/tarball-fetcher/package.json @@ -13,7 +13,7 @@ "prepublishOnly": "pnpm run compile", "_test": "jest", "test": "pnpm run compile && pnpm run _test", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/tarball-fetcher", "keywords": [ diff --git a/packages/tarball-resolver/package.json b/packages/tarball-resolver/package.json index 71c51e5b8f..ca4da2af60 100644 --- a/packages/tarball-resolver/package.json +++ b/packages/tarball-resolver/package.json @@ -17,7 +17,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/tarball-resolver", "license": "MIT", diff --git a/packages/types/package.json b/packages/types/package.json index e263e47b40..8f91640cc3 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -14,7 +14,7 @@ "scripts": { "test": "pnpm run compile", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix", + "compile": "tsc --build && pnpm run lint --fix", "lint": "eslint src/**/*.ts" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/types", diff --git a/packages/which-version-is-pinned/package.json b/packages/which-version-is-pinned/package.json index 4ebd47c50f..210a68db35 100644 --- a/packages/which-version-is-pinned/package.json +++ b/packages/which-version-is-pinned/package.json @@ -24,7 +24,7 @@ "test": "pnpm run compile && pnpm run _test", "lint": "eslint src/**/*.ts test/**/*.ts", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/which-version-is-pinned#readme", "funding": "https://opencollective.com/pnpm", diff --git a/packages/write-project-manifest/package.json b/packages/write-project-manifest/package.json index df0dd9f2be..26019f2f08 100644 --- a/packages/write-project-manifest/package.json +++ b/packages/write-project-manifest/package.json @@ -16,7 +16,7 @@ "_test": "jest", "test": "pnpm run compile && pnpm run _test", "prepublishOnly": "pnpm run compile", - "compile": "tsc --build && pnpm run lint -- --fix" + "compile": "tsc --build && pnpm run lint --fix" }, "repository": "https://github.com/pnpm/pnpm/blob/main/packages/write-project-manifest", "keywords": [ diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 64fb81fcb8..bbe63d0816 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -62,21 +62,21 @@ importers: typescript: 4.6.0-beta verdaccio: ^5.5.2 devDependencies: - '@babel/core': 7.17.2 - '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.2 - '@babel/plugin-transform-modules-commonjs': 7.16.8_@babel+core@7.17.2 - '@babel/preset-typescript': 7.16.7_@babel+core@7.17.2 + '@babel/core': 7.17.4 + '@babel/plugin-proposal-dynamic-import': 7.16.7_@babel+core@7.17.4 + '@babel/plugin-transform-modules-commonjs': 7.16.8_@babel+core@7.17.4 + '@babel/preset-typescript': 7.16.7_@babel+core@7.17.4 '@babel/types': 7.17.0 '@changesets/cli': 2.20.0 - '@commitlint/cli': 16.1.0_@types+node@14.18.11 - '@commitlint/config-conventional': 16.0.0 - '@commitlint/prompt-cli': 16.1.0_@types+node@14.18.11 + '@commitlint/cli': 16.2.1 + '@commitlint/config-conventional': 16.2.1 + '@commitlint/prompt-cli': 16.2.1 '@pnpm/eslint-config': link:utils/eslint-config '@pnpm/meta-updater': 0.0.6 '@pnpm/registry-mock': 2.12.1 '@pnpm/tsconfig': link:utils/tsconfig '@types/jest': 27.4.0 - '@types/node': 14.18.11 + '@types/node': 14.18.12 c8: 7.11.0 cross-env: 7.0.3 eslint: 8.9.0 @@ -88,10 +88,10 @@ importers: rimraf: 3.0.2 shx: 0.3.4 syncpack: 6.2.0 - ts-jest: 27.1.3_b6661d2815432df67610ecfd94d2c2e8 - ts-node: 10.5.0_b6515ca2329bae33a41e52b4cec77dbc + ts-jest: 27.1.3_4a5e3c949e1008e065366ec2b8169250 + ts-node: 10.5.0_f93c5bb7acd9caa138186c328bcc3094 typescript: 4.6.0-beta - verdaccio: 5.5.2 + verdaccio: 5.6.0 .meta-updater: specifiers: @@ -240,7 +240,7 @@ importers: devDependencies: '@pnpm/cafs': 'link:' '@types/concat-stream': 1.6.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 '@types/ssri': 7.1.1 '@types/tar-stream': 2.2.2 tempy: 1.0.1 @@ -1264,7 +1264,7 @@ importers: '@pnpm/logger': 4.0.0 '@pnpm/test-fixtures': link:../../privatePackages/test-fixtures '@types/is-windows': 1.0.0 - '@types/node': 14.18.11 + '@types/node': 14.18.12 '@types/normalize-path': 3.0.0 '@types/ramda': 0.27.39 cmd-extension: 1.0.2 @@ -1787,7 +1787,7 @@ importers: is-subdir: 1.2.0 devDependencies: '@pnpm/package-bins': 'link:' - '@types/node': 14.18.11 + '@types/node': 14.18.12 packages/package-is-installable: specifiers: @@ -3441,7 +3441,7 @@ importers: '@pnpm/assert-project': 'link:' '@types/is-windows': 1.0.0 '@types/isexe': 2.0.0 - '@types/node': 14.18.11 + '@types/node': 14.18.12 privatePackages/assert-store: specifiers: @@ -3475,7 +3475,7 @@ importers: write-yaml-file: 4.2.0 devDependencies: '@pnpm/prepare': 'link:' - '@types/node': 14.18.11 + '@types/node': 14.18.12 privatePackages/test-fixtures: specifiers: @@ -3515,9 +3515,9 @@ importers: eslint-plugin-node: ^11.1.0 eslint-plugin-promise: ^5.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.11.0_443f0ca211d1eb448ae441202bc3f54c - '@typescript-eslint/parser': 5.11.0_cf1ca366a1937349a96146b2e58675b4 - eslint-config-standard-with-typescript: 21.0.1_01a186f74e9a221e24012353277bb4e8 + '@typescript-eslint/eslint-plugin': 5.12.0_63a89061dc810b86310fabbcdfd0bc88 + '@typescript-eslint/parser': 5.12.0_cf1ca366a1937349a96146b2e58675b4 + eslint-config-standard-with-typescript: 21.0.1_a5885a146c85120480008c3ab628e347 eslint-plugin-import: 2.25.4_eslint@8.9.0 eslint-plugin-node: 11.1.0_eslint@8.9.0 eslint-plugin-promise: 5.2.0_eslint@8.9.0 @@ -3555,7 +3555,7 @@ importers: '@babel/register': ^7.13.16 '@pnpm/ts-execution-runtime': workspace:* devDependencies: - '@babel/register': 7.17.0_@babel+core@7.17.2 + '@babel/register': 7.17.0_@babel+core@7.17.4 '@pnpm/ts-execution-runtime': 'link:' utils/tsconfig: @@ -3566,8 +3566,8 @@ importers: packages: - /@ampproject/remapping/2.1.1: - resolution: {integrity: sha512-Aolwjd7HSC2PyY0fDj/wA/EimQT4HfEnFYNp5s9CQlrdhyvWTtvZ5YzrUPu6R6/1jKiUlxu8bUhkdSnKHNAHMA==} + /@ampproject/remapping/2.1.2: + resolution: {integrity: sha512-hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg==} engines: {node: '>=6.0.0'} dependencies: '@jridgewell/trace-mapping': 0.3.4 @@ -3590,19 +3590,19 @@ packages: engines: {node: '>=6.9.0'} dev: true - /@babel/core/7.17.2: - resolution: {integrity: sha512-R3VH5G42VSDolRHyUO4V2cfag8WHcZyxdq5Z/m8Xyb92lW/Erm/6kM+XtRFGf3Mulre3mveni2NHfEUws8wSvw==} + /@babel/core/7.17.4: + resolution: {integrity: sha512-R9x5r4t4+hBqZTmioSnkrW+I6NmbojwjGT8p4G2Gw1thWbXIHGDnmGdLdFw0/7ljucdIrNRp7Npgb4CyBYzzJg==} engines: {node: '>=6.9.0'} dependencies: - '@ampproject/remapping': 2.1.1 + '@ampproject/remapping': 2.1.2 '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.0 - '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.2 + '@babel/generator': 7.17.3 + '@babel/helper-compilation-targets': 7.16.7_@babel+core@7.17.4 '@babel/helper-module-transforms': 7.16.7 '@babel/helpers': 7.17.2 - '@babel/parser': 7.17.0_@babel+types@7.17.0 + '@babel/parser': 7.17.3_@babel+types@7.17.0 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.0 + '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 convert-source-map: 1.8.0 debug: 4.3.3 @@ -3613,8 +3613,8 @@ packages: - supports-color dev: true - /@babel/generator/7.17.0: - resolution: {integrity: sha512-I3Omiv6FGOC29dtlZhkfXO6pgkmukJSlT26QjVvS1DGZe/NzSVCPG41X0tS21oZkJYlovfj9qDWgKP+Cn4bXxw==} + /@babel/generator/7.17.3: + resolution: {integrity: sha512-+R6Dctil/MgUsZsZAkYgK+ADNSZzJRRy0TvY65T71z/CR854xHQ1EweBYXdfT+HNeN7w0cSJJEzgxZMv40pxsg==} engines: {node: '>=6.9.0'} dependencies: '@babel/types': 7.17.0 @@ -3629,26 +3629,26 @@ packages: '@babel/types': 7.17.0 dev: true - /@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.2: + /@babel/helper-compilation-targets/7.16.7_@babel+core@7.17.4: resolution: {integrity: sha512-mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: '@babel/compat-data': 7.17.0 - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-validator-option': 7.16.7 browserslist: 4.19.1 semver: 6.3.0 dev: true - /@babel/helper-create-class-features-plugin/7.17.1_@babel+core@7.17.2: + /@babel/helper-create-class-features-plugin/7.17.1_@babel+core@7.17.4: resolution: {integrity: sha512-JBdSr/LtyYIno/pNnJ75lBcqc3Z1XXujzPanHqjvvrhOA+DTceTFuJi8XjmWTZh4r3fsdfqaCMN0iZemdkxZHQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-annotate-as-pure': 7.16.7 '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-function-name': 7.16.7 @@ -3714,7 +3714,7 @@ packages: '@babel/helper-split-export-declaration': 7.16.7 '@babel/helper-validator-identifier': 7.16.7 '@babel/template': 7.16.7 - '@babel/traverse': 7.17.0 + '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 transitivePeerDependencies: - supports-color @@ -3739,7 +3739,7 @@ packages: '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-member-expression-to-functions': 7.16.7 '@babel/helper-optimise-call-expression': 7.16.7 - '@babel/traverse': 7.17.0 + '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 transitivePeerDependencies: - supports-color @@ -3773,7 +3773,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/template': 7.16.7 - '@babel/traverse': 7.17.0 + '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 transitivePeerDependencies: - supports-color @@ -3797,8 +3797,8 @@ packages: '@babel/types': 7.13.12 dev: true - /@babel/parser/7.17.0_@babel+types@7.17.0: - resolution: {integrity: sha512-VKXSCQx5D8S04ej+Dqsr1CzYvvWgf20jIw2D+YhQCrIlr2UZGaDds23Y0xg75/skOxpLCRpUZvk/1EAVkGoDOw==} + /@babel/parser/7.17.3_@babel+types@7.17.0: + resolution: {integrity: sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==} engines: {node: '>=6.0.0'} hasBin: true peerDependencies: @@ -3807,152 +3807,152 @@ packages: '@babel/types': 7.17.0 dev: true - /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.2: + /@babel/plugin-proposal-dynamic-import/7.16.7_@babel+core@7.17.4: resolution: {integrity: sha512-I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.2 + '@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.17.4 dev: true - /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.2: + /@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.17.4: resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.2: + /@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.17.4: resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.2: + /@babel/plugin-syntax-class-properties/7.12.13_@babel+core@7.17.4: resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.2: + /@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.17.4: resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.2: + /@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.17.4: resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.2: + /@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.17.4: resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.2: + /@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.17.4: resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.2: + /@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.17.4: resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.2: + /@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.17.4: resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.2: + /@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.17.4: resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.2: + /@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.17.4: resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.2: + /@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.17.4: resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.2: + /@babel/plugin-syntax-top-level-await/7.14.5_@babel+core@7.17.4: resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.2: + /@babel/plugin-syntax-typescript/7.16.7_@babel+core@7.17.4: resolution: {integrity: sha512-YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 dev: true - /@babel/plugin-transform-modules-commonjs/7.16.8_@babel+core@7.17.2: + /@babel/plugin-transform-modules-commonjs/7.16.8_@babel+core@7.17.4: resolution: {integrity: sha512-oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-module-transforms': 7.16.7 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-simple-access': 7.16.7 @@ -3961,41 +3961,41 @@ packages: - supports-color dev: true - /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.2: + /@babel/plugin-transform-typescript/7.16.8_@babel+core@7.17.4: resolution: {integrity: sha512-bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 - '@babel/helper-create-class-features-plugin': 7.17.1_@babel+core@7.17.2 + '@babel/core': 7.17.4 + '@babel/helper-create-class-features-plugin': 7.17.1_@babel+core@7.17.4 '@babel/helper-plugin-utils': 7.16.7 - '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.2 + '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.4 transitivePeerDependencies: - supports-color dev: true - /@babel/preset-typescript/7.16.7_@babel+core@7.17.2: + /@babel/preset-typescript/7.16.7_@babel+core@7.17.4: resolution: {integrity: sha512-WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@babel/helper-plugin-utils': 7.16.7 '@babel/helper-validator-option': 7.16.7 - '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.2 + '@babel/plugin-transform-typescript': 7.16.8_@babel+core@7.17.4 transitivePeerDependencies: - supports-color dev: true - /@babel/register/7.17.0_@babel+core@7.17.2: + /@babel/register/7.17.0_@babel+core@7.17.4: resolution: {integrity: sha512-UNZsMAZ7uKoGHo1HlEXfteEOYssf64n/PNLHGqOKq/bgYcu/4LrQWAHJwSCb3BRZK8Hi5gkJdRcwrGTO2wtRCg==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 clone-deep: 4.0.1 find-cache-dir: 2.1.0 make-dir: 2.1.0 @@ -4014,21 +4014,21 @@ packages: engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/parser': 7.17.0_@babel+types@7.17.0 + '@babel/parser': 7.17.3_@babel+types@7.17.0 '@babel/types': 7.17.0 dev: true - /@babel/traverse/7.17.0: - resolution: {integrity: sha512-fpFIXvqD6kC7c7PUNnZ0Z8cQXlarCLtCUpt2S1Dx7PjoRtCFffvOkHHSom+m5HIxMZn5bIBVb71lhabcmjEsqg==} + /@babel/traverse/7.17.3: + resolution: {integrity: sha512-5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw==} engines: {node: '>=6.9.0'} dependencies: '@babel/code-frame': 7.16.7 - '@babel/generator': 7.17.0 + '@babel/generator': 7.17.3 '@babel/helper-environment-visitor': 7.16.7 '@babel/helper-function-name': 7.16.7 '@babel/helper-hoist-variables': 7.16.7 '@babel/helper-split-export-declaration': 7.16.7 - '@babel/parser': 7.17.0_@babel+types@7.17.0 + '@babel/parser': 7.17.3_@babel+types@7.17.0 '@babel/types': 7.17.0 debug: 4.3.3 globals: 11.12.0 @@ -4234,16 +4234,16 @@ packages: resolution: {integrity: sha512-llLJZ8OAlZrjGlBvamm6Zdo/HmGAcCLq5gx7cSwUX8No+n/8ip+oaC4x33IdZIif8+Rh5dQUIZXmfbSghiOmNQ==} dev: false - /@commitlint/cli/16.1.0_@types+node@14.18.11: - resolution: {integrity: sha512-x5L1knvA3isRWBRVQx+Q6D45pA9139a2aZQYpxkljMG0dj4UHZkCnsYWpnGalxPxASI7nrI0KedKfS2YeQ55cQ==} + /@commitlint/cli/16.2.1: + resolution: {integrity: sha512-zfKf+B9osuiDbxGMJ7bWFv7XFCW8wlQYPtCffNp7Ukdb7mdrep5R9e03vPUZysnwp8NX6hg05kPEvnD/wRIGWw==} engines: {node: '>=v12'} hasBin: true dependencies: - '@commitlint/format': 16.0.0 - '@commitlint/lint': 16.0.0 - '@commitlint/load': 16.1.0_@types+node@14.18.11 - '@commitlint/read': 16.0.0 - '@commitlint/types': 16.0.0 + '@commitlint/format': 16.2.1 + '@commitlint/lint': 16.2.1 + '@commitlint/load': 16.2.1 + '@commitlint/read': 16.2.1 + '@commitlint/types': 16.2.1 lodash: 4.17.21 resolve-from: 5.0.0 resolve-global: 1.0.0 @@ -4251,174 +4251,171 @@ packages: transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - - '@types/node' dev: true - /@commitlint/config-conventional/16.0.0: - resolution: {integrity: sha512-mN7J8KlKFn0kROd+q9PB01sfDx/8K/R25yITspL1No8PB4oj9M1p77xWjP80hPydqZG9OvQq+anXK3ZWeR7s3g==} + /@commitlint/config-conventional/16.2.1: + resolution: {integrity: sha512-cP9gArx7gnaj4IqmtCIcHdRjTYdRUi6lmGE+lOzGGjGe45qGOS8nyQQNvkNy2Ey2VqoSWuXXkD8zCUh6EHf1Ww==} engines: {node: '>=v12'} dependencies: conventional-changelog-conventionalcommits: 4.6.3 dev: true - /@commitlint/config-validator/16.1.0: - resolution: {integrity: sha512-2cHeZPNTuf1JWbMqyA46MkExor5HMSgv8JrdmzEakUbJHUreh35/wN00FJf57qGs134exQW2thiSQ1IJUsVx2Q==} + /@commitlint/config-validator/16.2.1: + resolution: {integrity: sha512-hogSe0WGg7CKmp4IfNbdNES3Rq3UEI4XRPB8JL4EPgo/ORq5nrGTVzxJh78omibNuB8Ho4501Czb1Er1MoDWpw==} engines: {node: '>=v12'} dependencies: - '@commitlint/types': 16.0.0 + '@commitlint/types': 16.2.1 ajv: 6.12.6 dev: true - /@commitlint/ensure/16.0.0: - resolution: {integrity: sha512-WdMySU8DCTaq3JPf0tZFCKIUhqxaL54mjduNhu8v4D2AMUVIIQKYMGyvXn94k8begeW6iJkTf9cXBArayskE7Q==} + /@commitlint/ensure/16.2.1: + resolution: {integrity: sha512-/h+lBTgf1r5fhbDNHOViLuej38i3rZqTQnBTk+xEg+ehOwQDXUuissQ5GsYXXqI5uGy+261ew++sT4EA3uBJ+A==} engines: {node: '>=v12'} dependencies: - '@commitlint/types': 16.0.0 + '@commitlint/types': 16.2.1 lodash: 4.17.21 dev: true - /@commitlint/execute-rule/16.0.0: - resolution: {integrity: sha512-8edcCibmBb386x5JTHSPHINwA5L0xPkHQFY8TAuDEt5QyRZY/o5DF8OPHSa5Hx2xJvGaxxuIz4UtAT6IiRDYkw==} + /@commitlint/execute-rule/16.2.1: + resolution: {integrity: sha512-oSls82fmUTLM6cl5V3epdVo4gHhbmBFvCvQGHBRdQ50H/690Uq1Dyd7hXMuKITCIdcnr9umyDkr8r5C6HZDF3g==} engines: {node: '>=v12'} dev: true - /@commitlint/format/16.0.0: - resolution: {integrity: sha512-9yp5NCquXL1jVMKL0ZkRwJf/UHdebvCcMvICuZV00NQGYSAL89O398nhqrqxlbjBhM5EZVq0VGcV5+7r3D4zAA==} + /@commitlint/format/16.2.1: + resolution: {integrity: sha512-Yyio9bdHWmNDRlEJrxHKglamIk3d6hC0NkEUW6Ti6ipEh2g0BAhy8Od6t4vLhdZRa1I2n+gY13foy+tUgk0i1Q==} engines: {node: '>=v12'} dependencies: - '@commitlint/types': 16.0.0 + '@commitlint/types': 16.2.1 chalk: 4.1.2 dev: true - /@commitlint/is-ignored/16.0.0: - resolution: {integrity: sha512-gmAQcwIGC/R/Lp0CEb2b5bfGC7MT5rPe09N8kOGjO/NcdNmfFSZMquwrvNJsq9hnAP0skRdHIsqwlkENkN4Lag==} + /@commitlint/is-ignored/16.2.1: + resolution: {integrity: sha512-exl8HRzTIfb1YvDJp2b2HU5z1BT+9tmgxR2XF0YEzkMiCIuEKh+XLeocPr1VcvAKXv3Cmv5X/OfNRp+i+/HIhQ==} engines: {node: '>=v12'} dependencies: - '@commitlint/types': 16.0.0 + '@commitlint/types': 16.2.1 semver: 7.3.5 dev: true - /@commitlint/lint/16.0.0: - resolution: {integrity: sha512-HNl15bRC0h+pLzbMzQC3tM0j1aESXsLYhElqKnXcf5mnCBkBkHzu6WwJW8rZbfxX+YwJmNljN62cPhmdBo8x0A==} + /@commitlint/lint/16.2.1: + resolution: {integrity: sha512-fNINQ3X2ZqsCkNB3Z0Z8ElmhewqrS3gy2wgBTx97BkcjOWiyPAGwDJ752hwrsUnWAVBRztgw826n37xPzxsOgg==} engines: {node: '>=v12'} dependencies: - '@commitlint/is-ignored': 16.0.0 - '@commitlint/parse': 16.0.0 - '@commitlint/rules': 16.0.0 - '@commitlint/types': 16.0.0 + '@commitlint/is-ignored': 16.2.1 + '@commitlint/parse': 16.2.1 + '@commitlint/rules': 16.2.1 + '@commitlint/types': 16.2.1 dev: true - /@commitlint/load/16.1.0_@types+node@14.18.11: - resolution: {integrity: sha512-MtlEhKjP8jAF85jjX4mw8DUUwCxKsCgAc865hhpnwxjrfBcmGP7Up2AFE/M3ZMGDmSl1X1TMybQk/zohj8Cqdg==} + /@commitlint/load/16.2.1: + resolution: {integrity: sha512-oSpz0jTyVI/A1AIImxJINTLDOMB8YF7lWGm+Jg5wVWM0r7ucpuhyViVvpSRTgvL0z09oIxlctyFGWUQQpI42uw==} engines: {node: '>=v12'} dependencies: - '@commitlint/config-validator': 16.1.0 - '@commitlint/execute-rule': 16.0.0 - '@commitlint/resolve-extends': 16.1.0 - '@commitlint/types': 16.0.0 + '@commitlint/config-validator': 16.2.1 + '@commitlint/execute-rule': 16.2.1 + '@commitlint/resolve-extends': 16.2.1 + '@commitlint/types': 16.2.1 + '@types/node': 14.18.12 chalk: 4.1.2 cosmiconfig: 7.0.1 - cosmiconfig-typescript-loader: 1.0.5_f918a61be33a7619ad2bde2318260d39 + cosmiconfig-typescript-loader: 1.0.5_31a32bd81d8bbfc3c2c321de918dd405 lodash: 4.17.21 resolve-from: 5.0.0 typescript: 4.5.5 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - - '@types/node' dev: true - /@commitlint/message/16.0.0: - resolution: {integrity: sha512-CmK2074SH1Ws6kFMEKOKH/7hMekGVbOD6vb4alCOo2+33ZSLUIX8iNkDYyrw38Jwg6yWUhLjyQLUxREeV+QIUA==} + /@commitlint/message/16.2.1: + resolution: {integrity: sha512-2eWX/47rftViYg7a3axYDdrgwKv32mxbycBJT6OQY/MJM7SUfYNYYvbMFOQFaA4xIVZt7t2Alyqslbl6blVwWw==} engines: {node: '>=v12'} dev: true - /@commitlint/parse/16.0.0: - resolution: {integrity: sha512-F9EjFlMw4MYgBEqoRrWZZKQBzdiJzPBI0qFDFqwUvfQsMmXEREZ242T4R5bFwLINWaALFLHEIa/FXEPa6QxCag==} + /@commitlint/parse/16.2.1: + resolution: {integrity: sha512-2NP2dDQNL378VZYioLrgGVZhWdnJO4nAxQl5LXwYb08nEcN+cgxHN1dJV8OLJ5uxlGJtDeR8UZZ1mnQ1gSAD/g==} engines: {node: '>=v12'} dependencies: - '@commitlint/types': 16.0.0 + '@commitlint/types': 16.2.1 conventional-changelog-angular: 5.0.13 conventional-commits-parser: 3.2.4 dev: true - /@commitlint/prompt-cli/16.1.0_@types+node@14.18.11: - resolution: {integrity: sha512-TYiQhP8ha1Rjtu2xht9I8Lta3pXFYuDi/k2OjaWrBLiQyJT/YqdYM80xITZ0WLfBa5/BPDzvsyOCwH95zCx7mQ==} + /@commitlint/prompt-cli/16.2.1: + resolution: {integrity: sha512-OOisKi5HEFHv5+sPvAjbW2v/PoyeuQYTdxu7szW7LIp3gS3enut8BVEqWmZ9+G8M1speJp8CryPWKsVYMKZx5A==} engines: {node: '>=v12'} hasBin: true dependencies: - '@commitlint/prompt': 16.1.0_@types+node@14.18.11 + '@commitlint/prompt': 16.2.1 execa: 5.1.1 inquirer: 6.5.2 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - - '@types/node' dev: true - /@commitlint/prompt/16.1.0_@types+node@14.18.11: - resolution: {integrity: sha512-YX/jGdP/VKUuWooBEz2sClxewQlXa6U1xXkfUseWXhbYJYPVb/tUDE5Bo1g9DXtBlyyLaYKfqZ3ZYvSEAd82Uw==} + /@commitlint/prompt/16.2.1: + resolution: {integrity: sha512-FW/16mYxeeLmEiRWItPNDKlHwwXRbW4KsMf5i96gsTtHxG4d9YqdA8cOhNVOgXhfLByHSfn184K+UVcl6Jw3xw==} engines: {node: '>=v12'} dependencies: - '@commitlint/ensure': 16.0.0 - '@commitlint/load': 16.1.0_@types+node@14.18.11 - '@commitlint/types': 16.0.0 + '@commitlint/ensure': 16.2.1 + '@commitlint/load': 16.2.1 + '@commitlint/types': 16.2.1 chalk: 4.1.2 inquirer: 6.5.2 lodash: 4.17.21 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - - '@types/node' dev: true - /@commitlint/read/16.0.0: - resolution: {integrity: sha512-H4T2zsfmYQK9B+JtoQaCXWBHUhgIJyOzWZjSfuIV9Ce69/OgHoffNpLZPF2lX6yKuDrS1SQFhI/kUCjVc/e4ew==} + /@commitlint/read/16.2.1: + resolution: {integrity: sha512-tViXGuaxLTrw2r7PiYMQOFA2fueZxnnt0lkOWqKyxT+n2XdEMGYcI9ID5ndJKXnfPGPppD0w/IItKsIXlZ+alw==} engines: {node: '>=v12'} dependencies: - '@commitlint/top-level': 16.0.0 - '@commitlint/types': 16.0.0 + '@commitlint/top-level': 16.2.1 + '@commitlint/types': 16.2.1 fs-extra: 10.0.0 git-raw-commits: 2.0.11 dev: true - /@commitlint/resolve-extends/16.1.0: - resolution: {integrity: sha512-8182s6AFoUFX6+FT1PgQDt15nO2ogdR/EN8SYVAdhNXw1rLz8kT5saB/ICw567GuRAUgFTUMGCXy3ctMOXPEDg==} + /@commitlint/resolve-extends/16.2.1: + resolution: {integrity: sha512-NbbCMPKTFf2J805kwfP9EO+vV+XvnaHRcBy6ud5dF35dxMsvdJqke54W3XazXF1ZAxC4a3LBy4i/GNVBAthsEg==} engines: {node: '>=v12'} dependencies: - '@commitlint/config-validator': 16.1.0 - '@commitlint/types': 16.0.0 + '@commitlint/config-validator': 16.2.1 + '@commitlint/types': 16.2.1 import-fresh: 3.3.0 lodash: 4.17.21 resolve-from: 5.0.0 resolve-global: 1.0.0 dev: true - /@commitlint/rules/16.0.0: - resolution: {integrity: sha512-AOl0y2SBTdJ1bvIv8nwHvQKRT/jC1xb09C5VZwzHoT8sE8F54KDeEzPCwHQFgUcWdGLyS10kkOTAH2MyA8EIlg==} + /@commitlint/rules/16.2.1: + resolution: {integrity: sha512-ZFezJXQaBBso+BOTre/+1dGCuCzlWVaeLiVRGypI53qVgPMzQqZhkCcrxBFeqB87qeyzr4A4EoG++IvITwwpIw==} engines: {node: '>=v12'} dependencies: - '@commitlint/ensure': 16.0.0 - '@commitlint/message': 16.0.0 - '@commitlint/to-lines': 16.0.0 - '@commitlint/types': 16.0.0 + '@commitlint/ensure': 16.2.1 + '@commitlint/message': 16.2.1 + '@commitlint/to-lines': 16.2.1 + '@commitlint/types': 16.2.1 execa: 5.1.1 dev: true - /@commitlint/to-lines/16.0.0: - resolution: {integrity: sha512-iN/qU38TCKU7uKOg6RXLpD49wNiuI0TqMqybHbjefUeP/Jmzxa8ishryj0uLyVdrAl1ZjGeD1ukXGMTtvqz8iA==} + /@commitlint/to-lines/16.2.1: + resolution: {integrity: sha512-9/VjpYj5j1QeY3eiog1zQWY6axsdWAc0AonUUfyZ7B0MVcRI0R56YsHAfzF6uK/g/WwPZaoe4Lb1QCyDVnpVaQ==} engines: {node: '>=v12'} dev: true - /@commitlint/top-level/16.0.0: - resolution: {integrity: sha512-/Jt6NLxyFkpjL5O0jxurZPCHURZAm7cQCqikgPCwqPAH0TLgwqdHjnYipl8J+AGnAMGDip4FNLoYrtgIpZGBYw==} + /@commitlint/top-level/16.2.1: + resolution: {integrity: sha512-lS6GSieHW9y6ePL73ied71Z9bOKyK+Ib9hTkRsB8oZFAyQZcyRwq2w6nIa6Fngir1QW51oKzzaXfJL94qwImyw==} engines: {node: '>=v12'} dependencies: find-up: 5.0.0 dev: true - /@commitlint/types/16.0.0: - resolution: {integrity: sha512-+0FvYOAS39bJ4aKjnYn/7FD4DfWkmQ6G/06I4F0Gvu4KS5twirEg8mIcLhmeRDOOKn4Tp8PwpLwBiSA6npEMQA==} + /@commitlint/types/16.2.1: + resolution: {integrity: sha512-7/z7pA7BM0i8XvMSBynO7xsB3mVQPUZbVn6zMIlp/a091XJ3qAXRXc+HwLYhiIdzzS5fuxxNIHZMGHVD4HJxdA==} engines: {node: '>=v12'} dependencies: chalk: 4.1.2 @@ -4447,7 +4444,7 @@ packages: ignore: 4.0.6 import-fresh: 3.3.0 js-yaml: /@zkochan/js-yaml/0.0.5 - minimatch: 3.0.5 + minimatch: 3.1.2 strip-json-comments: 3.1.1 transitivePeerDependencies: - supports-color @@ -4463,7 +4460,7 @@ packages: dependencies: '@humanwhocodes/object-schema': 1.2.1 debug: 4.3.3 - minimatch: 3.0.5 + minimatch: 3.1.2 transitivePeerDependencies: - supports-color dev: true @@ -4493,7 +4490,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 chalk: 4.1.2 jest-message-util: 27.5.1 jest-util: 27.5.1 @@ -4514,7 +4511,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1_@babel+types@7.17.0 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.8.1 @@ -4552,7 +4549,7 @@ packages: dependencies: '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 jest-mock: 27.5.1 dev: true @@ -4562,7 +4559,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@sinonjs/fake-timers': 8.1.0 - '@types/node': 14.18.11 + '@types/node': 14.18.12 jest-message-util: 27.5.1 jest-mock: 27.5.1 jest-util: 27.5.1 @@ -4591,7 +4588,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1_@babel+types@7.17.0 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 chalk: 4.1.2 collect-v8-coverage: 1.0.1 exit: 0.1.2 @@ -4652,7 +4649,7 @@ packages: resolution: {integrity: sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@jest/types': 27.5.1 babel-plugin-istanbul: 6.1.1_@babel+types@7.17.0 chalk: 4.1.2 @@ -4678,7 +4675,7 @@ packages: dependencies: '@types/istanbul-lib-coverage': 2.0.4 '@types/istanbul-reports': 3.0.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 '@types/yargs': 16.0.4 chalk: 4.1.2 dev: true @@ -4703,7 +4700,7 @@ packages: resolution: {integrity: sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA==} dependencies: '@babel/runtime': 7.17.2 - '@types/node': 12.20.45 + '@types/node': 12.20.46 find-up: 4.1.0 fs-extra: 8.1.0 dev: true @@ -5040,7 +5037,7 @@ packages: read-yaml-file: 2.1.0 rimraf: 3.0.2 tempy: 1.0.1 - verdaccio: 5.5.2 + verdaccio: 5.6.0 write-yaml-file: 4.2.0 transitivePeerDependencies: - bufferutil @@ -5177,7 +5174,7 @@ packages: /@types/adm-zip/0.4.34: resolution: {integrity: sha512-8ToYLLAYhkRfcmmljrKi22gT2pqu7hGMDtORP1emwIEGmgUTZOsaDjzWFzW5N2frcFRz/50CWt4zA1CxJ73pmQ==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/archy/0.0.31: @@ -5187,7 +5184,7 @@ packages: /@types/babel__core/7.1.18: resolution: {integrity: sha512-S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ==} dependencies: - '@babel/parser': 7.17.0_@babel+types@7.17.0 + '@babel/parser': 7.17.3_@babel+types@7.17.0 '@babel/types': 7.17.0 '@types/babel__generator': 7.6.4 '@types/babel__template': 7.4.1 @@ -5203,7 +5200,7 @@ packages: /@types/babel__template/7.4.1: resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} dependencies: - '@babel/parser': 7.17.0_@babel+types@7.17.0 + '@babel/parser': 7.17.3_@babel+types@7.17.0 '@babel/types': 7.17.0 dev: true @@ -5220,7 +5217,7 @@ packages: /@types/byline/4.2.33: resolution: {integrity: sha512-LJYez7wrWcJQQDknqZtrZuExMGP0IXmPl1rOOGDqLbu+H7UNNRfKNuSxCBcQMLH1EfjeWidLedC/hCc5dDfBog==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/cacheable-request/6.0.2: @@ -5228,20 +5225,20 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.1 '@types/keyv': 3.1.3 - '@types/node': 17.0.17 + '@types/node': 17.0.18 '@types/responselike': 1.0.0 dev: false /@types/concat-stream/1.6.1: resolution: {integrity: sha512-eHE4cQPoj6ngxBZMvVf6Hw7Mh4jMW4U9lpGmS5GBPB9RYxlFg+CHaVN7ErNY4W9XfLIEn20b4VDYaIrbq0q4uA==} dependencies: - '@types/node': 14.18.11 + '@types/node': 14.18.12 dev: true /@types/cross-spawn/6.0.2: resolution: {integrity: sha512-KuwNhp3eza+Rhu8IFI5HUXRP0LIhqH5cAjubUvGXXthh4YYBuP2ntwEX+Cz8GJoZUHlKo247wPWOfA9LYEq4cw==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/emscripten/1.39.6: @@ -5251,20 +5248,20 @@ packages: /@types/fs-extra/9.0.13: resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/glob/7.2.0: resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} dependencies: '@types/minimatch': 3.0.5 - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/graceful-fs/4.1.5: resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} dependencies: - '@types/node': 14.18.11 + '@types/node': 14.18.12 dev: true /@types/hosted-git-info/3.0.2: @@ -5297,7 +5294,7 @@ packages: /@types/isexe/2.0.0: resolution: {integrity: sha512-QuPJ6xd8TLfMy6l/pJ+oeRHYG8efIzR8WeyvFr/k4zbhcRqa+SQiVgUUb3D3PG3Si+XVuxn8RToCcfNCdFqr3g==} dependencies: - '@types/node': 14.18.11 + '@types/node': 14.18.12 dev: true /@types/istanbul-lib-coverage/2.0.4: @@ -5345,7 +5342,7 @@ packages: /@types/keyv/3.1.3: resolution: {integrity: sha512-FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: false /@types/lodash/4.14.178: @@ -5373,29 +5370,29 @@ packages: /@types/minipass/3.1.2: resolution: {integrity: sha512-foLGjgrJkUjLG/o2t2ymlZGEoBNBa/TfoUZ7oCTkOjP1T43UGBJspovJou/l3ZuHvye2ewR5cZNtp2zyWgILMA==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/mz/2.7.4: resolution: {integrity: sha512-Zs0imXxyWT20j3Z2NwKpr0IO2LmLactBblNyLua5Az4UHuqOQ02V3jPTgyKwDkuc33/ahw+C3O1PIZdrhFMuQA==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true - /@types/node/12.20.45: - resolution: {integrity: sha512-1Jg2Qv5tuxBqgQV04+wO5u+wmSHbHgpORCJdeCLM+E+YdPElpdHhgywU+M1V1InL8rfOtpqtOjswk+uXTKwx7w==} + /@types/node/12.20.46: + resolution: {integrity: sha512-cPjLXj8d6anFPzFvOPxS3fvly3Shm5nTfl6g8X5smexixbuGUf7hfr21J5tX9JW+UPStp/5P5R8qrKL5IyVJ+A==} dev: true /@types/node/13.13.52: resolution: {integrity: sha512-s3nugnZumCC//n4moGGe6tkNMyYEdaDBitVjwPxXmR5lnMG5dHePinH2EdxkG3Rh1ghFHHixAG4NJhpJW1rthQ==} dev: false - /@types/node/14.18.11: - resolution: {integrity: sha512-zCoCEMA+IPpsRkyCFBqew5vGb7r8RSiB3uwdu/map7uwLAfu1MTazW26/pUDWoNnF88vJz4W3U56i5gtXNqxGg==} + /@types/node/14.18.12: + resolution: {integrity: sha512-q4jlIR71hUpWTnGhXWcakgkZeHa3CCjcQcnuzU8M891BAWA2jHiziiWEPEkdS5pFsz7H9HJiy8BrK7tBRNrY7A==} dev: true - /@types/node/17.0.17: - resolution: {integrity: sha512-e8PUNQy1HgJGV3iU/Bp2+D/DXh3PYeyli8LgIwsQcs1Ar1LoaWHSIT6Rw+H2rNJmiq6SNWiDytfx8+gYj7wDHw==} + /@types/node/17.0.18: + resolution: {integrity: sha512-eKj4f/BsN/qcculZiRSujogjvp5O/k4lOW5m35NopjZM/QwLOR075a8pJW5hD+Rtdm2DaCVPENS6KtSQnUD6BA==} /@types/normalize-package-data/2.4.1: resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} @@ -5429,7 +5426,7 @@ packages: /@types/responselike/1.0.0: resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: false /@types/retry/0.12.1: @@ -5440,7 +5437,7 @@ packages: resolution: {integrity: sha512-F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ==} dependencies: '@types/glob': 7.2.0 - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/semver/6.2.3: @@ -5466,7 +5463,7 @@ packages: /@types/ssri/7.1.1: resolution: {integrity: sha512-DPP/jkDaqGiyU75MyMURxLWyYLwKSjnAuGe9ZCsLp9QZOpXmDfuevk769F0BS86TmRuD5krnp06qw9nSoNO+0g==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 /@types/stack-utils/2.0.1: resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} @@ -5479,20 +5476,20 @@ packages: /@types/tar-stream/2.2.2: resolution: {integrity: sha512-1AX+Yt3icFuU6kxwmPakaiGrJUwG44MpuiqPg4dSolRFk6jmvs4b3IbUol9wKDLIgU76gevn3EwE8y/DkSJCZQ==} dependencies: - '@types/node': 14.18.11 + '@types/node': 14.18.12 dev: true /@types/tar/4.0.5: resolution: {integrity: sha512-cgwPhNEabHaZcYIy5xeMtux2EmYBitfqEceBUi2t5+ETy4dW6kswt6WX4+HqLeiiKOo42EXbGiDmVJ2x+vi37Q==} dependencies: '@types/minipass': 3.1.2 - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/touch/3.1.2: resolution: {integrity: sha512-6YYYfTc90glAZBvyjpmz6JFLtBRyLWXckmlNgK4R2czsWg63cRCI9Rb3aKJ6LPbw8jpHf7nZdVvMd6gUg4hVsw==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/treeify/1.0.0: @@ -5522,7 +5519,7 @@ packages: /@types/write-file-atomic/3.0.3: resolution: {integrity: sha512-RfbL28ev+HeIcQyl8TDU5pxHdDQrKyuKHXfz2bKFJn4/IFa34SGDT1DDXYsIf9s/KuW6zGBR+yZoe8pAlvMPXg==} dependencies: - '@types/node': 17.0.17 + '@types/node': 17.0.18 dev: true /@types/yargs-parser/20.2.1: @@ -5539,8 +5536,8 @@ packages: resolution: {integrity: sha512-8NYnGOctzsI4W0ApsP/BIHD/LnxpJ6XaGf2AZmz4EyDYJMxtprN4279dLNI1CPZcwC9H18qYcaFv4bXi0wmokg==} dev: true - /@typescript-eslint/eslint-plugin/5.11.0_443f0ca211d1eb448ae441202bc3f54c: - resolution: {integrity: sha512-HJh33bgzXe6jGRocOj4FmefD7hRY4itgjzOrSs3JPrTNXsX7j5+nQPciAUj/1nZtwo2kAc3C75jZO+T23gzSGw==} + /@typescript-eslint/eslint-plugin/5.12.0_63a89061dc810b86310fabbcdfd0bc88: + resolution: {integrity: sha512-fwCMkDimwHVeIOKeBHiZhRUfJXU8n6xW1FL9diDxAyGAFvKcH4csy0v7twivOQdQdA0KC8TDr7GGRd3L4Lv0rQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: '@typescript-eslint/parser': ^5.0.0 @@ -5550,10 +5547,10 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/parser': 5.11.0_cf1ca366a1937349a96146b2e58675b4 - '@typescript-eslint/scope-manager': 5.11.0 - '@typescript-eslint/type-utils': 5.11.0_cf1ca366a1937349a96146b2e58675b4 - '@typescript-eslint/utils': 5.11.0_cf1ca366a1937349a96146b2e58675b4 + '@typescript-eslint/parser': 5.12.0_cf1ca366a1937349a96146b2e58675b4 + '@typescript-eslint/scope-manager': 5.12.0 + '@typescript-eslint/type-utils': 5.12.0_cf1ca366a1937349a96146b2e58675b4 + '@typescript-eslint/utils': 5.12.0_cf1ca366a1937349a96146b2e58675b4 debug: 4.3.3 eslint: 8.9.0 functional-red-black-tree: 1.0.1 @@ -5586,8 +5583,8 @@ packages: - supports-color dev: false - /@typescript-eslint/parser/5.11.0_cf1ca366a1937349a96146b2e58675b4: - resolution: {integrity: sha512-x0DCjetHZYBRovJdr3U0zG9OOdNXUaFLJ82ehr1AlkArljJuwEsgnud+Q7umlGDFLFrs8tU8ybQDFocp/eX8mQ==} + /@typescript-eslint/parser/5.12.0_cf1ca366a1937349a96146b2e58675b4: + resolution: {integrity: sha512-MfSwg9JMBojMUoGjUmX+D2stoQj1CBYTCP0qnnVtu9A+YQXVKNtLjasYh+jozOcrb/wau8TCfWOkQTiOAruBog==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || * @@ -5596,9 +5593,9 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 5.11.0 - '@typescript-eslint/types': 5.11.0 - '@typescript-eslint/typescript-estree': 5.11.0_typescript@4.6.0-beta + '@typescript-eslint/scope-manager': 5.12.0 + '@typescript-eslint/types': 5.12.0 + '@typescript-eslint/typescript-estree': 5.12.0_typescript@4.6.0-beta debug: 4.3.3 eslint: 8.9.0 typescript: 4.6.0-beta @@ -5614,16 +5611,16 @@ packages: '@typescript-eslint/visitor-keys': 4.33.0 dev: false - /@typescript-eslint/scope-manager/5.11.0: - resolution: {integrity: sha512-z+K4LlahDFVMww20t/0zcA7gq/NgOawaLuxgqGRVKS0PiZlCTIUtX0EJbC0BK1JtR4CelmkPK67zuCgpdlF4EA==} + /@typescript-eslint/scope-manager/5.12.0: + resolution: {integrity: sha512-GAMobtIJI8FGf1sLlUWNUm2IOkIjvn7laFWyRx7CLrv6nLBI7su+B7lbStqVlK5NdLvHRFiJo2HhiDF7Ki01WQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.11.0 - '@typescript-eslint/visitor-keys': 5.11.0 + '@typescript-eslint/types': 5.12.0 + '@typescript-eslint/visitor-keys': 5.12.0 dev: false - /@typescript-eslint/type-utils/5.11.0_cf1ca366a1937349a96146b2e58675b4: - resolution: {integrity: sha512-wDqdsYO6ofLaD4DsGZ0jGwxp4HrzD2YKulpEZXmgN3xo4BHJwf7kq49JTRpV0Gx6bxkSUmc9s0EIK1xPbFFpIA==} + /@typescript-eslint/type-utils/5.12.0_cf1ca366a1937349a96146b2e58675b4: + resolution: {integrity: sha512-9j9rli3zEBV+ae7rlbBOotJcI6zfc6SHFMdKI9M3Nc0sy458LJ79Os+TPWeBBL96J9/e36rdJOfCuyRSgFAA0Q==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -5632,7 +5629,7 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/utils': 5.11.0_cf1ca366a1937349a96146b2e58675b4 + '@typescript-eslint/utils': 5.12.0_cf1ca366a1937349a96146b2e58675b4 debug: 4.3.3 eslint: 8.9.0 tsutils: 3.21.0_typescript@4.6.0-beta @@ -5646,8 +5643,8 @@ packages: engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} dev: false - /@typescript-eslint/types/5.11.0: - resolution: {integrity: sha512-cxgBFGSRCoBEhvSVLkKw39+kMzUKHlJGVwwMbPcTZX3qEhuXhrjwaZXWMxVfxDgyMm+b5Q5b29Llo2yow8Y7xQ==} + /@typescript-eslint/types/5.12.0: + resolution: {integrity: sha512-JowqbwPf93nvf8fZn5XrPGFBdIK8+yx5UEGs2QFAYFI8IWYfrzz+6zqlurGr2ctShMaJxqwsqmra3WXWjH1nRQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: false @@ -5672,8 +5669,8 @@ packages: - supports-color dev: false - /@typescript-eslint/typescript-estree/5.11.0_typescript@4.6.0-beta: - resolution: {integrity: sha512-yVH9hKIv3ZN3lw8m/Jy5I4oXO4ZBMqijcXCdA4mY8ull6TPTAoQnKKrcZ0HDXg7Bsl0Unwwx7jcXMuNZc0m4lg==} + /@typescript-eslint/typescript-estree/5.12.0_typescript@4.6.0-beta: + resolution: {integrity: sha512-Dd9gVeOqt38QHR0BEA8oRaT65WYqPYbIc5tRFQPkfLquVEFPD1HAtbZT98TLBkEcCkvwDYOAvuSvAD9DnQhMfQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: typescript: '*' @@ -5681,8 +5678,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 5.11.0 - '@typescript-eslint/visitor-keys': 5.11.0 + '@typescript-eslint/types': 5.12.0 + '@typescript-eslint/visitor-keys': 5.12.0 debug: 4.3.3 globby: 11.1.0 is-glob: 4.0.3 @@ -5693,16 +5690,16 @@ packages: - supports-color dev: false - /@typescript-eslint/utils/5.11.0_cf1ca366a1937349a96146b2e58675b4: - resolution: {integrity: sha512-g2I480tFE1iYRDyMhxPAtLQ9HAn0jjBtipgTCZmd9I9s11OV8CTsG+YfFciuNDcHqm4csbAgC2aVZCHzLxMSUw==} + /@typescript-eslint/utils/5.12.0_cf1ca366a1937349a96146b2e58675b4: + resolution: {integrity: sha512-k4J2WovnMPGI4PzKgDtQdNrCnmBHpMUFy21qjX2CoPdoBcSBIMvVBr9P2YDP8jOqZOeK3ThOL6VO/sy6jtnvzw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || * dependencies: '@types/json-schema': 7.0.9 - '@typescript-eslint/scope-manager': 5.11.0 - '@typescript-eslint/types': 5.11.0 - '@typescript-eslint/typescript-estree': 5.11.0_typescript@4.6.0-beta + '@typescript-eslint/scope-manager': 5.12.0 + '@typescript-eslint/types': 5.12.0 + '@typescript-eslint/typescript-estree': 5.12.0_typescript@4.6.0-beta eslint: 8.9.0 eslint-scope: 5.1.1 eslint-utils: 3.0.0_eslint@8.9.0 @@ -5719,34 +5716,34 @@ packages: eslint-visitor-keys: 2.1.0 dev: false - /@typescript-eslint/visitor-keys/5.11.0: - resolution: {integrity: sha512-E8w/vJReMGuloGxJDkpPlGwhxocxOpSVgSvjiLO5IxZPmxZF30weOeJYyPSEACwM+X4NziYS9q+WkN/2DHYQwA==} + /@typescript-eslint/visitor-keys/5.12.0: + resolution: {integrity: sha512-cFwTlgnMV6TgezQynx2c/4/tx9Tufbuo9LPzmWqyRC3QC4qTGkAG1C6pBr0/4I10PAI/FlYunI3vJjIcu+ZHMg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - '@typescript-eslint/types': 5.11.0 + '@typescript-eslint/types': 5.12.0 eslint-visitor-keys: 3.3.0 dev: false - /@verdaccio/commons-api/10.1.0: - resolution: {integrity: sha512-7xidrFzpyS4QVqVSFK+2lJn3mefpAPvk2pPe4SbiCibjRBFTXdj2KaeaqMEh2ROGzag4+tbx7l4hZ1qkB/1mkA==} + /@verdaccio/commons-api/10.2.0: + resolution: {integrity: sha512-F/YZANu4DmpcEV0jronzI7v2fGVWkQ5Mwi+bVmV+ACJ+EzR0c9Jbhtbe5QyLUuzR97t8R5E/Xe53O0cc2LukdQ==} engines: {node: '>=8'} dependencies: http-errors: 1.8.1 - http-status-codes: 1.4.0 + http-status-codes: 2.2.0 - /@verdaccio/file-locking/10.1.0: - resolution: {integrity: sha512-PULcFqfj8S8shY/Ry+v+q6aYhhJBG517Pfzf9DYgJW5AcAHk6SpLB+0XyjfBtJ66ic0jlVnx/Y0FanQXrJDkig==} + /@verdaccio/file-locking/10.2.0: + resolution: {integrity: sha512-2FR5Tq0xuFLgEIuMPhtdofUk02OiJrBk4bOrQRaIkuYNEqiC0QNzXIz1u8ys2Q++z48affjbJkc9WUnAZRYbJg==} engines: {node: '>=8'} dependencies: lockfile: 1.0.4 - /@verdaccio/local-storage/10.1.1: - resolution: {integrity: sha512-ZSkSH6mnsW9xL/Q4YpNNMS7YQduVFXRJiPN8Kz4d+Pkx2Amp83vZBOu5OfLvoClzGD1CQtMKW91gHvTF5Sjivg==} + /@verdaccio/local-storage/10.2.0: + resolution: {integrity: sha512-sEzNC/BfzrBX1NtBL2xy9yrgX6mEs1s//L7jlEs+4iWaq/mnzxjSq8rkvVPmwcJK/3IFC7YrJWfD5MVc/kYIyw==} engines: {node: '>=8'} dependencies: - '@verdaccio/commons-api': 10.1.0 - '@verdaccio/file-locking': 10.1.0 - '@verdaccio/streams': 10.1.0 + '@verdaccio/commons-api': 10.2.0 + '@verdaccio/file-locking': 10.2.0 + '@verdaccio/streams': 10.2.0 async: 3.2.3 debug: 4.3.3 lodash: 4.17.21 @@ -5755,10 +5752,10 @@ packages: transitivePeerDependencies: - supports-color - /@verdaccio/readme/10.2.1: - resolution: {integrity: sha512-UjmgwRv9PHMexT07rxgFfhu493XcelaoG8AtmA00U2b+jZpLFQ1vRBo3TvpHYh/cpomUfeAasBHMQwV/8nGMOg==} + /@verdaccio/readme/10.3.2: + resolution: {integrity: sha512-Wb83etSDf2SL47zkHHrblaIhKhkMeNdm7ibVv6MGffUpG+CtQtKEMTFqU6pc0NfeNTCb+5DUIuArCPznyjItIg==} dependencies: - dompurify: 2.3.5 + dompurify: 2.2.6 jsdom: 15.2.1 marked: 4.0.10 transitivePeerDependencies: @@ -5766,8 +5763,8 @@ packages: - canvas - utf-8-validate - /@verdaccio/streams/10.1.0: - resolution: {integrity: sha512-19FebNvwNiJkk68fFEq/kNOcPNKYX/NoPFqOlZH6mGUGUo3htHh4tD5k2WepAZpBeK9SC868UiPbMizdIXquSg==} + /@verdaccio/streams/10.2.0: + resolution: {integrity: sha512-FaIzCnDg0x0Js5kSQn1Le3YzDHl7XxrJ0QdIw5LrDUmLsH3VXNi4/NMlSHnw5RiTTMs4UbEf98V3RJRB8exqJA==} engines: {node: '>=8', npm: '>=5'} /@verdaccio/ui-theme/6.0.0-6-next.16: @@ -6437,18 +6434,18 @@ packages: /aws4/1.11.0: resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} - /babel-jest/27.5.1_ed62f278b48e682cd23ac78c1e26c706: + /babel-jest/27.5.1_11de089ddefa2ea749029c618d21f62c: resolution: {integrity: sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.8.0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@jest/transform': 27.5.1_@babel+types@7.17.0 '@jest/types': 27.5.1 '@types/babel__core': 7.1.18 babel-plugin-istanbul: 6.1.1_@babel+types@7.17.0 - babel-preset-jest: 27.5.1_@babel+core@7.17.2 + babel-preset-jest: 27.5.1_@babel+core@7.17.4 chalk: 4.1.2 graceful-fs: 4.2.9 slash: 3.0.0 @@ -6487,35 +6484,35 @@ packages: '@types/babel__traverse': 7.14.2 dev: true - /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.2: + /babel-preset-current-node-syntax/1.0.1_@babel+core@7.17.4: resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.2 - '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.2 - '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.17.2 - '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.2 - '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.2 - '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.2 - '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.2 - '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.2 - '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.2 - '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.2 - '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.2 - '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.2 - '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.2 + '@babel/core': 7.17.4 + '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.17.4 + '@babel/plugin-syntax-bigint': 7.8.3_@babel+core@7.17.4 + '@babel/plugin-syntax-class-properties': 7.12.13_@babel+core@7.17.4 + '@babel/plugin-syntax-import-meta': 7.10.4_@babel+core@7.17.4 + '@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.17.4 + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.17.4 + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.17.4 + '@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.17.4 + '@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.17.4 + '@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.17.4 + '@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.17.4 + '@babel/plugin-syntax-top-level-await': 7.14.5_@babel+core@7.17.4 dev: true - /babel-preset-jest/27.5.1_@babel+core@7.17.2: + /babel-preset-jest/27.5.1_@babel+core@7.17.4: resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} peerDependencies: '@babel/core': ^7.0.0 dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 babel-plugin-jest-hoist: 27.5.1 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.4 dev: true /bail/1.0.5: @@ -6656,8 +6653,8 @@ packages: engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} hasBin: true dependencies: - caniuse-lite: 1.0.30001311 - electron-to-chromium: 1.4.68 + caniuse-lite: 1.0.30001312 + electron-to-chromium: 1.4.71 escalade: 3.1.1 node-releases: 2.0.2 picocolors: 1.0.0 @@ -6842,8 +6839,8 @@ packages: dependencies: path-temp: 2.0.0 - /caniuse-lite/1.0.30001311: - resolution: {integrity: sha512-mleTFtFKfykEeW34EyfhGIFjGCqzhh38Y0LhdQ9aWF+HorZTtdgKV/1hEE0NlFkG2ubvisPV6l400tlbPys98A==} + /caniuse-lite/1.0.30001312: + resolution: {integrity: sha512-Wiz1Psk2MEK0pX3rUzWaunLTZzqS2JYZFzNKqAiJGiuxIjRPLgV6+VDPOg6lQOUxmDwhTlh198JsTTi8Hzw6aQ==} dev: true /caseless/0.12.0: @@ -7266,16 +7263,16 @@ packages: object-assign: 4.1.1 vary: 1.1.2 - /cosmiconfig-typescript-loader/1.0.5_f918a61be33a7619ad2bde2318260d39: + /cosmiconfig-typescript-loader/1.0.5_31a32bd81d8bbfc3c2c321de918dd405: resolution: {integrity: sha512-FL/YR1nb8hyN0bAcP3MBaIoZravfZtVsN/RuPnoo6UVjqIrDxSNIpXHCGgJe0ZWy5yImpyD6jq5wCJ5f1nUv8g==} engines: {node: '>=12', npm: '>=6'} peerDependencies: '@types/node': '*' typescript: '>=3' dependencies: - '@types/node': 14.18.11 + '@types/node': 14.18.12 cosmiconfig: 7.0.1 - ts-node: 10.5.0_f918a61be33a7619ad2bde2318260d39 + ts-node: 10.5.0_31a32bd81d8bbfc3c2c321de918dd405 typescript: 4.5.5 transitivePeerDependencies: - '@swc/core' @@ -7754,8 +7751,8 @@ packages: webidl-conversions: 5.0.0 dev: true - /dompurify/2.3.5: - resolution: {integrity: sha512-kD+f8qEaa42+mjdOpKeztu9Mfx5bv9gVLO6K9jRx4uGvh6Wv06Srn4jr1wPNY2OOUGGSKHNFN+A8MA3v0E0QAQ==} + /dompurify/2.2.6: + resolution: {integrity: sha512-7b7ZArhhH0SP6W2R9cqK6RjaU82FZ2UPM7RO8qN1b1wyvC/NY1FNWcX1Pu00fFOAnzEORtwXe4bPaClg6pUybQ==} /dot-prop/5.3.0: resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} @@ -7795,8 +7792,8 @@ packages: /ee-first/1.1.1: resolution: {integrity: sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=} - /electron-to-chromium/1.4.68: - resolution: {integrity: sha512-cId+QwWrV8R1UawO6b9BR1hnkJ4EJPCPAr4h315vliHUtVUJDk39Sg1PMNnaWKfj5x+93ssjeJ9LKL6r8LaMiA==} + /electron-to-chromium/1.4.71: + resolution: {integrity: sha512-Hk61vXXKRb2cd3znPE9F+2pLWdIOmP7GjiTj45y6L3W/lO+hSnUSUhq+6lEaERWBdZOHbk2s3YV5c9xVl3boVw==} dev: true /emittery/0.8.1: @@ -8167,7 +8164,7 @@ packages: source-map: 0.6.1 dev: true - /eslint-config-standard-with-typescript/21.0.1_01a186f74e9a221e24012353277bb4e8: + /eslint-config-standard-with-typescript/21.0.1_a5885a146c85120480008c3ab628e347: resolution: {integrity: sha512-FeiMHljEJ346Y0I/HpAymNKdrgKEpHpcg/D93FvPHWfCzbT4QyUJba/0FwntZeGLXfUiWDSeKmdJD597d9wwiw==} peerDependencies: '@typescript-eslint/eslint-plugin': ^4.0.1 || ^5.6.0 @@ -8177,7 +8174,7 @@ packages: eslint-plugin-promise: ^4.2.1 || ^5.0.0 typescript: ^3.9 || ^4.0.0 dependencies: - '@typescript-eslint/eslint-plugin': 5.11.0_443f0ca211d1eb448ae441202bc3f54c + '@typescript-eslint/eslint-plugin': 5.12.0_63a89061dc810b86310fabbcdfd0bc88 '@typescript-eslint/parser': 4.33.0_cf1ca366a1937349a96146b2e58675b4 eslint: 8.9.0 eslint-config-standard: 16.0.3_2dae9da07848968bcc0999a5e5956768 @@ -8244,7 +8241,7 @@ packages: has: 1.0.3 is-core-module: 2.8.1 is-glob: 4.0.3 - minimatch: 3.0.5 + minimatch: 3.1.2 object.values: 1.1.5 resolve: 1.22.0 tsconfig-paths: 3.12.0 @@ -8260,7 +8257,7 @@ packages: eslint-plugin-es: 3.0.1_eslint@8.9.0 eslint-utils: 2.1.0 ignore: 5.2.0 - minimatch: 3.0.5 + minimatch: 3.1.2 resolve: 1.22.0 semver: 6.3.0 dev: false @@ -8351,7 +8348,7 @@ packages: json-stable-stringify-without-jsonify: 1.0.1 levn: 0.4.1 lodash.merge: 4.6.2 - minimatch: 3.0.5 + minimatch: 3.1.2 natural-compare: 1.4.0 optionator: 0.9.1 regexpp: 3.2.0 @@ -8964,8 +8961,8 @@ packages: strip-ansi: 3.0.1 wide-align: 1.1.5 - /gauge/4.0.0: - resolution: {integrity: sha512-F8sU45yQpjQjxKkm1UOAhf0U/O0aFt//Fl7hsrNVto+patMHjs7dPI9mFOGUKbhrgKm0S3EjW3scMFuQmWSROw==} + /gauge/4.0.1: + resolution: {integrity: sha512-zJ4jePUHR8cceduZ53b6temRalyGpkC2Kc2r3ecNphmL+uWNoJ3YcOcUjpbG6WwoE/Ef6/+aEZz63neI2WIa1Q==} engines: {node: ^12.13.0 || ^14.15.0 || >=16} dependencies: ansi-regex: 5.0.1 @@ -9123,7 +9120,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.5 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 @@ -9393,8 +9390,8 @@ packages: jsprim: 1.4.2 sshpk: 1.17.0 - /http-status-codes/1.4.0: - resolution: {integrity: sha512-JrT3ua+WgH8zBD3HEJYbeEgnuQaAnUeRRko/YojPAJjGmIfGD3KPU/asLdsLwKjfxOmQe5nXMQ0pt/7MyapVbQ==} + /http-status-codes/2.2.0: + resolution: {integrity: sha512-feERVo9iWxvnejp3SEfm/+oNG517npqL2/PIA8ORjyOZjGC7TwCRQsZylciLS64i6pJ0wRYz3rkXLRwbtFa8Ng==} /http2-wrapper/1.0.3: resolution: {integrity: sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==} @@ -9460,7 +9457,7 @@ packages: resolution: {integrity: sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==} engines: {node: '>=10'} dependencies: - minimatch: 3.0.5 + minimatch: 3.1.2 dev: false /ignore/4.0.6: @@ -9975,8 +9972,8 @@ packages: resolution: {integrity: sha512-czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q==} engines: {node: '>=8'} dependencies: - '@babel/core': 7.17.2 - '@babel/parser': 7.17.0_@babel+types@7.17.0 + '@babel/core': 7.17.4 + '@babel/parser': 7.17.3_@babel+types@7.17.0 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.0 semver: 6.3.0 @@ -10021,7 +10018,7 @@ packages: '@jest/environment': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 chalk: 4.1.2 co: 4.6.0 dedent: 0.7.0 @@ -10082,10 +10079,10 @@ packages: ts-node: optional: true dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@jest/test-sequencer': 27.5.1_@babel+types@7.17.0 '@jest/types': 27.5.1 - babel-jest: 27.5.1_ed62f278b48e682cd23ac78c1e26c706 + babel-jest: 27.5.1_11de089ddefa2ea749029c618d21f62c chalk: 4.1.2 ci-info: 3.3.0 deepmerge: 4.2.2 @@ -10106,7 +10103,7 @@ packages: pretty-format: 27.5.1 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.5.0_b6515ca2329bae33a41e52b4cec77dbc + ts-node: 10.5.0_f93c5bb7acd9caa138186c328bcc3094 transitivePeerDependencies: - '@babel/types' - bufferutil @@ -10150,7 +10147,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 jest-mock: 27.5.1 jest-util: 27.5.1 jsdom: 16.7.0 @@ -10168,7 +10165,7 @@ packages: '@jest/environment': 27.5.1 '@jest/fake-timers': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 jest-mock: 27.5.1 jest-util: 27.5.1 dev: true @@ -10184,7 +10181,7 @@ packages: dependencies: '@jest/types': 27.5.1 '@types/graceful-fs': 4.1.5 - '@types/node': 14.18.11 + '@types/node': 14.18.12 anymatch: 3.1.2 fb-watchman: 2.0.1 graceful-fs: 4.2.9 @@ -10206,7 +10203,7 @@ packages: '@jest/source-map': 27.5.1 '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 chalk: 4.1.2 co: 4.6.0 expect: 27.5.1 @@ -10262,7 +10259,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 dev: true /jest-pnp-resolver/1.2.2_jest-resolve@27.5.1: @@ -10318,7 +10315,7 @@ packages: '@jest/test-result': 27.5.1 '@jest/transform': 27.5.1_@babel+types@7.17.0 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 chalk: 4.1.2 emittery: 0.8.1 graceful-fs: 4.2.9 @@ -10377,7 +10374,7 @@ packages: resolution: {integrity: sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@types/node': 14.18.11 + '@types/node': 14.18.12 graceful-fs: 4.2.9 dev: true @@ -10385,16 +10382,16 @@ packages: resolution: {integrity: sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: - '@babel/core': 7.17.2 - '@babel/generator': 7.17.0 - '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.2 - '@babel/traverse': 7.17.0 + '@babel/core': 7.17.4 + '@babel/generator': 7.17.3 + '@babel/plugin-syntax-typescript': 7.16.7_@babel+core@7.17.4 + '@babel/traverse': 7.17.3 '@babel/types': 7.17.0 '@jest/transform': 27.5.1_@babel+types@7.17.0 '@jest/types': 27.5.1 '@types/babel__traverse': 7.14.2 '@types/prettier': 2.4.4 - babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.2 + babel-preset-current-node-syntax: 1.0.1_@babel+core@7.17.4 chalk: 4.1.2 expect: 27.5.1 graceful-fs: 4.2.9 @@ -10416,7 +10413,7 @@ packages: engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} dependencies: '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 chalk: 4.1.2 ci-info: 3.3.0 graceful-fs: 4.2.9 @@ -10441,7 +10438,7 @@ packages: dependencies: '@jest/test-result': 27.5.1 '@jest/types': 27.5.1 - '@types/node': 14.18.11 + '@types/node': 14.18.12 ansi-escapes: 4.3.2 chalk: 4.1.2 jest-util: 27.5.1 @@ -10452,7 +10449,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 14.18.11 + '@types/node': 14.18.12 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -11092,6 +11089,11 @@ packages: engines: {node: '>= 12'} hasBin: true + /marked/4.0.12: + resolution: {integrity: sha512-hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ==} + engines: {node: '>= 12'} + hasBin: true + /mdast-util-compact/1.0.4: resolution: {integrity: sha512-3YDMQHI5vRiS2uygEFYaqckibpJtKq5Sj2c8JioeOQBU6INpKbdWzfyLqFFnDwEcEnRFIdMsguzs5pC1Jp4Isg==} dependencies: @@ -11311,8 +11313,8 @@ packages: dependencies: brace-expansion: 1.1.11 - /minimatch/3.0.5: - resolution: {integrity: sha512-tUpxzX0VAzJHjLu0xUfFv1gwVp9ba3IOuRAVH2EGuRW8a5emA2FlACLqiT/lDVtS1W+TGNwqz3sWaNyLgDJWuw==} + /minimatch/3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} dependencies: brace-expansion: 1.1.11 @@ -11728,7 +11730,7 @@ packages: chalk: 2.4.2 cross-spawn: 6.0.5 memorystream: 0.3.1 - minimatch: 3.0.5 + minimatch: 3.1.2 pidtree: 0.3.1 read-pkg: 3.0.0 shell-quote: 1.7.3 @@ -11756,7 +11758,7 @@ packages: dependencies: are-we-there-yet: 3.0.0 console-control-strings: 1.1.0 - gauge: 4.0.0 + gauge: 4.0.1 set-blocking: 2.0.0 dev: false @@ -13875,7 +13877,7 @@ packages: dependencies: '@istanbuljs/schema': 0.1.3 glob: 7.2.0 - minimatch: 3.0.5 + minimatch: 3.1.2 dev: true /text-extensions/1.9.0: @@ -14096,7 +14098,7 @@ packages: utf8-byte-length: 1.0.4 dev: false - /ts-jest/27.1.3_b6661d2815432df67610ecfd94d2c2e8: + /ts-jest/27.1.3_4a5e3c949e1008e065366ec2b8169250: resolution: {integrity: sha512-6Nlura7s6uM9BVUAoqLH7JHyMXjz8gluryjpPXxr3IxZdAXnU6FhjvVLHFtfd1vsE1p8zD1OJfskkc0jhTSnkA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} hasBin: true @@ -14117,7 +14119,7 @@ packages: esbuild: optional: true dependencies: - '@babel/core': 7.17.2 + '@babel/core': 7.17.4 '@types/jest': 27.4.0 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 @@ -14131,7 +14133,7 @@ packages: yargs-parser: 20.2.9 dev: true - /ts-node/10.5.0_b6515ca2329bae33a41e52b4cec77dbc: + /ts-node/10.5.0_31a32bd81d8bbfc3c2c321de918dd405: resolution: {integrity: sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw==} hasBin: true peerDependencies: @@ -14150,38 +14152,7 @@ packages: '@tsconfig/node12': 1.0.9 '@tsconfig/node14': 1.0.1 '@tsconfig/node16': 1.0.2 - '@types/node': 14.18.11 - acorn: 8.7.0 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 4.6.0-beta - v8-compile-cache-lib: 3.0.0 - yn: 3.1.1 - dev: true - - /ts-node/10.5.0_f918a61be33a7619ad2bde2318260d39: - resolution: {integrity: sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: '>=2.7' - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.7.0 - '@tsconfig/node10': 1.0.8 - '@tsconfig/node12': 1.0.9 - '@tsconfig/node14': 1.0.1 - '@tsconfig/node16': 1.0.2 - '@types/node': 14.18.11 + '@types/node': 14.18.12 acorn: 8.7.0 acorn-walk: 8.2.0 arg: 4.1.3 @@ -14193,6 +14164,37 @@ packages: yn: 3.1.1 dev: true + /ts-node/10.5.0_f93c5bb7acd9caa138186c328bcc3094: + resolution: {integrity: sha512-6kEJKwVxAJ35W4akuiysfKwKmjkbYxwQMTBaAxo9KKAx/Yd26mPUyhGz3ji+EsJoAgrLqVsYHNuuYwQe22lbtw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.7.0 + '@tsconfig/node10': 1.0.8 + '@tsconfig/node12': 1.0.9 + '@tsconfig/node14': 1.0.1 + '@tsconfig/node16': 1.0.2 + '@types/node': 14.18.12 + acorn: 8.7.0 + acorn-walk: 8.2.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 4.6.0-beta + v8-compile-cache-lib: 3.0.0 + yn: 3.1.1 + dev: true + /ts-toolbelt/6.15.5: resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==} dev: true @@ -14571,8 +14573,8 @@ packages: resolution: {integrity: sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=} engines: {node: '>= 0.8'} - /verdaccio-audit/10.1.1: - resolution: {integrity: sha512-j4+u/DLzcsLESnjDNCA937PPlTi+ipBppy4g9H4oKC8COLY4Pe7yIMX7Xzb/hWVVKKtOjdDTLiakRpyT079XAQ==} + /verdaccio-audit/10.2.0: + resolution: {integrity: sha512-/VqtzkFoM9v1DFU3JL+T/4v343YcCwZVR/3TDLkgtrG2IuukwxjX62BVGYZxT8v6M4ml2hRDm5za7xOHQU2AIg==} engines: {node: '>=8'} dependencies: body-parser: 1.19.1 @@ -14583,25 +14585,25 @@ packages: - encoding - supports-color - /verdaccio-htpasswd/10.1.0: - resolution: {integrity: sha512-HPpAJ62Y3FRA19Vp47VSeeeur5mqPUU4E/W4N914vUFw63iZqDBqhMQI5g99SqnlB97HplYsS5CpXj6cRv4hmw==} + /verdaccio-htpasswd/10.2.0: + resolution: {integrity: sha512-OH62dbSWXSXZNQMTslHrNtaAZOx8is0mcJzcQV2bE9fnLEH2EJ+9JBC5helOaBEckBojuiif4xlmg9VTFeVZQw==} engines: {node: '>=8'} dependencies: - '@verdaccio/file-locking': 10.1.0 + '@verdaccio/file-locking': 10.2.0 apache-md5: 1.1.7 bcryptjs: 2.4.3 http-errors: 1.8.1 unix-crypt-td-js: 1.1.4 - /verdaccio/5.5.2: - resolution: {integrity: sha512-SU107gfxE8FLrwp5GezhmWE0otWTAb7xIcz/m931vqOPjeH2MwbMf0+WuCDQ5O80XxdwurlK/JFNRYzDzqUrMA==} + /verdaccio/5.6.0: + resolution: {integrity: sha512-dSy87kjtu3YxAxSm7dcT5sQuHKQ+Y4qSwMX6fO978kYHOPHKH1RtuzpAj2sBaPXDg09HekrUPlhlEjT8WWRL6Q==} engines: {node: '>=12', npm: '>=6'} hasBin: true dependencies: - '@verdaccio/commons-api': 10.1.0 - '@verdaccio/local-storage': 10.1.1 - '@verdaccio/readme': 10.2.1 - '@verdaccio/streams': 10.1.0 + '@verdaccio/commons-api': 10.2.0 + '@verdaccio/local-storage': 10.2.0 + '@verdaccio/readme': 10.3.2 + '@verdaccio/streams': 10.2.0 '@verdaccio/ui-theme': 6.0.0-6-next.16 async: 3.2.3 body-parser: 1.19.1 @@ -14625,7 +14627,7 @@ packages: lodash: 4.17.21 lru-cache: 6.0.0 lunr-mutable-indexes: 2.3.2 - marked: 4.0.10 + marked: 4.0.12 memoizee: 0.4.15 mime: 3.0.0 minimatch: 3.0.4 @@ -14638,8 +14640,8 @@ packages: request: 2.88.0 semver: 7.3.5 validator: 13.7.0 - verdaccio-audit: 10.1.1 - verdaccio-htpasswd: 10.1.0 + verdaccio-audit: 10.2.0 + verdaccio-htpasswd: 10.2.0 transitivePeerDependencies: - bufferutil - canvas