Created
August 20, 2014 08:27
-
-
Save jrencz/5ace321004846e9c18b4 to your computer and use it in GitHub Desktop.
Cofiguration dump for issue #5 on jubalm/grunt-fontello
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "share", | |
"css_prefix_text": "share-icon-", | |
"css_use_suffix": false, | |
"hinting": true, | |
"units_per_em": 1000, | |
"ascent": 850, | |
"glyphs": [ | |
{ | |
"uid": "bf882b30900da12fca090d9796bc3030", | |
"css": "email", | |
"code": 59395, | |
"src": "fontawesome" | |
}, | |
{ | |
"uid": "8e04c98c8f5ca0a035776e3001ad2638", | |
"css": "facebook", | |
"code": 59392, | |
"src": "fontawesome" | |
}, | |
{ | |
"uid": "b8d0c7d76e87b94882329a88e8e43d3d", | |
"css": "google-plus", | |
"code": 59394, | |
"src": "fontawesome" | |
}, | |
{ | |
"uid": "627abcdb627cb1789e009c08e2678ef9", | |
"css": "twitter", | |
"code": 59393, | |
"src": "fontawesome" | |
} | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = function (grunt) { | |
grunt.initConfig({ | |
fontello: { | |
share: { | |
options: { | |
config: 'fontello-config.json', | |
fonts: 'app/fonts', | |
styles: 'app/core-styles', | |
scss: true, | |
}, | |
}, | |
}, | |
clean: { | |
// Fontello generates a lot of overhead and they don't want to adopt browser support setting. | |
// We only need one scss file and .woff font for browsers we support. | |
// See: https://github.com/fontello/fontello/issues/338 | |
postFontelloShare: { | |
src: [ | |
'app/fonts/share.{eot,svg,ttf}', | |
'app/core-styles/_share{-embedded,-ie7,-ie7-codes}.scss', | |
], | |
}, | |
}, | |
}); | |
grunt.registerTask('fonts', [ | |
'fontello:share', | |
'clean:postFontelloShare', | |
]); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"dependencies": { | |
"angulartics": "0.16.1", | |
"bootstrap": "3.2.0", | |
"jquery": "2.1.1", | |
"jquery-wheel": "0.1.0", | |
"lodash": "2.4.1", | |
"ng-l20n": "0.1.2", | |
"ng-tags-input": "EE/ngTagsInput#l20n", | |
"typeahead.js": "0.10.5" | |
}, | |
"devDependencies": { | |
"connect-modrewrite": "0.7.7", | |
"findup-sync": "0.1.3", | |
"grunt": "0.4.5", | |
"grunt-angular-templates": "0.5.7", | |
"grunt-autoprefixer": "1.0.0", | |
"grunt-check-dependencies": "0.6.0", | |
"grunt-contrib-clean": "0.6.0", | |
"grunt-contrib-concat": "0.5.0", | |
"grunt-contrib-connect": "0.8.0", | |
"grunt-contrib-copy": "0.5.0", | |
"grunt-contrib-htmlmin": "0.3.0", | |
"grunt-contrib-jshint": "0.10.0", | |
"grunt-contrib-sass": "0.7.4", | |
"grunt-contrib-uglify": "0.5.1", | |
"grunt-contrib-watch": "0.6.1", | |
"grunt-csso": "0.6.3", | |
"grunt-ddescribe-iit": "0.0.4", | |
"grunt-defs": "0.7.1", | |
"grunt-eslint": "0.6.0", | |
"grunt-githooks": "0.3.1", | |
"grunt-include-source": "0.4.1", | |
"grunt-jscs": "0.6.2", | |
"grunt-jsonlint": "1.0.4", | |
"grunt-karma": "EE/grunt-karma#fixes", | |
"grunt-merge-conflict": "0.0.2", | |
"grunt-newer": "0.7.0", | |
"grunt-ng-annotate": "0.3.2", | |
"grunt-notify": "0.3.1", | |
"grunt-npmcopy": "0.1.0", | |
"grunt-rev": "0.1.0", | |
"grunt-shell": "0.7.0", | |
"grunt-usemin": "2.3.0", | |
"grunth-cli": "0.2.7", | |
"image-size": "0.3.2", | |
"jit-grunt": "0.8.0", | |
"jscs-trailing-comma": "0.3.0", | |
"json5": "0.2.0", | |
"karma": "0.12.21", | |
"karma-chrome-launcher": "0.1.4", | |
"karma-coverage": "0.2.6", | |
"karma-firefox-launcher": "0.1.3", | |
"karma-jasmine": "0.2.2", | |
"karma-junit-reporter": "0.2.2", | |
"karma-ng-json2js-preprocessor": "0.1.1", | |
"l20n": "1.0.0-rc", | |
"lodash": "2.4.1", | |
"mime": "1.2.11", | |
"protractor": "1.0.0", | |
"randomstring": "1.0.3", | |
"semver": "3.0.1", | |
"time-grunt": "0.4.0" | |
}, | |
"optionalDependencies": { | |
"grunt-contrib-imagemin": "0.8.0", | |
"grunt-inline-images": "0.0.6", | |
"karma-browserstack-launcher": "0.1.1", | |
"karma-safari-launcher": "0.1.1", | |
"karma-sauce-launcher": "0.2.10" | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment