Lines Matching refs:controls

131 * `compatibility` - controls compatibility mode used; defaults to `ie10+`; see [compatibility modes…
132 * `fetch` - controls a function for handling remote requests; see [fetch option](#fetch-option) for…
133 * `format` - controls output CSS formatting; defaults to `false`; see [formatting options](#formatt…
134 * `inline` - controls `@import` inlining rules; defaults to `'local'`; see [inlining options](#inli…
135 * `inlineRequest` - controls extra options for inlining remote `@import` rules, can be any of [HTTP…
136 * `inlineTimeout` - controls number of milliseconds after which inlining a remote `@import` fails; …
137 * `level` - controls optimization level used; defaults to `1`; see [optimization levels](#optimizat…
138 * `rebase` - controls URL rebasing; defaults to `true`;
139 * `rebaseTo` - controls a directory to which all URLs are rebased, most likely the directory under …
140 * `returnPromise` - controls whether `minify` method returns a Promise object or not; defaults to `…
141 * `sourceMap` - controls whether an output source map is built; defaults to `false`;
142 * `sourceMapInlineSources` - controls embedding sources inside a source map's `sourcesContent` fiel…
159 opacity: true // controls `rgba()` / `hsla()` color support
162 backgroundClipMerging: true, // controls background-clip merging into shorthand
163 backgroundOriginMerging: true, // controls background-origin merging into shorthand
164 backgroundSizeMerging: true, // controls background-size merging into shorthand
165 colors: true, // controls color optimizations
166 ieBangHack: false, // controls keeping IE bang hack
167 ieFilters: false, // controls keeping IE `filter` / `-ms-filter`
168 iePrefixHack: false, // controls keeping IE prefix hack
169 ieSuffixHack: false, // controls keeping IE suffix hack
170 merging: true, // controls property merging based on understandability
171 shorterLengthUnits: false, // controls shortening pixel units into `pc`, `pt`, or `in` units
172 …spaceAfterClosingBrace: true, // controls keeping space after closing brace - `url() no-repeat` in…
173 urlQuotes: false, // controls keeping quoting inside `url()`
174 zeroUnits: true // controls removal of units `0` value
177 adjacentSpace: false, // controls extra space before `nav` element
178 ie7Hack: true, // controls removal of IE7 selector hacks, e.g. `*+html...`
179 mergeablePseudoClasses: [':active', ...], // controls a whitelist of mergeable pseudo classes
180 … mergeablePseudoElements: ['::after', ...], // controls a whitelist of mergeable pseudo elements
181 mergeLimit: 8191, // controls maximum number of selectors in a single rule (since 4.1.0)
182 …multiplePseudoMerging: true // controls merging of rules with multiple pseudo classes / elements (…
185 ch: true, // controls treating `ch` as a supported unit
186 in: true, // controls treating `in` as a supported unit
187 pc: true, // controls treating `pc` as a supported unit
188 pt: true, // controls treating `pt` as a supported unit
189 rem: true, // controls treating `rem` as a supported unit
190 vh: true, // controls treating `vh` as a supported unit
191 vm: true, // controls treating `vm` as a supported unit
192 vmax: true, // controls treating `vmax` as a supported unit
193 vmin: true // controls treating `vmin` as a supported unit
257 breaks: { // controls where to insert breaks
258 …afterAtRule: false, // controls if a line break comes after an at-rule; e.g. `@charset`; defaults …
259 …afterBlockBegins: false, // controls if a line break comes after a block begins; e.g. `@media`; de…
260 … afterBlockEnds: false, // controls if a line break comes after a block ends, defaults to `false`
261 afterComment: false, // controls if a line break comes after a comment; defaults to `false`
262 afterProperty: false, // controls if a line break comes after a property; defaults to `false`
263 … afterRuleBegins: false, // controls if a line break comes after a rule begins; defaults to `false`
264 afterRuleEnds: false, // controls if a line break comes after a rule ends; defaults to `false`
265 … beforeBlockEnds: false, // controls if a line break comes before a block ends; defaults to `false`
266 … betweenSelectors: false // controls if a line break comes between selectors; defaults to `false`
268 …breakWith: '\n', // controls the new line character, can be `'\r\n'` or `'\n'` (aliased as `'windo…
269 indentBy: 0, // controls number of characters to indent with; defaults to `0`
270 …indentWith: 'space', // controls a character to indent with, can be `'space'` or `'tab'`; defaults…
271 spaces: { // controls where to insert spaces
272 …aroundSelectorRelation: false, // controls if spaces come around selector relations; e.g. `div > a…
273 …beforeBlockBegins: false, // controls if a space comes before a block begins; e.g. `.block {`; def…
274 …beforeValue: false // controls if a space comes before a value; e.g. `width: 1rem`; defaults to `f…
276 wrapAt: false // controls maximum line length; defaults to `false`
351 …cleanupCharsets: true, // controls `@charset` moving to the front of a stylesheet; defaults to `tr…
352 normalizeUrls: true, // controls URL normalization; defaults to `true`
353 optimizeBackground: true, // controls `background` property optimizations; defaults to `true`
354 … optimizeBorderRadius: true, // controls `border-radius` property optimizations; defaults to `true`
355 optimizeFilter: true, // controls `filter` property optimizations; defaults to `true`
356 optimizeFont: true, // controls `font` property optimizations; defaults to `true`
357 optimizeFontWeight: true, // controls `font-weight` property optimizations; defaults to `true`
358 optimizeOutline: true, // controls `outline` property optimizations; defaults to `true`
359 removeEmpty: true, // controls removing empty rules and nested blocks; defaults to `true`
360 removeNegativePaddings: true, // controls removing negative paddings; defaults to `true`
361 removeQuotes: true, // controls removing quotes when unnecessary; defaults to `true`
362 removeWhitespace: true, // controls removing unused whitespace; defaults to `true`
364 … replaceTimeUnits: true, // controls replacing time units with shorter values; defaults to `true`
365 replaceZeroUnits: true, // controls replacing zero values with units; defaults to `true`
369 …tidyAtRules: true, // controls at-rules (e.g. `@charset`, `@import`) optimizing; defaults to `true`
370 tidyBlockScopes: true, // controls block scopes (e.g. `@media`) optimizing; defaults to `true`
371 tidySelectors: true, // controls selectors optimizing; defaults to `true`,
372 …semicolonAfterLastProperty: false, // controls removing trailing semicolons in rule; defaults to `…
404 mergeAdjacentRules: true, // controls adjacent rules merging; defaults to true
405 mergeIntoShorthands: true, // controls merging properties into shorthands; defaults to true
406 mergeMedia: true, // controls `@media` merging; defaults to true
407 mergeNonAdjacentRules: true, // controls non-adjacent rule merging; defaults to true
408 mergeSemantically: false, // controls semantic merging; defaults to false
409 …overrideProperties: true, // controls property overriding based on understandability; defaults to …
410 removeEmpty: true, // controls removing empty rules and nested blocks; defaults to `true`
411 reduceNonAdjacentRules: true, // controls non-adjacent rule reducing; defaults to true
412 removeDuplicateFontRules: true, // controls duplicate `@font-face` removing; defaults to true
413 removeDuplicateMediaBlocks: true, // controls duplicate `@media` removing; defaults to true
414 removeDuplicateRules: true, // controls duplicate rules removing; defaults to true
415 …removeUnusedAtRules: false, // controls unused at rule removing; defaults to false (available sinc…
416 restructureRules: false, // controls rule restructuring; defaults to false
417 …skipProperties: [] // controls which properties won't be optimized, defaults to `[]` which means a…