Created
February 2, 2017 20:31
-
-
Save mattrothenberg/e6310e413ccef1deb48fd91c2cc60c6e to your computer and use it in GitHub Desktop.
Runway CLI Step #1
This file contains 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
#!/usr/bin/env node | |
var program = require('commander'); | |
program | |
.command('new-styleguide <stylesheet>') | |
.description('Creates a new Runway styleguide, given a .CSS or .SCSS file. Returns the URL to your styleguide.') | |
.action(newStyleguide); | |
function newStyleguide(cmd) { | |
// nothing to see here | |
} | |
program.parse(process.argv); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment