Skip to content
This repository has been archived by the owner on Mar 26, 2018. It is now read-only.

Commit

Permalink
Replace invoke to composeWith
Browse files Browse the repository at this point in the history
  • Loading branch information
ragingwind committed Aug 11, 2014
1 parent db1656b commit a9e4328
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ module.exports = yeoman.generators.Base.extend({
this.template('_locales/en/messages.json', 'app/_locales/en/messages.json', this);
},

permission: function() {
this.invoke('chromeapp:permission', {
permission: function(done) {
this.composeWith('chromeapp:permission', {
options: { manifest: this.manifest }
});
},
Expand Down

0 comments on commit a9e4328

Please sign in to comment.