Document application modes (development/debug/production) Add global file drop handler, order column normalization, SPA hash fix Serve CDN assets via /_vendor/ URLs instead of merging into bundles Add production minification with license preservation Improve JSON formatting for debugging and production optimization Add CDN asset caching with CSS URL inlining for production builds Add three-mode system (development, debug, production) Update Manifest CLAUDE.md to reflect helper class architecture Refactor Manifest.php into helper classes for better organization Pre-manifest-refactor checkpoint: Add app_mode documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
84 lines
2.0 KiB
Markdown
Executable File
84 lines
2.0 KiB
Markdown
Executable File
# postcss-minify-font-values [![Build Status][ci-img]][ci]
|
|
|
|
> Minify font declarations with PostCSS.
|
|
|
|
This module will try to minimise the `font-family`, `font-weight` and `font` shorthand
|
|
properties; it can unquote font families where necessary, detect & remove
|
|
duplicates, and cut short a declaration after it finds a keyword. For more
|
|
examples, see the [tests](test).
|
|
|
|
```css
|
|
h1 {
|
|
font:bold 2.2rem/.9 "Open Sans Condensed", sans-serif;
|
|
}
|
|
|
|
p {
|
|
font-family: "Helvetica Neue", Arial, sans-serif, Helvetica;
|
|
font-weight: normal;
|
|
}
|
|
```
|
|
|
|
```css
|
|
h1 {
|
|
font:700 2.2rem/.9 Open Sans Condensed,sans-serif
|
|
}
|
|
|
|
p {
|
|
font-family: Helvetica Neue,Arial,sans-serif;
|
|
font-weight: 400;
|
|
}
|
|
```
|
|
|
|
## API
|
|
|
|
### minifyFontValues([options])
|
|
|
|
#### options
|
|
|
|
##### removeAfterKeyword
|
|
|
|
Type: `boolean`
|
|
Default: `false`
|
|
|
|
Pass `true` to remove font families after the module encounters a font keyword,
|
|
for example `sans-serif`.
|
|
|
|
##### removeDuplicates
|
|
|
|
Type: `boolean`
|
|
Default: `true`
|
|
|
|
Pass `false` to disable the module from removing duplicated font families.
|
|
|
|
##### removeQuotes
|
|
|
|
Type: `boolean` | `(prop: string) => '' | 'font' | 'font-family' | 'font-weight'`
|
|
Default: `true`
|
|
|
|
Pass `false` to disable the module from removing quotes from font families.
|
|
Note that oftentimes, this is a *safe optimisation* & is done safely. For more
|
|
details, see [Mathias Bynens' article][mathias].
|
|
|
|
Pass a function to determine whether a css variable is one of `font`, `font-family`, and `font-weight` to determine whether the variable needs to remove quotes.
|
|
|
|
## Usage
|
|
|
|
```js
|
|
postcss([ require('postcss-minify-font-values') ])
|
|
```
|
|
|
|
See [PostCSS] docs for examples for your environment.
|
|
|
|
## Contributors
|
|
|
|
See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
|
|
|
|
# License
|
|
|
|
MIT © [Bogdan Chadkin](mailto:trysound@yandex.ru)
|
|
|
|
[mathias]: https://mathiasbynens.be/notes/unquoted-font-family
|
|
[PostCSS]: https://github.com/postcss/postcss
|
|
[ci-img]: https://travis-ci.org/cssnano/postcss-minify-font-values.svg
|
|
[ci]: https://travis-ci.org/cssnano/postcss-minify-font-values
|