mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
var gulp = require('gulp');
|
|
var chug = require('gulp-chug');
|
|
|
|
gulp.task('admin', function() {
|
|
gulp.src('src/Sylius/Bundle/AdminBundle/Gulpfile.js', { read: false })
|
|
.pipe(chug())
|
|
;
|
|
});
|
|
|
|
gulp.task('shop', function() {
|
|
gulp.src('src/Sylius/Bundle/ShopBundle/Gulpfile.js', { read: false })
|
|
.pipe(chug())
|
|
;
|
|
});
|
|
|
|
gulp.task('default', ['admin', 'shop']);
|