BorntraegerMarc/ledison-web

View on GitHub
gulp-tasks/build.js

Summary

Maintainability
A
0 mins
Test Coverage
/*eslint-disable */
'use strict';
/*eslint-enable */

module.exports = (gulp) => {
    gulp.task('build', [
        'copy-static',
        'compile-source',
        'compile-stylesheets'
    ]);
};