It appears you have a well-structured Git repository with various files, including SVG icons and HTML documents. Here's a brief overview:

This commit is contained in:
2025-06-11 09:05:15 +02:00
parent 36c2466e53
commit 6d6aa954dd
15556 changed files with 1076330 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

310
backend/node_modules/cssnano-preset-default/README.md generated vendored Normal file
View File

@@ -0,0 +1,310 @@
# cssnano-preset-default
> Safe defaults for cssnano which require minimal configuration.
## Table of Contents
- [Overview](#overview)
- [Usage](#usage)
- [Install](#install)
- [Configuration](#configuration)
- [Plugins](#plugins)
- [css-declaration-sorter (external)](#css-declaration-sorter-external)
- [cssnano-utils](#cssnano-utils)
- [postcss-calc (external)](#postcss-calc-external)
- [postcss-colormin](#postcss-colormin)
- [postcss-convert-values](#postcss-convert-values)
- [postcss-discard-comments](#postcss-discard-comments)
- [postcss-discard-duplicates](#postcss-discard-duplicates)
- [postcss-discard-empty](#postcss-discard-empty)
- [postcss-discard-overridden](#postcss-discard-overridden)
- [postcss-merge-longhand](#postcss-merge-longhand)
- [postcss-merge-rules](#postcss-merge-rules)
- [postcss-minify-font-values](#postcss-minify-font-values)
- [postcss-minify-gradients](#postcss-minify-gradients)
- [postcss-minify-params](#postcss-minify-params)
- [postcss-minify-selectors](#postcss-minify-selectors)
- [postcss-normalize-charset](#postcss-normalize-charset)
- [postcss-normalize-display-values](#postcss-normalize-display-values)
- [postcss-normalize-positions](#postcss-normalize-positions)
- [postcss-normalize-repeat-style](#postcss-normalize-repeat-style)
- [postcss-normalize-string](#postcss-normalize-string)
- [postcss-normalize-timing-functions](#postcss-normalize-timing-functions)
- [postcss-normalize-unicode](#postcss-normalize-unicode)
- [postcss-normalize-url](#postcss-normalize-url)
- [postcss-normalize-whitespace](#postcss-normalize-whitespace)
- [postcss-ordered-values](#postcss-ordered-values)
- [postcss-reduce-initial](#postcss-reduce-initial)
- [postcss-reduce-transforms](#postcss-reduce-transforms)
- [postcss-svgo](#postcss-svgo)
- [postcss-unique-selectors](#postcss-unique-selectors)
- [Contributors](#contributors)
- [License](#license)
## Overview
This default preset for cssnano only includes transforms that make no
assumptions about your CSS other than what is passed in. In previous
iterations of cssnano, assumptions were made about your CSS which caused
output to look different in certain use cases, but not others. These
transforms have been moved from the defaults to other presets, to make
this preset require only minimal configuration.
## Usage
### Install
Note that this preset comes bundled with cssnano _by default_, so you don't need to install it separately.
### Configuration
If you would like to use the default configuration, then you don't need to add anything to your `package.json`.
But should you wish to customise this, you can pass an array with the second parameter as the options object to use. For example, to remove all comments:
```diff
{
"name": "awesome-application",
+ "cssnano": {
+ "preset": [
+ "default",
+ {"discardComments": {"removeAll": true}}
+ ]
+ }
}
```
Depending on your usage, the JSON configuration might not work for you, such as in cases where you would like to use options with customisable function parameters. For this use case, we recommend a `cssnano.config.js` at the same location as your `package.json`. You can then load a preset and export it with your custom parameters:
```js
const defaultPreset = require('cssnano-preset-default');
module.exports = defaultPreset({
discardComments: {
remove: (comment) => comment[0] === '@',
},
});
```
Note that you may wish to publish your own preset to npm for reusability, should it differ a lot from this one. This is highly encouraged!
## Plugins
### [`css-declaration-sorter`](https://github.com/Siilwyn/css-declaration-sorter) (external)
> Sorts CSS declarations fast and automatically in a certain order.
This plugin is loaded with the following configuration:
```js
{
keepOverrides: true
}
```
### [`cssnano-utils`](https://github.com/cssnano/cssnano/tree/master/packages/cssnano-utils)
> Utility methods used by cssnano
### [`postcss-calc`](https://github.com/postcss/postcss-calc) (external)
> PostCSS plugin to reduce calc()
This plugin is loaded with its default configuration.
### [`postcss-colormin`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-colormin)
> Minify colors in your CSS files with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-convert-values`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-convert-values)
> Convert values with PostCSS (e.g. ms -> s)
This plugin is loaded with the following configuration:
```js
{
length: false;
}
```
### [`postcss-discard-comments`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-discard-comments)
> Discard comments in your CSS files with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-discard-duplicates`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-discard-duplicates)
> Discard duplicate rules in your CSS files with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-discard-empty`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-discard-empty)
> Discard empty rules and values with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-discard-overridden`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-discard-overridden)
> PostCSS plugin to discard overridden @keyframes or @counter-style.
This plugin is loaded with its default configuration.
### [`postcss-merge-longhand`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-merge-longhand)
> Merge longhand properties into shorthand with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-merge-rules`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-merge-rules)
> Merge CSS rules with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-minify-font-values`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-minify-font-values)
> Minify font declarations with PostCSS
This plugin is loaded with its default configuration.
### [`postcss-minify-gradients`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-minify-gradients)
> Minify gradient parameters with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-minify-params`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-minify-params)
> Minify at-rule params with PostCSS
This plugin is loaded with its default configuration.
### [`postcss-minify-selectors`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-minify-selectors)
> Minify selectors with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-normalize-charset`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-charset)
> Add necessary or remove extra charset with PostCSS
This plugin is loaded with the following configuration:
```js
{
add: false;
}
```
### [`postcss-normalize-display-values`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-display-values)
> Normalize multiple value display syntaxes into single values.
This plugin is loaded with its default configuration.
### [`postcss-normalize-positions`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-positions)
> Normalize keyword values for position into length values.
This plugin is loaded with its default configuration.
### [`postcss-normalize-repeat-style`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-repeat-style)
> Convert two value syntax for repeat-style into one value.
This plugin is loaded with its default configuration.
### [`postcss-normalize-string`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-string)
> Normalize wrapping quotes for CSS string literals.
This plugin is loaded with its default configuration.
### [`postcss-normalize-timing-functions`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-timing-functions)
> Normalize CSS animation/transition timing functions.
This plugin is loaded with its default configuration.
### [`postcss-normalize-unicode`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-unicode)
> Normalize unicode-range descriptors, and can convert to wildcard ranges.
This plugin is loaded with its default configuration.
### [`postcss-normalize-url`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-url)
> Normalize URLs with PostCSS
This plugin is loaded with its default configuration.
### [`postcss-normalize-whitespace`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-normalize-whitespace)
> Trim whitespace inside and around CSS rules & declarations.
This plugin is loaded with its default configuration.
### [`postcss-ordered-values`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-ordered-values)
> Ensure values are ordered consistently in your CSS.
This plugin is loaded with its default configuration.
### [`postcss-reduce-initial`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-reduce-initial)
> Reduce initial definitions to the actual initial value, where possible.
This plugin is loaded with its default configuration.
### [`postcss-reduce-transforms`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-reduce-transforms)
> Reduce transform functions with PostCSS.
This plugin is loaded with its default configuration.
### [`postcss-svgo`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-svgo)
> Optimise inline SVG with PostCSS.
This plugin is loaded with the following configuration:
```js
{
plugins: [
{
name: 'preset-default',
params: {
overrides: {
removeViewBox: false,
},
},
},
],
}
```
### [`postcss-unique-selectors`](https://github.com/cssnano/cssnano/tree/master/packages/postcss-unique-selectors)
> Ensure CSS selectors are unique.
This plugin is loaded with its default configuration.
## Contributors
See [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).
## License
MIT © [Ben Briggs](http://beneb.info)

View File

@@ -0,0 +1,64 @@
{
"name": "cssnano-preset-default",
"version": "7.0.7",
"main": "src/index.js",
"types": "types/index.d.ts",
"description": "Safe defaults for cssnano which require minimal configuration.",
"files": [
"LICENSE-MIT",
"src",
"types"
],
"license": "MIT",
"dependencies": {
"browserslist": "^4.24.5",
"css-declaration-sorter": "^7.2.0",
"postcss-calc": "^10.1.1",
"cssnano-utils": "^5.0.1",
"postcss-colormin": "^7.0.3",
"postcss-convert-values": "^7.0.5",
"postcss-discard-comments": "^7.0.4",
"postcss-discard-duplicates": "^7.0.2",
"postcss-discard-empty": "^7.0.1",
"postcss-discard-overridden": "^7.0.1",
"postcss-merge-longhand": "^7.0.5",
"postcss-merge-rules": "^7.0.5",
"postcss-minify-font-values": "^7.0.1",
"postcss-minify-gradients": "^7.0.1",
"postcss-minify-params": "^7.0.3",
"postcss-minify-selectors": "^7.0.5",
"postcss-normalize-charset": "^7.0.1",
"postcss-normalize-display-values": "^7.0.1",
"postcss-normalize-positions": "^7.0.1",
"postcss-normalize-repeat-style": "^7.0.1",
"postcss-normalize-string": "^7.0.1",
"postcss-normalize-timing-functions": "^7.0.1",
"postcss-normalize-unicode": "^7.0.3",
"postcss-normalize-url": "^7.0.1",
"postcss-normalize-whitespace": "^7.0.1",
"postcss-ordered-values": "^7.0.2",
"postcss-reduce-initial": "^7.0.3",
"postcss-reduce-transforms": "^7.0.1",
"postcss-svgo": "^7.0.2",
"postcss-unique-selectors": "^7.0.4"
},
"author": {
"name": "Ben Briggs",
"email": "beneb.info@gmail.com",
"url": "http://beneb.info"
},
"repository": "cssnano/cssnano",
"homepage": "https://github.com/cssnano/cssnano",
"bugs": {
"url": "https://github.com/cssnano/cssnano/issues"
},
"engines": {
"node": "^18.12.0 || ^20.9.0 || >=22.0"
},
"devDependencies": {
"postcss": "^8.5.3"
},
"peerDependencies": {
"postcss": "^8.4.32"
}
}

View File

@@ -0,0 +1,211 @@
'use strict';
/**
* @author Ben Briggs
* @license MIT
* @module cssnano:preset:default
* @overview
*
* This default preset for cssnano only includes transforms that make no
* assumptions about your CSS other than what is passed in. In previous
* iterations of cssnano, assumptions were made about your CSS which caused
* output to look different in certain use cases, but not others. These
* transforms have been moved from the defaults to other presets, to make
* this preset require only minimal configuration.
*/
const cssDeclarationSorter = require('css-declaration-sorter');
const postcssDiscardComments = require('postcss-discard-comments');
const postcssReduceInitial = require('postcss-reduce-initial');
const postcssMinifyGradients = require('postcss-minify-gradients');
const postcssSvgo = require('postcss-svgo');
const postcssReduceTransforms = require('postcss-reduce-transforms');
const postcssConvertValues = require('postcss-convert-values');
const postcssCalc = require('postcss-calc');
const postcssColormin = require('postcss-colormin');
const postcssOrderedValues = require('postcss-ordered-values');
const postcssMinifySelectors = require('postcss-minify-selectors');
const postcssMinifyParams = require('postcss-minify-params');
const postcssNormalizeCharset = require('postcss-normalize-charset');
const postcssMinifyFontValues = require('postcss-minify-font-values');
const postcssNormalizeUrl = require('postcss-normalize-url');
const postcssMergeLonghand = require('postcss-merge-longhand');
const postcssDiscardDuplicates = require('postcss-discard-duplicates');
const postcssDiscardOverridden = require('postcss-discard-overridden');
const postcssNormalizeRepeatStyle = require('postcss-normalize-repeat-style');
const postcssMergeRules = require('postcss-merge-rules');
const postcssDiscardEmpty = require('postcss-discard-empty');
const postcssUniqueSelectors = require('postcss-unique-selectors');
const postcssNormalizeString = require('postcss-normalize-string');
const postcssNormalizePositions = require('postcss-normalize-positions');
const postcssNormalizeWhitespace = require('postcss-normalize-whitespace');
const postcssNormalizeUnicode = require('postcss-normalize-unicode');
const postcssNormalizeDisplayValues = require('postcss-normalize-display-values');
const postcssNormalizeTimingFunctions = require('postcss-normalize-timing-functions');
const { rawCache } = require('cssnano-utils');
/**
* @template {object | void} [OptionsExtends=void]
* @typedef {false | OptionsExtends & {exclude?: true}} SimpleOptions
*/
/**
* @typedef {object} Options
* @property {SimpleOptions<Parameters<typeof cssDeclarationSorter>[0]>} [cssDeclarationSorter]
* @property {SimpleOptions<import('postcss-discard-comments').Options>} [discardComments]
* @property {SimpleOptions<import('postcss-reduce-initial').Options>} [reduceInitial]
* @property {SimpleOptions} [minifyGradients]
* @property {SimpleOptions<import('postcss-svgo').Options>} [svgo]
* @property {SimpleOptions} [reduceTransforms]
* @property {SimpleOptions<import('postcss-convert-values').Options>} [convertValues]
* @property {SimpleOptions<import('postcss-calc').PostCssCalcOptions>} [calc]
* @property {SimpleOptions<import('postcss-colormin').Options>} [colormin]
* @property {SimpleOptions} [orderedValues]
* @property {SimpleOptions<import('postcss-minify-selectors').Options>} [minifySelectors]
* @property {SimpleOptions<import('postcss-minify-params').Options>} [minifyParams]
* @property {SimpleOptions<import('postcss-normalize-charset').Options>} [normalizeCharset]
* @property {SimpleOptions<import('postcss-minify-font-values').Options>} [minifyFontValues]
* @property {SimpleOptions} [normalizeUrl]
* @property {SimpleOptions} [mergeLonghand]
* @property {SimpleOptions} [discardDuplicates]
* @property {SimpleOptions} [discardOverridden]
* @property {SimpleOptions} [normalizeRepeatStyle]
* @property {SimpleOptions<import('postcss-merge-rules').Options>} [mergeRules]
* @property {SimpleOptions} [discardEmpty]
* @property {SimpleOptions} [uniqueSelectors]
* @property {SimpleOptions<import('postcss-normalize-string').Options>} [normalizeString]
* @property {SimpleOptions} [normalizePositions]
* @property {SimpleOptions} [normalizeWhitespace]
* @property {SimpleOptions<import('postcss-normalize-unicode').Options>} [normalizeUnicode]
* @property {SimpleOptions} [normalizeDisplayValues]
* @property {SimpleOptions} [normalizeTimingFunctions]
* @property {SimpleOptions} [rawCache]
*/
/**
* @typedef {{ overrideBrowserslist?: string | string[] }} AutoprefixerOptions
* @typedef {Pick<import('browserslist').Options, 'stats' | 'path' | 'env'>} BrowserslistOptions
*/
/**
* @param {[import('postcss').PluginCreator<any>, keyof Options][]} plugins
* @param {Parameters<typeof defaultPreset>[0]} opts
* @returns {ReturnType<typeof defaultPreset>["plugins"]}
*/
function configurePlugins(plugins, opts = {}) {
const { overrideBrowserslist, stats, env, path } = opts;
// Shared Autoprefixer + Browserslist options
const sharedProps = {
overrideBrowserslist,
stats,
env,
path,
};
/**
* @type {Options}
*/
const defaults = {
colormin: {
...sharedProps,
},
convertValues: {
length: false,
...sharedProps,
},
mergeRules: {
...sharedProps,
},
minifyParams: {
...sharedProps,
},
normalizeCharset: {
add: false,
},
normalizeUnicode: {
...sharedProps,
},
reduceInitial: {
...sharedProps,
},
cssDeclarationSorter: {
keepOverrides: true,
},
minifySelectors: {
sort: true,
},
svgo: {
plugins: [
{
name: 'preset-default',
params: {
overrides: {
removeViewBox: false,
removeTitle: false,
},
},
},
],
},
};
// Merge option properties for each plugin
return plugins.map(([plugin, opt]) => {
const defaultProps = defaults[opt] ?? {};
const presetProps = opts[opt] ?? {};
return [
plugin,
presetProps !== false
? { ...defaultProps, ...presetProps }
: { exclude: true },
];
});
}
/**
* Safe defaults for cssnano which require minimal configuration
*
* @param {Options & AutoprefixerOptions & BrowserslistOptions} opts
* @returns {{ plugins: [import('postcss').PluginCreator<any>, Options[keyof Options]][] }}
*/
function defaultPreset(opts = {}) {
return {
plugins: configurePlugins(
[
[postcssDiscardComments, 'discardComments'],
[postcssMinifyGradients, 'minifyGradients'],
[postcssReduceInitial, 'reduceInitial'],
[postcssSvgo, 'svgo'],
[postcssNormalizeDisplayValues, 'normalizeDisplayValues'],
[postcssReduceTransforms, 'reduceTransforms'],
[postcssColormin, 'colormin'],
[postcssNormalizeTimingFunctions, 'normalizeTimingFunctions'],
[postcssCalc, 'calc'],
[postcssConvertValues, 'convertValues'],
[postcssOrderedValues, 'orderedValues'],
[postcssMinifySelectors, 'minifySelectors'],
[postcssMinifyParams, 'minifyParams'],
[postcssNormalizeCharset, 'normalizeCharset'],
[postcssDiscardOverridden, 'discardOverridden'],
[postcssNormalizeString, 'normalizeString'],
[postcssNormalizeUnicode, 'normalizeUnicode'],
[postcssMinifyFontValues, 'minifyFontValues'],
[postcssNormalizeUrl, 'normalizeUrl'],
[postcssNormalizeRepeatStyle, 'normalizeRepeatStyle'],
[postcssNormalizePositions, 'normalizePositions'],
[postcssNormalizeWhitespace, 'normalizeWhitespace'],
[postcssMergeLonghand, 'mergeLonghand'],
[postcssDiscardDuplicates, 'discardDuplicates'],
[postcssMergeRules, 'mergeRules'],
[postcssDiscardEmpty, 'discardEmpty'],
[postcssUniqueSelectors, 'uniqueSelectors'],
[cssDeclarationSorter, 'cssDeclarationSorter'],
[rawCache, 'rawCache'],
],
opts
),
};
}
module.exports = defaultPreset;

View File

@@ -0,0 +1,68 @@
export = defaultPreset;
/**
* Safe defaults for cssnano which require minimal configuration
*
* @param {Options & AutoprefixerOptions & BrowserslistOptions} opts
* @returns {{ plugins: [import('postcss').PluginCreator<any>, Options[keyof Options]][] }}
*/
declare function defaultPreset(opts?: Options & AutoprefixerOptions & BrowserslistOptions): {
plugins: [import("postcss").PluginCreator<any>, Options[keyof Options]][];
};
declare namespace defaultPreset {
export { SimpleOptions, Options, AutoprefixerOptions, BrowserslistOptions };
}
type SimpleOptions<OptionsExtends extends object | void = void> = false | (OptionsExtends & {
exclude?: true;
});
type Options = {
cssDeclarationSorter?: SimpleOptions<{
order?: ("alphabetical" | "concentric-css" | "smacss") | ((propertyNameA: string, propertyNameB: string) => -1 | 0 | 1) | undefined;
keepOverrides?: boolean;
} | undefined> | undefined;
discardComments?: SimpleOptions<postcssDiscardComments.Options> | undefined;
reduceInitial?: SimpleOptions<postcssReduceInitial.Options> | undefined;
minifyGradients?: SimpleOptions<void> | undefined;
svgo?: SimpleOptions<postcssSvgo.Options> | undefined;
reduceTransforms?: SimpleOptions<void> | undefined;
convertValues?: SimpleOptions<postcssConvertValues.Options> | undefined;
calc?: SimpleOptions<postcssCalc.PostCssCalcOptions> | undefined;
colormin?: SimpleOptions<postcssColormin.Options> | undefined;
orderedValues?: SimpleOptions<void> | undefined;
minifySelectors?: SimpleOptions<postcssMinifySelectors.Options> | undefined;
minifyParams?: SimpleOptions<postcssMinifyParams.Options> | undefined;
normalizeCharset?: SimpleOptions<postcssNormalizeCharset.Options> | undefined;
minifyFontValues?: SimpleOptions<postcssMinifyFontValues.Options> | undefined;
normalizeUrl?: SimpleOptions<void> | undefined;
mergeLonghand?: SimpleOptions<void> | undefined;
discardDuplicates?: SimpleOptions<void> | undefined;
discardOverridden?: SimpleOptions<void> | undefined;
normalizeRepeatStyle?: SimpleOptions<void> | undefined;
mergeRules?: SimpleOptions<postcssMergeRules.Options> | undefined;
discardEmpty?: SimpleOptions<void> | undefined;
uniqueSelectors?: SimpleOptions<void> | undefined;
normalizeString?: SimpleOptions<postcssNormalizeString.Options> | undefined;
normalizePositions?: SimpleOptions<void> | undefined;
normalizeWhitespace?: SimpleOptions<void> | undefined;
normalizeUnicode?: SimpleOptions<postcssNormalizeUnicode.Options> | undefined;
normalizeDisplayValues?: SimpleOptions<void> | undefined;
normalizeTimingFunctions?: SimpleOptions<void> | undefined;
rawCache?: SimpleOptions<void> | undefined;
};
type AutoprefixerOptions = {
overrideBrowserslist?: string | string[];
};
type BrowserslistOptions = Pick<import("browserslist").Options, "stats" | "path" | "env">;
import postcssDiscardComments = require("postcss-discard-comments");
import postcssReduceInitial = require("postcss-reduce-initial");
import postcssSvgo = require("postcss-svgo");
import postcssConvertValues = require("postcss-convert-values");
import postcssCalc = require("postcss-calc");
import postcssColormin = require("postcss-colormin");
import postcssMinifySelectors = require("postcss-minify-selectors");
import postcssMinifyParams = require("postcss-minify-params");
import postcssNormalizeCharset = require("postcss-normalize-charset");
import postcssMinifyFontValues = require("postcss-minify-font-values");
import postcssMergeRules = require("postcss-merge-rules");
import postcssNormalizeString = require("postcss-normalize-string");
import postcssNormalizeUnicode = require("postcss-normalize-unicode");
//# sourceMappingURL=index.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":";AAqKA;;;;;GAKG;AACH,sCAHW,OAAO,GAAG,mBAAmB,GAAG,mBAAmB,GACjD;IAAE,OAAO,EAAE,CAAC,OAAO,SAAS,EAAE,aAAa,CAAC,GAAG,CAAC,EAAE,OAAO,CAAC,MAAM,OAAO,CAAC,CAAC,EAAE,CAAA;CAAE,CAuCzF;;;;mBAlK6B,cAAc,SAA9B,MAAM,GAAG,IAAK,WACf,KAAK,IAAG,cAAc,GAAG;IAAC,OAAO,CAAC,EAAE,IAAI,CAAA;CAAC,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAqCzC;IAAE,oBAAoB,CAAC,EAAE,MAAM,GAAG,MAAM,EAAE,CAAA;CAAE;2BAC5C,IAAI,CAAC,OAAO,cAAc,EAAE,OAAO,EAAE,OAAO,GAAG,MAAM,GAAG,KAAK,CAAC"}