gpt4 book ai didi

javascript - 不使用 run() 编写 gulpfile.js

转载 作者:行者123 更新时间:2023-11-29 19:43:00 26 4
gpt4 key购买 nike

我是 JavaScript 开发领域的新手,目前正在建立一个正常的工作流程。不过,我在理解 Gulp 的工作原理时遇到了一些麻烦。我已经使用 npm 安装了我的依赖项,并根据我的能力编写了一个 gulpfile。

var gulp = require('gulp'), 
minifycss = require('gulp-minify-css'),
autoprefixer = require('gulp-autoprefixer'),
uglify = require('gulp-uglify'),
minifyhtml = require('gulp-minify-html'),
sass = require('sass'),
notify = require('gulp-notify');

gulp.task('js', function() {
return gulp.src('js/**/*.js')
.pipe(uglify({
outSourceMap: true
}))
.pipe(gulp.dest('dist/assets/js'));
});

//This task should compile my scss-files into corresponding css-files in the css-folder.
//If possible I would like to have it automatically detect which folder the file is in.
//Ie: scss/user/main.scss should compile to css/user/main.css
gulp.task('sass', function() {
return gulp.src('scss/*.scss')
.pipe(sass())
.pipe(gulp.dest('css'));
});

gulp.task('css', function() {
return gulp.src('css/*.css')
.pipe(autoprefixer('last 2 version', 'safari 5', 'ie 8', 'ie 9', 'opera 12.1', 'ios 6', 'android 4'))
.pipe(minifycss())
.pipe(gulp.dest('dist/assets/css'));
});

//This task should check all html-files in directory, and then minify them into corresponding folders in dist/assets/html.
//Ie: html/user/index.html should be minified into dist/assets/html/user/index.html.
gulp.task('html', function() {
return gulp.src('html/*/*.html')
.pipe(minifyhtml())
.pipe(gulp.dest('dist/assets/html'));
});

//I know run() is depreceated. What to do? How should these be written?
gulp.task('default', function() {
gulp.watch('scss/*.scss', function() {
gulp.run('sass')
});
gulp.watch(['html/user/*.html', 'html/support/*.html'], function() {
gulp.run('html');
});
gulp.watch('js/**/*.js', function() {
gulp.run('js');
});
gulp.watch('css/*.css', function() {
gulp.run('css');
});
});

虽然它并没有像我想要的那样真正起作用,并且在不知道要搜索什么的情况下进行谷歌搜索真的很难。我已经阅读了几篇博客,但遗憾的是一直无法掌握如何去做。我知道我不应该使用 run(),但我应该如何编写代码?

如果有人能用简单的英语解释什么是依赖,我将不胜感激。在海上也是如此。

感谢您抽出宝贵时间。

安东

最佳答案

您可以使用内置的 gulp.watch 方法。 gulp 的好处之一是您可以将常见任务声明为函数,然后重用它们。

这是一个语法示例:

var paths = {
scripts: './lib/**/*.js',
tests: './test/**/*.js'
};

function lint(src){
return gulp.src(src)
.pipe(jshint('.jshintrc'))
.pipe(jshint.reporter(stylish));
}

gulp.task('lint', function () {
lint([paths.scripts, paths.tests]);
});

gulp.task('test', function() {
// put your test pipeline here
});

gulp.task('watch', function () {

// watch and lint any files that are added or changed
gulp.watch([paths.scripts, paths.tests, paths.demo], function(event){
if(event.type !== 'deleted') {
lint([event.path]);
}
});

// run all the tests when something changes
gulp.watch([paths.scripts, paths.tests], ['test']);

});

关于javascript - 不使用 run() 编写 gulpfile.js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21863151/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com