npmci/ts/npmci.plugins.ts

68 lines
1.7 KiB
TypeScript
Raw Permalink 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
2023-08-09 09:23:56 +00:00
import * as typedrequest from '@api.global/typedrequest';
2019-08-29 18:56:02 +00:00
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
2023-07-12 13:35:38 +00:00
// @push.rocks
import * as lik from '@push.rocks/lik';
import * as npmextra from '@push.rocks/npmextra';
import * as projectinfo from '@push.rocks/projectinfo';
import * as qenv from '@push.rocks/qenv';
import * as smartanalytics from '@push.rocks/smartanalytics';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartfile from '@push.rocks/smartfile';
import * as smartcli from '@push.rocks/smartcli';
import * as smartgit from '@push.rocks/smartgit';
import * as smartlog from '@push.rocks/smartlog';
import * as smartlogDestinationLocal from '@push.rocks/smartlog-destination-local';
import * as smartobject from '@push.rocks/smartobject';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrequest from '@push.rocks/smartrequest';
import * as smartshell from '@push.rocks/smartshell';
import * as smartsocket from '@push.rocks/smartsocket';
import * as smartssh from '@push.rocks/smartssh';
import * as smartstring from '@push.rocks/smartstring';
2018-11-24 14:00:19 +00:00
export {
2023-07-12 13:35:38 +00:00
lik,
2018-11-24 14:00:19 +00:00
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,
2023-07-12 13:35:38 +00:00
smartobject,
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 };