projectinfo/ts/index.ts

28 lines
602 B
TypeScript
Raw Normal View History

2016-02-20 04:05:07 +00:00
/// <reference path="./typings/main.d.ts" />
import plugins = require("./projectinfo.plugins");
var projectinfo:any = {};
//npm
import {ProjectinfoNpm} from "./projectinfo.classes.npm";
export {ProjectinfoNpm} from "./projectinfo.classes.npm";
export let npm = function(cwdArg,optionsArg){
return new ProjectinfoNpm(cwdArg,optionsArg);
2016-02-20 04:05:07 +00:00
};
2016-02-20 05:06:43 +00:00
//quick functions
projectinfo.getName = function(cwdArg){
var localNpm = projectinfo.npm(cwdArg);
if (localNpm.status === "ok"){
return localNpm.name;
}
};
2016-02-20 04:05:07 +00:00
/* TODO
projectinfo.git = function(){
};
projectinfo.mojo = function(){
};
*/