Gulp:如何阅读文件夹名称?

时间:2016-03-25 18:32:34

标签: javascript build gulp build-process gulp-folders

我正在重构我的Gulp构建过程,因此用户无需输入V=1.2.88等。

相反,我希望用户只需输入major gulp buildminor gulp buildpatch gulp build。那当然会迭代版本号。

为了使其工作,我需要gulp来读取上次创建的构建的文件夹名称:

enter image description here

My Current Gulp任务生成版本号:

var version = '';
var env = process.env.V; // V={version number} ie: V=1.0.1 gulp build

gulp.task('version', function() {
    return printOut(env);
});

function errorlog(err) {
    console.log(err.message);
    this.emit('end');
}

function printOut(ver) {
    gutil.log(gutil.colors.blue.bold('Last build: '+paths.last));
    version = ver;
    if (version === undefined) {
        version = '0.0.0';
    }
    gutil.log(gutil.colors.blue.bold('##################################################'));
    gutil.log(gutil.colors.blue.bold('         Building Dashboard version '+version));
    gutil.log(gutil.colors.green.bold('~~           All change is detectable           ~~'));
    gutil.log(gutil.colors.blue.bold('##################################################'));
}

任何人都知道如何在Gulp中实现这一目标?

这是我到目前为止发现的 Gulp-folders

因此,使用Gulp-folders插件创建了以下首先运行的任务:

    gulp.task('build:getLastBuild', folders(paths.lastBuild, function(folder) {
    console.log( 'Last version number is: '+folder);
    return lastVersion = folder;
    //This will loop over all folders inside pathToFolder main, secondary
    //Return stream so gulp-folders can concatenate all of them
    //so you still can use safely use gulp multitasking
    // return gutil.colors.blue.bold('Last build folder: '+folder);
    // return gulp.src(path.join(paths.lastBuild, folder))
    //     .pipe(console.log(' Getting last version number: '+folder))
    //     .pipe(lastVersion = folder);
}));

现在,当我运行Build时,请在下面查看!我在console.log中获取了该文件夹的名称,但是我的进程出错了:(

  

TypeError:e.pipe不是函数

enter image description here

2 个答案:

答案 0 :(得分:2)

我不是完全得到关于未成年人/专业的部分,但关于目录列表,您可以执行以下操作:

var fs = require('fs'),
    gulp = require('gulp');

gulp.task('default', function() {
    var dirs = fs.readdirSync('./build/assets');
    console.log(dirs);
    // do something with your directories
})

// and the async version:
gulp.task('async', function() {
    var dirs = [];
    var print = function(err, files) {
        // do something with your directories
        console.log(files)
    };

    fs.readdir('./build/assets', print);
})

答案 1 :(得分:1)

知道了!虽然我承认它有点粗糙,但我用google搜索节点readdir并找到了__dirname console.log(__dirname);

因此,我在下面创建了变量和任务:

var fs   = require('fs'),
    path = require('path');

gulp.task('build:getLastBuild', function() {
    return fs.readdirSync(paths.lastBuild).filter(function(file) {
        console.log(' build:getLastBuild: '+file);
        if (file != 'static') {
            lastVersion = file;
        }
        else {
            console.log('  lastVersion: '+lastVersion);
        }
    });
}); 

所以现在得到这个!现在我有一个字符串,当用户运行构建过程时,我可以操作它以增加版本号。

enter image description here