2016-03-12 09:21:16 +00:00
|
|
|
"use strict";
|
2016-05-25 03:23:48 +00:00
|
|
|
require("typings-global");
|
2016-03-23 13:12:58 +00:00
|
|
|
exports.beautylog = require("beautylog");
|
|
|
|
exports.fs = require("fs-extra");
|
|
|
|
exports.gulp = require("gulp");
|
|
|
|
exports.g = {
|
2016-04-02 17:09:11 +00:00
|
|
|
codecov: require("gulp-codecov"),
|
2016-03-23 13:12:58 +00:00
|
|
|
gFunction: require("gulp-function"),
|
|
|
|
istanbul: require("gulp-istanbul"),
|
|
|
|
jsdoc3: require("gulp-jsdoc3"),
|
|
|
|
mocha: require("gulp-mocha"),
|
2016-05-01 19:15:52 +00:00
|
|
|
replace: require("gulp-replace"),
|
2016-03-23 13:12:58 +00:00
|
|
|
sourcemaps: require("gulp-sourcemaps"),
|
|
|
|
typescript: require("gulp-typescript"),
|
|
|
|
typings: require("gulp-typings")
|
2016-02-19 23:53:23 +00:00
|
|
|
};
|
2016-04-30 09:55:42 +00:00
|
|
|
exports.lodashObject = require('lodash/fp/object');
|
2016-03-23 13:12:58 +00:00
|
|
|
exports.merge2 = require("merge2");
|
|
|
|
exports.projectinfo = require("projectinfo");
|
|
|
|
exports.path = require("path");
|
|
|
|
exports.Q = require("q");
|
|
|
|
exports.shelljs = require("shelljs");
|
|
|
|
exports.smartci = require("smartci");
|
|
|
|
exports.smartcli = require("smartcli");
|
2016-03-29 23:32:41 +00:00
|
|
|
exports.smartcov = require("smartcov");
|
2016-03-23 13:12:58 +00:00
|
|
|
exports.smartenv = require("smartenv");
|
|
|
|
exports.smartfile = require("smartfile");
|
|
|
|
exports.smartpath = require("smartpath");
|
2016-05-01 19:15:52 +00:00
|
|
|
exports.smartstring = require("smartstring");
|
2016-04-30 09:55:42 +00:00
|
|
|
exports.sourceMapSupport = require("source-map-support").install(); // this is required to display errors correctly during testing
|