Gulp-gulp.src不可见的变量

时间:2019-07-05 09:36:21

标签: variables gulp frontend

我有两个任务。 在第一个中,我将使用文件的路径初始化变量。在第二项任务中,我试图读取变量。如果我使用console.log,它可以正常工作,它将在屏幕上显示该值。 问题是当我尝试将其放置为源路径时:gulp.src([variable])。它不再起作用了。怎么了?

谢谢

gulp.task('tarea', function() {
    return gulp.src(['prueba/**/*.*'])
    .pipe(prompt.prompt([{
    .....
    }], function(){
        variable = 'prueba.html';
    }))
});
gulp.task('tareaMain', ['tarea'], function() {
    console.log(variable);
    //variable= 'prueba.html';
    gulp.src([variable])
});

0 个答案:

没有答案