@rip-lang/swarm 1.0.4 → 1.0.6

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 +1 -1
  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.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Parallel job runner with worker threads — setup once, swarm many",
5
5
  "type": "module",
6
6
  "main": "swarm.rip",
package/swarm.rip CHANGED
@@ -152,7 +152,7 @@ export swarm = (opts = {}) ->
152
152
  _workerPerform = opts.perform
153
153
  return
154
154
 
155
- { Worker } = await import('worker_threads')
155
+ { Worker } = import!('worker_threads')
156
156
 
157
157
  # parse CLI options
158
158
  args = process.argv.slice(2)