add travis
This commit is contained in:
23
ts/index.ts
Normal file
23
ts/index.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
/// <reference path="./typings/main.d.ts" />
|
||||
import plugins = require("./projectinfo.plugins");
|
||||
|
||||
//import classes
|
||||
import ProjectinfoNPM = require("./projectinfo.npm");
|
||||
|
||||
var projectinfo:any = {};
|
||||
|
||||
projectinfo.npm = function(cwdArg){
|
||||
return new ProjectinfoNPM(cwdArg);
|
||||
};
|
||||
|
||||
/* TODO
|
||||
projectinfo.git = function(){
|
||||
|
||||
};
|
||||
|
||||
projectinfo.mojo = function(){
|
||||
|
||||
};
|
||||
*/
|
||||
|
||||
export = projectinfo;
|
||||
Reference in New Issue
Block a user