Releases: rishi-raj-jain/astro-font
[email protected]
In astro-font@^0.1.81, the support for locally hosted fonts in local development environments have been introduced. Simply the checks for https:
have been extended to http:
. Also, the type definitions for style
and weight
attribute per configuration has been updated to support string
, and string
and number
respectively.
[email protected]
In astro-font@^0.0.80, the CSS font parser for fonts loading over CDN such as Google Fonts, TypeKit, etc. has improved. It's now able to map over each attribute of font-face property returned by CDN, and creates an equivalent CSS.
To create in-browser like requests, each outgoing request is appended with the 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36'
header. This helps obtain the unicode-range
which optimizes the in-browser font downloading as if the page doesn't use any character in that range, the font is not downloaded at all.
[email protected]
In astro-font@^0.0.79, there are type values introduced for the following CSS properties, allowing you to choose the values based on standard web practices in your IDE.
To keep it backward compatible, any kind of string or number value is allowed.
[email protected]
[email protected]
[email protected]
- introduce per config
verbose
to create less noise in terminals
[email protected]
- introduce
fallbackName
per config flag to allow customizing fallback font's name
[email protected]
- only use
pathe
for relativizing the paths to get POSIX like output for font paths (thanks to @florian-lefebvre for suggesting it & @pi0 for makingpathe
)
[email protected]
- use
pathe
instead of relying onnode:path
to support all environments
[email protected]
- custom patch duplicate
axisIndex:o,axisIndex:o
bug of the corefontkit
library (thanks to @lukasborawski for reaching out and suggesting the fix)