update tsn dependency and by that support Decorators and runtime type checking through reflect metadata API

This commit is contained in:
2016-09-14 13:16:36 +02:00
parent b2d8cb53f3
commit 2a0a5cea8c
13 changed files with 72 additions and 74 deletions

32
dist/npmts.plugins.js vendored
View File

@@ -1,8 +1,8 @@
"use strict";
require('typings-global');
exports.beautylog = require('beautylog');
require("typings-global");
exports.beautylog = require("beautylog");
exports.depcheck = require('depcheck');
exports.gulp = require('gulp');
exports.gulp = require("gulp");
exports.g = {
babel: require('gulp-babel'),
istanbul: require('gulp-istanbul'),
@@ -12,17 +12,17 @@ exports.g = {
sourcemaps: require('gulp-sourcemaps'),
typedoc: require('gulp-typedoc')
};
exports.lodashObject = require('lodash');
exports.npmextra = require('npmextra');
exports.projectinfo = require('projectinfo');
exports.path = require('path');
exports.Q = require('q');
exports.shelljs = require('shelljs');
exports.smartcli = require('smartcli');
exports.smartcov = require('smartcov');
exports.smartenv = require('smartenv');
exports.smartfile = require('smartfile');
exports.smartpath = require('smartpath');
exports.smartstring = require('smartstring');
exports.lodashObject = require("lodash");
exports.npmextra = require("npmextra");
exports.projectinfo = require("projectinfo");
exports.path = require("path");
exports.Q = require("q");
exports.shelljs = require("shelljs");
exports.smartcli = require("smartcli");
exports.smartcov = require("smartcov");
exports.smartenv = require("smartenv");
exports.smartfile = require("smartfile");
exports.smartpath = require("smartpath");
exports.smartstring = require("smartstring");
exports.sourceMapSupport = require('source-map-support').install(); // display errors correctly during testing
exports.tsn = require('tsn');
exports.tsn = require("tsn");