Files in my directory:
1-icon.svg
2-icon.svg
3-icon.svg
10-icon.svg
11-icon.svg
12-icon.svg
20-icon.svg
21-icon.svg
22-icon.svg
Gulp src read them as:
1-icon.svg
10-icon.svg
11-icon.svg
12-icon.svg
2-icon.svg
20-icon.svg
21-icon.svg
22-icon.svg
3-icon.svg
I have tried gulp-sort and gulp-order but none of them gave me the exact order of files like my directory.
Any way to do this?
答案 0 :(得分:1)
是的,可以订购与字符串相同的gulp订单文件。要管理订单,您可以使用gulp-sort
插件。这是一个例子,我已经完成
const gulp = require('gulp'),
debug = require('gulp-debug'),
sort = require('gulp-sort'),
path = require('path');
gulp.task('ordering', function() {
return gulp.src('./test/*')
.pipe(debug())
.pipe(sort(customComparator))
.pipe(debug())
.pipe(gulp.dest('./dist'));
});
function customComparator(f1, f2) {
const f1Name = path.basename(f1.path);
const f2Name = path.basename(f2.path);
return Number(f1Name.split('-')[0]) > Number(f2Name.split('-')[0]) ? 1 : -1;
}
看看customComparator
函数,该函数采用文件名的第一部分并在此基础上创建顺序。
gulp-debug
插件仅用于查看控制台中文件的顺序。因此,结果如下所示。您可以在订购前后查看文件列表
$ npx gulp ordering
[18:54:27] Using gulpfile ~/own_projects/untitled/gulpfile.js
[18:54:27] Starting 'ordering'...
[18:54:27] gulp-debug: test/1-icon.svg
[18:54:27] gulp-debug: test/10-icon.svg
[18:54:27] gulp-debug: test/11-icon.svg
[18:54:27] gulp-debug: test/12-icon.svg
[18:54:27] gulp-debug: test/2-icon.svg
[18:54:27] gulp-debug: test/20-icon.svg
[18:54:27] gulp-debug: test/21-icon.svg
[18:54:27] gulp-debug: test/22-icon.svg
[18:54:27] gulp-debug: test/3-icon.svg
[18:54:27] gulp-debug: 9 items
[18:54:27] gulp-debug: test/1-icon.svg
[18:54:27] gulp-debug: test/2-icon.svg
[18:54:27] gulp-debug: test/3-icon.svg
[18:54:27] gulp-debug: test/10-icon.svg
[18:54:27] gulp-debug: test/11-icon.svg
[18:54:27] gulp-debug: test/12-icon.svg
[18:54:27] gulp-debug: test/20-icon.svg
[18:54:27] gulp-debug: test/21-icon.svg
[18:54:27] gulp-debug: test/22-icon.svg
[18:54:27] gulp-debug: 9 items
[18:54:28] Finished 'ordering' after 72 ms