Skip to content

Commit

Permalink
Remove async from unimplemented plugin methods
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed May 24, 2019
1 parent a6f9996 commit bc8be35
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/plugin/Plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ class Plugin {
return options[namespace] || {};
}

async init() {}
init() {}
getName() {}
getLatestVersion() {}
getIncrementedVersionCI() {}
async getIncrementedVersion() {}
async beforeBump() {}
async bump() {}
async beforeRelease() {}
async release() {}
getIncrementedVersion() {}
beforeBump() {}
bump() {}
beforeRelease() {}
release() {}

getContext(path) {
const context = Object.assign({}, this.options, this.context);
Expand Down

0 comments on commit bc8be35

Please sign in to comment.