fix issue with CI detection
This commit is contained in:
@ -2,11 +2,10 @@
|
||||
/// <reference path="./npmts.plugins.ts" />
|
||||
/// <reference path="./npmts.cli.ts" />
|
||||
/// <reference path="./npmts.paths.ts" />
|
||||
/// <reference path="./npmts.info.ts" />
|
||||
/// <reference path="./npmts.options.ts" />
|
||||
/// <reference path="./npmts.custom.ts" />
|
||||
/// <reference path="./npmts.default.ts" />
|
||||
|
||||
var plugins = NpmtsPlugins.init();
|
||||
var paths = NpmtsPaths.init();
|
||||
NpmtsInfo.init();
|
||||
NpmtsDefault.init();
|
||||
|
@ -3,14 +3,17 @@
|
||||
module NpmtsDefault {
|
||||
export var init = function() {
|
||||
plugins.gulp.task("defaultTsd",function(cb){
|
||||
plugins.beautylog.log("now installing typings from" + " ts/tsd.json".blue);
|
||||
plugins.g.if(process.env.TRAVIS,
|
||||
if(!process.env.TRAVIS) {
|
||||
plugins.g.tsd({
|
||||
command: 'reinstall',
|
||||
config: paths.tsd
|
||||
}, cb)
|
||||
)
|
||||
;
|
||||
}, cb);
|
||||
plugins.beautylog.log("now installing typings from" + " ts/tsd.json".blue);
|
||||
} else {
|
||||
plugins.beautylog.warn("We are on TRAVIS. Typings will not be installed due to GitHub API restrictions.");
|
||||
plugins.beautylog.log("Make sure the repo tracks " + "typings".blue + " directories")
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
@ -1,12 +0,0 @@
|
||||
/// <reference path="./index.ts" />
|
||||
|
||||
module NpmtsInfo {
|
||||
export var init = function(){
|
||||
if(process.env.TRAVIS){
|
||||
plugins.beautylog.warn("We are on TRAVIS. Typings will not be installed due to GitHub API restrictions.");
|
||||
plugins.beautylog.log("Make sure the repo tracks ting directories")
|
||||
} else {
|
||||
plugins.beautylog.log("We are on a dev machine. Typings will be installed prior to TypeScript compilation.");
|
||||
}
|
||||
}
|
||||
}
|
0
ts/npmts.options.ts
Normal file
0
ts/npmts.options.ts
Normal file
Reference in New Issue
Block a user