smartnpm/ts/smartnpm.plugins.ts

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