From 019864a48449927e0b929363c9243b180720f18b Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Wed, 18 Jan 2017 01:04:19 +0100 Subject: [PATCH] remove shelljs --- dist/mod00/mod00.plugins.d.ts | 3 +-- dist/mod00/mod00.plugins.js | 2 -- package.json | 2 -- ts/mod00/mod00.plugins.ts | 2 -- 4 files changed, 1 insertion(+), 8 deletions(-) diff --git a/dist/mod00/mod00.plugins.d.ts b/dist/mod00/mod00.plugins.d.ts index 0fdecc4..1eb3c5b 100644 --- a/dist/mod00/mod00.plugins.d.ts +++ b/dist/mod00/mod00.plugins.d.ts @@ -1,6 +1,5 @@ export * from '../npmts.plugins'; import * as tsn from 'tsn'; -import * as shelljs from 'shelljs'; import * as smartchok from 'smartchok'; import * as smartstream from 'smartstream'; -export { tsn, shelljs, smartchok, smartstream }; +export { tsn, smartchok, smartstream }; diff --git a/dist/mod00/mod00.plugins.js b/dist/mod00/mod00.plugins.js index b3abbc5..4156090 100644 --- a/dist/mod00/mod00.plugins.js +++ b/dist/mod00/mod00.plugins.js @@ -5,8 +5,6 @@ function __export(m) { __export(require("../npmts.plugins")); const tsn = require("tsn"); exports.tsn = tsn; -const shelljs = require("shelljs"); -exports.shelljs = shelljs; const smartchok = require("smartchok"); exports.smartchok = smartchok; const smartstream = require("smartstream"); diff --git a/package.json b/package.json index 2e04fd7..4d37489 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,6 @@ "@types/gulp-mocha": "0.0.29", "@types/gulp-sourcemaps": "0.0.29", "@types/minimatch": "^2.0.29", - "@types/shelljs": "^0.3.33", "@types/through2": "^2.0.32", "beautylog": "6.0.0", "depcheck": "^0.6.7", @@ -54,7 +53,6 @@ "lodash": "^4.17.4", "npmextra": "^2.0.3", "projectinfo": "3.0.1", - "shelljs": "^0.7.6", "smartchok": "^1.0.4", "smartcli": "2.0.1", "smartcov": "1.0.0", diff --git a/ts/mod00/mod00.plugins.ts b/ts/mod00/mod00.plugins.ts index 2bd71d6..a31a28e 100644 --- a/ts/mod00/mod00.plugins.ts +++ b/ts/mod00/mod00.plugins.ts @@ -1,13 +1,11 @@ export * from '../npmts.plugins' import * as tsn from 'tsn' -import * as shelljs from 'shelljs' import * as smartchok from 'smartchok' import * as smartstream from 'smartstream' export { tsn, - shelljs, smartchok, smartstream }