@visulima/package 3.5.5 → 3.5.6
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 +6 -0
- package/dist/package-json.cjs +3 -0
- package/dist/package-json.mjs +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## @visulima/package [3.5.6](https://github.com/visulima/visulima/compare/@visulima/package@3.5.5...@visulima/package@3.5.6) (2025-06-01)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* **package-json:** add check to prevent installation of already installed packages ([8c0d9ff](https://github.com/visulima/visulima/commit/8c0d9ff20aaa598642ef3c6e6620dcd036770799))
|
|
6
|
+
|
|
1
7
|
## @visulima/package [3.5.5](https://github.com/visulima/visulima/compare/@visulima/package@3.5.4...@visulima/package@3.5.5) (2025-05-30)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
package/dist/package-json.cjs
CHANGED
|
@@ -1249,6 +1249,9 @@ const ensurePackages = /* @__PURE__ */ __name(async (packageJson, packages, inst
|
|
|
1249
1249
|
}
|
|
1250
1250
|
nonExistingPackages.push(packageName);
|
|
1251
1251
|
}
|
|
1252
|
+
if (nonExistingPackages.length === 0) {
|
|
1253
|
+
return;
|
|
1254
|
+
}
|
|
1252
1255
|
if (typeof config.confirm?.message === "function") {
|
|
1253
1256
|
config.confirm.message = config.confirm.message(nonExistingPackages);
|
|
1254
1257
|
}
|
package/dist/package-json.mjs
CHANGED
|
@@ -1235,6 +1235,9 @@ const ensurePackages = /* @__PURE__ */ __name(async (packageJson, packages, inst
|
|
|
1235
1235
|
}
|
|
1236
1236
|
nonExistingPackages.push(packageName);
|
|
1237
1237
|
}
|
|
1238
|
+
if (nonExistingPackages.length === 0) {
|
|
1239
|
+
return;
|
|
1240
|
+
}
|
|
1238
1241
|
if (typeof config.confirm?.message === "function") {
|
|
1239
1242
|
config.confirm.message = config.confirm.message(nonExistingPackages);
|
|
1240
1243
|
}
|