duron 0.1.0 → 0.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.
@@ -190,6 +190,7 @@ class ActionContext {
190
190
  });
191
191
  }
192
192
  this.#input = job.input ?? {};
193
+ this.step = this.step.bind(this);
193
194
  }
194
195
  get input() {
195
196
  return this.#input;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "duron",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -404,6 +404,7 @@ class ActionContext<TInput extends z.ZodObject, TOutput extends z.ZodObject, TVa
404
404
  })
405
405
  }
406
406
  this.#input = job.input ?? {}
407
+ this.step = this.step.bind(this)
407
408
  }
408
409
 
409
410
  // ============================================================================