mirror of
https://github.com/Mibew/mibew.git
synced 2025-02-07 16:24:43 +03:00
parent
da54de32b9
commit
ee492a0c23
@ -216,8 +216,8 @@ gulp.task('pack-sources', ['composer-install'], function() {
|
|||||||
.pipe(gulp.dest('release'));
|
.pipe(gulp.dest('release'));
|
||||||
});
|
});
|
||||||
|
|
||||||
// Builds all the sources
|
// Performs all tasks in the correct order.
|
||||||
gulp.task('default', function(callback) {
|
gulp.task('prepare-release', function(callback) {
|
||||||
runSequence(
|
runSequence(
|
||||||
['phpcs', 'js', 'chat-styles', 'page-styles', 'generate-pot'],
|
['phpcs', 'js', 'chat-styles', 'page-styles', 'generate-pot'],
|
||||||
'pack-sources',
|
'pack-sources',
|
||||||
@ -225,6 +225,15 @@ gulp.task('default', function(callback) {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Builds the sources
|
||||||
|
gulp.task('default', function(callback) {
|
||||||
|
runSequence(
|
||||||
|
['js', 'chat-styles', 'page-styles'],
|
||||||
|
'pack-sources',
|
||||||
|
callback
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads and prepare js file for a client side application with the specified
|
* Loads and prepare js file for a client side application with the specified
|
||||||
|
Loading…
Reference in New Issue
Block a user