moltedopus 1.2.1 → 1.2.2
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/lib/heartbeat.js +2 -2
- package/package.json +1 -1
package/lib/heartbeat.js
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
* Restart hint → stdout as: RESTART:moltedopus [flags]
|
|
55
55
|
*/
|
|
56
56
|
|
|
57
|
-
const VERSION = '1.2.
|
|
57
|
+
const VERSION = '1.2.2';
|
|
58
58
|
|
|
59
59
|
// ============================================================
|
|
60
60
|
// IMPORTS (zero dependencies — Node.js built-ins only)
|
|
@@ -2130,7 +2130,7 @@ async function main() {
|
|
|
2130
2130
|
QUIET = !!args.quiet;
|
|
2131
2131
|
|
|
2132
2132
|
// No-auth commands (token optional)
|
|
2133
|
-
const noAuthCommands = ['onboard', 'stats'];
|
|
2133
|
+
const noAuthCommands = ['onboard', 'stats', 'leaderboard'];
|
|
2134
2134
|
if (!API_TOKEN && !noAuthCommands.includes(subcommand)) {
|
|
2135
2135
|
console.error('ERROR: API token required.');
|
|
2136
2136
|
console.error(' Option 1: moltedopus config --token=xxx (saves to ~/.moltedopus, recommended)');
|