npmci/ts/npmci.plugins.ts

56 lines
1.4 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
import * as servezoneInterfaces from '@servezone/servezone-interfaces';
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';
import * as smartlog from '@pushrocks/smartlog';
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
import * as smartparam from '@pushrocks/smartparam';
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,
smartcli,
smartlog,
smartlogDestinationLocal,
smartparam,
smartpromise,
smartrequest,
smartshell,
smartsocket,
smartssh,
smartstring
};
2018-09-22 12:13:25 +00:00
2018-11-24 14:00:19 +00:00
import * as through2 from 'through2';
2019-05-08 20:50:57 +00:00
export { through2 };