Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
471 B

  1. import babel from 'rollup-plugin-babel';
  2. import commonjs from 'rollup-plugin-commonjs';
  3. import json from 'rollup-plugin-json';
  4. import resolve from 'rollup-plugin-node-resolve';
  5. export default {
  6. input: 'lib/bundle.js',
  7. output: {
  8. name: 'Bottleneck',
  9. file: 'es5.js',
  10. sourcemap: false,
  11. globals: {},
  12. format: 'umd'
  13. },
  14. external: [],
  15. plugins: [
  16. json(),
  17. resolve(),
  18. commonjs(),
  19. babel({
  20. exclude: 'node_modules/**'
  21. })
  22. ]
  23. };