diff --git a/ts/tsbundle.plugins.ts b/ts/tsbundle.plugins.ts index 3bfffdd..bd3d283 100644 --- a/ts/tsbundle.plugins.ts +++ b/ts/tsbundle.plugins.ts @@ -1,15 +1,15 @@ import * as rollup from 'rollup'; -import rollupResolve from 'rollup-plugin-node-resolve'; +import rollupBabel from 'rollup-plugin-babel'; import rollupCommonjs from 'rollup-plugin-commonjs'; +import rollupResolve from 'rollup-plugin-node-resolve'; import rollupSourceMaps from 'rollup-plugin-sourcemaps'; import rollupTypescript from 'rollup-plugin-typescript2'; -import rollupBabel from 'rollup-plugin-babel'; export { rollup, - rollupResolve, + rollupBabel, rollupCommonjs, + rollupResolve, rollupSourceMaps, rollupTypescript, - rollupBabel }; \ No newline at end of file diff --git a/ts/tsbundle.rollup.prepend.ts b/ts/tsbundle.rollup.prepend.ts new file mode 100644 index 0000000..52b0b19 --- /dev/null +++ b/ts/tsbundle.rollup.prepend.ts @@ -0,0 +1 @@ +import * as plugins from './tsbundle.plugins';