From 778f057d874865948a9ff94285fd096b9225ac79 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 1 Jul 2016 05:44:34 +0200 Subject: [PATCH] fix --- dist/npmts.plugins.d.ts | 2 +- package.json | 5 ++--- ts/npmts.plugins.ts | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/dist/npmts.plugins.d.ts b/dist/npmts.plugins.d.ts index 6b55acc..48e6717 100644 --- a/dist/npmts.plugins.d.ts +++ b/dist/npmts.plugins.d.ts @@ -22,4 +22,4 @@ export import smartfile = require("smartfile"); export import smartpath = require("smartpath"); export import smartstring = require("smartstring"); export declare let sourceMapSupport: any; -export import tsn = require("tsn"); +export declare let tsn: any; diff --git a/package.json b/package.json index e8b9921..7563f54 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,7 @@ "setupCheck": "(git clone https://gitlab.com/sandboxzone/sandbox-npmts.git test/)", "check": "(cd test && node ../dist/index.js)", "checkVersion": "(cd test/ && node ../dist/index.js -v)", - "checkNoTest": "(cd test && node ../dist/index.js --notest)", - "install": "(mkdir test/)" + "checkNoTest": "(cd test && node ../dist/index.js --notest)" }, "repository": { "type": "git", @@ -56,7 +55,7 @@ "smartpath": "3.2.2", "smartstring": "^2.0.10", "source-map-support": "^0.4.1", - "tsn": "^1.0.3", + "tsn": "^1.0.4", "typescript": "^2.0.0-dev.20160630", "typings-global": "*" }, diff --git a/ts/npmts.plugins.ts b/ts/npmts.plugins.ts index 8d42322..529ec86 100644 --- a/ts/npmts.plugins.ts +++ b/ts/npmts.plugins.ts @@ -22,4 +22,4 @@ export import smartfile = require("smartfile"); export import smartpath = require("smartpath"); export import smartstring = require("smartstring"); export let sourceMapSupport = require("source-map-support").install(); // this is required to display errors correctly during testing -export import tsn = require("tsn"); \ No newline at end of file +export let tsn = require("tsn"); \ No newline at end of file