2019-06-16 15:47:34 +00:00
|
|
|
// node native
|
|
|
|
import * as path from 'path';
|
|
|
|
|
2019-07-17 10:22:24 +00:00
|
|
|
export { path };
|
2019-06-16 15:47:34 +00:00
|
|
|
|
2019-05-06 12:00:21 +00:00
|
|
|
// pushrocks scope
|
2019-06-16 15:02:38 +00:00
|
|
|
import * as smartcli from '@pushrocks/smartcli';
|
2019-06-16 15:47:34 +00:00
|
|
|
import * as smartfile from '@pushrocks/smartfile';
|
2019-05-06 12:00:21 +00:00
|
|
|
import * as smartlog from '@pushrocks/smartlog';
|
|
|
|
import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
|
2022-03-14 15:32:12 +00:00
|
|
|
import * as smartpath from '@pushrocks/smartpath';
|
2020-07-07 18:55:17 +00:00
|
|
|
import * as smartparcel from '@pushrocks/smartparcel';
|
2021-07-23 13:45:23 +00:00
|
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
|
|
import * as smartspawn from '@pushrocks/smartspawn';
|
2019-05-06 12:00:21 +00:00
|
|
|
|
2022-03-14 15:32:12 +00:00
|
|
|
export {
|
|
|
|
smartcli,
|
|
|
|
smartfile,
|
|
|
|
smartlog,
|
|
|
|
smartlogDestinationLocal,
|
|
|
|
smartpath,
|
|
|
|
smartparcel,
|
|
|
|
smartpromise,
|
|
|
|
smartspawn,
|
|
|
|
};
|
2019-05-06 12:00:21 +00:00
|
|
|
|
|
|
|
// third party scope
|
2019-04-30 10:49:10 +00:00
|
|
|
import * as rollup from 'rollup';
|
2019-04-30 11:12:57 +00:00
|
|
|
import rollupBabel from 'rollup-plugin-babel';
|
2020-03-13 14:53:15 +00:00
|
|
|
import rollupCommonjs from '@rollup/plugin-commonjs';
|
2020-05-25 21:07:40 +00:00
|
|
|
import rollupJson from '@rollup/plugin-json';
|
2020-03-13 14:53:15 +00:00
|
|
|
import rollupResolve from '@rollup/plugin-node-resolve';
|
2019-04-30 10:49:10 +00:00
|
|
|
import rollupSourceMaps from 'rollup-plugin-sourcemaps';
|
2019-06-16 15:02:38 +00:00
|
|
|
import { terser as rollupTerser } from 'rollup-plugin-terser';
|
2020-03-13 14:53:15 +00:00
|
|
|
import rollupTypescript from '@rollup/plugin-typescript';
|
2019-04-30 10:49:10 +00:00
|
|
|
|
2019-06-16 15:47:34 +00:00
|
|
|
import * as htmlMinifier from 'html-minifier';
|
|
|
|
|
2019-04-30 10:49:10 +00:00
|
|
|
export {
|
|
|
|
rollup,
|
2019-04-30 11:12:57 +00:00
|
|
|
rollupBabel,
|
2019-04-30 10:49:10 +00:00
|
|
|
rollupCommonjs,
|
2020-05-25 21:07:40 +00:00
|
|
|
rollupJson,
|
2019-04-30 11:12:57 +00:00
|
|
|
rollupResolve,
|
2019-04-30 10:49:10 +00:00
|
|
|
rollupSourceMaps,
|
2019-06-16 15:02:38 +00:00
|
|
|
rollupTerser,
|
2019-06-16 15:47:34 +00:00
|
|
|
rollupTypescript,
|
2022-03-14 15:32:12 +00:00
|
|
|
htmlMinifier,
|
2019-06-16 15:02:38 +00:00
|
|
|
};
|