@boost/core
Version:
Robust pipeline for creating dev tools that separate logic into routines and tasks.
18 lines (17 loc) • 489 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const common_1 = require("@boost/common");
exports.DEFAULT_PLUGIN_PRIORITY = 100;
class Plugin extends common_1.Contract {
constructor() {
super(...arguments);
this.moduleName = '';
this.name = '';
this.priority = exports.DEFAULT_PLUGIN_PRIORITY;
}
/**
* Called once the plugin has been loaded by the tool.
*/
bootstrap() { }
}
exports.default = Plugin;