This commit is contained in:
Nisheet Jain 2015-02-04 05:53:14 +00:00
Родитель 2a6c42da46
Коммит f255a30404
1 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -1,4 +1,4 @@
/*starter gulpfile, bootstraps compiling gulp-compile.ts and runs it*/
/* starter gulpfile, bootstraps compiling gulp-compile.ts and runs it */
var exec = require("child_process").exec,
fs = require("fs"),
path = require('path'),
@ -23,9 +23,11 @@ gulp.task("install", function (callback) {
callback();
});
////////////////// to add additional gulp tasks, add gulpfile in folder and reference it below
// for example: require('./src/compile/gulpfile');
///////////////////////
/*
to add additional gulp tasks, add gulpfile in folder and reference it below
for example: require('./src/compile/gulpfile');
*/
var gulpMain = path.join(buildConfig.bin, "gulpmain.js");
if (fs.existsSync(gulpMain)) {
require(gulpMain);