smartnpm/ts/smartnpm.plugins.ts

21 lines
673 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';
2021-04-26 08:30:02 +00:00
import * as levelcache from '@pushrocks/levelcache';
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';
2021-04-26 08:30:02 +00:00
import * as smartversion from '@pushrocks/smartversion';
2017-08-14 15:50:48 +00:00
2021-04-26 08:30:02 +00:00
export { consolecolor, levelcache, smartarchive, smartfile, smartpromise, smartrequest, smartversion };
2019-09-06 09:12:23 +00:00
// third party scope
import packageJson from 'package-json';
export { packageJson };