npmci/ts/npmci.plugins.ts

66 lines
1.6 KiB
TypeScript
Raw Normal View History

2018-09-22 12:13:25 +00:00
// node native
2018-11-24 14:00:19 +00:00
import * as path from 'path';
export { path };
2018-09-22 12:13:25 +00:00
2019-08-29 18:56:02 +00:00
// @apiglobal
import * as typedrequest from '@apiglobal/typedrequest';
2019-09-01 11:51:11 +00:00
export { typedrequest };
2019-08-29 18:56:02 +00:00
2019-08-27 14:45:46 +00:00
// @servezone
2021-11-07 03:20:14 +00:00
import * as servezoneInterfaces from '@servezone/interfaces';
2019-08-27 14:45:46 +00:00
2019-08-29 18:38:44 +00:00
export { servezoneInterfaces };
2019-08-27 14:45:46 +00:00
2018-09-22 12:13:25 +00:00
// @pushrocks
2018-11-24 14:00:19 +00:00
import * as npmextra from '@pushrocks/npmextra';
2019-08-29 18:26:23 +00:00
import * as projectinfo from '@pushrocks/projectinfo';
import * as qenv from '@pushrocks/qenv';
import * as smartanalytics from '@pushrocks/smartanalytics';
2018-11-24 14:00:19 +00:00
import * as smartdelay from '@pushrocks/smartdelay';
import * as smartfile from '@pushrocks/smartfile';
import * as smartcli from '@pushrocks/smartcli';
2021-10-21 23:51:43 +00:00
import * as smartgit from '@pushrocks/smartgit';
2018-11-24 14:00:19 +00:00
import * as smartlog from '@pushrocks/smartlog';
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
import * as smartparam from '@pushrocks/smartparam';
import * as smartpath from '@pushrocks/smartpath';
2018-11-24 14:00:19 +00:00
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrequest from '@pushrocks/smartrequest';
import * as smartshell from '@pushrocks/smartshell';
2019-05-08 20:43:48 +00:00
import * as smartsocket from '@pushrocks/smartsocket';
2018-11-24 14:00:19 +00:00
import * as smartssh from '@pushrocks/smartssh';
import * as smartstring from '@pushrocks/smartstring';
export {
npmextra,
2019-08-29 18:26:23 +00:00
projectinfo,
qenv,
smartanalytics,
2018-11-24 14:00:19 +00:00
smartdelay,
smartfile,
smartgit,
2018-11-24 14:00:19 +00:00
smartcli,
smartlog,
smartlogDestinationLocal,
smartparam,
smartpath,
2018-11-24 14:00:19 +00:00
smartpromise,
smartrequest,
smartshell,
smartsocket,
smartssh,
2021-05-14 18:11:12 +00:00
smartstring,
2018-11-24 14:00:19 +00:00
};
2018-09-22 12:13:25 +00:00
2021-11-07 03:20:14 +00:00
// @tsclass scope
import * as tsclass from '@tsclass/tsclass';
2022-10-11 12:26:42 +00:00
export { tsclass };
2021-11-07 03:20:14 +00:00
// third party
2018-11-24 14:00:19 +00:00
import * as through2 from 'through2';
2019-05-08 20:50:57 +00:00
export { through2 };