fyn 3.1.0 → 3.1.1

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/dist/fyn.mjs +5 -1
  2. package/package.json +1 -1
package/dist/fyn.mjs CHANGED
@@ -10059,7 +10059,11 @@ var VisualLogger = class VisualLogger {
10059
10059
  if (this._items.indexOf(name) >= 0) return this;
10060
10060
  this._getItemKeys().forEach((k) => {
10061
10061
  const itemOpt = this._itemOptions[k];
10062
- if (itemOpt._spinning) itemOpt._spinning = SPIN_STARTED;
10062
+ if (itemOpt._spinning) {
10063
+ itemOpt._spinning = SPIN_STARTED;
10064
+ itemOpt.spinIx = 0;
10065
+ this._lines[this._items.indexOf(itemOpt.name)] = this._renderLine(itemOpt);
10066
+ }
10063
10067
  });
10064
10068
  const itemOpt = {
10065
10069
  spinInterval: DEFAULT_SPINNER_INTERVAL,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fyn",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "fyn is the NPM for fynpo -- a zero setup monorepo tool",
5
5
  "main": "./bin/index.mjs",
6
6
  "homepage": "https://github.com/jchip/fynjs/tree/main/packages/fyn",