mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-25 00:57:38 -04:00
chore(release): 7.19.0
This commit is contained in:
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@pnpm/plugin-commands-rebuild": patch
|
||||
"pnpm": patch
|
||||
---
|
||||
|
||||
`pnpm rebuild` should work in projects that use the hoister node linker [#5560](https://github.com/pnpm/pnpm/issues/5560).
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@pnpm/plugin-commands-patching": patch
|
||||
"pnpm": patch
|
||||
---
|
||||
|
||||
`pnpm patch` should print instructions about how to commit the changes.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
"@pnpm/plugin-commands-script-runners": minor
|
||||
"@pnpm/types": minor
|
||||
"pnpm": minor
|
||||
---
|
||||
|
||||
New setting supported in the `package.json` that is in the root of the workspace: `pnpm.requiredScripts`. Scripts listed in this array will be required in each project of the worksapce. Otherwise, `pnpm -r run <script name>` will fail [#5569](https://github.com/pnpm/pnpm/issues/5569).
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
"@pnpm/plugin-commands-env": patch
|
||||
"@pnpm/link-bins": patch
|
||||
"pnpm": patch
|
||||
---
|
||||
|
||||
Allow the `-S` flag in command shims [pnpm/cmd-shim#42](https://github.com/pnpm/cmd-shim/pull/42).
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
"@pnpm/fs.indexed-pkg-importer": minor
|
||||
"@pnpm/cafs-types": minor
|
||||
"@pnpm/create-cafs-store": minor
|
||||
"@pnpm/store-controller-types": minor
|
||||
---
|
||||
|
||||
A new option added to package importer for keeping modules directory: `keepModulesDir`. When this is set to true, if a package already exist at the target location and it has a node_modules directory, then that node_modules directory is moved to the newly imported dependency. This is only needed when node-linker=hoisted is used.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
"pnpm": minor
|
||||
"@pnpm/core": minor
|
||||
"@pnpm/headless": minor
|
||||
---
|
||||
|
||||
When the hoisted node linker is used, preserve `node_modules` directories when linking new dependencies. This improves performance, when installing in a project that already has a `node_modules` directory [#5795](https://github.com/pnpm/pnpm/pull/5795).
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@pnpm/fs.hard-link-dir": major
|
||||
---
|
||||
|
||||
Initial release.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@pnpm/lifecycle": patch
|
||||
"pnpm": patch
|
||||
---
|
||||
|
||||
Don't relink injected directories if they were not built.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
"@pnpm/build-modules": minor
|
||||
"pnpm": minor
|
||||
---
|
||||
|
||||
When the hoister node-linker is used, pnpm should not build the same package multiple times during installation. If a package is present at multipe locations because hoisting could not hoist them to a single directory, then the package should only built in one of the locations and copied to the rest.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
"@pnpm/modules-yaml": minor
|
||||
---
|
||||
|
||||
New field saved in the modules state file: `hoistedLocations`. This field maps the locations of dependencies, when `node-linker=hoisted` is used.
|
||||
@@ -9,9 +9,5 @@
|
||||
"src/**/*.ts",
|
||||
"../typings/**/*.d.ts"
|
||||
],
|
||||
"references": [
|
||||
{
|
||||
"path": "../packages/types"
|
||||
}
|
||||
]
|
||||
"references": []
|
||||
}
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
# @pnpm/assert-project
|
||||
|
||||
## 2.3.16
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- Updated dependencies [2458741fa]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/modules-yaml@11.1.0
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
- @pnpm/assert-store@1.0.53
|
||||
|
||||
## 2.3.15
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pnpm/assert-project",
|
||||
"description": "Utils for testing projects that use pnpm",
|
||||
"version": "2.3.15",
|
||||
"version": "2.3.16",
|
||||
"author": {
|
||||
"name": "Zoltan Kochan",
|
||||
"email": "z@kochan.io",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @pnpm/assert-store
|
||||
|
||||
## 1.0.53
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/cafs@5.0.4
|
||||
|
||||
## 1.0.52
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pnpm/assert-store",
|
||||
"description": "Utils for testing pnpm store",
|
||||
"version": "1.0.52",
|
||||
"version": "1.0.53",
|
||||
"author": {
|
||||
"name": "Zoltan Kochan",
|
||||
"email": "z@kochan.io",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @pnpm/prepare
|
||||
|
||||
## 0.0.59
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/assert-project@2.3.16
|
||||
|
||||
## 0.0.58
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/prepare",
|
||||
"version": "0.0.58",
|
||||
"version": "0.0.59",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @pnpm/test-fixtures
|
||||
|
||||
## 0.0.28
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/prepare@0.0.59
|
||||
|
||||
## 0.0.27
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pnpm/test-fixtures",
|
||||
"description": "Test fixtures",
|
||||
"version": "0.0.27",
|
||||
"version": "0.0.28",
|
||||
"author": {
|
||||
"name": "Zoltan Kochan",
|
||||
"email": "z@kochan.io",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @pnpm/cli-meta
|
||||
|
||||
## 4.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
|
||||
## 4.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/cli-meta",
|
||||
"version": "4.0.2",
|
||||
"version": "4.0.3",
|
||||
"description": "Reads the metainfo of the currently running pnpm instance",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
# @pnpm/cli-utils
|
||||
|
||||
## 1.0.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/cli-meta@4.0.3
|
||||
- @pnpm/default-reporter@11.0.17
|
||||
- @pnpm/config@16.1.11
|
||||
- @pnpm/package-is-installable@7.0.3
|
||||
- @pnpm/manifest-utils@4.1.3
|
||||
- @pnpm/read-project-manifest@4.1.2
|
||||
|
||||
## 1.0.16
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/cli-utils",
|
||||
"version": "1.0.16",
|
||||
"version": "1.0.17",
|
||||
"description": "Utils for pnpm commands",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @pnpm/default-reporter
|
||||
|
||||
## 11.0.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/config@16.1.11
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
- @pnpm/render-peer-issues@3.0.3
|
||||
|
||||
## 11.0.16
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/default-reporter",
|
||||
"version": "11.0.16",
|
||||
"version": "11.0.17",
|
||||
"description": "The default reporter of pnpm",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @pnpm/config
|
||||
|
||||
## 16.1.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/pnpmfile@4.0.17
|
||||
- @pnpm/read-project-manifest@4.1.2
|
||||
|
||||
## 16.1.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/config",
|
||||
"version": "16.1.10",
|
||||
"version": "16.1.11",
|
||||
"description": "Gets configuration options for pnpm",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @pnpm/normalize-registries
|
||||
|
||||
## 4.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
|
||||
## 4.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pnpm/normalize-registries",
|
||||
"description": "Accepts a mapping of registry URLs and returns a mapping with the same URLs but normalized",
|
||||
"version": "4.0.2",
|
||||
"version": "4.0.3",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @pnpm/package-is-installable
|
||||
|
||||
## 7.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
|
||||
## 7.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/package-is-installable",
|
||||
"version": "7.0.2",
|
||||
"version": "7.0.3",
|
||||
"description": "Checks if a package is installable on the current system",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @pnpm/pick-registry-for-package
|
||||
|
||||
## 4.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
|
||||
## 4.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pnpm/pick-registry-for-package",
|
||||
"description": "Picks the right registry for the package from a registries config",
|
||||
"version": "4.0.2",
|
||||
"version": "4.0.3",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
},
|
||||
|
||||
10
env/node.fetcher/CHANGELOG.md
vendored
10
env/node.fetcher/CHANGELOG.md
vendored
@@ -1,5 +1,15 @@
|
||||
# @pnpm/node.fetcher
|
||||
|
||||
## 2.0.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [2458741fa]
|
||||
- @pnpm/create-cafs-store@3.1.0
|
||||
- @pnpm/fetcher-base@13.1.5
|
||||
- @pnpm/tarball-fetcher@13.0.3
|
||||
- @pnpm/pick-fetcher@1.0.0
|
||||
|
||||
## 2.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
2
env/node.fetcher/package.json
vendored
2
env/node.fetcher/package.json
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/node.fetcher",
|
||||
"version": "2.0.4",
|
||||
"version": "2.0.5",
|
||||
"description": "Node.js artifacts fetcher",
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"main": "lib/index.js",
|
||||
|
||||
6
env/node.resolver/CHANGELOG.md
vendored
6
env/node.resolver/CHANGELOG.md
vendored
@@ -1,5 +1,11 @@
|
||||
# @pnpm/node.resolver
|
||||
|
||||
## 1.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/node.fetcher@2.0.5
|
||||
|
||||
## 1.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
2
env/node.resolver/package.json
vendored
2
env/node.resolver/package.json
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/node.resolver",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"description": "Resolves a Node.js version specifier to an exact Node.js version",
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"main": "lib/index.js",
|
||||
|
||||
12
env/plugin-commands-env/CHANGELOG.md
vendored
12
env/plugin-commands-env/CHANGELOG.md
vendored
@@ -1,5 +1,17 @@
|
||||
# @pnpm/plugin-commands-env
|
||||
|
||||
## 3.1.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- bc18d33fe: Allow the `-S` flag in command shims [pnpm/cmd-shim#42](https://github.com/pnpm/cmd-shim/pull/42).
|
||||
- @pnpm/cli-utils@1.0.17
|
||||
- @pnpm/config@16.1.11
|
||||
- @pnpm/remove-bins@4.0.4
|
||||
- @pnpm/node.fetcher@2.0.5
|
||||
- @pnpm/fetch@6.0.5
|
||||
- @pnpm/node.resolver@1.1.2
|
||||
|
||||
## 3.1.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
2
env/plugin-commands-env/package.json
vendored
2
env/plugin-commands-env/package.json
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/plugin-commands-env",
|
||||
"version": "3.1.10",
|
||||
"version": "3.1.11",
|
||||
"description": "pnpm commands for managing Node.js",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,26 @@
|
||||
# @pnpm/build-modules
|
||||
|
||||
## 10.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 3360c9f4b: When the hoisted `node-linker` is used, pnpm should not build the same package multiple times during installation. If a package is present at multipe locations because hoisting could not hoist them to a single directory, then the package should only built in one of the locations and copied to the rest.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- Updated dependencies [bc18d33fe]
|
||||
- Updated dependencies [2458741fa]
|
||||
- Updated dependencies [c9d3970e3]
|
||||
- Updated dependencies [6b00a8325]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/link-bins@8.0.5
|
||||
- @pnpm/store-controller-types@14.2.0
|
||||
- @pnpm/fs.hard-link-dir@1.0.0
|
||||
- @pnpm/lifecycle@14.1.4
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
- @pnpm/read-package-json@7.0.4
|
||||
|
||||
## 10.0.7
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/build-modules",
|
||||
"version": "10.0.7",
|
||||
"version": "10.1.0",
|
||||
"description": "Build packages in node_modules",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
# @pnpm/lifecycle
|
||||
|
||||
## 14.1.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6b00a8325: Don't relink injected directories if they were not built.
|
||||
- Updated dependencies [b77651d14]
|
||||
- Updated dependencies [2458741fa]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/store-controller-types@14.2.0
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
- @pnpm/read-package-json@7.0.4
|
||||
- @pnpm/directory-fetcher@5.1.3
|
||||
|
||||
## 14.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/lifecycle",
|
||||
"version": "14.1.3",
|
||||
"version": "14.1.4",
|
||||
"description": "Package lifecycle hook runner",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,34 @@
|
||||
# @pnpm/plugin-commands-rebuild
|
||||
|
||||
## 7.0.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- c9d3970e3: `pnpm rebuild` should work in projects that use the hoister node linker [#5560](https://github.com/pnpm/pnpm/issues/5560).
|
||||
- Updated dependencies [b77651d14]
|
||||
- Updated dependencies [bc18d33fe]
|
||||
- Updated dependencies [2458741fa]
|
||||
- Updated dependencies [c9d3970e3]
|
||||
- Updated dependencies [6b00a8325]
|
||||
- Updated dependencies [2458741fa]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/link-bins@8.0.5
|
||||
- @pnpm/store-controller-types@14.2.0
|
||||
- @pnpm/fs.hard-link-dir@1.0.0
|
||||
- @pnpm/lifecycle@14.1.4
|
||||
- @pnpm/modules-yaml@11.1.0
|
||||
- @pnpm/cli-utils@1.0.17
|
||||
- @pnpm/config@16.1.11
|
||||
- @pnpm/normalize-registries@4.0.3
|
||||
- @pnpm/lockfile-utils@5.0.2
|
||||
- @pnpm/lockfile-walker@6.0.4
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
- @pnpm/dependency-path@1.0.1
|
||||
- @pnpm/get-context@8.0.5
|
||||
- @pnpm/find-workspace-packages@5.0.17
|
||||
- @pnpm/sort-packages@4.0.3
|
||||
- @pnpm/store-connection-manager@5.1.10
|
||||
|
||||
## 7.0.16
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/plugin-commands-rebuild",
|
||||
"version": "7.0.16",
|
||||
"version": "7.0.17",
|
||||
"description": "Commands for rebuilding dependencies",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,25 @@
|
||||
# @pnpm/plugin-commands-script-runners
|
||||
|
||||
## 6.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- b77651d14: New setting supported in the `package.json` that is in the root of the workspace: `pnpm.requiredScripts`. Scripts listed in this array will be required in each project of the worksapce. Otherwise, `pnpm -r run <script name>` will fail [#5569](https://github.com/pnpm/pnpm/issues/5569).
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- Updated dependencies [6b00a8325]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/lifecycle@14.1.4
|
||||
- @pnpm/plugin-commands-installation@11.1.4
|
||||
- @pnpm/cli-utils@1.0.17
|
||||
- @pnpm/config@16.1.11
|
||||
- @pnpm/package-bins@7.0.3
|
||||
- @pnpm/read-package-json@7.0.4
|
||||
- @pnpm/read-project-manifest@4.1.2
|
||||
- @pnpm/sort-packages@4.0.3
|
||||
|
||||
## 6.0.16
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/plugin-commands-script-runners",
|
||||
"version": "6.0.16",
|
||||
"version": "6.1.0",
|
||||
"description": "Commands for running scripts",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @pnpm/prepare-package
|
||||
|
||||
## 3.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/read-package-json@7.0.4
|
||||
|
||||
## 3.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/prepare-package",
|
||||
"version": "3.0.3",
|
||||
"version": "3.0.4",
|
||||
"description": "Prepares a Git-hosted package",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @pnpm/directory-fetcher
|
||||
|
||||
## 5.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/fetcher-base@13.1.5
|
||||
- @pnpm/read-project-manifest@4.1.2
|
||||
- @pnpm/resolver-base@9.1.5
|
||||
|
||||
## 5.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/directory-fetcher",
|
||||
"version": "5.1.2",
|
||||
"version": "5.1.3",
|
||||
"description": "A fetcher for local directory packages",
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"main": "lib/index.js",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @pnpm/fetcher-base
|
||||
|
||||
## 13.1.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/resolver-base@9.1.5
|
||||
|
||||
## 13.1.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/fetcher-base",
|
||||
"version": "13.1.4",
|
||||
"version": "13.1.5",
|
||||
"description": "Types for pnpm-compatible fetchers",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @pnpm/git-fetcher
|
||||
|
||||
## 6.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/fetcher-base@13.1.5
|
||||
- @pnpm/prepare-package@3.0.4
|
||||
|
||||
## 6.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/git-fetcher",
|
||||
"version": "6.0.3",
|
||||
"version": "6.0.4",
|
||||
"description": "A fetcher for git-hosted packages",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @pnpm/tarball-fetcher
|
||||
|
||||
## 13.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/fetcher-base@13.1.5
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
- @pnpm/prepare-package@3.0.4
|
||||
|
||||
## 13.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/tarball-fetcher",
|
||||
"version": "13.0.2",
|
||||
"version": "13.0.3",
|
||||
"description": "Fetcher for packages hosted as tarballs",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @pnpm/fs.find-packages
|
||||
|
||||
## 1.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/read-project-manifest@4.1.2
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Major Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/fs.find-packages",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "Find all packages inside a directory",
|
||||
"main": "lib/index.js",
|
||||
"files": [
|
||||
|
||||
7
fs/hard-link-dir/CHANGELOG.md
Normal file
7
fs/hard-link-dir/CHANGELOG.md
Normal file
@@ -0,0 +1,7 @@
|
||||
# @pnpm/fs.hard-link-dir
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Major Changes
|
||||
|
||||
- c9d3970e3: Initial release.
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/fs.hard-link-dir",
|
||||
"version": "0.0.0",
|
||||
"version": "1.0.0",
|
||||
"description": "Hard link all files from a directory to several target directories.",
|
||||
"main": "lib/index.js",
|
||||
"files": [
|
||||
@@ -29,8 +29,7 @@
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
},
|
||||
"homepage": "https://github.com/pnpm/pnpm/blob/main/fs/hard-link-dir#readme",
|
||||
"dependencies": {
|
||||
},
|
||||
"dependencies": {},
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"devDependencies": {
|
||||
"@pnpm/fs.hard-link-dir": "workspace:*",
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @pnpm/fs.indexed-pkg-importer
|
||||
|
||||
## 2.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 2458741fa: A new option added to package importer for keeping modules directory: `keepModulesDir`. When this is set to true, if a package already exist at the target location and it has a node_modules directory, then that node_modules directory is moved to the newly imported dependency. This is only needed when node-linker=hoisted is used.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [2458741fa]
|
||||
- @pnpm/store-controller-types@14.2.0
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
|
||||
## 2.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pnpm/fs.indexed-pkg-importer",
|
||||
"description": "Replicates indexed directories using hard links, copies, or cloning",
|
||||
"version": "2.0.2",
|
||||
"version": "2.1.0",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @pnpm/symlink-dependency
|
||||
|
||||
## 6.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
|
||||
## 6.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pnpm/symlink-dependency",
|
||||
"description": "Symlink a dependency to node_modules",
|
||||
"version": "6.0.2",
|
||||
"version": "6.0.3",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,18 @@
|
||||
# @pnpm/pnpmfile
|
||||
|
||||
## 4.0.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- Updated dependencies [2458741fa]
|
||||
- Updated dependencies [2458741fa]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/store-controller-types@14.2.0
|
||||
- @pnpm/core@7.4.0
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
|
||||
## 4.0.16
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/pnpmfile",
|
||||
"version": "4.0.16",
|
||||
"version": "4.0.17",
|
||||
"description": "Reading a .pnpmfile.cjs",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @pnpm/hooks.read-package-hook
|
||||
|
||||
## 2.0.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
|
||||
## 2.0.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/hooks.read-package-hook",
|
||||
"version": "2.0.8",
|
||||
"version": "2.0.9",
|
||||
"description": "Creates the default package reader hook used by pnpm",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @pnpm/audit
|
||||
|
||||
## 6.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
- @pnpm/lockfile-utils@5.0.2
|
||||
- @pnpm/lockfile-walker@6.0.4
|
||||
- @pnpm/read-project-manifest@4.1.2
|
||||
- @pnpm/fetch@6.0.5
|
||||
|
||||
## 6.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/audit",
|
||||
"version": "6.0.3",
|
||||
"version": "6.0.4",
|
||||
"description": "Audit a lockfile",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @pnpm/filter-lockfile
|
||||
|
||||
## 7.0.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/package-is-installable@7.0.3
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
- @pnpm/lockfile-utils@5.0.2
|
||||
- @pnpm/lockfile-walker@6.0.4
|
||||
- @pnpm/dependency-path@1.0.1
|
||||
|
||||
## 7.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/filter-lockfile",
|
||||
"version": "7.0.4",
|
||||
"version": "7.0.5",
|
||||
"description": "Filters a lockfile",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @pnpm/lockfile-file
|
||||
|
||||
## 6.0.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
- @pnpm/dependency-path@1.0.1
|
||||
- @pnpm/merge-lockfile-changes@4.0.3
|
||||
|
||||
## 6.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/lockfile-file",
|
||||
"version": "6.0.4",
|
||||
"version": "6.0.5",
|
||||
"description": "Read/write pnpm-lock.yaml files",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @pnpm/lockfile-to-pnp
|
||||
|
||||
## 2.0.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/lockfile-file@6.0.5
|
||||
- @pnpm/lockfile-utils@5.0.2
|
||||
- @pnpm/dependency-path@1.0.1
|
||||
|
||||
## 2.0.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/lockfile-to-pnp",
|
||||
"version": "2.0.5",
|
||||
"version": "2.0.6",
|
||||
"description": "Creates a Plug'n'Play file from a pnpm-lock.yaml",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @pnpm/lockfile-types
|
||||
|
||||
## 4.3.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
|
||||
## 4.3.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/lockfile-types",
|
||||
"version": "4.3.5",
|
||||
"version": "4.3.6",
|
||||
"description": "Types for the pnpm-lock.yaml lockfile",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @pnpm/lockfile-utils
|
||||
|
||||
## 5.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
- @pnpm/dependency-path@1.0.1
|
||||
- @pnpm/resolver-base@9.1.5
|
||||
|
||||
## 5.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/lockfile-utils",
|
||||
"version": "5.0.1",
|
||||
"version": "5.0.2",
|
||||
"description": "Utils for dealing with pnpm-lock.yaml",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @pnpm/lockfile-walker
|
||||
|
||||
## 6.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
- @pnpm/dependency-path@1.0.1
|
||||
|
||||
## 6.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/lockfile-walker",
|
||||
"version": "6.0.3",
|
||||
"version": "6.0.4",
|
||||
"description": "Walk over all the dependencies in a lockfile",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @pnpm/merge-lockfile-changes
|
||||
|
||||
## 4.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
|
||||
## 4.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/merge-lockfile-changes",
|
||||
"version": "4.0.2",
|
||||
"version": "4.0.3",
|
||||
"description": "Merges lockfiles. Can automatically fix merge conflicts",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @pnpm/plugin-commands-audit
|
||||
|
||||
## 7.1.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/cli-utils@1.0.17
|
||||
- @pnpm/config@16.1.11
|
||||
- @pnpm/audit@6.0.4
|
||||
- @pnpm/lockfile-file@6.0.5
|
||||
- @pnpm/read-project-manifest@4.1.2
|
||||
|
||||
## 7.1.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/plugin-commands-audit",
|
||||
"version": "7.1.11",
|
||||
"version": "7.1.12",
|
||||
"description": "pnpm commands for dependencies audit",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @pnpm/prune-lockfile
|
||||
|
||||
## 4.0.20
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/lockfile-types@4.3.6
|
||||
- @pnpm/dependency-path@1.0.1
|
||||
|
||||
## 4.0.19
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/prune-lockfile",
|
||||
"version": "4.0.19",
|
||||
"version": "4.0.20",
|
||||
"description": "Prune a pnpm-lock.yaml",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @pnpm/fetch
|
||||
|
||||
## 6.0.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/core-loggers@8.0.3
|
||||
|
||||
## 6.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/fetch",
|
||||
"version": "6.0.4",
|
||||
"version": "6.0.5",
|
||||
"description": "node-fetch with retries",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @pnpm/core-loggers
|
||||
|
||||
## 8.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
|
||||
## 8.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@pnpm/core-loggers",
|
||||
"description": "Core loggers of pnpm",
|
||||
"version": "8.0.2",
|
||||
"version": "8.0.3",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @pnpm/dependency-path
|
||||
|
||||
## 1.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/crypto.base32-hash@1.0.1
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Major Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/dependency-path",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "Utilities for working with symlinked node_modules",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
# @pnpm/make-dedicated-lockfile
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/lockfile-file@6.0.5
|
||||
- @pnpm/prune-lockfile@4.0.20
|
||||
- @pnpm/exportable-manifest@4.0.5
|
||||
- @pnpm/read-project-manifest@4.1.2
|
||||
|
||||
## 0.4.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/make-dedicated-lockfile",
|
||||
"version": "0.4.5",
|
||||
"version": "0.4.6",
|
||||
"description": "Creates a dedicated lockfile for a subset of workspace projects",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @pnpm/mount-modules
|
||||
|
||||
## 0.3.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b77651d14]
|
||||
- @pnpm/types@8.10.0
|
||||
- @pnpm/config@16.1.11
|
||||
- @pnpm/lockfile-file@6.0.5
|
||||
- @pnpm/lockfile-utils@5.0.2
|
||||
- @pnpm/dependency-path@1.0.1
|
||||
- @pnpm/cafs@5.0.4
|
||||
|
||||
## 0.3.16
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@pnpm/mount-modules",
|
||||
"version": "0.3.16",
|
||||
"version": "0.3.17",
|
||||
"description": "Mounts a node_modules directory with FUSE",
|
||||
"main": "lib/index.js",
|
||||
"bin": "bin/mount-modules.js",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @pnpm/plugin-commands-doctor
|
||||
|
||||
## 1.0.15
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/cli-utils@1.0.17
|
||||
- @pnpm/config@16.1.11
|
||||
|
||||
## 1.0.14
|
||||
|
||||
### Patch Changes
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user