npmci/ts/npmci.plugins.ts

49 lines
1.2 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-27 14:45:46 +00:00
// @servezone
import * as servezoneInterfaces from '@servezone/servezone-interfaces';
export {
servezoneInterfaces
};
2018-09-22 12:13:25 +00:00
// @pushrocks
2018-11-24 14:00:19 +00:00
import * as projectinfo from '@pushrocks/projectinfo';
import * as npmextra from '@pushrocks/npmextra';
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 {
projectinfo,
npmextra,
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 };