Disable broadcasting migration events and bump version

This commit is contained in:
Garrett Mills 2022-03-29 08:46:24 -05:00
parent 1fde692a65
commit 1288e51de0
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@extollo/lib",
"version": "0.9.0",
"version": "0.9.1",
"description": "The framework library that lifts up your code.",
"main": "lib/index.js",
"types": "lib/index.d.ts",

View File

@ -1,5 +1,6 @@
import {Migration} from '../Migration'
import {BaseEvent} from '../../../support/bus'
import {Awaitable} from '../../../util'
/**
* Generic base-class for migration-related events.
@ -10,4 +11,8 @@ export abstract class MigrationEvent extends BaseEvent {
) {
super()
}
shouldBroadcast(): Awaitable<boolean> {
return false
}
}