mirror of
https://github.com/jbcr/SyliusElasticsearchPlugin.git
synced 2026-03-24 00:42:08 +01:00
61 lines
2.0 KiB
JavaScript
Executable File
61 lines
2.0 KiB
JavaScript
Executable File
import chug from 'gulp-chug';
|
|
import gulp from 'gulp';
|
|
import yargs from 'yargs';
|
|
|
|
const { argv } = yargs
|
|
.options({
|
|
rootPath: {
|
|
description: '<path> path to public assets directory',
|
|
type: 'string',
|
|
requiresArg: true,
|
|
required: false,
|
|
},
|
|
nodeModulesPath: {
|
|
description: '<path> path to node_modules directory',
|
|
type: 'string',
|
|
requiresArg: true,
|
|
required: false,
|
|
},
|
|
});
|
|
|
|
const config = [
|
|
'--rootPath',
|
|
argv.rootPath || '../../../../../../../tests/Application/public/assets',
|
|
'--nodeModulesPath',
|
|
argv.nodeModulesPath || '../../../../../../../tests/Application/node_modules',
|
|
];
|
|
|
|
export const buildAdmin = function buildAdmin() {
|
|
return gulp.src('../../vendor/sylius/sylius/src/Sylius/Bundle/AdminBundle/gulpfile.babel.js', { read: false })
|
|
.pipe(chug({ args: config, tasks: 'build' }));
|
|
};
|
|
buildAdmin.description = 'Build admin assets.';
|
|
|
|
export const watchAdmin = function watchAdmin() {
|
|
return gulp.src('../../vendor/sylius/sylius/src/Sylius/Bundle/AdminBundle/gulpfile.babel.js', { read: false })
|
|
.pipe(chug({ args: config, tasks: 'watch' }));
|
|
};
|
|
watchAdmin.description = 'Watch admin asset sources and rebuild on changes.';
|
|
|
|
export const buildShop = function buildShop() {
|
|
return gulp.src('../../vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/gulpfile.babel.js', { read: false })
|
|
.pipe(chug({ args: config, tasks: 'build' }));
|
|
};
|
|
buildShop.description = 'Build shop assets.';
|
|
|
|
export const watchShop = function watchShop() {
|
|
return gulp.src('../../vendor/sylius/sylius/src/Sylius/Bundle/ShopBundle/gulpfile.babel.js', { read: false })
|
|
.pipe(chug({ args: config, tasks: 'watch' }));
|
|
};
|
|
watchShop.description = 'Watch shop asset sources and rebuild on changes.';
|
|
|
|
export const build = gulp.parallel(buildAdmin, buildShop);
|
|
build.description = 'Build assets.';
|
|
|
|
gulp.task('admin', buildAdmin);
|
|
gulp.task('admin-watch', watchAdmin);
|
|
gulp.task('shop', buildShop);
|
|
gulp.task('shop-watch', watchShop);
|
|
|
|
export default build;
|