@riboseinc/anafero-cli 0.0.35 → 0.0.37

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/build-site.mjs CHANGED
@@ -316121,7 +316121,13 @@ var BrowserBar = function({
316121
316121
  {
316122
316122
  "aria-label": "Loading\u2026",
316123
316123
  minValue: 0,
316124
- isIndeterminate: loadProgress.total - 0.1 < loadProgress.total - loadProgress.done || loadProgress.total - loadProgress.done < 0.1,
316124
+ isIndeterminate: (
316125
+ // Set to indeterminate if:
316126
+ // No total:
316127
+ !loadProgress.total || // Stuck in almost ending:
316128
+ loadProgress.total - 0.1 < loadProgress.done || // Stuck in just beginning:
316129
+ loadProgress.total - loadProgress.done < 0.1
316130
+ ),
316125
316131
  maxValue: loadProgress.total,
316126
316132
  value: loadProgress.done
316127
316133
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@riboseinc/anafero-cli",
3
3
  "type": "module",
4
- "version": "0.0.35",
4
+ "version": "0.0.37",
5
5
  "packageManager": "yarn@4.5.0",
6
6
  "bin": {
7
7
  "build-site": "build-site.mjs"
Binary file
Binary file