@lerna-lite/publish 3.3.3 → 3.4.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 +2 -0
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -296,6 +296,8 @@ lerna version --remove-package-fields 'devDependencies' 'scripts'
|
|
|
296
296
|
|
|
297
297
|
> **Note** lifecycle scripts (`prepublish`, `prepublishOnly`, `prepack`, `postpack`) are executed after the field removal process and for that reason if any of these scripts are found, it will leave them in place and skip the removal whenever found.
|
|
298
298
|
|
|
299
|
+
> **Note** this option will actually temporarily modify the actual `package.json` just before the publish process starts and will then revert the change after the publish process is completed. If for whatever reason, your publish process fails, it is possible that your each package, are now in an invalid state (e.g. `scripts` could be removed), so it very important to review your `package.json` after a publish failure.
|
|
300
|
+
|
|
299
301
|
Removal of complex object value(s) are also supported via the dot notation as shown below.
|
|
300
302
|
|
|
301
303
|
```sh
|
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.4.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"/dist"
|
|
7
7
|
],
|
|
@@ -29,31 +29,31 @@
|
|
|
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/version": "3.
|
|
32
|
+
"@lerna-lite/cli": "3.4.0",
|
|
33
|
+
"@lerna-lite/core": "3.4.0",
|
|
34
|
+
"@lerna-lite/version": "3.4.0",
|
|
35
35
|
"byte-size": "^8.1.1",
|
|
36
36
|
"chalk": "^5.3.0",
|
|
37
37
|
"columnify": "^1.6.0",
|
|
38
38
|
"fs-extra": "^11.2.0",
|
|
39
|
-
"glob": "^10.3.
|
|
39
|
+
"glob": "^10.3.15",
|
|
40
40
|
"has-unicode": "^2.0.1",
|
|
41
|
-
"libnpmaccess": "^8.0.
|
|
42
|
-
"libnpmpublish": "^9.0.
|
|
41
|
+
"libnpmaccess": "^8.0.5",
|
|
42
|
+
"libnpmpublish": "^9.0.7",
|
|
43
43
|
"normalize-path": "^3.0.0",
|
|
44
44
|
"npm-package-arg": "^11.0.2",
|
|
45
45
|
"npm-packlist": "^5.1.3",
|
|
46
|
-
"npm-registry-fetch": "^
|
|
46
|
+
"npm-registry-fetch": "^17.0.1",
|
|
47
47
|
"npmlog": "^7.0.1",
|
|
48
48
|
"p-map": "^7.0.2",
|
|
49
49
|
"p-pipe": "^4.0.0",
|
|
50
|
-
"pacote": "^
|
|
50
|
+
"pacote": "^18.0.6",
|
|
51
51
|
"pify": "^6.1.0",
|
|
52
|
-
"read-package-json": "^7.0.
|
|
53
|
-
"semver": "^7.6.
|
|
54
|
-
"ssri": "^10.0.
|
|
52
|
+
"read-package-json": "^7.0.1",
|
|
53
|
+
"semver": "^7.6.2",
|
|
54
|
+
"ssri": "^10.0.6",
|
|
55
55
|
"tar": "^6.2.1",
|
|
56
56
|
"temp-dir": "^3.0.0"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "6b530baf88f57946e0cf18e438c35bdc6437d040"
|
|
59
59
|
}
|