anorgatarrak-wordpress-theme/node_modules/grunt-legacy-util/test/fixtures/Gruntfile-print-text.js

9 lines
193 B
JavaScript
Raw Permalink Normal View History

module.exports = function(grunt) {
grunt.registerTask('print', 'Print the specified text.', function(text) {
console.log('OUTPUT: ' + text);
// console.log(process.cwd());
});
};