grunt-playlist/Gruntfile.js

23 lines
511 B
JavaScript
Raw Normal View History

module.exports = function(grunt){
// Configuration
grunt.initConfig({
// pass in options to plugin, references to file, etc.
});
// Load plugins
// grunt.loadNpmTasks('')
// Register tasks
grunt.registerTask('run', function(){
// task is a function with name is 'run'
console.log('I am running');
});
grunt.registerTask('sleep', function(){
console.log('I am sleep');
});
grunt.registerTask('all', ['sleep', 'run'])
}