@girder/fontello 5.0.0-a9 → 5.0.1

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 CHANGED
@@ -1 +1 @@
1
- 42176de2b7649c9b44c336086b198e51
1
+ 43cc70a401aac26e52cc8f3ee060ea14
@@ -1,11 +1,11 @@
1
1
  @font-face {
2
2
  font-family: 'fontello';
3
- src: url('../fonts/fontello.eot?64295840');
4
- src: url('../fonts/fontello.eot?64295840#iefix') format('embedded-opentype'),
5
- url('../fonts/fontello.woff2?64295840') format('woff2'),
6
- url('../fonts/fontello.woff?64295840') format('woff'),
7
- url('../fonts/fontello.ttf?64295840') format('truetype'),
8
- url('../fonts/fontello.svg?64295840#fontello') format('svg');
3
+ src: url('../fonts/fontsello.eot?59690226');
4
+ src: url('../fonts/fontsello.eot?59690226#iefix') format('embedded-opentype'),
5
+ url('../fonts/fontsello.woff2?59690226') format('woff2'),
6
+ url('../fonts/fontsello.woff?59690226') format('woff'),
7
+ url('../fonts/fontsello.ttf?59690226') format('truetype'),
8
+ url('../fonts/fontsello.svg?59690226#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('../fonts/fontello.svg?64295840#fontello') format('svg');
18
+ src: url('../fonts/fontsello.svg?59690226#fontello') format('svg');
19
19
  }
20
20
  }
21
21
  */
Binary file
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0" standalone="no"?>
2
2
  <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
3
  <svg xmlns="http://www.w3.org/2000/svg">
4
- <metadata>Copyright (C) 2025 by original authors @ fontello.com</metadata>
4
+ <metadata>Copyright (C) 2026 by original authors @ fontello.com</metadata>
5
5
  <defs>
6
6
  <font id="fontello" horiz-adv-x="1000" >
7
7
  <font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" />
Binary file
Binary file
Binary file
@@ -2439,4 +2439,4 @@
2439
2439
  ]
2440
2440
  }
2441
2441
  ]
2442
- }
2442
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girder/fontello",
3
- "version": "5.0.0-a9",
3
+ "version": "5.0.1",
4
4
  "description": "Built Fontello files for use in Girder.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -12,14 +12,11 @@
12
12
  },
13
13
  "main": "index.js",
14
14
  "scripts": {
15
- "build": "grunt",
15
+ "build": "rm -rf dist .fontello-session && npx fontello-cli install --config fontello.config.json --css dist/css --font dist/fonts --host https://fontello.com && sed -i 's#/font#/fonts#g' dist/css/fontello.css && rm -f dist/css/fontello-codes.css dist/css/fontello-embedded.css dist/css/fontello-ie7.css dist/css/fontello-ie7-codes.css",
16
16
  "prepublishOnly": "$npm_execpath install && $npm_execpath run build"
17
17
  },
18
18
  "devDependencies": {
19
- "fontello-cli": "^0.6.2",
20
- "grunt": "~1.5.0",
21
- "grunt-contrib-clean": "^2.0.0",
22
- "grunt-shell": "^4.0.0"
19
+ "fontello-cli": "^0.6.2"
23
20
  },
24
21
  "keywords": [
25
22
  "fontello",
package/Gruntfile.js DELETED
@@ -1,27 +0,0 @@
1
- /* global module */
2
- module.exports = function (grunt) {
3
- grunt.initConfig({
4
- clean: {
5
- dist: ['dist', '.fontello-session'],
6
- extra: [
7
- 'dist/css/fontello-codes.css',
8
- 'dist/css/fontello-embedded.css',
9
- 'dist/css/fontello-ie7.css',
10
- 'dist/css/fontello-ie7-codes.css'
11
- ]
12
- },
13
- shell: {
14
- dist: {
15
- command: 'fontello-cli install --config fontello.config.json --css dist/css --font dist/fonts --host https://fontello.com'
16
- },
17
- adjust: {
18
- command: "sed -i 's/\\/font\\//\\/fonts\\//g' dist/css/fontello.css"
19
- }
20
- }
21
- });
22
-
23
- grunt.loadNpmTasks('grunt-contrib-clean');
24
- grunt.loadNpmTasks('grunt-shell');
25
-
26
- grunt.registerTask('default', ['clean:dist', 'shell:dist', 'shell:adjust', 'clean:extra']);
27
- };