tstest/ts/tstest.plugins.ts

43 lines
907 B
TypeScript
Raw Normal View History

2018-08-04 12:23:07 +00:00
// node native
2018-08-03 17:18:42 +00:00
import * as path from 'path';
2018-08-04 12:23:07 +00:00
2020-06-01 20:48:54 +00:00
export { path };
2023-07-13 01:19:11 +00:00
// @apiglobal scope
import * as typedserver from '@apiglobal/typedserver';
export {
typedserver
}
// @push.rocks scope
import * as consolecolor from '@push.rocks/consolecolor';
import * as smartbrowser from '@push.rocks/smartbrowser';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartfile from '@push.rocks/smartfile';
import * as smartlog from '@push.rocks/smartlog';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartshell from '@push.rocks/smartshell';
import * as tapbundle from '@push.rocks/tapbundle';
2018-08-03 17:18:42 +00:00
2020-07-12 00:47:41 +00:00
export {
consolecolor,
smartbrowser,
smartdelay,
smartfile,
smartlog,
smartpromise,
smartshell,
tapbundle,
};
2020-07-07 20:50:29 +00:00
// @gitzone scope
import * as tsbundle from '@gitzone/tsbundle';
2020-07-12 00:47:41 +00:00
export { tsbundle };
2020-06-01 20:48:54 +00:00
2018-08-04 17:41:00 +00:00
// sindresorhus
2022-03-12 23:30:32 +00:00
import figures from 'figures';
2018-08-04 17:41:00 +00:00
2020-06-01 20:48:54 +00:00
export { figures };