fix: error

This commit is contained in:
chenos 2024-11-29 14:20:19 +08:00
parent 5458829e43
commit be4e7b79c1

View File

@ -248,13 +248,6 @@ export abstract class Plugin<O = any> implements PluginInterface {
return results; return results;
} }
private async getPluginBasePath() {
if (!this.options.packageName) {
return;
}
return getPluginBasePath(this.options.packageName);
}
} }
export default Plugin; export default Plugin;