我是iOS开发人员&目前我正在尝试缩小我的所有html文件。我正在使用gulp&下面是我的gulpfile.js
var gulp = require('gulp');
var htmlmin = require('gulp-html-minifier');
gulp.task('minify', function() {
gulp.src('./*.html')
.pipe(htmlmin({collapseWhitespace: true}))
.pipe(gulp.dest('./dist'))
});
当我试图在终端上运行'gulp'时,我收到了以下错误
Test2s-MacBook-Pro:TestFile test2$ gulp
[14:43:36] Using gulpfile ~/Desktop/TestFile/gulpfile.js
[14:43:36] **Task 'default' is not in your gulpfile**
[14:43:36] Please check the documentation for proper gulpfile formatting
Test2s-MacBook-Pro:TestFile test2$
任何人都可以建议我做错了什么?我也看过这个链接,但没有帮助https://github.com/gulpjs/gulp/issues/1155
请告诉我我做错了什么?
答案 0 :(得分:2)
这是因为您没有提到gulp的默认任务 尝试运行gulp minify命令而不是gulp
或使用
gulp.task('default', ['minify']);