gulpfile.js 296 B

1234567891011
  1. var gulp = require('gulp');
  2. var dist = 'dist/';
  3. gulp.task('styles', function(){
  4. return gulp.src('./node_modules/simplemde/dist/simplemde.min.css')
  5. .pipe(gulp.dest(dist))
  6. });
  7. // by default build project and then watch files in order to trigger livereload
  8. gulp.task('default', ['styles']);