fluncle 0.187.0 → 0.188.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/bin/fluncle.mjs +2 -2
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -561,7 +561,7 @@ function parseVersion(version) {
|
|
|
561
561
|
var currentVersion;
|
|
562
562
|
var init_version = __esm(() => {
|
|
563
563
|
init_output();
|
|
564
|
-
currentVersion = "0.
|
|
564
|
+
currentVersion = "0.188.0".trim() ? "0.188.0".trim() : "0.1.0";
|
|
565
565
|
});
|
|
566
566
|
|
|
567
567
|
// src/update-notifier.ts
|
|
@@ -2442,7 +2442,7 @@ function parseVersion2(version) {
|
|
|
2442
2442
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2443
2443
|
var init_version2 = __esm(() => {
|
|
2444
2444
|
init_output();
|
|
2445
|
-
currentVersion2 = "0.
|
|
2445
|
+
currentVersion2 = "0.188.0".trim() ? "0.188.0".trim() : "0.1.0";
|
|
2446
2446
|
});
|
|
2447
2447
|
|
|
2448
2448
|
// ../../packages/registry/src/index.ts
|
package/package.json
CHANGED