我正在处理一个项目,该项目有两个独立的js文件夹,分别用于用户(public/js)
和管理员使用(public/admin_stuff/js)
。
我将有两个all.js
文件,一个用于用户部分js文件,另一个用于管理部分js。我怎样才能做到这一点?
如果您正在使用长生不老药,则:
// For admin
mix.scripts([
'admin_js_source_folder/**/*.js',
], 'public/admin_stuff/js/all.js');
// Another
mix.scripts([
'other_folder_js_files/**/*.js',
], 'public/other/js/all.js');
其他情况:
gulp.task('admin', function() {
return gulp.src('admin_stuff/js/**/*.js')
.pipe(concat('all.js'))
.pipe(gulp.dest('public/admin'));
})
gulp.task('other', function() {
return gulp.src('other/js/**/*.js')
.pipe(concat('all.js'))
.pipe(gulp.dest('public/other'));
})
gulp.task('default', ['admin', 'other']);
如果你正在使用laravel 5,我建议你使用长生不老药:https://laravel.com/docs/5.0/elixir