TheIronYard--Orlando / FEE--2015--SPRING

Class projects for the Front-End Engineering cohort of @TheIronYard--Orlando for Spring 2015
Creative Commons Zero v1.0 Universal
13 stars 7 forks source link

Assignment 30: Angularize me, Cap'n! #335

Closed al-the-x closed 9 years ago

al-the-x commented 9 years ago
var gulp = require('gulp');

gulp.task('hello', function(){
  console.log('Hello, Gulp!');
});

Watch this!

gulp.task('hello:watch', function(){
  gulp.watch('gulpfile.js', [ 'hello' ]);
});