fluncle 0.124.0 → 0.125.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.125.0".trim() ? "0.125.0".trim() : "0.1.0";
|
|
561
561
|
});
|
|
562
562
|
|
|
563
563
|
// src/update-notifier.ts
|
|
@@ -2185,7 +2185,7 @@ function parseVersion2(version) {
|
|
|
2185
2185
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2186
2186
|
var init_version2 = __esm(() => {
|
|
2187
2187
|
init_output();
|
|
2188
|
-
currentVersion2 = "0.
|
|
2188
|
+
currentVersion2 = "0.125.0".trim() ? "0.125.0".trim() : "0.1.0";
|
|
2189
2189
|
});
|
|
2190
2190
|
|
|
2191
2191
|
// ../../packages/registry/src/index.ts
|
|
@@ -3436,6 +3436,7 @@ var init_admin_attention = __esm(() => {
|
|
|
3436
3436
|
"attach-cues": "cues",
|
|
3437
3437
|
distribute: "distribute",
|
|
3438
3438
|
"drip-empty": "clip drip",
|
|
3439
|
+
"label-review": "label",
|
|
3439
3440
|
newsletter: "newsletter",
|
|
3440
3441
|
"post-tiktok": "tiktok",
|
|
3441
3442
|
"post-youtube": "youtube",
|
package/package.json
CHANGED