smartnpm/ts/smartnpm.plugins.ts

33 lines
830 B
TypeScript
Raw Permalink 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
2023-07-25 16:14:51 +00:00
import * as consolecolor from '@push.rocks/consolecolor';
import * as levelcache from '@push.rocks/levelcache';
import * as smartarchive from '@push.rocks/smartarchive';
import * as smartfile from '@push.rocks/smartfile';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartrequest from '@push.rocks/smartrequest';
import * as smartversion from '@push.rocks/smartversion';
import * as smarttime from '@push.rocks/smarttime';
2017-08-14 15:50:48 +00:00
2023-07-25 16:14:51 +00:00
export {
consolecolor,
levelcache,
smartarchive,
smartfile,
smartpath,
smartpromise,
smartrequest,
smartversion,
smarttime,
};
2019-09-06 09:12:23 +00:00
// third party scope
2023-07-25 16:14:51 +00:00
import * as packageJson from 'package-json';
2019-09-06 09:12:23 +00:00
export { packageJson };