Compare commits
12 Commits
main
...
v8-dep-pat
| Author | SHA1 | Date |
|---|---|---|
|
|
ca8f51e60b | |
|
|
54346d6e2c | |
|
|
04d4f28123 | |
|
|
c2e39308f7 | |
|
|
7540267aec | |
|
|
b3d31838d6 | |
|
|
524feda1e7 | |
|
|
fe45a13fb3 | |
|
|
a92691f307 | |
|
|
113f0ae266 | |
|
|
8e35c21d11 | |
|
|
47e45d717d |
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
"@pnpm/core": major
|
||||
"@pnpm/config": major
|
||||
"pnpm": major
|
||||
---
|
||||
|
||||
`auto-install-peers` is `true` by default.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
"@pnpm/core": major
|
||||
"@pnpm/config": major
|
||||
"pnpm": major
|
||||
---
|
||||
|
||||
`save-workspace-protocol` is `rolling` by default.
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"@pnpm/dependency-path": major
|
||||
---
|
||||
|
||||
Change the way depPathToFilename is making paths shorter.
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
---
|
||||
"@pnpm/npm-resolver": patch
|
||||
"@pnpm/core": patch
|
||||
"pnpm": patch
|
||||
---
|
||||
|
||||
Deduplicate direct dependencies.
|
||||
|
||||
Let's say there are two projects in the workspace that dependend on `foo`. One project has `foo@1.0.0` in the dependencies while another one has `foo@^1.0.0` in the dependencies. In this case, `foo@1.0.0` should be installed to both projects as satisfies the version specs of both projects.
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
"@pnpm/plugin-commands-installation": patch
|
||||
"@pnpm/hooks.read-package-hook": patch
|
||||
"@pnpm/core": patch
|
||||
"pnpm": patch
|
||||
---
|
||||
|
||||
Use Map rather than Object in `createPackageExtender` to prevent read the prototype property to native function
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
"@pnpm/core": major
|
||||
"@pnpm/config": major
|
||||
"pnpm": major
|
||||
---
|
||||
|
||||
Use lockfile v6 by default.
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
---
|
||||
"@pnpm/resolve-dependencies": minor
|
||||
"@pnpm/core": minor
|
||||
"@pnpm/config": minor
|
||||
"pnpm": minor
|
||||
---
|
||||
|
||||
A new `resolution-mode` added: `lowest-direct`. With this resolution mode direct dependencies will be resolved to their lowest versions. So if there is `foo@^1.1.0` in the dependencies, then `1.1.0` will be installed, even if the latest version of `foo` is `1.2.0`.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
"@pnpm/core": major
|
||||
"@pnpm/config": major
|
||||
"pnpm": major
|
||||
---
|
||||
|
||||
`resolve-peers-from-workspace-root` is `true` by default.
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
"@pnpm/core": major
|
||||
"@pnpm/config": major
|
||||
"pnpm": major
|
||||
---
|
||||
|
||||
`publishConfig.linkDirectory` is `true` by default.
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
"@pnpm/plugin-commands-script-runners": minor
|
||||
"pnpm": minor
|
||||
---
|
||||
|
||||
Support script selector with RegExp such as `pnpm run /build:.*/` and execute the matched scripts with the RegExp [#5871](https://github.com/pnpm/pnpm/pull/5871).
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
"@pnpm/plugin-commands-listing": patch
|
||||
"@pnpm/reviewing.dependencies-hierarchy": patch
|
||||
"@pnpm/list": patch
|
||||
---
|
||||
|
||||
Show correct path info for dependenciesHierarchy tree
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
"@pnpm/core": major
|
||||
"@pnpm/config": major
|
||||
"pnpm": major
|
||||
---
|
||||
|
||||
`resolution-mode` is `lowest-direct` by default.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@pnpm/plugin-commands-audit": patch
|
||||
---
|
||||
|
||||
Fix AUDIT_TABLE_OPTIONS not to overwrite TABLE_OPTIONS, which prevents breaking other table outputs such like `pnpm outdated` [#6017](https://github.com/pnpm/pnpm/issues/6017).
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
"@pnpm/core": major
|
||||
"pnpm": major
|
||||
---
|
||||
|
||||
Direct dependencies are deduped. So if the same dependency is both in a project and in the workspace root, then it is only linked to the workspace root.
|
||||
|
|
@ -1,5 +1,11 @@
|
|||
# @pnpm-private/updater
|
||||
|
||||
## 0.4.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/lockfile-file@7.0.4
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm-private/updater",
|
||||
"version": "0.4.7",
|
||||
"version": "0.4.8",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -1,27 +1,26 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
es6-iterator: ^2.0.1
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
es6-iterator: 2.0.1
|
||||
es6-iterator:
|
||||
specifier: ^2.0.1
|
||||
version: 2.0.1
|
||||
|
||||
packages:
|
||||
|
||||
/d/1.0.0:
|
||||
/d@1.0.0:
|
||||
resolution: {integrity: sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8=}
|
||||
dependencies:
|
||||
es5-ext: 0.10.24
|
||||
dev: false
|
||||
|
||||
/es5-ext/0.10.24:
|
||||
/es5-ext@0.10.24:
|
||||
resolution: {integrity: sha1-pVh3yZJLwMjZvTwsvhdJWsFwmxQ=}
|
||||
dependencies:
|
||||
es6-iterator: 2.0.1
|
||||
es6-symbol: 3.1.1
|
||||
dev: false
|
||||
|
||||
/es6-iterator/2.0.1:
|
||||
/es6-iterator@2.0.1:
|
||||
resolution: {integrity: sha1-jjGcnwRTv1ddN0lAplWSDlnKVRI=}
|
||||
dependencies:
|
||||
d: 1.0.0
|
||||
|
|
@ -29,7 +28,7 @@ packages:
|
|||
es6-symbol: 3.1.1
|
||||
dev: false
|
||||
|
||||
/es6-symbol/3.1.1:
|
||||
/es6-symbol@3.1.1:
|
||||
resolution: {integrity: sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc=}
|
||||
dependencies:
|
||||
d: 1.0.0
|
||||
|
|
|
|||
|
|
@ -1,32 +1,32 @@
|
|||
lockfileVersion: 5.4
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
specifiers: {}
|
||||
.: {}
|
||||
|
||||
packages/bar:
|
||||
specifiers:
|
||||
is-positive: 1.0.0
|
||||
dependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages/foo:
|
||||
specifiers:
|
||||
'@scope/bar': workspace:*
|
||||
is-positive: 3.1.0
|
||||
dependencies:
|
||||
'@scope/bar': link:../bar
|
||||
is-positive: 3.1.0
|
||||
'@scope/bar':
|
||||
specifier: workspace:*
|
||||
version: link:../bar
|
||||
is-positive:
|
||||
specifier: 3.1.0
|
||||
version: 3.1.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha512-xxzPGZ4P2uN6rROUa5N9Z7zTX6ERuE0hs6GUOc/cKBLF2NqKc16UwqHMt3tFg4CO6EBTE5UecUasg+3jZx3Ckg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/3.1.0:
|
||||
/is-positive@3.1.0:
|
||||
resolution: {integrity: sha512-8ND1j3y9/HP94TOvGzr69/FgbkX2ruOldhLEsTWwcJVfo4oRjwemJmJxt7RJkKYH8tz7vYBP9JcKQY8CLuJ90Q==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
lockfileVersion: 5.3
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
|
||||
pkg:
|
||||
specifiers:
|
||||
is-positive: 1.0.0
|
||||
dependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha1-iACYVrZKLx632LsBeUGEJK4EUss=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,76 +1,77 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
is-negative: ^2.1.0
|
||||
is-positive: ^3.1.0
|
||||
write-json-file: ^2.2.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
write-json-file: 2.3.0
|
||||
write-json-file:
|
||||
specifier: ^2.2.0
|
||||
version: 2.3.0
|
||||
|
||||
optionalDependencies:
|
||||
is-negative: 2.1.0
|
||||
is-negative:
|
||||
specifier: ^2.1.0
|
||||
version: 2.1.0
|
||||
|
||||
devDependencies:
|
||||
is-positive: 3.1.0
|
||||
is-positive:
|
||||
specifier: ^3.1.0
|
||||
version: 3.1.0
|
||||
|
||||
packages:
|
||||
|
||||
/detect-indent/5.0.0:
|
||||
/detect-indent@5.0.0:
|
||||
resolution: {integrity: sha1-OHHMCmoALow+Wzz38zYmRnXwa50=}
|
||||
engines: {node: '>=4'}
|
||||
dev: false
|
||||
|
||||
/graceful-fs/4.2.2:
|
||||
/graceful-fs@4.2.2:
|
||||
resolution: {integrity: sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==}
|
||||
dev: false
|
||||
|
||||
/imurmurhash/0.1.4:
|
||||
/imurmurhash@0.1.4:
|
||||
resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
|
||||
engines: {node: '>=0.8.19'}
|
||||
dev: false
|
||||
|
||||
/is-negative/2.1.0:
|
||||
/is-negative@2.1.0:
|
||||
resolution: {integrity: sha512-+iCKT4ZcvjRnjkHnQjZ8/qfciLLGD8BFKS0GNR5VjDU6jEiwh899R0GSMkaYcuTNd7fEKXb3Qib0webe6HczNw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
requiresBuild: true
|
||||
dev: false
|
||||
optional: true
|
||||
|
||||
/is-plain-obj/1.1.0:
|
||||
/is-plain-obj@1.1.0:
|
||||
resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/3.1.0:
|
||||
/is-positive@3.1.0:
|
||||
resolution: {integrity: sha1-hX21hKG6XRyymAUn/DtsQ103sP0=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/make-dir/1.3.0:
|
||||
/make-dir@1.3.0:
|
||||
resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
pify: 3.0.0
|
||||
dev: false
|
||||
|
||||
/pify/3.0.0:
|
||||
/pify@3.0.0:
|
||||
resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=}
|
||||
engines: {node: '>=4'}
|
||||
dev: false
|
||||
|
||||
/signal-exit/3.0.2:
|
||||
/signal-exit@3.0.2:
|
||||
resolution: {integrity: sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=}
|
||||
dev: false
|
||||
|
||||
/sort-keys/2.0.0:
|
||||
/sort-keys@2.0.0:
|
||||
resolution: {integrity: sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
is-plain-obj: 1.1.0
|
||||
dev: false
|
||||
|
||||
/write-file-atomic/2.4.3:
|
||||
/write-file-atomic@2.4.3:
|
||||
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
|
||||
dependencies:
|
||||
graceful-fs: 4.2.2
|
||||
|
|
@ -78,7 +79,7 @@ packages:
|
|||
signal-exit: 3.0.2
|
||||
dev: false
|
||||
|
||||
/write-json-file/2.3.0:
|
||||
/write-json-file@2.3.0:
|
||||
resolution: {integrity: sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8=}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
|
|
|
|||
|
|
@ -1,76 +1,77 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
is-negative: ^2.1.0
|
||||
is-positive: ^3.1.0
|
||||
write-json-file: ^2.2.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
write-json-file: 2.3.0
|
||||
write-json-file:
|
||||
specifier: ^2.2.0
|
||||
version: 2.3.0
|
||||
|
||||
optionalDependencies:
|
||||
is-negative: 2.1.0
|
||||
is-negative:
|
||||
specifier: ^2.1.0
|
||||
version: 2.1.0
|
||||
|
||||
devDependencies:
|
||||
is-positive: 3.1.0
|
||||
is-positive:
|
||||
specifier: ^3.1.0
|
||||
version: 3.1.0
|
||||
|
||||
packages:
|
||||
|
||||
/detect-indent/5.0.0:
|
||||
/detect-indent@5.0.0:
|
||||
resolution: {integrity: sha1-OHHMCmoALow+Wzz38zYmRnXwa50=}
|
||||
engines: {node: '>=4'}
|
||||
dev: false
|
||||
|
||||
/graceful-fs/4.2.2:
|
||||
/graceful-fs@4.2.2:
|
||||
resolution: {integrity: sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==}
|
||||
dev: false
|
||||
|
||||
/imurmurhash/0.1.4:
|
||||
/imurmurhash@0.1.4:
|
||||
resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
|
||||
engines: {node: '>=0.8.19'}
|
||||
dev: false
|
||||
|
||||
/is-negative/2.1.0:
|
||||
/is-negative@2.1.0:
|
||||
resolution: {integrity: sha512-+iCKT4ZcvjRnjkHnQjZ8/qfciLLGD8BFKS0GNR5VjDU6jEiwh899R0GSMkaYcuTNd7fEKXb3Qib0webe6HczNw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
requiresBuild: true
|
||||
dev: false
|
||||
optional: true
|
||||
|
||||
/is-plain-obj/1.1.0:
|
||||
/is-plain-obj@1.1.0:
|
||||
resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/3.1.0:
|
||||
/is-positive@3.1.0:
|
||||
resolution: {integrity: sha1-hX21hKG6XRyymAUn/DtsQ103sP0=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/make-dir/1.3.0:
|
||||
/make-dir@1.3.0:
|
||||
resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
pify: 3.0.0
|
||||
dev: false
|
||||
|
||||
/pify/3.0.0:
|
||||
/pify@3.0.0:
|
||||
resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=}
|
||||
engines: {node: '>=4'}
|
||||
dev: false
|
||||
|
||||
/signal-exit/3.0.2:
|
||||
/signal-exit@3.0.2:
|
||||
resolution: {integrity: sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=}
|
||||
dev: false
|
||||
|
||||
/sort-keys/2.0.0:
|
||||
/sort-keys@2.0.0:
|
||||
resolution: {integrity: sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
is-plain-obj: 1.1.0
|
||||
dev: false
|
||||
|
||||
/write-file-atomic/2.4.3:
|
||||
/write-file-atomic@2.4.3:
|
||||
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
|
||||
dependencies:
|
||||
graceful-fs: 4.2.2
|
||||
|
|
@ -78,7 +79,7 @@ packages:
|
|||
signal-exit: 3.0.2
|
||||
dev: false
|
||||
|
||||
/write-json-file/2.3.0:
|
||||
/write-json-file@2.3.0:
|
||||
resolution: {integrity: sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8=}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
|
|
|
|||
|
|
@ -1,76 +1,77 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
is-negative: ^2.1.0
|
||||
is-positive: ^3.1.0
|
||||
write-json-file: ^2.2.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
write-json-file: 2.3.0
|
||||
write-json-file:
|
||||
specifier: ^2.2.0
|
||||
version: 2.3.0
|
||||
|
||||
optionalDependencies:
|
||||
is-negative: 2.1.0
|
||||
is-negative:
|
||||
specifier: ^2.1.0
|
||||
version: 2.1.0
|
||||
|
||||
devDependencies:
|
||||
is-positive: 3.1.0
|
||||
is-positive:
|
||||
specifier: ^3.1.0
|
||||
version: 3.1.0
|
||||
|
||||
packages:
|
||||
|
||||
/detect-indent/5.0.0:
|
||||
/detect-indent@5.0.0:
|
||||
resolution: {integrity: sha1-OHHMCmoALow+Wzz38zYmRnXwa50=}
|
||||
engines: {node: '>=4'}
|
||||
dev: false
|
||||
|
||||
/graceful-fs/4.2.2:
|
||||
/graceful-fs@4.2.2:
|
||||
resolution: {integrity: sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==}
|
||||
dev: false
|
||||
|
||||
/imurmurhash/0.1.4:
|
||||
/imurmurhash@0.1.4:
|
||||
resolution: {integrity: sha1-khi5srkoojixPcT7a21XbyMUU+o=}
|
||||
engines: {node: '>=0.8.19'}
|
||||
dev: false
|
||||
|
||||
/is-negative/2.1.0:
|
||||
/is-negative@2.1.0:
|
||||
resolution: {integrity: sha512-+iCKT4ZcvjRnjkHnQjZ8/qfciLLGD8BFKS0GNR5VjDU6jEiwh899R0GSMkaYcuTNd7fEKXb3Qib0webe6HczNw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
requiresBuild: true
|
||||
dev: false
|
||||
optional: true
|
||||
|
||||
/is-plain-obj/1.1.0:
|
||||
/is-plain-obj@1.1.0:
|
||||
resolution: {integrity: sha1-caUMhCnfync8kqOQpKA7OfzVHT4=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/3.1.0:
|
||||
/is-positive@3.1.0:
|
||||
resolution: {integrity: sha1-hX21hKG6XRyymAUn/DtsQ103sP0=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/make-dir/1.3.0:
|
||||
/make-dir@1.3.0:
|
||||
resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
pify: 3.0.0
|
||||
dev: false
|
||||
|
||||
/pify/3.0.0:
|
||||
/pify@3.0.0:
|
||||
resolution: {integrity: sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=}
|
||||
engines: {node: '>=4'}
|
||||
dev: false
|
||||
|
||||
/signal-exit/3.0.2:
|
||||
/signal-exit@3.0.2:
|
||||
resolution: {integrity: sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=}
|
||||
dev: false
|
||||
|
||||
/sort-keys/2.0.0:
|
||||
/sort-keys@2.0.0:
|
||||
resolution: {integrity: sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
is-plain-obj: 1.1.0
|
||||
dev: false
|
||||
|
||||
/write-file-atomic/2.4.3:
|
||||
/write-file-atomic@2.4.3:
|
||||
resolution: {integrity: sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==}
|
||||
dependencies:
|
||||
graceful-fs: 4.2.2
|
||||
|
|
@ -78,7 +79,7 @@ packages:
|
|||
signal-exit: 3.0.2
|
||||
dev: false
|
||||
|
||||
/write-json-file/2.3.0:
|
||||
/write-json-file@2.3.0:
|
||||
resolution: {integrity: sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8=}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
|
|
|
|||
|
|
@ -1,39 +1,41 @@
|
|||
lockfileVersion: 5.3
|
||||
|
||||
specifiers:
|
||||
is-negative: 1.0.0
|
||||
is-positive: 1.0.0
|
||||
minimatch: ^3.0.4
|
||||
rimraf: 2.5.1
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
minimatch: 3.0.4
|
||||
rimraf: 2.5.1
|
||||
minimatch:
|
||||
specifier: ^3.0.4
|
||||
version: 3.0.4
|
||||
rimraf:
|
||||
specifier: 2.5.1
|
||||
version: 2.5.1
|
||||
|
||||
optionalDependencies:
|
||||
is-negative: 1.0.0
|
||||
is-negative:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
devDependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/balanced-match/1.0.0:
|
||||
/balanced-match@1.0.0:
|
||||
resolution: {integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=}
|
||||
dev: false
|
||||
|
||||
/brace-expansion/1.1.11:
|
||||
/brace-expansion@1.1.11:
|
||||
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
||||
dependencies:
|
||||
balanced-match: 1.0.0
|
||||
concat-map: 0.0.1
|
||||
dev: false
|
||||
|
||||
/concat-map/0.0.1:
|
||||
/concat-map@0.0.1:
|
||||
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
|
||||
dev: false
|
||||
|
||||
/glob/6.0.4:
|
||||
/glob@6.0.4:
|
||||
resolution: {integrity: sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=}
|
||||
dependencies:
|
||||
inflight: 1.0.6
|
||||
|
|
@ -43,52 +45,52 @@ packages:
|
|||
path-is-absolute: 1.0.1
|
||||
dev: false
|
||||
|
||||
/inflight/1.0.6:
|
||||
/inflight@1.0.6:
|
||||
resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
|
||||
dependencies:
|
||||
once: 1.4.0
|
||||
wrappy: 1.0.2
|
||||
dev: false
|
||||
|
||||
/inherits/2.0.3:
|
||||
/inherits@2.0.3:
|
||||
resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
|
||||
dev: false
|
||||
|
||||
/is-negative/1.0.0:
|
||||
/is-negative@1.0.0:
|
||||
resolution: {integrity: sha1-clmHeoPIAKwxkd17nZ+80PdS1P4=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
optional: true
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha1-iACYVrZKLx632LsBeUGEJK4EUss=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/minimatch/3.0.4:
|
||||
/minimatch@3.0.4:
|
||||
resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
|
||||
dependencies:
|
||||
brace-expansion: 1.1.11
|
||||
dev: false
|
||||
|
||||
/once/1.4.0:
|
||||
/once@1.4.0:
|
||||
resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
|
||||
dependencies:
|
||||
wrappy: 1.0.2
|
||||
dev: false
|
||||
|
||||
/path-is-absolute/1.0.1:
|
||||
/path-is-absolute@1.0.1:
|
||||
resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/rimraf/2.5.1:
|
||||
/rimraf@2.5.1:
|
||||
resolution: {integrity: sha1-UuHpRvP5ubDV2JiLoxkaryotvUM=}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
glob: 6.0.4
|
||||
dev: false
|
||||
|
||||
/wrappy/1.0.2:
|
||||
/wrappy@1.0.2:
|
||||
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
lockfileVersion: 5.3
|
||||
|
||||
specifiers:
|
||||
general: 0.0.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
general: link:../general
|
||||
general:
|
||||
specifier: 0.0.0
|
||||
version: link:../general
|
||||
|
|
|
|||
|
|
@ -1,39 +1,41 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
is-negative: 1.0.0
|
||||
is-positive: 1.0.0
|
||||
minimatch: ^3.0.4
|
||||
rimraf: 2.5.1
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
minimatch: 3.0.4
|
||||
rimraf: 2.5.1
|
||||
minimatch:
|
||||
specifier: ^3.0.4
|
||||
version: 3.0.4
|
||||
rimraf:
|
||||
specifier: 2.5.1
|
||||
version: 2.5.1
|
||||
|
||||
optionalDependencies:
|
||||
is-negative: 1.0.0
|
||||
is-negative:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
devDependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/balanced-match/1.0.0:
|
||||
/balanced-match@1.0.0:
|
||||
resolution: {integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=}
|
||||
dev: false
|
||||
|
||||
/brace-expansion/1.1.8:
|
||||
/brace-expansion@1.1.8:
|
||||
resolution: {integrity: sha1-wHshHHyVLsH479Uad+8NHTmQopI=}
|
||||
dependencies:
|
||||
balanced-match: 1.0.0
|
||||
concat-map: 0.0.1
|
||||
dev: false
|
||||
|
||||
/concat-map/0.0.1:
|
||||
/concat-map@0.0.1:
|
||||
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
|
||||
dev: false
|
||||
|
||||
/glob/6.0.4:
|
||||
/glob@6.0.4:
|
||||
resolution: {integrity: sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI=}
|
||||
dependencies:
|
||||
inflight: 1.0.6
|
||||
|
|
@ -43,53 +45,53 @@ packages:
|
|||
path-is-absolute: 1.0.1
|
||||
dev: false
|
||||
|
||||
/inflight/1.0.6:
|
||||
/inflight@1.0.6:
|
||||
resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
|
||||
dependencies:
|
||||
once: 1.4.0
|
||||
wrappy: 1.0.2
|
||||
dev: false
|
||||
|
||||
/inherits/2.0.3:
|
||||
/inherits@2.0.3:
|
||||
resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
|
||||
dev: false
|
||||
|
||||
/is-negative/1.0.0:
|
||||
/is-negative@1.0.0:
|
||||
resolution: {integrity: sha512-1aKMsFUc7vYQGzt//8zhkjRWPoYkajY/I5MJEvrc0pDoHXrW7n5ri8DYxhy3rR+Dk0QFl7GjHHsZU1sppQrWtw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
requiresBuild: true
|
||||
dev: false
|
||||
optional: true
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha1-iACYVrZKLx632LsBeUGEJK4EUss=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
/minimatch/3.0.4:
|
||||
/minimatch@3.0.4:
|
||||
resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
|
||||
dependencies:
|
||||
brace-expansion: 1.1.8
|
||||
dev: false
|
||||
|
||||
/once/1.4.0:
|
||||
/once@1.4.0:
|
||||
resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
|
||||
dependencies:
|
||||
wrappy: 1.0.2
|
||||
dev: false
|
||||
|
||||
/path-is-absolute/1.0.1:
|
||||
/path-is-absolute@1.0.1:
|
||||
resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/rimraf/2.5.1:
|
||||
/rimraf@2.5.1:
|
||||
resolution: {integrity: sha1-UuHpRvP5ubDV2JiLoxkaryotvUM=}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
glob: 6.0.4
|
||||
dev: false
|
||||
|
||||
/wrappy/1.0.2:
|
||||
/wrappy@1.0.2:
|
||||
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
is-negative: ^1.0.0
|
||||
is-positive: ^1.0.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
is-negative: 1.0.1
|
||||
is-negative:
|
||||
specifier: ^1.0.0
|
||||
version: 1.0.1
|
||||
|
||||
devDependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: ^1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-negative/1.0.1:
|
||||
/is-negative@1.0.1:
|
||||
resolution: {integrity: sha1-3GuHKO69A8db+HYIftzVDpy1aZQ=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha1-iACYVrZKLx632LsBeUGEJK4EUss=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
|
|
|||
|
|
@ -1,23 +1,23 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
is-negative: ^1.0.0
|
||||
is-positive: ^1.0.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
is-negative: 1.0.1
|
||||
is-negative:
|
||||
specifier: ^1.0.0
|
||||
version: 1.0.1
|
||||
|
||||
devDependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: ^1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-negative/1.0.1:
|
||||
/is-negative@1.0.1:
|
||||
resolution: {integrity: sha1-3GuHKO69A8db+HYIftzVDpy1aZQ=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha1-iACYVrZKLx632LsBeUGEJK4EUss=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
|
|
|||
|
|
@ -1,31 +1,31 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
'@pnpm.e2e/deprecated': 1.0.0
|
||||
is-negative: ^1.0.0
|
||||
is-positive: ^1.0.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
'@pnpm.e2e/deprecated': 1.0.0
|
||||
is-negative: 1.0.0
|
||||
'@pnpm.e2e/deprecated':
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
is-negative:
|
||||
specifier: ^1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
devDependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: ^1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/@pnpm.e2e/deprecated/1.0.0:
|
||||
/@pnpm.e2e/deprecated@1.0.0:
|
||||
resolution: {integrity: sha512-oidipeQzM+eKHKOmDnruTG7wP+jySQAxskX54lMYTeaq1rBjC+G1u+l3TolCKShyyOz73mO2N9laBqyFB06t6A==}
|
||||
deprecated: This package is deprecated. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
||||
dev: false
|
||||
|
||||
/is-negative/1.0.0:
|
||||
/is-negative@1.0.0:
|
||||
resolution: {integrity: sha1-8Nhjd6oVpkw0lh84rCqb4rQKEYc=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha1-iACYVrZKLx632LsBeUGEJK4EUss=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
|
|
|
|||
|
|
@ -1,31 +1,31 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
'@pnpm.e2e/deprecated': 1.0.0
|
||||
is-negative: ^2.1.0
|
||||
is-positive: ^3.1.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
'@pnpm.e2e/deprecated': 1.0.0
|
||||
is-negative: 2.1.0
|
||||
'@pnpm.e2e/deprecated':
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
is-negative:
|
||||
specifier: ^2.1.0
|
||||
version: 2.1.0
|
||||
|
||||
devDependencies:
|
||||
is-positive: 3.1.0
|
||||
is-positive:
|
||||
specifier: ^3.1.0
|
||||
version: 3.1.0
|
||||
|
||||
packages:
|
||||
|
||||
/@pnpm.e2e/deprecated/1.0.0:
|
||||
/@pnpm.e2e/deprecated@1.0.0:
|
||||
resolution: {integrity: sha512-oidipeQzM+eKHKOmDnruTG7wP+jySQAxskX54lMYTeaq1rBjC+G1u+l3TolCKShyyOz73mO2N9laBqyFB06t6A==}
|
||||
deprecated: This package is deprecated. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
||||
dev: false
|
||||
|
||||
/is-negative/2.1.0:
|
||||
/is-negative@2.1.0:
|
||||
resolution: {integrity: sha512-+iCKT4ZcvjRnjkHnQjZ8/qfciLLGD8BFKS0GNR5VjDU6jEiwh899R0GSMkaYcuTNd7fEKXb3Qib0webe6HczNw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/3.1.0:
|
||||
/is-positive@3.1.0:
|
||||
resolution: {integrity: sha1-hX21hKG6XRyymAUn/DtsQ103sP0=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: true
|
||||
|
||||
|
|
|
|||
|
|
@ -1,14 +1,13 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
positive: npm:is-positive@1.0.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
positive: /is-positive/1.0.0
|
||||
positive:
|
||||
specifier: npm:is-positive@1.0.0
|
||||
version: /is-positive@1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha512-xxzPGZ4P2uN6rROUa5N9Z7zTX6ERuE0hs6GUOc/cKBLF2NqKc16UwqHMt3tFg4CO6EBTE5UecUasg+3jZx3Ckg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
general: link:../general
|
||||
is-positive: ^3.1.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
general: link:../general
|
||||
is-positive: 3.1.0
|
||||
general:
|
||||
specifier: link:../general
|
||||
version: link:../general
|
||||
is-positive:
|
||||
specifier: ^3.1.0
|
||||
version: 3.1.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-positive/3.1.0:
|
||||
/is-positive@3.1.0:
|
||||
resolution: {integrity: sha1-hX21hKG6XRyymAUn/DtsQ103sP0=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,10 +1,9 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
camelcase: denolib/camelcase#aeb6b15f9c9957c8fa56f9731e914c4d8a6d2f2b
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
camelcase: github.com/denolib/camelcase/aeb6b15f9c9957c8fa56f9731e914c4d8a6d2f2b
|
||||
camelcase:
|
||||
specifier: denolib/camelcase#aeb6b15f9c9957c8fa56f9731e914c4d8a6d2f2b
|
||||
version: github.com/denolib/camelcase/aeb6b15f9c9957c8fa56f9731e914c4d8a6d2f2b
|
||||
|
||||
packages:
|
||||
|
||||
|
|
|
|||
|
|
@ -1,16 +1,16 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
ajv: ^6.10.2
|
||||
ajv-keywords: ^3.4.1
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
ajv: 6.10.2
|
||||
ajv-keywords: 3.4.1_ajv@6.10.2
|
||||
ajv:
|
||||
specifier: ^6.10.2
|
||||
version: 6.10.2
|
||||
ajv-keywords:
|
||||
specifier: ^3.4.1
|
||||
version: 3.4.1(ajv@6.10.2)
|
||||
|
||||
packages:
|
||||
|
||||
/ajv-keywords/3.4.1_ajv@6.10.2:
|
||||
/ajv-keywords@3.4.1(ajv@6.10.2):
|
||||
resolution: {integrity: sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==}
|
||||
peerDependencies:
|
||||
ajv: ^6.9.1
|
||||
|
|
@ -18,7 +18,7 @@ packages:
|
|||
ajv: 6.10.2
|
||||
dev: false
|
||||
|
||||
/ajv/6.10.2:
|
||||
/ajv@6.10.2:
|
||||
resolution: {integrity: sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==}
|
||||
dependencies:
|
||||
fast-deep-equal: 2.0.1
|
||||
|
|
@ -27,24 +27,24 @@ packages:
|
|||
uri-js: 4.2.2
|
||||
dev: false
|
||||
|
||||
/fast-deep-equal/2.0.1:
|
||||
/fast-deep-equal@2.0.1:
|
||||
resolution: {integrity: sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=}
|
||||
dev: false
|
||||
|
||||
/fast-json-stable-stringify/2.0.0:
|
||||
/fast-json-stable-stringify@2.0.0:
|
||||
resolution: {integrity: sha1-1RQsDK7msRifh9OnYREGT4bIu/I=}
|
||||
dev: false
|
||||
|
||||
/json-schema-traverse/0.4.1:
|
||||
/json-schema-traverse@0.4.1:
|
||||
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
||||
dev: false
|
||||
|
||||
/punycode/2.1.1:
|
||||
/punycode@2.1.1:
|
||||
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
|
||||
engines: {node: '>=6'}
|
||||
dev: false
|
||||
|
||||
/uri-js/4.2.2:
|
||||
/uri-js@4.2.2:
|
||||
resolution: {integrity: sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==}
|
||||
dependencies:
|
||||
punycode: 2.1.1
|
||||
|
|
|
|||
|
|
@ -1,21 +1,21 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
is-negative: 1.0.0
|
||||
is-positive: 1.0.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
is-negative: 1.0.0
|
||||
is-positive: 1.0.0
|
||||
is-negative:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-negative/1.0.0:
|
||||
/is-negative@1.0.0:
|
||||
resolution: {integrity: sha512-1aKMsFUc7vYQGzt//8zhkjRWPoYkajY/I5MJEvrc0pDoHXrW7n5ri8DYxhy3rR+Dk0QFl7GjHHsZU1sppQrWtw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha512-xxzPGZ4P2uN6rROUa5N9Z7zTX6ERuE0hs6GUOc/cKBLF2NqKc16UwqHMt3tFg4CO6EBTE5UecUasg+3jZx3Ckg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,50 +1,49 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
symlink-dir: 2.0.2
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
symlink-dir: 2.0.2
|
||||
symlink-dir:
|
||||
specifier: 2.0.2
|
||||
version: 2.0.2
|
||||
|
||||
packages:
|
||||
|
||||
/@types/mz/0.0.32:
|
||||
/@types/mz@0.0.32:
|
||||
resolution: {integrity: sha512-cy3yebKhrHuOcrJGkfwNHhpTXQLgmXSv1BX+4p32j+VUQ6aP2eJ5cL7OvGcAQx75fCTFaAIIAKewvqL+iwSd4g==}
|
||||
dependencies:
|
||||
'@types/node': 10.12.9
|
||||
dev: false
|
||||
|
||||
/@types/node/10.12.9:
|
||||
/@types/node@10.12.9:
|
||||
resolution: {integrity: sha512-eajkMXG812/w3w4a1OcBlaTwsFPO5F7fJ/amy+tieQxEMWBlbV1JGSjkFM+zkHNf81Cad+dfIRA+IBkvmvdAeA==}
|
||||
dev: false
|
||||
|
||||
/any-promise/1.3.0:
|
||||
/any-promise@1.3.0:
|
||||
resolution: {integrity: sha1-q8av7tzqUugJzcA3au0845Y10X8=}
|
||||
dev: false
|
||||
|
||||
/balanced-match/1.0.0:
|
||||
/balanced-match@1.0.0:
|
||||
resolution: {integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=}
|
||||
dev: false
|
||||
|
||||
/brace-expansion/1.1.11:
|
||||
/brace-expansion@1.1.11:
|
||||
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
||||
dependencies:
|
||||
balanced-match: 1.0.0
|
||||
concat-map: 0.0.1
|
||||
dev: false
|
||||
|
||||
/concat-map/0.0.1:
|
||||
/concat-map@0.0.1:
|
||||
resolution: {integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=}
|
||||
dev: false
|
||||
|
||||
/define-properties/1.1.3:
|
||||
/define-properties@1.1.3:
|
||||
resolution: {integrity: sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==}
|
||||
engines: {node: '>= 0.4'}
|
||||
dependencies:
|
||||
object-keys: 1.0.12
|
||||
dev: false
|
||||
|
||||
/es-abstract/1.12.0:
|
||||
/es-abstract@1.12.0:
|
||||
resolution: {integrity: sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==}
|
||||
engines: {node: '>= 0.4'}
|
||||
dependencies:
|
||||
|
|
@ -55,7 +54,7 @@ packages:
|
|||
is-regex: 1.0.4
|
||||
dev: false
|
||||
|
||||
/es-to-primitive/1.2.0:
|
||||
/es-to-primitive@1.2.0:
|
||||
resolution: {integrity: sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==}
|
||||
engines: {node: '>= 0.4'}
|
||||
dependencies:
|
||||
|
|
@ -64,15 +63,15 @@ packages:
|
|||
is-symbol: 1.0.2
|
||||
dev: false
|
||||
|
||||
/fs.realpath/1.0.0:
|
||||
/fs.realpath@1.0.0:
|
||||
resolution: {integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=}
|
||||
dev: false
|
||||
|
||||
/function-bind/1.1.1:
|
||||
/function-bind@1.1.1:
|
||||
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
|
||||
dev: false
|
||||
|
||||
/glob/7.1.3:
|
||||
/glob@7.1.3:
|
||||
resolution: {integrity: sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==}
|
||||
dependencies:
|
||||
fs.realpath: 1.0.0
|
||||
|
|
@ -83,87 +82,87 @@ packages:
|
|||
path-is-absolute: 1.0.1
|
||||
dev: false
|
||||
|
||||
/graceful-fs/4.1.15:
|
||||
/graceful-fs@4.1.15:
|
||||
resolution: {integrity: sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==}
|
||||
dev: false
|
||||
|
||||
/has-symbols/1.0.0:
|
||||
/has-symbols@1.0.0:
|
||||
resolution: {integrity: sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=}
|
||||
engines: {node: '>= 0.4'}
|
||||
dev: false
|
||||
|
||||
/has/1.0.3:
|
||||
/has@1.0.3:
|
||||
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
|
||||
engines: {node: '>= 0.4.0'}
|
||||
dependencies:
|
||||
function-bind: 1.1.1
|
||||
dev: false
|
||||
|
||||
/inflight/1.0.6:
|
||||
/inflight@1.0.6:
|
||||
resolution: {integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=}
|
||||
dependencies:
|
||||
once: 1.4.0
|
||||
wrappy: 1.0.2
|
||||
dev: false
|
||||
|
||||
/inherits/2.0.3:
|
||||
/inherits@2.0.3:
|
||||
resolution: {integrity: sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=}
|
||||
dev: false
|
||||
|
||||
/is-callable/1.1.4:
|
||||
/is-callable@1.1.4:
|
||||
resolution: {integrity: sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==}
|
||||
engines: {node: '>= 0.4'}
|
||||
dev: false
|
||||
|
||||
/is-date-object/1.0.1:
|
||||
/is-date-object@1.0.1:
|
||||
resolution: {integrity: sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=}
|
||||
engines: {node: '>= 0.4'}
|
||||
dev: false
|
||||
|
||||
/is-regex/1.0.4:
|
||||
/is-regex@1.0.4:
|
||||
resolution: {integrity: sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=}
|
||||
engines: {node: '>= 0.4'}
|
||||
dependencies:
|
||||
has: 1.0.3
|
||||
dev: false
|
||||
|
||||
/is-symbol/1.0.2:
|
||||
/is-symbol@1.0.2:
|
||||
resolution: {integrity: sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==}
|
||||
engines: {node: '>= 0.4'}
|
||||
dependencies:
|
||||
has-symbols: 1.0.0
|
||||
dev: false
|
||||
|
||||
/is-windows/1.0.2:
|
||||
/is-windows@1.0.2:
|
||||
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/minimatch/3.0.4:
|
||||
/minimatch@3.0.4:
|
||||
resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
|
||||
dependencies:
|
||||
brace-expansion: 1.1.11
|
||||
dev: false
|
||||
|
||||
/minimist/0.0.8:
|
||||
/minimist@0.0.8:
|
||||
resolution: {integrity: sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=}
|
||||
dev: false
|
||||
|
||||
/mkdirp-promise/5.0.1:
|
||||
/mkdirp-promise@5.0.1:
|
||||
resolution: {integrity: sha1-6bj2jlUsaKnBcTuEiD96HdA5uKE=}
|
||||
engines: {node: '>=4'}
|
||||
dependencies:
|
||||
mkdirp: 0.5.1
|
||||
dev: false
|
||||
|
||||
/mkdirp/0.5.1:
|
||||
/mkdirp@0.5.1:
|
||||
resolution: {integrity: sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
minimist: 0.0.8
|
||||
dev: false
|
||||
|
||||
/mz/2.7.0:
|
||||
/mz@2.7.0:
|
||||
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
||||
dependencies:
|
||||
any-promise: 1.3.0
|
||||
|
|
@ -171,17 +170,17 @@ packages:
|
|||
thenify-all: 1.6.0
|
||||
dev: false
|
||||
|
||||
/object-assign/4.1.1:
|
||||
/object-assign@4.1.1:
|
||||
resolution: {integrity: sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/object-keys/1.0.12:
|
||||
/object-keys@1.0.12:
|
||||
resolution: {integrity: sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==}
|
||||
engines: {node: '>= 0.4'}
|
||||
dev: false
|
||||
|
||||
/object.getownpropertydescriptors/2.0.3:
|
||||
/object.getownpropertydescriptors@2.0.3:
|
||||
resolution: {integrity: sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=}
|
||||
engines: {node: '>= 0.8'}
|
||||
dependencies:
|
||||
|
|
@ -189,13 +188,13 @@ packages:
|
|||
es-abstract: 1.12.0
|
||||
dev: false
|
||||
|
||||
/once/1.4.0:
|
||||
/once@1.4.0:
|
||||
resolution: {integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=}
|
||||
dependencies:
|
||||
wrappy: 1.0.2
|
||||
dev: false
|
||||
|
||||
/path-is-absolute/1.0.1:
|
||||
/path-is-absolute@1.0.1:
|
||||
resolution: {integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
@ -209,14 +208,14 @@ packages:
|
|||
util.promisify: 1.0.0
|
||||
dev: false
|
||||
|
||||
/rimraf/2.6.2:
|
||||
/rimraf@2.6.2:
|
||||
resolution: {integrity: sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==}
|
||||
hasBin: true
|
||||
dependencies:
|
||||
glob: 7.1.3
|
||||
dev: false
|
||||
|
||||
/symlink-dir/2.0.2:
|
||||
/symlink-dir@2.0.2:
|
||||
resolution: {integrity: sha512-jMqXkCcBVvpdyJKt8BLCp7FVIywe4sfEOL6Ugm1LpUGiwJzdj9q3ld/ECYV+seT/ly6duG0koT6d6jZbcSQ9mg==}
|
||||
engines: {node: '>=6'}
|
||||
hasBin: true
|
||||
|
|
@ -230,26 +229,26 @@ packages:
|
|||
rename-overwrite: 1.0.3
|
||||
dev: false
|
||||
|
||||
/thenify-all/1.6.0:
|
||||
/thenify-all@1.6.0:
|
||||
resolution: {integrity: sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=}
|
||||
engines: {node: '>=0.8'}
|
||||
dependencies:
|
||||
thenify: 3.3.0
|
||||
dev: false
|
||||
|
||||
/thenify/3.3.0:
|
||||
/thenify@3.3.0:
|
||||
resolution: {integrity: sha1-5p44obq+lpsBCCB5eLn2K4hgSDk=}
|
||||
dependencies:
|
||||
any-promise: 1.3.0
|
||||
dev: false
|
||||
|
||||
/util.promisify/1.0.0:
|
||||
/util.promisify@1.0.0:
|
||||
resolution: {integrity: sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==}
|
||||
dependencies:
|
||||
define-properties: 1.1.3
|
||||
object.getownpropertydescriptors: 2.0.3
|
||||
dev: false
|
||||
|
||||
/wrappy/1.0.2:
|
||||
/wrappy@1.0.2:
|
||||
resolution: {integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,43 +1,45 @@
|
|||
lockfileVersion: 5.4
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
specifiers:
|
||||
is-positive: 1.0.0
|
||||
dependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages/f:
|
||||
specifiers:
|
||||
is-negative: 1.0.0
|
||||
is-positive: 1.0.0
|
||||
dependencies:
|
||||
is-negative: 1.0.0
|
||||
is-positive: 1.0.0
|
||||
is-negative:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages/g:
|
||||
specifiers:
|
||||
'@pnpm.e2e/external-depend-on-internal-dep': 1.0.0
|
||||
is-positive: 1.0.0
|
||||
dependencies:
|
||||
'@pnpm.e2e/external-depend-on-internal-dep': 1.0.0
|
||||
is-positive: 1.0.0
|
||||
'@pnpm.e2e/external-depend-on-internal-dep':
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/@pnpm.e2e/external-depend-on-internal-dep/1.0.0:
|
||||
/@pnpm.e2e/external-depend-on-internal-dep@1.0.0:
|
||||
resolution: {integrity: sha512-UPhSnFgg3p1acuOcuWgunypA7tTqhVCBUUC4laNotJw1RUbTldprdLJmrhOvGylvw4VBipHnXPm/y9wTIAf53A==}
|
||||
dependencies:
|
||||
'@pnpm.e2e/internal-f': link:packages/f
|
||||
dev: false
|
||||
|
||||
/is-negative/1.0.0:
|
||||
/is-negative@1.0.0:
|
||||
resolution: {integrity: sha512-1aKMsFUc7vYQGzt//8zhkjRWPoYkajY/I5MJEvrc0pDoHXrW7n5ri8DYxhy3rR+Dk0QFl7GjHHsZU1sppQrWtw==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha512-xxzPGZ4P2uN6rROUa5N9Z7zTX6ERuE0hs6GUOc/cKBLF2NqKc16UwqHMt3tFg4CO6EBTE5UecUasg+3jZx3Ckg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,19 +1,24 @@
|
|||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
.:
|
||||
specifiers: {}
|
||||
|
||||
.: {}
|
||||
|
||||
packages/bar:
|
||||
dependencies:
|
||||
is-positive: 1.0.0
|
||||
specifiers:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages/foo:
|
||||
dependencies:
|
||||
is-positive: 1.0.0
|
||||
specifiers:
|
||||
is-positive: 1.0.0
|
||||
lockfileVersion: 5.1
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
/is-positive/1.0.0:
|
||||
|
||||
/is-positive@1.0.0:
|
||||
dev: false
|
||||
engines:
|
||||
node: '>=0.10.0'
|
||||
|
|
|
|||
|
|
@ -1,16 +1,20 @@
|
|||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
.:
|
||||
specifiers: {}
|
||||
|
||||
.: {}
|
||||
|
||||
packages/bar:
|
||||
dependencies:
|
||||
is-positive: 3.1.0
|
||||
specifiers:
|
||||
is-positive: 3.1.0
|
||||
packages/foo:
|
||||
specifiers: {}
|
||||
lockfileVersion: 5.2
|
||||
is-positive:
|
||||
specifier: 3.1.0
|
||||
version: 3.1.0
|
||||
|
||||
packages/foo: {}
|
||||
|
||||
packages:
|
||||
/is-positive/3.1.0:
|
||||
|
||||
/is-positive@3.1.0:
|
||||
dev: false
|
||||
engines:
|
||||
node: '>=0.10.0'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "foo",
|
||||
"dependencies": {
|
||||
"ajv": "^6.12.5"
|
||||
"ajv": "^6.12.6"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,25 +1,24 @@
|
|||
lockfileVersion: 5.4
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
specifiers: {}
|
||||
.: {}
|
||||
|
||||
packages/bar:
|
||||
specifiers:
|
||||
ajv: ^6.10.2
|
||||
dependencies:
|
||||
ajv: 6.10.2
|
||||
ajv:
|
||||
specifier: ^6.10.2
|
||||
version: 6.10.2
|
||||
|
||||
packages/foo:
|
||||
specifiers:
|
||||
ajv: ^6.12.5
|
||||
dependencies:
|
||||
ajv: 6.12.6
|
||||
ajv:
|
||||
specifier: ^6.12.6
|
||||
version: 6.12.6
|
||||
|
||||
packages:
|
||||
|
||||
/ajv/6.10.2:
|
||||
/ajv@6.10.2:
|
||||
resolution: {integrity: sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==}
|
||||
dependencies:
|
||||
fast-deep-equal: 2.0.1
|
||||
|
|
@ -28,7 +27,7 @@ packages:
|
|||
uri-js: 4.2.2
|
||||
dev: false
|
||||
|
||||
/ajv/6.12.6:
|
||||
/ajv@6.12.6:
|
||||
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
||||
dependencies:
|
||||
fast-deep-equal: 3.1.3
|
||||
|
|
@ -37,43 +36,43 @@ packages:
|
|||
uri-js: 4.4.1
|
||||
dev: false
|
||||
|
||||
/fast-deep-equal/2.0.1:
|
||||
/fast-deep-equal@2.0.1:
|
||||
resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==}
|
||||
dev: false
|
||||
|
||||
/fast-deep-equal/3.1.3:
|
||||
/fast-deep-equal@3.1.3:
|
||||
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
||||
dev: false
|
||||
|
||||
/fast-json-stable-stringify/2.0.0:
|
||||
/fast-json-stable-stringify@2.0.0:
|
||||
resolution: {integrity: sha1-1RQsDK7msRifh9OnYREGT4bIu/I=}
|
||||
dev: false
|
||||
|
||||
/fast-json-stable-stringify/2.1.0:
|
||||
/fast-json-stable-stringify@2.1.0:
|
||||
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
||||
dev: false
|
||||
|
||||
/json-schema-traverse/0.4.1:
|
||||
/json-schema-traverse@0.4.1:
|
||||
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
||||
dev: false
|
||||
|
||||
/punycode/2.1.1:
|
||||
/punycode@2.1.1:
|
||||
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
|
||||
engines: {node: '>=6'}
|
||||
dev: false
|
||||
|
||||
/punycode/2.3.0:
|
||||
/punycode@2.3.0:
|
||||
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
|
||||
engines: {node: '>=6'}
|
||||
dev: false
|
||||
|
||||
/uri-js/4.2.2:
|
||||
/uri-js@4.2.2:
|
||||
resolution: {integrity: sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==}
|
||||
dependencies:
|
||||
punycode: 2.1.1
|
||||
dev: false
|
||||
|
||||
/uri-js/4.4.1:
|
||||
/uri-js@4.4.1:
|
||||
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
||||
dependencies:
|
||||
punycode: 2.3.0
|
||||
|
|
|
|||
|
|
@ -1,41 +1,40 @@
|
|||
lockfileVersion: 5.4
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
specifiers: {}
|
||||
.: {}
|
||||
|
||||
packages/bar:
|
||||
specifiers:
|
||||
uri-js: '=4.2.2'
|
||||
dependencies:
|
||||
uri-js: 4.2.2
|
||||
uri-js:
|
||||
specifier: '=4.2.2'
|
||||
version: 4.2.2
|
||||
|
||||
packages/foo:
|
||||
specifiers:
|
||||
uri-js: '=4.4.1'
|
||||
dependencies:
|
||||
uri-js: 4.4.1
|
||||
uri-js:
|
||||
specifier: '=4.4.1'
|
||||
version: 4.4.1
|
||||
|
||||
packages:
|
||||
|
||||
/punycode/2.1.1:
|
||||
/punycode@2.1.1:
|
||||
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
|
||||
engines: {node: '>=6'}
|
||||
dev: false
|
||||
|
||||
/punycode/2.3.0:
|
||||
/punycode@2.3.0:
|
||||
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
|
||||
engines: {node: '>=6'}
|
||||
dev: false
|
||||
|
||||
/uri-js/4.2.2:
|
||||
/uri-js@4.2.2:
|
||||
resolution: {integrity: sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==}
|
||||
dependencies:
|
||||
punycode: 2.1.1
|
||||
dev: false
|
||||
|
||||
/uri-js/4.4.1:
|
||||
/uri-js@4.4.1:
|
||||
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
||||
dependencies:
|
||||
punycode: 2.3.0
|
||||
|
|
|
|||
|
|
@ -1,33 +1,33 @@
|
|||
lockfileVersion: 5.4
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
specifiers:
|
||||
'@scope/a': workspace:*
|
||||
dependencies:
|
||||
'@scope/a': link:packages/a
|
||||
'@scope/a':
|
||||
specifier: workspace:*
|
||||
version: link:packages/a
|
||||
|
||||
packages/a:
|
||||
specifiers:
|
||||
'@scope/b': workspace:*
|
||||
dependencies:
|
||||
'@scope/b': link:../b
|
||||
'@scope/b':
|
||||
specifier: workspace:*
|
||||
version: link:../b
|
||||
|
||||
packages/b:
|
||||
specifiers:
|
||||
'@scope/c': workspace:*
|
||||
is-positive: 1.0.0
|
||||
dependencies:
|
||||
'@scope/c': link:../c
|
||||
is-positive: 1.0.0
|
||||
'@scope/c':
|
||||
specifier: workspace:*
|
||||
version: link:../c
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages/c:
|
||||
specifiers: {}
|
||||
packages/c: {}
|
||||
|
||||
packages:
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha512-xxzPGZ4P2uN6rROUa5N9Z7zTX6ERuE0hs6GUOc/cKBLF2NqKc16UwqHMt3tFg4CO6EBTE5UecUasg+3jZx3Ckg==}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,25 +1,24 @@
|
|||
lockfileVersion: 5.3
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
importers:
|
||||
|
||||
.:
|
||||
specifiers: {}
|
||||
.: {}
|
||||
|
||||
packages/private:
|
||||
specifiers:
|
||||
is-positive: 1.0.0
|
||||
dependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages/public:
|
||||
specifiers:
|
||||
is-positive: 1.0.0
|
||||
dependencies:
|
||||
is-positive: 1.0.0
|
||||
is-positive:
|
||||
specifier: 1.0.0
|
||||
version: 1.0.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-positive/1.0.0:
|
||||
/is-positive@1.0.0:
|
||||
resolution: {integrity: sha1-iACYVrZKLx632LsBeUGEJK4EUss=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @pnpm/assert-project
|
||||
|
||||
## 2.3.20
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/assert-store@1.0.57
|
||||
|
||||
## 2.3.19
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@pnpm/assert-project",
|
||||
"description": "Utils for testing projects that use pnpm",
|
||||
"version": "2.3.19",
|
||||
"version": "2.3.20",
|
||||
"author": {
|
||||
"name": "Zoltan Kochan",
|
||||
"email": "z@kochan.io",
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
"@pnpm/constants": "workspace:*",
|
||||
"@pnpm/lockfile-types": "workspace:*",
|
||||
"@pnpm/modules-yaml": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.3.0",
|
||||
"@pnpm/registry-mock": "3.4.0",
|
||||
"@pnpm/types": "workspace:*",
|
||||
"is-windows": "^1.0.2",
|
||||
"isexe": "2.0.0",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
import path from 'path'
|
||||
import { assertStore } from '@pnpm/assert-store'
|
||||
import { WANTED_LOCKFILE } from '@pnpm/constants'
|
||||
import { Lockfile, ProjectSnapshot } from '@pnpm/lockfile-types'
|
||||
import { LockfileV6 as Lockfile, ProjectSnapshotV6 as ProjectSnapshot } from '@pnpm/lockfile-types'
|
||||
import { Modules, readModulesManifest } from '@pnpm/modules-yaml'
|
||||
import { REGISTRY_MOCK_PORT } from '@pnpm/registry-mock'
|
||||
import readYamlFile from 'read-yaml-file'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @pnpm/assert-store
|
||||
|
||||
## 1.0.57
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/cafs@6.0.1
|
||||
|
||||
## 1.0.56
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@pnpm/assert-store",
|
||||
"description": "Utils for testing pnpm store",
|
||||
"version": "1.0.56",
|
||||
"version": "1.0.57",
|
||||
"author": {
|
||||
"name": "Zoltan Kochan",
|
||||
"email": "z@kochan.io",
|
||||
|
|
@ -41,7 +41,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@pnpm/cafs": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.3.0",
|
||||
"@pnpm/registry-mock": "3.4.0",
|
||||
"path-exists": "^4.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
|
|||
|
|
@ -1,14 +1,13 @@
|
|||
lockfileVersion: 5.4
|
||||
|
||||
specifiers:
|
||||
is-positive: 3.1.0
|
||||
lockfileVersion: '6.0'
|
||||
|
||||
dependencies:
|
||||
is-positive: 3.1.0
|
||||
is-positive:
|
||||
specifier: 3.1.0
|
||||
version: 3.1.0
|
||||
|
||||
packages:
|
||||
|
||||
/is-positive/3.1.0:
|
||||
/is-positive@3.1.0:
|
||||
resolution: {integrity: sha1-hX21hKG6XRyymAUn/DtsQ103sP0=}
|
||||
engines: {node: '>=0.10.0'}
|
||||
dev: false
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# @pnpm/prepare
|
||||
|
||||
## 0.0.63
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- b71c6ed74: Fix version number replacing for namespaced workspace packages. `workspace:@foo/bar@*` should be replaced with `npm:@foo/bar@<version>` on publish [#6052](https://github.com/pnpm/pnpm/pull/6052).
|
||||
- @pnpm/assert-project@2.3.20
|
||||
|
||||
## 0.0.62
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/prepare",
|
||||
"version": "0.0.62",
|
||||
"version": "0.0.63",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ export function preparePackages (
|
|||
|
||||
const dirname = path.dirname(pkgTmpPath)
|
||||
const result: { [name: string]: Project } = {}
|
||||
const cwd = process.cwd()
|
||||
for (const aPkg of pkgs) {
|
||||
if (typeof (aPkg as LocationAndManifest).location === 'string') {
|
||||
result[(aPkg as LocationAndManifest).package.name!] = prepare((aPkg as LocationAndManifest).package, {
|
||||
|
|
@ -57,7 +58,7 @@ export function preparePackages (
|
|||
})
|
||||
}
|
||||
}
|
||||
process.chdir('..')
|
||||
process.chdir(cwd)
|
||||
return result
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# @pnpm/test-fixtures
|
||||
|
||||
## 0.0.32
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [b71c6ed74]
|
||||
- @pnpm/prepare@0.0.63
|
||||
|
||||
## 0.0.31
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@pnpm/test-fixtures",
|
||||
"description": "Test fixtures",
|
||||
"version": "0.0.31",
|
||||
"version": "0.0.32",
|
||||
"author": {
|
||||
"name": "Zoltan Kochan",
|
||||
"email": "z@kochan.io",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,20 @@
|
|||
# @pnpm/cli-utils
|
||||
|
||||
## 1.0.33
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/config@16.6.1
|
||||
- @pnpm/default-reporter@11.0.33
|
||||
|
||||
## 1.0.32
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [59ee53678]
|
||||
- @pnpm/config@16.6.0
|
||||
- @pnpm/default-reporter@11.0.32
|
||||
|
||||
## 1.0.31
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/cli-utils",
|
||||
"version": "1.0.31",
|
||||
"version": "1.0.33",
|
||||
"description": "Utils for pnpm commands",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,18 @@
|
|||
# @pnpm/default-reporter
|
||||
|
||||
## 11.0.33
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/config@16.6.1
|
||||
|
||||
## 11.0.32
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [59ee53678]
|
||||
- @pnpm/config@16.6.0
|
||||
|
||||
## 11.0.31
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/default-reporter",
|
||||
"version": "11.0.31",
|
||||
"version": "11.0.33",
|
||||
"description": "The default reporter of pnpm",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,21 @@
|
|||
# @pnpm/config
|
||||
|
||||
## 16.6.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/pnpmfile@4.0.31
|
||||
|
||||
## 16.6.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 59ee53678: A new `resolution-mode` added: `lowest-direct`. With this resolution mode direct dependencies will be resolved to their lowest versions. So if there is `foo@^1.1.0` in the dependencies, then `1.1.0` will be installed, even if the latest version of `foo` is `1.2.0`.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/pnpmfile@4.0.30
|
||||
|
||||
## 16.5.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/config",
|
||||
"version": "16.5.5",
|
||||
"version": "16.6.1",
|
||||
"description": "Gets configuration options for pnpm",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -180,7 +180,7 @@ export async function getConfig (
|
|||
}
|
||||
const rcOptionsTypes = { ...types, ...opts.rcOptionsTypes }
|
||||
const { config: npmConfig, warnings, failedToLoadBuiltInConfig } = loadNpmConf(cliOptions, rcOptionsTypes, {
|
||||
'auto-install-peers': false,
|
||||
'auto-install-peers': true,
|
||||
bail: true,
|
||||
color: 'auto',
|
||||
'enable-modules-dir': true,
|
||||
|
|
@ -216,9 +216,10 @@ export async function getConfig (
|
|||
],
|
||||
'recursive-install': true,
|
||||
registry: npmDefaults.registry,
|
||||
'resolution-mode': 'highest',
|
||||
'resolution-mode': 'lowest-direct',
|
||||
'resolve-peers-from-workspace-root': true,
|
||||
'save-peer': false,
|
||||
'save-workspace-protocol': true,
|
||||
'save-workspace-protocol': 'rolling',
|
||||
'scripts-prepend-node-path': false,
|
||||
'side-effects-cache': true,
|
||||
symlink: true,
|
||||
|
|
@ -229,6 +230,7 @@ export async function getConfig (
|
|||
'strict-peer-dependencies': false,
|
||||
'unsafe-perm': npmDefaults['unsafe-perm'],
|
||||
'use-beta-cli': false,
|
||||
'use-lockfile-v6': true,
|
||||
'use-inline-specifiers-lockfile-format': false,
|
||||
userconfig: npmDefaults.userconfig,
|
||||
'verify-store-integrity': true,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,20 @@
|
|||
# @pnpm/plugin-commands-config
|
||||
|
||||
## 1.0.15
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/config@16.6.1
|
||||
- @pnpm/cli-utils@1.0.33
|
||||
|
||||
## 1.0.14
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [59ee53678]
|
||||
- @pnpm/config@16.6.0
|
||||
- @pnpm/cli-utils@1.0.32
|
||||
|
||||
## 1.0.13
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/plugin-commands-config",
|
||||
"version": "1.0.13",
|
||||
"version": "1.0.15",
|
||||
"description": "Commands for reading and writing settings to/from config files",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @pnpm/node.fetcher
|
||||
|
||||
## 2.0.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/fetcher-base@13.1.6
|
||||
- @pnpm/pick-fetcher@1.0.0
|
||||
- @pnpm/create-cafs-store@3.1.5
|
||||
- @pnpm/tarball-fetcher@14.1.2
|
||||
|
||||
## 2.0.11
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/node.fetcher",
|
||||
"version": "2.0.11",
|
||||
"version": "2.0.12",
|
||||
"description": "Node.js artifacts fetcher",
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"main": "lib/index.js",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @pnpm/node.resolver
|
||||
|
||||
## 1.1.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/node.fetcher@2.0.12
|
||||
|
||||
## 1.1.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/node.resolver",
|
||||
"version": "1.1.8",
|
||||
"version": "1.1.9",
|
||||
"description": "Resolves a Node.js version specifier to an exact Node.js version",
|
||||
"funding": "https://opencollective.com/pnpm",
|
||||
"main": "lib/index.js",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,22 @@
|
|||
# @pnpm/plugin-commands-env
|
||||
|
||||
## 3.1.27
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/config@16.6.1
|
||||
- @pnpm/node.fetcher@2.0.12
|
||||
- @pnpm/node.resolver@1.1.9
|
||||
- @pnpm/cli-utils@1.0.33
|
||||
|
||||
## 3.1.26
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [59ee53678]
|
||||
- @pnpm/config@16.6.0
|
||||
- @pnpm/cli-utils@1.0.32
|
||||
|
||||
## 3.1.25
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/plugin-commands-env",
|
||||
"version": "3.1.25",
|
||||
"version": "3.1.27",
|
||||
"description": "pnpm commands for managing Node.js",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @pnpm/build-modules
|
||||
|
||||
## 10.1.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/store-controller-types@14.3.1
|
||||
- @pnpm/fs.hard-link-dir@1.0.3
|
||||
- @pnpm/lifecycle@14.1.6
|
||||
- @pnpm/link-bins@8.0.8
|
||||
|
||||
## 10.1.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/build-modules",
|
||||
"version": "10.1.5",
|
||||
"version": "10.1.6",
|
||||
"description": "Build packages in node_modules",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# @pnpm/lifecycle
|
||||
|
||||
## 14.1.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/directory-fetcher@5.1.5
|
||||
- @pnpm/store-controller-types@14.3.1
|
||||
|
||||
## 14.1.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/lifecycle",
|
||||
"version": "14.1.5",
|
||||
"version": "14.1.6",
|
||||
"description": "Package lifecycle hook runner",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,34 @@
|
|||
# @pnpm/plugin-commands-rebuild
|
||||
|
||||
## 7.0.33
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/lockfile-utils@5.0.7
|
||||
- @pnpm/store-controller-types@14.3.1
|
||||
- @pnpm/config@16.6.1
|
||||
- @pnpm/fs.hard-link-dir@1.0.3
|
||||
- @pnpm/lifecycle@14.1.6
|
||||
- @pnpm/store-connection-manager@5.2.11
|
||||
- @pnpm/link-bins@8.0.8
|
||||
- @pnpm/cli-utils@1.0.33
|
||||
- @pnpm/find-workspace-packages@5.0.33
|
||||
|
||||
## 7.0.32
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d89d7a078]
|
||||
- Updated dependencies [59ee53678]
|
||||
- @pnpm/dependency-path@1.1.3
|
||||
- @pnpm/config@16.6.0
|
||||
- @pnpm/lockfile-utils@5.0.6
|
||||
- @pnpm/lockfile-walker@6.0.8
|
||||
- @pnpm/cli-utils@1.0.32
|
||||
- @pnpm/store-connection-manager@5.2.10
|
||||
- @pnpm/get-context@8.2.2
|
||||
- @pnpm/find-workspace-packages@5.0.32
|
||||
|
||||
## 7.0.31
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/plugin-commands-rebuild",
|
||||
"version": "7.0.31",
|
||||
"version": "7.0.33",
|
||||
"description": "Commands for rebuilding dependencies",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
@ -38,7 +38,7 @@
|
|||
"@pnpm/filter-workspace-packages": "workspace:*",
|
||||
"@pnpm/plugin-commands-rebuild": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.3.0",
|
||||
"@pnpm/registry-mock": "3.4.0",
|
||||
"@pnpm/test-fixtures": "workspace:*",
|
||||
"@types/ramda": "0.28.20",
|
||||
"@types/semver": "7.3.13",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,28 @@
|
|||
# @pnpm/plugin-commands-script-runners
|
||||
|
||||
## 6.4.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/plugin-commands-installation@11.4.5
|
||||
- @pnpm/config@16.6.1
|
||||
- @pnpm/lifecycle@14.1.6
|
||||
- @pnpm/cli-utils@1.0.33
|
||||
|
||||
## 6.4.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 9ac694044: Support script selector with RegExp such as `pnpm run /build:.*/` and execute the matched scripts with the RegExp [#5871](https://github.com/pnpm/pnpm/pull/5871).
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [308eb2c9b]
|
||||
- Updated dependencies [59ee53678]
|
||||
- @pnpm/plugin-commands-installation@11.4.4
|
||||
- @pnpm/config@16.6.0
|
||||
- @pnpm/cli-utils@1.0.32
|
||||
|
||||
## 6.3.11
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/plugin-commands-script-runners",
|
||||
"version": "6.3.11",
|
||||
"version": "6.4.1",
|
||||
"description": "Commands for running scripts",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
"@pnpm/filter-workspace-packages": "workspace:*",
|
||||
"@pnpm/plugin-commands-script-runners": "workspace:*",
|
||||
"@pnpm/prepare": "workspace:*",
|
||||
"@pnpm/registry-mock": "3.3.0",
|
||||
"@pnpm/registry-mock": "3.4.0",
|
||||
"@types/is-windows": "^1.0.0",
|
||||
"@types/ramda": "0.28.20",
|
||||
"is-windows": "^1.0.2",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @pnpm/prepare-package
|
||||
|
||||
## 4.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/lifecycle@14.1.6
|
||||
|
||||
## 4.1.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/prepare-package",
|
||||
"version": "4.1.0",
|
||||
"version": "4.1.1",
|
||||
"description": "Prepares a Git-hosted package",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @pnpm/directory-fetcher
|
||||
|
||||
## 5.1.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [029143cff]
|
||||
- Updated dependencies [029143cff]
|
||||
- @pnpm/resolver-base@9.2.0
|
||||
- @pnpm/fetcher-base@13.1.6
|
||||
|
||||
## 5.1.4
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/directory-fetcher",
|
||||
"version": "5.1.4",
|
||||
"version": "5.1.5",
|
||||
"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.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [029143cff]
|
||||
- Updated dependencies [029143cff]
|
||||
- @pnpm/resolver-base@9.2.0
|
||||
|
||||
## 13.1.5
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/fetcher-base",
|
||||
"version": "13.1.5",
|
||||
"version": "13.1.6",
|
||||
"description": "Types for pnpm-compatible fetchers",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# @pnpm/git-fetcher
|
||||
|
||||
## 8.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/fetcher-base@13.1.6
|
||||
- @pnpm/prepare-package@4.1.1
|
||||
|
||||
## 8.0.0
|
||||
|
||||
### Major Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/git-fetcher",
|
||||
"version": "8.0.0",
|
||||
"version": "8.0.1",
|
||||
"description": "A fetcher for git-hosted packages",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# @pnpm/tarball-fetcher
|
||||
|
||||
## 14.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/fetcher-base@13.1.6
|
||||
- @pnpm/prepare-package@4.1.1
|
||||
|
||||
## 14.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/tarball-fetcher",
|
||||
"version": "14.1.1",
|
||||
"version": "14.1.2",
|
||||
"description": "Fetcher for packages hosted as tarballs",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @pnpm/fs.indexed-pkg-importer
|
||||
|
||||
## 2.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/store-controller-types@14.3.1
|
||||
|
||||
## 2.1.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.1.2",
|
||||
"version": "2.1.3",
|
||||
"bugs": {
|
||||
"url": "https://github.com/pnpm/pnpm/issues"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,5 +1,22 @@
|
|||
# @pnpm/pnpmfile
|
||||
|
||||
## 4.0.31
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [029143cff]
|
||||
- @pnpm/core@7.8.1
|
||||
- @pnpm/store-controller-types@14.3.1
|
||||
|
||||
## 4.0.30
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [74b535f19]
|
||||
- Updated dependencies [308eb2c9b]
|
||||
- Updated dependencies [59ee53678]
|
||||
- @pnpm/core@7.8.0
|
||||
|
||||
## 4.0.29
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/pnpmfile",
|
||||
"version": "4.0.29",
|
||||
"version": "4.0.31",
|
||||
"description": "Reading a .pnpmfile.cjs",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @pnpm/hooks.read-package-hook
|
||||
|
||||
## 2.0.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 308eb2c9b: Use Map rather than Object in `createPackageExtender` to prevent read the prototype property to native function
|
||||
|
||||
## 2.0.11
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/hooks.read-package-hook",
|
||||
"version": "2.0.11",
|
||||
"version": "2.0.12",
|
||||
"description": "Creates the default package reader hook used by pnpm",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,21 @@
|
|||
# @pnpm/audit
|
||||
|
||||
## 6.1.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/lockfile-utils@5.0.7
|
||||
- @pnpm/list@8.1.3
|
||||
|
||||
## 6.1.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [19e823bea]
|
||||
- @pnpm/list@8.1.2
|
||||
- @pnpm/lockfile-utils@5.0.6
|
||||
- @pnpm/lockfile-walker@6.0.8
|
||||
|
||||
## 6.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/audit",
|
||||
"version": "6.1.2",
|
||||
"version": "6.1.4",
|
||||
"description": "Audit a lockfile",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,20 @@
|
|||
# @pnpm/filter-lockfile
|
||||
|
||||
## 7.0.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/lockfile-utils@5.0.7
|
||||
|
||||
## 7.0.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d89d7a078]
|
||||
- @pnpm/dependency-path@1.1.3
|
||||
- @pnpm/lockfile-utils@5.0.6
|
||||
- @pnpm/lockfile-walker@6.0.8
|
||||
|
||||
## 7.0.8
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/filter-lockfile",
|
||||
"version": "7.0.8",
|
||||
"version": "7.0.10",
|
||||
"description": "Filters a lockfile",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,12 @@
|
|||
# @pnpm/lockfile-file
|
||||
|
||||
## 7.0.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d89d7a078]
|
||||
- @pnpm/dependency-path@1.1.3
|
||||
|
||||
## 7.0.3
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@pnpm/lockfile-file",
|
||||
"version": "7.0.3",
|
||||
"version": "7.0.4",
|
||||
"description": "Read/write pnpm-lock.yaml files",
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,20 @@
|
|||
# @pnpm/lockfile-to-pnp
|
||||
|
||||
## 2.0.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- @pnpm/lockfile-utils@5.0.7
|
||||
|
||||
## 2.0.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies [d89d7a078]
|
||||
- @pnpm/dependency-path@1.1.3
|
||||
- @pnpm/lockfile-file@7.0.4
|
||||
- @pnpm/lockfile-utils@5.0.6
|
||||
|
||||
## 2.0.10
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue