@girder/fontello 3.1.10 → 3.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.fontello-session +1 -0
- package/Gruntfile.js +16 -19
- package/dist/css/fontello.css +7 -7
- package/dist/fonts/fontello.eot +0 -0
- package/dist/fonts/fontello.ttf +0 -0
- package/dist/fonts/fontello.woff +0 -0
- package/dist/fonts/fontello.woff2 +0 -0
- package/package.json +3 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
c5db7ad5a8e1011a99beeccc16ecd9e0
|
package/Gruntfile.js
CHANGED
|
@@ -1,29 +1,26 @@
|
|
|
1
1
|
module.exports = function (grunt) {
|
|
2
2
|
grunt.initConfig({
|
|
3
|
-
clean:
|
|
4
|
-
'dist'
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
clean: {
|
|
4
|
+
dist: ['dist'],
|
|
5
|
+
extra: [
|
|
6
|
+
'dist/css/fontello-codes.css',
|
|
7
|
+
'dist/css/fontello-embedded.css',
|
|
8
|
+
'dist/css/fontello-ie7.css',
|
|
9
|
+
'dist/css/fontello-ie7-codes.css'
|
|
10
|
+
]
|
|
11
|
+
},
|
|
12
|
+
shell: {
|
|
7
13
|
dist: {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
styles: 'dist/css',
|
|
13
|
-
exclude: [
|
|
14
|
-
'fontello-codes.css',
|
|
15
|
-
'fontello-embedded.css',
|
|
16
|
-
'fontello-ie7.css',
|
|
17
|
-
'fontello-ie7-codes.css'
|
|
18
|
-
],
|
|
19
|
-
force: true
|
|
20
|
-
}
|
|
14
|
+
command: 'fontello-cli install --config fontello.config.json --css dist/css --font dist/fonts --host https://fontello.com'
|
|
15
|
+
},
|
|
16
|
+
adjust: {
|
|
17
|
+
command: "sed -i 's/\\/font\\//\\/fonts\\//g' dist/css/fontello.css"
|
|
21
18
|
}
|
|
22
19
|
}
|
|
23
20
|
});
|
|
24
21
|
|
|
25
22
|
grunt.loadNpmTasks('grunt-contrib-clean');
|
|
26
|
-
grunt.loadNpmTasks('grunt-
|
|
23
|
+
grunt.loadNpmTasks('grunt-shell');
|
|
27
24
|
|
|
28
|
-
grunt.registerTask('default', ['clean', '
|
|
25
|
+
grunt.registerTask('default', ['clean:dist', 'shell:dist', 'shell:adjust', 'clean:extra']);
|
|
29
26
|
};
|
package/dist/css/fontello.css
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: 'fontello';
|
|
3
|
-
src: url('../
|
|
4
|
-
src: url('../
|
|
5
|
-
url('../
|
|
6
|
-
url('../
|
|
7
|
-
url('../
|
|
8
|
-
url('../
|
|
3
|
+
src: url('../fonts/fontello.eot?45624285');
|
|
4
|
+
src: url('../fonts/fontello.eot?45624285#iefix') format('embedded-opentype'),
|
|
5
|
+
url('../fonts/fontello.woff2?45624285') format('woff2'),
|
|
6
|
+
url('../fonts/fontello.woff?45624285') format('woff'),
|
|
7
|
+
url('../fonts/fontello.ttf?45624285') format('truetype'),
|
|
8
|
+
url('../fonts/fontello.svg?45624285#fontello') format('svg');
|
|
9
9
|
font-weight: normal;
|
|
10
10
|
font-style: normal;
|
|
11
11
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
|
16
16
|
@font-face {
|
|
17
17
|
font-family: 'fontello';
|
|
18
|
-
src: url('../
|
|
18
|
+
src: url('../fonts/fontello.svg?45624285#fontello') format('svg');
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
21
|
*/
|
package/dist/fonts/fontello.eot
CHANGED
|
Binary file
|
package/dist/fonts/fontello.ttf
CHANGED
|
Binary file
|
package/dist/fonts/fontello.woff
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girder/fontello",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.11",
|
|
4
4
|
"description": "Built Fontello files for use in Girder.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -16,9 +16,10 @@
|
|
|
16
16
|
"prepublishOnly": "$npm_execpath install && $npm_execpath run build"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
+
"fontello-cli": "^0.6.2",
|
|
19
20
|
"grunt": "^1.0.3",
|
|
20
21
|
"grunt-contrib-clean": "^2.0.0",
|
|
21
|
-
"grunt-
|
|
22
|
+
"grunt-shell": "^4.0.0"
|
|
22
23
|
},
|
|
23
24
|
"keywords": [
|
|
24
25
|
"fontello",
|