dankgrinder 7.82.0 → 7.83.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.
Files changed (2) hide show
  1. package/lib/terminal.js +4 -1
  2. package/package.json +1 -1
package/lib/terminal.js CHANGED
@@ -192,7 +192,10 @@ class Terminal {
192
192
  this.phaseDone = 0;
193
193
  this.phaseTotal = 0;
194
194
  this.phaseFrame = 0;
195
- if (!READY) return;
195
+ if (!READY) {
196
+ process.stdout.write(`\n ⏳ ${name}\n`);
197
+ return;
198
+ }
196
199
  if (this.phaseTimer) clearInterval(this.phaseTimer);
197
200
  this.phaseTimer = setInterval(() => {
198
201
  this.phaseFrame = (this.phaseFrame + 1) % SPIN_DOTS.length;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dankgrinder",
3
- "version": "7.82.0",
3
+ "version": "7.83.0",
4
4
  "description": "Dank Memer automation engine — grind coins while you sleep",
5
5
  "bin": {
6
6
  "dankgrinder": "bin/dankgrinder.js"