Skip to content

Instantly share code, notes, and snippets.

@chocksaway
Created April 25, 2016 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chocksaway/7ee7f163fa4505a70cc918ad09af6043 to your computer and use it in GitHub Desktop.
Save chocksaway/7ee7f163fa4505a70cc918ad09af6043 to your computer and use it in GitHub Desktop.
A very simple gulp task runner
var gulp = require('gulp'),
gutil = require('gulp-util');
// create a default task and just log a message
gulp.task('default', function() {
return gutil.log('Gulp is running!')
});
@chocksaway
Copy link
Author

Copy and Paste to gulpfile.js

The run gulp on the cli.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment