Version 1
[yaffs-website] / node_modules / grunt-legacy-util / test / fixtures / Gruntfile-print-text.js
diff --git a/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-print-text.js b/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-print-text.js
new file mode 100644 (file)
index 0000000..910197d
--- /dev/null
@@ -0,0 +1,8 @@
+module.exports = function(grunt) {
+
+  grunt.registerTask('print', 'Print the specified text.', function(text) {
+    console.log('OUTPUT: ' + text);
+    // console.log(process.cwd());
+  });
+
+};