tscoverage/ts/npmts.plugins.ts

35 lines
888 B
TypeScript
Raw Normal View History

2016-09-06 15:21:25 +00:00
import 'typings-global'
2016-10-02 18:35:13 +00:00
import * as beautylog from 'beautylog'
let depcheck = require('depcheck')
2016-10-20 20:57:32 +00:00
2016-10-02 18:35:13 +00:00
import * as lodash from 'lodash'
import * as npmextra from 'npmextra'
import * as projectinfo from 'projectinfo'
import * as path from 'path'
import * as smartcli from 'smartcli'
import * as smartenv from 'smartenv'
import * as smartfile from 'smartfile'
import * as smartpath from 'smartpath'
import * as smartstream from 'smartstream'
import * as smartstring from 'smartstring'
2016-10-21 15:48:52 +00:00
import * as smartsystem from 'smartsystem'
2016-11-25 12:03:41 +00:00
import * as through2 from 'through2'
2016-09-06 15:21:25 +00:00
export let sourceMapSupport = require('source-map-support').install() // display errors correctly during testing
2016-10-02 18:35:13 +00:00
export {
beautylog,
depcheck,
lodash,
npmextra,
projectinfo,
path,
smartcli,
smartenv,
smartfile,
smartpath,
smartstream,
smartstring,
2016-11-25 12:03:41 +00:00
smartsystem,
through2
2016-10-02 18:35:13 +00:00
}