Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

32 рядки
736 B

  1. //@ts-check
  2. /** @type { import('fantasticon').RunnerOptions} } */
  3. const config = {
  4. name: 'glicons',
  5. prefix: 'glicon',
  6. codepoints: require('./images/icons/template/mapping.json'),
  7. inputDir: './images/icons',
  8. outputDir: './dist',
  9. // @ts-ignore
  10. fontTypes: ['woff2'],
  11. normalize: true,
  12. // @ts-ignore
  13. assetTypes: ['html', 'scss', 'json'],
  14. templates: {
  15. html: './images/icons/template/icons-contribution.hbs',
  16. scss: './images/icons/template/styles.hbs',
  17. },
  18. formatOptions: {
  19. json: {
  20. indent: 2,
  21. },
  22. },
  23. pathOptions: {
  24. woff2: './dist/glicons.woff2',
  25. scss: './src/webviews//apps/shared/glicons.scss',
  26. html: './icons-contribution.json',
  27. json: './images/icons/template/mapping.json',
  28. },
  29. };
  30. module.exports = config;