Gruntfile-print-text.js 193 B

12345678
  1. module.exports = function(grunt) {
  2. grunt.registerTask('print', 'Print the specified text.', function(text) {
  3. console.log('OUTPUT: ' + text);
  4. // console.log(process.cwd());
  5. });
  6. };