2021-03-23 10:58:45 +11:00
|
|
|
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'])
|
|
|
|
}
|