https://github.com/localvoid/clean_css_transformer
https://github.com/localvoid/clean_css_transformer
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/localvoid/clean_css_transformer
- Owner: localvoid
- License: bsd-2-clause
- Created: 2015-04-01T13:02:25.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-01T13:02:53.000Z (almost 11 years ago)
- Last Synced: 2025-01-25T06:25:25.105Z (about 1 year ago)
- Language: Dart
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# clean_css_transformer
> [pub](https://pub.dartlang.org/) transformer that uses
> [clean-css](https://github.com/jakubpawlowicz/clean-css) to minify
> CSS files.
## Options
## `executable`
Path to the cleancss executable. DEFAULT: `'cleancss'`
## `skip_import`
Disable @import processing.
TYPE: `bool`
DEFAULT: `false`
## `skip_rebase`
Disable URLs rebasing.
TYPE: `bool`
DEFAULT: `false`
## `skip_advanced`
Disable advanced optimizations - selector & property merging,
reduction, etc.
TYPE: `bool`
DEFAULT: `false`
## `skip_aggressive_merging`
Disable properties merging based on their order.
TYPE: `bool`
DEFAULT: `false`
## `skip_media_merging`
Disable `@media` merging.
TYPE: `bool`
DEFAULT: `false`
## `skip_restructuring`
Disable restructuring optimizations.
TYPE: `bool`
DEFAULT: `false`
## `skip_shorthand_compacting`
Disable shorthand compacting.
TYPE: `bool`
DEFAULT: `false`
## `source_map`
Enables building input's source map.
TYPE: `bool`
DEFAULT: `false`