mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
import gulp from 'gulp';
|
|
import gulpConcat from 'gulp-concat';
|
|
import paths from '../mconfig.json';
|
|
|
|
function concat() {
|
|
return gulp
|
|
.src([
|
|
`${paths.scripts.vendors.src}*.js`
|
|
])
|
|
.pipe(gulpConcat(`${paths.scripts.vendors.main}.js`))
|
|
.pipe(gulp.dest(paths.scripts.dest));
|
|
}
|
|
|
|
export default concat;
|