Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update pnpm to v7 #2059

Merged
merged 2 commits into from
May 9, 2022
Merged

chore(deps): update pnpm to v7 #2059

merged 2 commits into from
May 9, 2022

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 7, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
pnpm (source) 6.32.11 -> 7.0.1 age adoption passing confidence

Release Notes

pnpm/pnpm

v7.0.1

Compare Source

Patch Changes

  • Use Yarn's compatibility database to patch broken packages in the ecosystem with package extensions #​4676.
  • pnpm dlx should work when the bin name of the executed package isn't the same as the package name #​4672.
  • Throw an error if arguments are passed to the pnpm init command #​4665.
  • pnpm prune works in a workspace #​4647.
  • Do not report request retry warnings when loglevel is set to error #​4669.
  • pnpm prune does not remove hoisted dependencies #​4647.

Our Sponsors

#### New Contributors * @​axe-me made their first contribution in https://github.com/pnpm/pnpm/pull/4654

Full Changelog: pnpm/pnpm@v7.0.0...v7.0.1

v7.0.0

Compare Source

Major Changes

  • Node.js 12 is not supported.

  • When using pnpm run <script>, all command line arguments after the script name are now passed to the script's argv, even --.
    For example, the command below will now pass --hello -- world to the echo script's argv:
    pnpm run echo --hello -- world
    Previously, flagged arguments (e.g. --silent) were interpreted as pnpm arguments unless -- came before it.
    If you want to pass options to pnpm, place them before the script name. For instance:
    pnpm --workspace-root --silent run echo --hello -- world
    Read more details about this in our docs.
    Related PR: #​4290

  • The root package is excluded by default, when running pnpm -r exec|run|add #​2769.

  • Filtering by path is done by globs.

    In pnpm v6, in order to pick packages under a certain directory, the following filter was used: --filter=./apps

    In pnpm v7, a glob should be used: --filter=./apps/**

    For easier upgrade, we have also added a setting to turn back filtering as it was in v6. Just set legacy-dir-filtering=true in .npmrc.

  • The NODE_PATH env variable is not set in the command shims (the files in node_modules/.bin). This env variable was really long and frequently caused errors on Windows.

    Also, the extend-node-path setting is removed.

    Related PR: #​4253

  • The embed-readme setting is false by default.

  • Side effects cache is turned on by default. To turn it off, use side-effects-cache=false.

  • The npm_config_argv env variable is not set for scripts #​4153.

  • pnpx is now just an alias of pnpm dlx.

    If you want to just execute the command of a dependency, run pnpm <cmd>. For instance, pnpm eslint.

    If you want to install and execute, use pnpm dlx <pkg name>.

  • pnpm install -g pkg will add the global command only to a predefined location. pnpm will not try to add a bin to the global Node.js or npm folder. To set the global bin directory, either set the PNPM_HOME env variable or the global-bin-dir setting.

  • pnpm pack should only pack a file as an executable if it's a bin or listed in the publishConfig.executableFiles array.

  • -W is not an alias of --ignore-workspace-root-check anymore. Just use -w or --workspace-root instead, which will also allow to install dependencies in the root of the workspace.

  • Allow to execute a lifecycle script in a directory that doesn't match the package's name. Previously this was only allowed with the --unsafe-perm CLI option #​3709.

  • Local dependencies referenced through the file: protocol are hard linked (not symlinked) #​4408. If you need to symlink a dependency, use the link: protocol instead.

  • strict-peer-dependencies is true by default #​4427.

  • A prerelease version is always added as an exact version to package.json. If the next version of foo is 1.0.0-beta.1 then running pnpm add foo@next will add this to package.json:

    {
      "dependencies": {
        "foo": "1.0.0-beta.1"
      }
    }

    PR: #​4435

  • Dependencies of the root workspace project are not used to resolve peer dependencies of other workspace projects #​4469.

  • Don't hoist types by default to the root of node_modules #​4459.

  • Any package with "prettier" in its name is hoisted.

  • Changed the location of the global store from ~/.pnpm-store to <pnpm home directory>/store

    On Linux, by default it will be ~/.local/share/pnpm/store
    On Windows: %LOCALAPPDATA%/pnpm/store
    On macOS: ~/Library/pnpm/store

    Related issue: #​2574

  • 4bed585: The next deprecated settings were removed:

    • frozen-shrinkwrap
    • prefer-frozen-shrinkwrap
    • shared-workspace-shrinkwrap
    • shrinkwrap-directory
    • lockfile-directory
    • shrinkwrap-only
    • store
  • Use a base32 hash instead of a hex to encode too long dependency paths inside node_modules/.pnpm #​4552.

  • New setting added: git-shallow-hosts. When cloning repositories from "shallow-hosts", pnpm will use shallow cloning to fetch only the needed commit, not all the history #​4548.

  • Lockfile version bumped to v5.4.

  • Exit with an error when running pnpm install in a directory that has no package.json file in it (and in parent directories) #​4609.

Our Sponsors

#### What's Changed * feat!: breaking config changes for v7 by @​zkochan in https://github.com/pnpm/pnpm/pull/4253 * feat(pack)!: limit what files are packed as executables by @​zkochan in https://github.com/pnpm/pnpm/pull/4266 * feat!: pnpx is an alias of pnpm dlx by @​zkochan in https://github.com/pnpm/pnpm/pull/4267 * feat: run scripts without -- by @​gluxon in https://github.com/pnpm/pnpm/pull/4290 * fix: revert backwards compatible handling of -- for run by @​gluxon in https://github.com/pnpm/pnpm/pull/4291 * feat!: global bins should be created only in predefined locations by @​zkochan in https://github.com/pnpm/pnpm/pull/4280 * ci: use pnpm v7 by @​zkochan in https://github.com/pnpm/pnpm/pull/4307 * feat!: remove -W option by @​zkochan in https://github.com/pnpm/pnpm/pull/4308 * test(audit): fix for 2022-02-15 by @​gluxon in https://github.com/pnpm/pnpm/pull/4340 * feat: -F is a short alias of --filter by @​zkochan in https://github.com/pnpm/pnpm/pull/4342 * feat: onlyBuiltDependencies by @​zkochan in https://github.com/pnpm/pnpm/pull/4014 * fix(make-dedicated-lockfile): don't re-resolve dependency versions in dedicated lockfile by @​David-Collins in https://github.com/pnpm/pnpm/pull/4350 * test(audit): mock responses from audit endpoint by @​zkochan in https://github.com/pnpm/pnpm/pull/4354 * fix: bad packageManager field by @​Jack-Works in https://github.com/pnpm/pnpm/pull/4356 * feat: use the versions from overrides when adding deps without specs by @​zkochan in https://github.com/pnpm/pnpm/pull/4355 * chore: document the interface of command packages by @​illright in https://github.com/pnpm/pnpm/pull/3828 * fix: print an info message when NODE_ENV is set to production by @​zkochan in https://github.com/pnpm/pnpm/pull/4362 * test: ignore override if a version is specified at install by @​nikoladev in https://github.com/pnpm/pnpm/pull/4366 * fix: ignore case, when verifying package name in the store by @​zkochan in https://github.com/pnpm/pnpm/pull/4368 * fix: peerDependencyRules with * as range by @​zkochan in https://github.com/pnpm/pnpm/pull/4370 * feat: run scripts without --unsafe-perm by @​zkochan in https://github.com/pnpm/pnpm/pull/4369 * chore(github): add welcome bot app by @​BlackHole1 in https://github.com/pnpm/pnpm/pull/4373 * fix: onlyBuiltDependencies should work by @​zkochan in https://github.com/pnpm/pnpm/pull/4377 * fix: pnpm i should work on virtual drives by @​kazuare in https://github.com/pnpm/pnpm/pull/4386 * fix: throw a meaningful error message on broken lockfile by @​zkochan in https://github.com/pnpm/pnpm/pull/4387 * fix: don't write data from the lockfile to the global store by @​zkochan in https://github.com/pnpm/pnpm/pull/4395 * fix(resolve-dependencies): a sequence of injected deps via the file protocol by @​zkochan in https://github.com/pnpm/pnpm/pull/4415 * feat: the file protocol should always inject the dependency by @​zkochan in https://github.com/pnpm/pnpm/pull/4408 * feat: add own implementation of the init command by @​zkochan in https://github.com/pnpm/pnpm/pull/4422 * feat: strict-peer-dependencies is true by default by @​zkochan in https://github.com/pnpm/pnpm/pull/4427 * feat: respect the npmrc by @​Spencer17x in https://github.com/pnpm/pnpm/pull/4425 * feat: a prerelease version is always saved as an exact version by @​zkochan in https://github.com/pnpm/pnpm/pull/4435 * feat: prevent deep imports using exports by @​zkochan in https://github.com/pnpm/pnpm/pull/4440 * fix: use `@pnpm/graph-sequencer` instead of `graph-sequencer` by @​zkochan in https://github.com/pnpm/pnpm/pull/4458 * fix: fetch should allow the same options as install by @​zkochan in https://github.com/pnpm/pnpm/pull/4460 * fix: typo by @​HomyeeKing in https://github.com/pnpm/pnpm/pull/4462 * fix(lockfile-utils): checking dependenciesMeta by @​zkochan in https://github.com/pnpm/pnpm/pull/4463 * fix: types should not be hoisted to the root of node_modules by @​zkochan in https://github.com/pnpm/pnpm/pull/4459 * chore: replace deprecated String.prototype.substr() by @​CommanderRoot in https://github.com/pnpm/pnpm/pull/4479 * Chore/friendly git error by @​lawvs in https://github.com/pnpm/pnpm/pull/4488 * fix: handle undefined version spec by @​tmkx in https://github.com/pnpm/pnpm/pull/4487 * lint: remove duplicate code by @​milahu in https://github.com/pnpm/pnpm/pull/4496 * fix: typo by @​HomyeeKing in https://github.com/pnpm/pnpm/pull/4499 * feat: don't resolve peer dependencies from workspace root by @​zkochan in https://github.com/pnpm/pnpm/pull/4469 * chore: fix typo by @​sudongyuer in https://github.com/pnpm/pnpm/pull/4516 * fix: set root by @​HomyeeKing in https://github.com/pnpm/pnpm/pull/4515 * fix(cmd-shim): extend NODE_PATH with path to hidden hoisted dir by @​zkochan in https://github.com/pnpm/pnpm/pull/4513 * chore: public-hoist-pattern prettier config by @​fupengl in https://github.com/pnpm/pnpm/pull/3954 * feat: remove deprecated settings by @​zkochan in https://github.com/pnpm/pnpm/pull/4519 * feat: the global store location should be inside the pnpm home directory by @​zkochan in https://github.com/pnpm/pnpm/pull/4522 * fix: the file protocol should link all files by default by @​zkochan in https://github.com/pnpm/pnpm/pull/4532 * fix: dependenciesMeta should be saved into the lockfile by @​zkochan in https://github.com/pnpm/pnpm/pull/4538 * fix: resolve peers from linked in dependencies by @​zkochan in https://github.com/pnpm/pnpm/pull/4541 * fix: peer dependency has workspace protocol by @​zkochan in https://github.com/pnpm/pnpm/pull/4540 * feat: use a shorter hash for dep path by @​zkochan in https://github.com/pnpm/pnpm/pull/4552 * feat(git-fetcher): shallow clone when fetching git resource by @​kenrick95 in https://github.com/pnpm/pnpm/pull/4548 * style(*): remove duplicate declarations in TypeScript types by @​dev-itsheng in https://github.com/pnpm/pnpm/pull/4570 * docs(*): fix problems with sample code in documentation by @​dev-itsheng in https://github.com/pnpm/pnpm/pull/4572 * fix(exe): use the strict equality operator, and make `JSON.parse` execute correctly by @​dev-itsheng in https://github.com/pnpm/pnpm/pull/4571 * Improve spnpm to use esbuild by @​jondlm in https://github.com/pnpm/pnpm/pull/4574 * style(*): typo by @​dev-itsheng in https://github.com/pnpm/pnpm/pull/4573 * fix(core): prevent duplication of peerDependencyRules in the lockfile by @​kamsar in https://github.com/pnpm/pnpm/pull/4576 * fix: store integrity check when the lockfile is updated by @​zkochan in https://github.com/pnpm/pnpm/pull/4580 * Fix `add` bug with overlapping workspace packages by @​jondlm in https://github.com/pnpm/pnpm/pull/4575 * fix(exec): commands of workspace project should be in PATH by @​zkochan in https://github.com/pnpm/pnpm/pull/4583 * fix(default-reporter): use loglevel to filter deprecation warnings (#​4343) by @​milahu in https://github.com/pnpm/pnpm/pull/4507 * fix: an edge case with peer resolutions and circular deps by @​zkochan in https://github.com/pnpm/pnpm/pull/4588 * feat: shrink path to the global directory (to reduce chance of too long names on Windows) by @​zkochan in https://github.com/pnpm/pnpm/pull/4591 * fix(filter-workspace-packages): filter not working if the path contains Korean characters by @​WhiteKiwi in https://github.com/pnpm/pnpm/pull/4595 * chore: Set permissions for GitHub actions by @​neilnaveen in https://github.com/pnpm/pnpm/pull/4607 * fix: only `pnpm install` should fail on peer dep issues by @​zkochan in https://github.com/pnpm/pnpm/pull/4596 * feat: add legacy-dir-filtering by @​zkochan in https://github.com/pnpm/pnpm/pull/4610 * fix(init): don't fail if a parent dir has a package.json by @​zkochan in https://github.com/pnpm/pnpm/pull/4615 * fix: dlx should work without a configured global directory by @​zkochan in https://github.com/pnpm/pnpm/pull/4612 * fix(install): exit with an error when no package.json is found by @​zkochan in https://github.com/pnpm/pnpm/pull/4614 * fix: a file dep has a file dep by @​zkochan in https://github.com/pnpm/pnpm/pull/4618 * fix: publish in workspace by @​zkochan in https://github.com/pnpm/pnpm/pull/4627 * fix: don't fail when moving packages to node_modules/.ignored by @​zkochan in https://github.com/pnpm/pnpm/pull/4626 * fix: global linking by @​zkochan in https://github.com/pnpm/pnpm/pull/4641 * fix(exportable-manifest, types): add typesVersions field to PUBLISH_CONFIG_WHITELIST by @​WhiteKiwi in https://github.com/pnpm/pnpm/pull/4637 #### New Contributors * @​Jack-Works made their first contribution in https://github.com/pnpm/pnpm/pull/4356 * @​kazuare made their first contribution in https://github.com/pnpm/pnpm/pull/4386 * @​Spencer17x made their first contribution in https://github.com/pnpm/pnpm/pull/4425 * @​HomyeeKing made their first contribution in https://github.com/pnpm/pnpm/pull/4462 * @​CommanderRoot made their first contribution in https://github.com/pnpm/pnpm/pull/4479 * @​lawvs made their first contribution in https://github.com/pnpm/pnpm/pull/4488 * @​tmkx made their first contribution in https://github.com/pnpm/pnpm/pull/4487 * @​sudongyuer made their first contribution in https://github.com/pnpm/pnpm/pull/4516 * @​fupengl made their first contribution in https://github.com/pnpm/pnpm/pull/3954 * @​dev-itsheng made their first contribution in https://github.com/pnpm/pnpm/pull/4570 * @​jondlm made their first contribution in https://github.com/pnpm/pnpm/pull/4574 * @​kamsar made their first contribution in https://github.com/pnpm/pnpm/pull/4576 * @​WhiteKiwi made their first contribution in https://github.com/pnpm/pnpm/pull/4595 * @​neilnaveen made their first contribution in https://github.com/pnpm/pnpm/pull/4607

Full Changelog: pnpm/pnpm@v6.31.0...v7.0.0

v6.32.12

Compare Source

Patch Changes
  • Use Yarn's compatibility database to patch broken packages in the ecosystem with package extensions.
  • pnpm dlx should work when the bin name of the executed package isn't the same as the package name #​4672.
  • pnpm prune works in a workspace #​4647.
  • pnpm prune does not remove hoisted dependencies.
  • pnpm dlx should print messages about installation to stderr #​1698.

Configuration

📅 Schedule: "before 3am on Saturday" in timezone Europe/Berlin.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate
Copy link
Contributor Author

renovate bot commented May 7, 2022

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Installing legacy tool pnpm v7.0.1

added 1 package in 3s
7.0.1
Scope: all 16 workspace projects
Progress: resolved 1, reused 0, downloaded 0, added 0
config/eslint                            |  WARN  deprecated babel-eslint@10.1.0
docs                                     |  WARN  deprecated babel-eslint@10.1.0
Progress: resolved 11, reused 0, downloaded 9, added 0
Progress: resolved 20, reused 0, downloaded 16, added 0
Progress: resolved 26, reused 0, downloaded 20, added 0
Progress: resolved 34, reused 0, downloaded 29, added 0
Progress: resolved 38, reused 0, downloaded 37, added 0
Progress: resolved 55, reused 0, downloaded 47, added 0
Progress: resolved 70, reused 0, downloaded 59, added 0
Progress: resolved 88, reused 0, downloaded 78, added 0
Progress: resolved 98, reused 0, downloaded 94, added 0
Progress: resolved 109, reused 0, downloaded 100, added 0
Progress: resolved 117, reused 0, downloaded 109, added 0
Progress: resolved 121, reused 0, downloaded 118, added 0
Progress: resolved 138, reused 0, downloaded 128, added 0
Progress: resolved 149, reused 0, downloaded 140, added 0
Progress: resolved 153, reused 0, downloaded 147, added 0
Progress: resolved 161, reused 0, downloaded 154, added 0
Progress: resolved 171, reused 0, downloaded 163, added 0
Progress: resolved 184, reused 0, downloaded 175, added 0
Progress: resolved 199, reused 0, downloaded 194, added 0
Progress: resolved 207, reused 0, downloaded 202, added 0
Progress: resolved 215, reused 0, downloaded 212, added 0
Progress: resolved 229, reused 0, downloaded 223, added 0
Progress: resolved 236, reused 0, downloaded 235, added 0
Progress: resolved 264, reused 0, downloaded 240, added 0
Progress: resolved 292, reused 0, downloaded 271, added 0
Progress: resolved 318, reused 0, downloaded 286, added 0
Progress: resolved 323, reused 0, downloaded 300, added 0
Progress: resolved 324, reused 0, downloaded 302, added 0
Progress: resolved 325, reused 0, downloaded 302, added 0
Progress: resolved 325, reused 0, downloaded 305, added 0
Progress: resolved 326, reused 0, downloaded 305, added 0
Progress: resolved 327, reused 0, downloaded 305, added 0
Progress: resolved 356, reused 0, downloaded 315, added 0
Progress: resolved 374, reused 0, downloaded 330, added 0
Progress: resolved 388, reused 0, downloaded 345, added 0
Progress: resolved 406, reused 0, downloaded 362, added 0
Progress: resolved 427, reused 0, downloaded 380, added 0
Progress: resolved 444, reused 0, downloaded 400, added 0
Progress: resolved 468, reused 0, downloaded 422, added 0
Progress: resolved 491, reused 0, downloaded 444, added 0
Progress: resolved 512, reused 0, downloaded 469, added 0
Progress: resolved 533, reused 0, downloaded 491, added 0
Progress: resolved 553, reused 0, downloaded 511, added 0
Progress: resolved 568, reused 0, downloaded 522, added 0
Progress: resolved 586, reused 0, downloaded 544, added 0
Progress: resolved 612, reused 0, downloaded 568, added 0
Progress: resolved 637, reused 0, downloaded 590, added 0
Progress: resolved 649, reused 0, downloaded 601, added 0
docs                                     |  WARN  deprecated uuid@3.4.0
Progress: resolved 667, reused 0, downloaded 622, added 0
docs                                     |  WARN  deprecated svgo@1.3.2
Progress: resolved 681, reused 0, downloaded 636, added 0
Progress: resolved 716, reused 0, downloaded 672, added 0
Progress: resolved 735, reused 0, downloaded 693, added 0
Progress: resolved 748, reused 0, downloaded 706, added 0
Progress: resolved 762, reused 0, downloaded 723, added 0
Progress: resolved 769, reused 0, downloaded 728, added 0
Progress: resolved 785, reused 0, downloaded 742, added 0
Progress: resolved 801, reused 0, downloaded 761, added 0
Progress: resolved 806, reused 0, downloaded 768, added 0
Progress: resolved 814, reused 0, downloaded 773, added 0
Progress: resolved 822, reused 0, downloaded 783, added 0
Progress: resolved 838, reused 0, downloaded 800, added 0
Progress: resolved 857, reused 0, downloaded 816, added 0
Progress: resolved 884, reused 0, downloaded 842, added 0
Progress: resolved 911, reused 0, downloaded 868, added 0
Progress: resolved 921, reused 0, downloaded 882, added 0
Progress: resolved 933, reused 0, downloaded 894, added 0
Progress: resolved 951, reused 0, downloaded 910, added 0
Progress: resolved 973, reused 0, downloaded 934, added 0
Progress: resolved 989, reused 0, downloaded 950, added 0
Progress: resolved 1006, reused 0, downloaded 965, added 0
Progress: resolved 1019, reused 0, downloaded 978, added 0
Progress: resolved 1040, reused 0, downloaded 999, added 0
Progress: resolved 1051, reused 0, downloaded 1010, added 0
Progress: resolved 1063, reused 0, downloaded 1021, added 0
Progress: resolved 1080, reused 0, downloaded 1042, added 0
Progress: resolved 1091, reused 0, downloaded 1051, added 0
Progress: resolved 1101, reused 0, downloaded 1062, added 0
Progress: resolved 1108, reused 0, downloaded 1071, added 0
Progress: resolved 1119, reused 0, downloaded 1081, added 0
Progress: resolved 1128, reused 0, downloaded 1086, added 0
Progress: resolved 1137, reused 0, downloaded 1098, added 0
Progress: resolved 1152, reused 0, downloaded 1110, added 0
Progress: resolved 1159, reused 0, downloaded 1118, added 0
Progress: resolved 1166, reused 0, downloaded 1126, added 0
Progress: resolved 1178, reused 0, downloaded 1139, added 0
Progress: resolved 1192, reused 0, downloaded 1151, added 0
.                                        |  WARN  deprecated source-map-resolve@0.6.0
Progress: resolved 1205, reused 0, downloaded 1164, added 0
.                                        |  WARN  deprecated smartwrap@1.2.5
Progress: resolved 1225, reused 0, downloaded 1185, added 0
Progress: resolved 1234, reused 0, downloaded 1196, added 0
Progress: resolved 1245, reused 0, downloaded 1206, added 0
Progress: resolved 1260, reused 0, downloaded 1221, added 0
Progress: resolved 1279, reused 0, downloaded 1239, added 0
Progress: resolved 1301, reused 0, downloaded 1262, added 0
Progress: resolved 1318, reused 0, downloaded 1277, added 0
Progress: resolved 1344, reused 0, downloaded 1304, added 0
Progress: resolved 1363, reused 0, downloaded 1320, added 0
Progress: resolved 1388, reused 0, downloaded 1346, added 0
Progress: resolved 1415, reused 0, downloaded 1372, added 0
Progress: resolved 1459, reused 0, downloaded 1415, added 0
Progress: resolved 1488, reused 0, downloaded 1441, added 0
Progress: resolved 1527, reused 0, downloaded 1484, added 0
Progress: resolved 1569, reused 0, downloaded 1526, added 0
Progress: resolved 1611, reused 0, downloaded 1568, added 0
docs                                     |  WARN  deprecated querystring@0.2.0
Progress: resolved 1661, reused 0, downloaded 1615, added 0
config/storybook                         |  WARN  deprecated chokidar@2.1.8
Progress: resolved 1701, reused 0, downloaded 1659, added 0
config/storybook                         |  WARN  deprecated fsevents@1.2.13
docs                                     |  WARN  deprecated uuid@3.4.0
Progress: resolved 1717, reused 0, downloaded 1673, added 0
Progress: resolved 1733, reused 0, downloaded 1686, added 0
Progress: resolved 1763, reused 0, downloaded 1716, added 0
Progress: resolved 1791, reused 0, downloaded 1746, added 0
Progress: resolved 1811, reused 0, downloaded 1764, added 0
Progress: resolved 1822, reused 0, downloaded 1780, added 0
Progress: resolved 1843, reused 0, downloaded 1799, added 0
Progress: resolved 1857, reused 0, downloaded 1813, added 0
docs                                     |  WARN  deprecated async-cache@1.1.0
Progress: resolved 1877, reused 0, downloaded 1832, added 0
Progress: resolved 1913, reused 0, downloaded 1865, added 0
docs                                     |  WARN  deprecated querystring@0.2.1
Progress: resolved 1945, reused 0, downloaded 1900, added 0
Progress: resolved 1976, reused 0, downloaded 1928, added 0
Progress: resolved 2005, reused 0, downloaded 1958, added 0
Progress: resolved 2017, reused 0, downloaded 1970, added 0
Progress: resolved 2035, reused 0, downloaded 1988, added 0
Progress: resolved 2066, reused 0, downloaded 2016, added 0
Progress: resolved 2102, reused 0, downloaded 2052, added 0
Progress: resolved 2136, reused 0, downloaded 2086, added 0
Progress: resolved 2158, reused 0, downloaded 2111, added 0
Progress: resolved 2171, reused 0, downloaded 2125, added 0
Progress: resolved 2187, reused 0, downloaded 2139, added 0
config/storybook                         |  WARN  deprecated querystring@0.2.1
config/storybook                         |  WARN  deprecated uuid@3.4.0
Progress: resolved 2211, reused 0, downloaded 2164, added 0
Progress: resolved 2230, reused 0, downloaded 2185, added 0
Progress: resolved 2248, reused 0, downloaded 2198, added 0
docs                                     |  WARN  deprecated @types/vfile-message@2.0.0
Progress: resolved 2268, reused 0, downloaded 2218, added 0
Progress: resolved 2310, reused 0, downloaded 2257, added 0
config/storybook                         |  WARN  deprecated source-map-resolve@0.5.3
Progress: resolved 2343, reused 0, downloaded 2288, added 0
config/storybook                         |  WARN  deprecated resolve-url@0.2.1
config/storybook                         |  WARN  deprecated source-map-url@0.4.1
config/storybook                         |  WARN  deprecated urix@0.1.0
Progress: resolved 2386, reused 0, downloaded 2329, added 0
Progress: resolved 2402, reused 0, downloaded 2348, added 0
Progress: resolved 2435, reused 0, downloaded 2385, added 0
Progress: resolved 2467, reused 0, downloaded 2416, added 0
Progress: resolved 2500, reused 0, downloaded 2449, added 0
Progress: resolved 2521, reused 0, downloaded 2466, added 0
config/storybook                         |  WARN  deprecated sane@4.1.0
Progress: resolved 2549, reused 0, downloaded 2493, added 0
docs                                     |  WARN  deprecated subscriptions-transport-ws@0.9.19
Progress: resolved 2567, reused 0, downloaded 2512, added 0
Progress: resolved 2594, reused 0, downloaded 2539, added 0
Progress: resolved 2629, reused 0, downloaded 2572, added 0
Progress: resolved 2652, reused 0, downloaded 2597, added 0
Progress: resolved 2661, reused 0, downloaded 2615, added 0
Progress: resolved 2667, reused 0, downloaded 2619, added 0
Progress: resolved 2667, reused 0, downloaded 2622, added 0
Progress: resolved 2667, reused 0, downloaded 2623, added 0
Progress: resolved 2667, reused 0, downloaded 2624, added 0
Progress: resolved 2667, reused 0, downloaded 2625, added 0
Progress: resolved 2667, reused 0, downloaded 2626, added 0
 ERR_PNPM_PEER_DEP_ISSUES  Unmet peer dependencies

docs
└─┬ react-live
  └─┬ react-simple-code-editor
    ├── ✕ unmet peer react@^16.0.0: found 17.0.2
    └── ✕ unmet peer react-dom@^16.0.0: found 17.0.2


@changeset-bot
Copy link

changeset-bot bot commented May 7, 2022

⚠️ No Changeset found

Latest commit: c1a91ec

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/pnpm-7.x branch 5 times, most recently from ba9a89d to 2a9f9f8 Compare May 9, 2022 08:32
@renovate renovate bot force-pushed the renovate/pnpm-7.x branch from 2a9f9f8 to 5e5f5bd Compare May 9, 2022 09:14
@sebald sebald merged commit ac7bf40 into main May 9, 2022
@sebald sebald deleted the renovate/pnpm-7.x branch May 9, 2022 09:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants