File indexing completed on 2024-04-14 14:17:45

0001 module.exports = function(grunt) {
0002     'use strict';
0003 
0004     grunt.initConfig({
0005         // Create the webfont files:
0006         webfont: {
0007                 icons: {
0008                         src: '../icons/actions/22@2x/*.svg',
0009                         dest: './dist',
0010                         options: {
0011                             skipLinks: true,
0012                             engine: 'fontforge',
0013                             stylesheet: 'css',
0014                             types:  'eot,woff2,ttf,svg',
0015                             optimize: false
0016                         }
0017                 }
0018         }
0019     });
0020     grunt.loadNpmTasks('grunt-webfonts');
0021 
0022     // Run the default task by executing "grunt" in the CLI:
0023     grunt.registerTask('default', ['webfont']);
0024 };
0025