Skip to content

Instantly share code, notes, and snippets.

@fdaciuk
Created August 14, 2013 13:29
Show Gist options
  • Save fdaciuk/6231017 to your computer and use it in GitHub Desktop.
Save fdaciuk/6231017 to your computer and use it in GitHub Desktop.
Gruntfile para rodar o beautiful-docs
module.exports = function( grunt ) {
grunt.initConfig({
coffee : {
compile : {
files : {
'lib/command.js' : 'src/command.coffee',
'lib/generator.js' : 'src/generator.coffee',
'lib/index.js' : 'src/index.coffee',
'lib/manifest.js' : 'src/manifest.js'
}
}
}
});
grunt.loadNpmTasks( 'grunt-contrib-coffee' );
grunt.registerTask( 'default', [ 'coffee' ] );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment