fluncle 0.119.0 → 0.120.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 +3 -2
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -557,7 +557,7 @@ function parseVersion(version) {
|
|
|
557
557
|
var currentVersion;
|
|
558
558
|
var init_version = __esm(() => {
|
|
559
559
|
init_output();
|
|
560
|
-
currentVersion = "0.
|
|
560
|
+
currentVersion = "0.120.0".trim() ? "0.120.0".trim() : "0.1.0";
|
|
561
561
|
});
|
|
562
562
|
|
|
563
563
|
// src/update-notifier.ts
|
|
@@ -2255,7 +2255,7 @@ function parseVersion2(version) {
|
|
|
2255
2255
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2256
2256
|
var init_version2 = __esm(() => {
|
|
2257
2257
|
init_output();
|
|
2258
|
-
currentVersion2 = "0.
|
|
2258
|
+
currentVersion2 = "0.120.0".trim() ? "0.120.0".trim() : "0.1.0";
|
|
2259
2259
|
});
|
|
2260
2260
|
|
|
2261
2261
|
// ../../packages/registry/src/index.ts
|
|
@@ -3468,6 +3468,7 @@ var init_admin_attention = __esm(() => {
|
|
|
3468
3468
|
"attach-cues": "cues",
|
|
3469
3469
|
distribute: "distribute",
|
|
3470
3470
|
"drip-empty": "clip drip",
|
|
3471
|
+
newsletter: "newsletter",
|
|
3471
3472
|
"post-tiktok": "tiktok",
|
|
3472
3473
|
"post-youtube": "youtube",
|
|
3473
3474
|
submission: "submission",
|
package/package.json
CHANGED