Created
August 11, 2014 02:24
-
-
Save iamcarrico/4a5464a8a131dbfdffda to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| '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