2018-08-04 14:23:07 +02:00
|
|
|
// node native
|
2018-08-03 19:18:42 +02:00
|
|
|
import * as path from 'path';
|
2018-08-04 14:23:07 +02:00
|
|
|
|
2020-06-01 20:48:54 +00:00
|
|
|
export { path };
|
|
|
|
|
2023-07-13 03:19:11 +02:00
|
|
|
// @apiglobal scope
|
2023-09-09 23:22:06 +02:00
|
|
|
import * as typedserver from '@api.global/typedserver';
|
2023-07-13 03:19:11 +02:00
|
|
|
|
|
|
|
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 19:18:42 +02: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
|
2023-08-26 15:42:18 +02:00
|
|
|
import * as tsbundle from '@git.zone/tsbundle';
|
2020-07-07 20:50:29 +00:00
|
|
|
|
2020-07-12 00:47:41 +00:00
|
|
|
export { tsbundle };
|
2020-06-01 20:48:54 +00:00
|
|
|
|
2018-08-04 19:41:00 +02:00
|
|
|
// sindresorhus
|
2022-03-13 00:30:32 +01:00
|
|
|
import figures from 'figures';
|
2018-08-04 19:41:00 +02:00
|
|
|
|
2020-06-01 20:48:54 +00:00
|
|
|
export { figures };
|
2023-11-09 19:00:53 +01:00
|
|
|
|
|
|
|
// third party
|
|
|
|
import * as ws from 'ws';
|
|
|
|
|
|
|
|
export {
|
|
|
|
ws
|
|
|
|
}
|