You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
193 B

  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. };