@pnpm/pnpr 0.1.0-alpha.2 → 0.1.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @pnpm/pnpr
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed Pacquet workspace commands to honor project filters, preserve complete lockfile state, and materialize only the selected dependency closure, including pnpr-backed installs.
|
|
8
|
+
|
|
9
|
+
- Fixed pnpr workspace resolution to preserve project names and versions for `workspace:` dependencies.
|
|
10
|
+
|
|
11
|
+
## 0.1.0-alpha.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- The `--help` text now reads as user-facing help rather than developer documentation. Command and flag descriptions say what each option does for you, and the leftover markdown that was printing verbatim in the terminal — intra-doc links, an inline link, and an HTML-like path placeholder — has been cleaned out.
|
|
16
|
+
|
|
3
17
|
## 0.1.0-alpha.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pnpm/pnpr",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.4",
|
|
4
4
|
"description": "pnpm-compatible npm registry server, written in Rust",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pnpm",
|
|
@@ -28,14 +28,14 @@
|
|
|
28
28
|
"LICENSE.md"
|
|
29
29
|
],
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@pnpm/pnpr.win32-x64": "0.1.0-alpha.
|
|
32
|
-
"@pnpm/pnpr.win32-arm64": "0.1.0-alpha.
|
|
33
|
-
"@pnpm/pnpr.darwin-x64": "0.1.0-alpha.
|
|
34
|
-
"@pnpm/pnpr.darwin-arm64": "0.1.0-alpha.
|
|
35
|
-
"@pnpm/pnpr.linux-x64": "0.1.0-alpha.
|
|
36
|
-
"@pnpm/pnpr.linux-arm64": "0.1.0-alpha.
|
|
37
|
-
"@pnpm/pnpr.linux-x64-musl": "0.1.0-alpha.
|
|
38
|
-
"@pnpm/pnpr.linux-arm64-musl": "0.1.0-alpha.
|
|
31
|
+
"@pnpm/pnpr.win32-x64": "0.1.0-alpha.4",
|
|
32
|
+
"@pnpm/pnpr.win32-arm64": "0.1.0-alpha.4",
|
|
33
|
+
"@pnpm/pnpr.darwin-x64": "0.1.0-alpha.4",
|
|
34
|
+
"@pnpm/pnpr.darwin-arm64": "0.1.0-alpha.4",
|
|
35
|
+
"@pnpm/pnpr.linux-x64": "0.1.0-alpha.4",
|
|
36
|
+
"@pnpm/pnpr.linux-arm64": "0.1.0-alpha.4",
|
|
37
|
+
"@pnpm/pnpr.linux-x64-musl": "0.1.0-alpha.4",
|
|
38
|
+
"@pnpm/pnpr.linux-arm64-musl": "0.1.0-alpha.4"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"preinstall": "node install.js"
|