@gesslar/actioneer 0.2.6 → 0.2.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gesslar/actioneer",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Ready? Set?? ACTION!! pew! pew! pew!",
5
5
  "main": "./src/index.js",
6
6
  "type": "module",
@@ -247,7 +247,7 @@ export default class ActionBuilder {
247
247
  async build() {
248
248
  const action = this.#action
249
249
 
250
- if(!action.tag) {
250
+ if(action && !action.tag) {
251
251
  action.tag = this.#tag
252
252
 
253
253
  action.setup.call(action, this)