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.

index.js 538B

12345678910111213141516
  1. 'use strict';
  2. // Use this require pattern so that syntaxes can be bundled separately
  3. const importLazy = require('import-lazy')(require);
  4. /** @typedef {import('../getPostcssResult').Syntax} Syntax */
  5. /** @type {{[k: string]: Syntax}} */
  6. module.exports = {
  7. 'css-in-js': importLazy('./syntax-css-in-js'),
  8. html: importLazy('./syntax-html'),
  9. less: importLazy('./syntax-less'),
  10. markdown: importLazy('./syntax-markdown'),
  11. sass: importLazy('./syntax-sass'),
  12. scss: importLazy('./syntax-scss'),
  13. sugarss: importLazy('./syntax-sugarss'),
  14. };