fluncle 0.102.0 → 0.103.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 -3
- 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.103.0".trim() ? "0.103.0".trim() : "0.1.0";
|
|
561
561
|
});
|
|
562
562
|
|
|
563
563
|
// src/update-notifier.ts
|
|
@@ -2205,7 +2205,7 @@ function parseVersion2(version) {
|
|
|
2205
2205
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2206
2206
|
var init_version2 = __esm(() => {
|
|
2207
2207
|
init_output();
|
|
2208
|
-
currentVersion2 = "0.
|
|
2208
|
+
currentVersion2 = "0.103.0".trim() ? "0.103.0".trim() : "0.1.0";
|
|
2209
2209
|
});
|
|
2210
2210
|
|
|
2211
2211
|
// ../../packages/registry/src/index.ts
|
|
@@ -8039,7 +8039,7 @@ function addAdminCommands(program2) {
|
|
|
8039
8039
|
artists.action(() => {
|
|
8040
8040
|
artists.outputHelp();
|
|
8041
8041
|
});
|
|
8042
|
-
artists.command("follow").description("Auto-follow high-confidence artists on
|
|
8042
|
+
artists.command("follow").description("Auto-follow high-confidence artists on YouTube (drains the queue)").option("--dry-run", "Report who WOULD be followed without calling the platform", false).option("--limit <limit>", "Max artists to follow this run", "20").option("--json", "Print JSON", false).action(async (options) => {
|
|
8043
8043
|
const { followArtistsCommand: followArtistsCommand2 } = await Promise.resolve().then(() => (init_admin_artists(), exports_admin_artists));
|
|
8044
8044
|
await runFollowArtists(options, followArtistsCommand2);
|
|
8045
8045
|
});
|
package/package.json
CHANGED