Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

rollup.config.js 252B

123456789101112131415161718
  1. const path = require('path');
  2. export default [
  3. {
  4. input: 'specificity.js',
  5. output: [
  6. {
  7. file: 'dist/specificity.mjs',
  8. format: 'es',
  9. },
  10. {
  11. file: 'dist/specificity.js',
  12. format: 'umd',
  13. name: 'SPECIFICITY',
  14. },
  15. ],
  16. },
  17. ];