Files
habitica/gulpfile.js
Matteo Pagliazzi 99f50f825a Old Client Cleanup (#9141)
* move emails images to website/static/emails and remove old files

* remove old client tests

* remove more files

* add sprites back

* cleanup gulp

* cleanup gulp

* remove old files

* more fixes

* pin bootstrap-vue

* disable old test

* remove old tasks

* fix apidoc
2017-10-12 16:44:28 +02:00

19 lines
641 B
JavaScript

/*
* Note: You probably don't need to edit this file. Instead, add your gulp
* tasks with the ./tasks directory, where tasks are grouped by their
* particular purpose. If you feel like your task doesn't fit within the
* existing files, feel free to create a "gulp-thing.js" file within that
* directory, and it will automatically be included.
*/
require('babel-register');
if (process.env.NODE_ENV === 'production') {
require('./gulp/gulp-apidoc');
require('./gulp/gulp-build');
require('./gulp/gulp-bootstrap');
} else {
require('glob').sync('./gulp/gulp-*').forEach(require);
require('gulp').task('default', ['test']);
}