2016-03-12 10:21:16 +01:00
|
|
|
"use strict";
|
2016-05-19 22:11:18 +02:00
|
|
|
/// <reference path="./typings/index.d.ts" />
|
2016-03-23 14:12:58 +01:00
|
|
|
exports.beautylog = require("beautylog");
|
|
|
|
exports.fs = require("fs-extra");
|
|
|
|
exports.gulp = require("gulp");
|
|
|
|
exports.g = {
|
2016-04-02 19:09:11 +02:00
|
|
|
codecov: require("gulp-codecov"),
|
2016-03-23 14:12:58 +01:00
|
|
|
gFunction: require("gulp-function"),
|
|
|
|
istanbul: require("gulp-istanbul"),
|
|
|
|
jsdoc3: require("gulp-jsdoc3"),
|
|
|
|
mocha: require("gulp-mocha"),
|
2016-05-01 21:15:52 +02:00
|
|
|
replace: require("gulp-replace"),
|
2016-03-23 14:12:58 +01:00
|
|
|
sourcemaps: require("gulp-sourcemaps"),
|
|
|
|
typescript: require("gulp-typescript"),
|
|
|
|
typings: require("gulp-typings")
|
2016-02-20 00:53:23 +01:00
|
|
|
};
|
2016-04-30 11:55:42 +02:00
|
|
|
exports.lodashObject = require('lodash/fp/object');
|
2016-03-23 14:12:58 +01: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-30 01:32:41 +02:00
|
|
|
exports.smartcov = require("smartcov");
|
2016-03-23 14:12:58 +01:00
|
|
|
exports.smartenv = require("smartenv");
|
|
|
|
exports.smartfile = require("smartfile");
|
|
|
|
exports.smartpath = require("smartpath");
|
2016-05-01 21:15:52 +02:00
|
|
|
exports.smartstring = require("smartstring");
|
2016-04-30 11:55:42 +02:00
|
|
|
exports.sourceMapSupport = require("source-map-support").install(); // this is required to display errors correctly during testing
|