what I want to archive with Gulp is:
- For example I am currently editing
editing.js
- If it has been changed/saved, then take
base1.js
,base2.js
,base3.js
out, concat them with myediting.js
in order likebase1.js
,base2.js
,base3.js
,editing.js
- Minify and uglify them
Finally rename this file with extension like 'editing.min.js'.
gulp.task('minify-js', function(){ gulp.src('static/src/*.js') .pipe(concat('static/src/base.js')) .pipe(uglify()) .pipe(gulp.dest('static/dist')); });
And in my case I have multiple source file to be concatenated to multiple bundled files.
What I am failing to archive is to rename to the filename I am currently editing, e.g ex1.js
to ex1.min.js
, it always bundled into one only file.
New to Gulp, hope some help, thanks!!
If I understand correctly, something like this should do it:
As you can see, there's no need to rename because
gulp-concat
already requires you to specify an output filename.EDIT: here's another take. It watches for changes to any
.js
files (with some exclusions; instead of using**/*.js
you may be able to specify a particular directory where your source files live to limit to amount of possible matches). When a file changes, it will concatenate thebase*.js
files and the file that was changed, and use the filename of the changed file as a base for the minified filename (foo.js
→foo.min.js
):