tscoverage/ts/npmts.watch.ts

33 lines
1.0 KiB
TypeScript
Raw Normal View History

2016-09-22 21:23:16 +00:00
import * as plugins from './npmts.plugins'
import * as promisechain from './npmts.promisechain'
2016-10-02 18:35:13 +00:00
import * as q from 'q'
2016-09-25 18:22:10 +00:00
import { INpmtsConfig } from './npmts.options'
2016-09-22 21:23:16 +00:00
2016-10-02 18:35:13 +00:00
let npmtsSmartchok: plugins.smartchok.Smartchok = null
2016-09-25 18:22:10 +00:00
export let run = (configArg: INpmtsConfig) => {
2016-10-02 18:35:13 +00:00
let done = q.defer()
2016-09-22 21:23:16 +00:00
if (configArg.watch && npmtsSmartchok === null) {
let pathsToWatch: string[] = []
for (let key in configArg.ts) {
pathsToWatch.push(key)
}
2016-09-25 18:22:10 +00:00
for (let key in configArg.testTs) {
pathsToWatch.push(key)
}
2016-09-22 21:23:16 +00:00
npmtsSmartchok = new plugins.smartchok.Smartchok(pathsToWatch)
npmtsSmartchok.getObservableFor('change').then((changeObservableArg) => {
plugins.beautylog.info('now watching...')
changeObservableArg.subscribe(() => {
promisechain.run(configArg)
})
})
npmtsSmartchok.start()
done.resolve(configArg)
} else {
done.resolve(configArg)
}
return done.promise
}