Files
front/dist/assets/vendor/appear/gulpfile.js
2021-12-28 13:34:18 +01:00

24 lines
453 B
JavaScript

/*eslint no-process-exit:0 */
'use strict';
var gulp = require('gulp');
var path = require('path');
// combine all the gulp tasks
require('fs').readdirSync('./gulp').forEach(function(file) {
if (path.extname(file) === '.js') {
require('./gulp/' + file)(gulp);
}
});
gulp.task('default', function() {
console.log('gulp!');
});
process.on('exit', function() {
if (gulp.fail) {
// return non-zero exit code
process.exit(1);
}
});