gulp-concat icon indicating copy to clipboard operation
gulp-concat copied to clipboard

Streaming concat middleware for gulp

Results 13 gulp-concat issues
Sort by recently updated
recently updated
newest added

Hi I have a concat task that concats a series of javascript file defined on an arrray CONFIG.JS_FILES defined like this: ``` 'use strict'; var gulp = require('gulp'); var concat...

We are using gulp-less to build our LESS files, then using gulp-concat to bundle them. When we use concat, errors from LESS compilation are discarded. It seems that gulp-concat builds...

Hey gulp-community, Just going through again and updating dependencies! Sincerely, Bryan Stoner

The README says that the output file "will take the base directory from the first file that passes through it". In practice, the output file [takes its base directory](https://github.com/contra/gulp-concat/blob/c179a8c491047eb980459fea6d0e2fd65d6d0ad1/index.js#L85) from...

``` javascript var gulp = require('gulp'); var concat = require('gulp-concat'); gulp.task(function foo() { return gulp.src('src/*.css', { passthrough: true, }) .pipe(concat('styles.css')) .pipe(gulp.dest('dist/')) ; }); ``` `styles.css` is never written. It does...

Hi everyone, I have also this problem and i haven't got any idea about that how can i fix it. I tried alot but I could not find the solution....

https://github.com/substack/join-stream Open to PRs or I will do this when I have time

Script tasks like ``` a.js + b.js + c.js ==> new1.js // just combile new1.min.js // combile and minify d.js + e.js + f.js ==> new2.js // just combile new2.min.js...

When concating files which are UTF 16 Little Endian (unicode) every other file gets munged a bit. When concatenating files which are UTF 16 Big Endian the same result happens....