update dependencies and add typings-global

This commit is contained in:
2016-06-01 01:06:05 +02:00
parent 1e545a2cfb
commit bd3ad78624
17 changed files with 31 additions and 23 deletions

View File

@ -1,4 +1,5 @@
import plugins = require("./smartpath.plugins");
import "typings-global";
import * as plugins from "./smartpath.plugins";
export let isDir = function(pathArg:string){
return !isFile(pathArg);

View File

@ -1,5 +1,5 @@
/// <reference path="typings/main.d.ts" />
import plugins = require("./smartpath.plugins");
import "typings-global";
import * as plugins from "./smartpath.plugins";
/**
* returns the type of the given path. Can be "url" or "local"

View File

@ -1,4 +1,4 @@
/// <reference path="./typings/main.d.ts" />
import "typings-global";
export var beautylog = require ("beautylog");
export var home = require("home");
export var path = require("path");

View File

@ -1,5 +1,5 @@
/// <reference path="typings/main.d.ts" />
import plugins = require("./smartpath.plugins");
import "typings-global";
import * as plugins from "./smartpath.plugins";
/* ------------------------------------------ *
* ------------ helpers --------------------- *