UNPKG

966 BPlain TextView Raw
1// node native
2import * as path from 'path';
3
4export { path };
5
6// pushrocks scope
7import * as smartcli from '@pushrocks/smartcli';
8import * as smartfile from '@pushrocks/smartfile';
9import * as smartlog from '@pushrocks/smartlog';
10import * as smartlogDestinationLocal from '@pushrocks/smartlog-destination-local';
11
12export { smartcli, smartfile, smartlog, smartlogDestinationLocal };
13
14// third party scope
15import * as rollup from 'rollup';
16import rollupBabel from 'rollup-plugin-babel';
17import rollupCommonjs from 'rollup-plugin-commonjs';
18import rollupResolve from 'rollup-plugin-node-resolve';
19import rollupSourceMaps from 'rollup-plugin-sourcemaps';
20import { terser as rollupTerser } from 'rollup-plugin-terser';
21import rollupTypescript from 'rollup-plugin-typescript2';
22
23import * as htmlMinifier from 'html-minifier';
24
25export {
26 rollup,
27 rollupBabel,
28 rollupCommonjs,
29 rollupResolve,
30 rollupSourceMaps,
31 rollupTerser,
32 rollupTypescript,
33 htmlMinifier
34};