add url-join node module.

This commit is contained in:
isidor 2015-10-26 11:26:06 +01:00
parent 84912faa3d
commit 9c95d6d110
2 changed files with 6 additions and 0 deletions

View file

@ -39,6 +39,7 @@
"osenv": "^0.1.3",
"read": "^1.0.7",
"tmp": "0.0.27",
"url-join": "0.0.1",
"vso-node-api": "^0.4.2",
"yazl": "^2.2.2"
},

5
typings/url-join/url-join.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
declare module 'url-join' {
function join(...args: string[]): string;
export = join;
}