smartnpm/ts/smartnpm.plugins.ts

19 lines
537 B
TypeScript
Raw Normal View History

2020-03-17 00:38:58 +00:00
// node native modules
import * as path from 'path';
export { path };
2019-09-06 09:12:23 +00:00
// @pushrocks scope
import * as consolecolor from '@pushrocks/consolecolor';
2020-03-17 00:38:58 +00:00
import * as smartarchive from '@pushrocks/smartarchive';
import * as smartfile from '@pushrocks/smartfile';
2021-04-19 12:55:11 +00:00
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartrequest from '@pushrocks/smartrequest';
2017-08-14 15:50:48 +00:00
2021-04-19 12:55:11 +00:00
export { consolecolor, smartarchive, smartfile, smartpromise, smartrequest };
2019-09-06 09:12:23 +00:00
// third party scope
import packageJson from 'package-json';
export { packageJson };