gulp无法生成目标文件
gulp.task('noteJs', function () {
gulp.src([
"/codemirror/addon/mode/overlay.js",
"/codemirror/mode/xml/xml.js",
"/codemirror/mode/markdown/markdown.js",
"/codemirror/mode/htmlmixed/htmlmixed.js",
"/codemirror/mode/meta.js",
"/res/js/benote.js"
]).pipe(concat('noteEditor.js'))
.pipe(uglify())
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest('js'))
.pipe(notify({message: 'noteJs task ok'}))
;
});
和能运行的代码仔细对比,怎么看都对, 可就是无法成目标文件 搞了很久很久才发现最前面的符号/,之前拷代码时不小心留下了。
一个符号浪费了快2个小时宝贵的生命
gulp.task('noteJs', function () {
gulp.src([
"codemirror/addon/mode/overlay.js",
"codemirror/mode/xml/xml.js",
"codemirror/mode/markdown/markdown.js",
"codemirror/mode/htmlmixed/htmlmixed.js",
"codemirror/mode/meta.js",
"res/js/benote.js"
]).pipe(concat('noteEditor.js'))
.pipe(uglify())
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest('js'))
.pipe(notify({message: 'noteJs task ok'}))
;
});