mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-14 05:07:22 +01:00
12 lines
480 B
JavaScript
12 lines
480 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');
|
|
require('glob').sync('./tasks/gulp-*').forEach(require);
|
|
require('gulp').task('default', ['test']);
|