gulpfile.js 202 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 const gulp = require('gulp'); const plugins = require('gulp-load-plugins')(); const _ = require('lodash'); /** * hello world */ gulp.task('default', function () { console.log('hello world !'); });