IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

39 satır
1.2KB

  1. import resolve from 'rollup-plugin-node-resolve'
  2. import buble from 'rollup-plugin-buble';
  3. import minify from 'rollup-plugin-minify';
  4. import copy from 'rollup-plugin-copy';
  5. import includePaths from 'rollup-plugin-includepaths';
  6. import license from 'rollup-plugin-license';
  7. export default {
  8. //dest: 'dist/app.min.js',
  9. input: 'src/js/index.js',
  10. output: {
  11. file: 'dist/js/app.min.js',
  12. name: 'WBADV',
  13. format: 'umd',
  14. sourceMap: true
  15. },
  16. plugins: [
  17. includePaths({
  18. paths: ['src/js', 'src/js/widget', 'src/js/misc', 'src/js/component']
  19. }),
  20. copy({
  21. 'src/html/index.html': 'dist/index.html',
  22. 'src/css/index.css': 'dist/css/index.css',
  23. 'node_modules/bootstrap/dist/css/bootstrap.min.css': 'dist/css/bootstrap.min.css',
  24. 'node_modules/bootstrap/dist/js/bootstrap.min.js': 'dist/js/bootstrap.min.js',
  25. 'node_modules/jquery/dist/jquery.min.js': 'dist/js/jquery.min.js',
  26. verbose: true
  27. }),
  28. buble({jsx: 'h'}),
  29. resolve({}),
  30. license({
  31. banner: 'Copyright (C) F. Hoffmann-La Roche AG, 2020.\nAuthor: stanislaw.adaszewski@roche.com\nAll Rights Reserved.',
  32. }) /* ,
  33. minify({
  34. iife: 'dist/app.min.js'
  35. }) */
  36. ]
  37. }