Skip to content

Instantly share code, notes, and snippets.

@iamcarrico
Created August 11, 2014 02:24
Show Gist options
  • Select an option

  • Save iamcarrico/4a5464a8a131dbfdffda to your computer and use it in GitHub Desktop.

Select an option

Save iamcarrico/4a5464a8a131dbfdffda to your computer and use it in GitHub Desktop.
'use strict';
var yeoman = require('yeoman-generator');
var PooleUnPublishGenerator = yeoman.generators.Base.extend({
init: function () {
}
});
PooleUnPublishGenerator.prototype.callIt = function() {
this.composeWith('poole:publish', { options: {
unpublish: true
}});
};
module.exports = PooleUnPublishGenerator;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment