@rip-lang/swarm 1.2.81 → 1.2.83

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/package.json +2 -2
  2. package/swarm.rip +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rip-lang/swarm",
3
- "version": "1.2.81",
3
+ "version": "1.2.83",
4
4
  "description": "Parallel job runner with worker threads - setup once, swarm many",
5
5
  "type": "module",
6
6
  "main": "swarm.rip",
@@ -35,7 +35,7 @@
35
35
  "author": "Steve Shreeve <steve.shreeve@gmail.com>",
36
36
  "license": "MIT",
37
37
  "dependencies": {
38
- "rip-lang": ">=3.13.92"
38
+ "rip-lang": ">=3.13.94"
39
39
  },
40
40
  "files": [
41
41
  "swarm.rip",
package/swarm.rip CHANGED
@@ -135,7 +135,7 @@ draw = (state) ->
135
135
  bg("f1bf42") + char.repeat(ycol) # yellow (live)
136
136
  bg("d85140") + " ".repeat(rcol) # red (rest)
137
137
  go(row, len + 5 + wide + 3)
138
- bg("5383ec") + " #{(ppct * 100).toFixed(1)}% " # blue (pct)
138
+ bg("5383ec") + " #{(ppct * 100).toFixed(1)}% " # blue (pct)
139
139
  if done > 0 then bg() + " " + bg("58a65c") + " #{done}/#{jobs} done "
140
140
  if died > 0 then bg() + " " + bg("d85140") + " #{died} died "
141
141
  ].filter(Boolean).join('') + fg() + bg()