-
-
Save jonathanablanida/e281bb61ccf3aebf403c to your computer and use it in GitHub Desktop.
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
// ./Gruntfile.js | |
module.exports = function(grunt) { | |
grunt.loadTasks('hoge'); | |
}; |
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
$ grunt hoge | |
`hoge/xxx.js` is loaded! | |
Running "hoge" task | |
Hello, hoge world! | |
Done, without errors. |
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
// ./hoge/xxx.js | |
module.exports = function(grunt) { | |
console.log('`hoge/xxx.js` is loaded!'); | |
grunt.registerTask('hoge', function() { | |
console.log('Hello, hoge world!'); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment