@lerna-lite/publish 3.10.0 → 3.11.0
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/README.md +5 -0
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -104,6 +104,7 @@ $ lerna publish --scope my-component test
|
|
|
104
104
|
- [`--yes`](#--yes)
|
|
105
105
|
- [`publishConfig` Overrides](#publishconfig-overrides)
|
|
106
106
|
- [`workspace:` protocol](#workspace-protocol)
|
|
107
|
+
- [`catalog:` protocol](#catalog-protocol)
|
|
107
108
|
|
|
108
109
|
### `--arborist-load-options`
|
|
109
110
|
Arborist options that can be provided in your `lerna.json` config which are options associated to the `arborist.loadActual(options)` method.
|
|
@@ -613,6 +614,10 @@ The library is doing a strict match and it will transform and publish the follow
|
|
|
613
614
|
}
|
|
614
615
|
```
|
|
615
616
|
|
|
617
|
+
# `catalog:` protocol
|
|
618
|
+
|
|
619
|
+
The `catalog:` protocol ([pnpm catalog](https://pnpm.io/catalogs)) can be recognized by Lerna-Lite. When publishing, they will be kept as is. If you need to bump the version of a package in a catalog, you will need to edit `pnpm-workspace.yaml` manually. So we suggest using `workspace:` protocol instead for workspace dependencies.
|
|
620
|
+
|
|
616
621
|
## FAQ
|
|
617
622
|
|
|
618
623
|
### Recovering from a network error
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lerna-lite/publish",
|
|
3
3
|
"description": "Publish packages in the current workspace",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.11.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"/dist"
|
|
7
7
|
],
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"homepage": "https://github.com/lerna-lite/lerna-lite",
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "https://github.com/lerna-lite/lerna-lite.git",
|
|
22
|
+
"url": "git+https://github.com/lerna-lite/lerna-lite.git",
|
|
23
23
|
"directory": "packages/publish"
|
|
24
24
|
},
|
|
25
25
|
"bugs": {
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"node": "^18.0.0 || >=20.0.0"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@lerna-lite/cli": "3.
|
|
33
|
-
"@lerna-lite/core": "3.
|
|
34
|
-
"@lerna-lite/npmlog": "3.
|
|
35
|
-
"@lerna-lite/version": "3.
|
|
32
|
+
"@lerna-lite/cli": "3.11.0",
|
|
33
|
+
"@lerna-lite/core": "3.11.0",
|
|
34
|
+
"@lerna-lite/npmlog": "3.11.0",
|
|
35
|
+
"@lerna-lite/version": "3.11.0",
|
|
36
36
|
"@npmcli/arborist": "^7.5.4",
|
|
37
37
|
"@npmcli/package-json": "^5.2.1",
|
|
38
|
-
"byte-size": "^9.0.
|
|
38
|
+
"byte-size": "^9.0.1",
|
|
39
39
|
"columnify": "^1.6.0",
|
|
40
40
|
"fs-extra": "^11.2.0",
|
|
41
41
|
"has-unicode": "^2.0.1",
|
|
@@ -45,15 +45,15 @@
|
|
|
45
45
|
"npm-package-arg": "^11.0.3",
|
|
46
46
|
"npm-packlist": "^8.0.2",
|
|
47
47
|
"npm-registry-fetch": "^17.1.0",
|
|
48
|
-
"p-map": "^7.0.
|
|
48
|
+
"p-map": "^7.0.3",
|
|
49
49
|
"p-pipe": "^4.0.0",
|
|
50
50
|
"pacote": "^18.0.6",
|
|
51
51
|
"semver": "^7.6.3",
|
|
52
52
|
"ssri": "^11.0.0",
|
|
53
53
|
"tar": "^6.2.1",
|
|
54
54
|
"temp-dir": "^3.0.0",
|
|
55
|
-
"tinyglobby": "^0.2.
|
|
55
|
+
"tinyglobby": "^0.2.10",
|
|
56
56
|
"tinyrainbow": "^1.2.0"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "2cf5915b05caeb82aa5d60cc9ca21df0892c183b"
|
|
59
59
|
}
|