mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
17 lines
321 B
JavaScript
17 lines
321 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* The gulp configuration and tasks are splitted
|
|
* into multiple files.
|
|
*
|
|
* (c) 2015 Matthias Hannig
|
|
*/
|
|
|
|
// == Set environment: Choose between 'development' or 'production'
|
|
// TODO: Get build env from environment.
|
|
global.buildEnv = 'development';
|
|
|
|
// == Load gulp config
|
|
require('./gulp/build');
|
|
|