910197dd93740e7b6f682d0f3b4f680eea5731b9
[yaffs-website] / node_modules / grunt-legacy-util / test / fixtures / Gruntfile-print-text.js
1 module.exports = function(grunt) {
2
3   grunt.registerTask('print', 'Print the specified text.', function(text) {
4     console.log('OUTPUT: ' + text);
5     // console.log(process.cwd());
6   });
7
8 };