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';
|
|
|
|
|
2019-06-16 15:47:34 +00:00
|
|
|
export { smartcli, smartfile, smartlog, smartlogDestinationLocal };
|
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';
|
2019-04-30 10:49:10 +00:00
|
|
|
import rollupCommonjs from 'rollup-plugin-commonjs';
|
2019-04-30 11:12:57 +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';
|
2019-04-30 10:49:10 +00:00
|
|
|
import rollupTypescript from 'rollup-plugin-typescript2';
|
|
|
|
|
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,
|
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,
|
|
|
|
htmlMinifier
|
2019-06-16 15:02:38 +00:00
|
|
|
};
|