mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 13:42:20 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
22
web/node_modules/cssnano-preset-default/LICENSE-MIT
generated
vendored
Normal file
22
web/node_modules/cssnano-preset-default/LICENSE-MIT
generated
vendored
Normal 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.
|
297
web/node_modules/cssnano-preset-default/README.md
generated
vendored
Normal file
297
web/node_modules/cssnano-preset-default/README.md
generated
vendored
Normal file
|
@ -0,0 +1,297 @@
|
|||
# cssnano-preset-default
|
||||
|
||||
> Safe defaults for cssnano which require minimal configuration.
|
||||
|
||||
|
||||
## Table of Contents
|
||||
|
||||
- [Overview](#overview)
|
||||
|
||||
- [Usage](#usage)
|
||||
|
||||
- [Install](#install)
|
||||
- [Configuration](#configuration)
|
||||
|
||||
- [Plugins](#plugins)
|
||||
|
||||
- [cssnano-util-raw-cache](#cssnano-util-raw-cache)
|
||||
- [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 its default configuration.
|
||||
|
||||
### [`cssnano-util-raw-cache`](https://github.com/cssnano/cssnano/tree/master/packages/cssnano-util-raw-cache)
|
||||
|
||||
> Manages the raw value formatting for generated AST nodes.
|
||||
|
||||
This plugin is loaded with its default configuration.
|
||||
|
||||
### [`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 its default configuration.
|
||||
|
||||
### [`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)
|
||||
|
157
web/node_modules/cssnano-preset-default/dist/index.js
generated
vendored
Normal file
157
web/node_modules/cssnano-preset-default/dist/index.js
generated
vendored
Normal file
|
@ -0,0 +1,157 @@
|
|||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = defaultPreset;
|
||||
|
||||
var _cssDeclarationSorter = require('css-declaration-sorter');
|
||||
|
||||
var _cssDeclarationSorter2 = _interopRequireDefault(_cssDeclarationSorter);
|
||||
|
||||
var _postcssDiscardComments = require('postcss-discard-comments');
|
||||
|
||||
var _postcssDiscardComments2 = _interopRequireDefault(_postcssDiscardComments);
|
||||
|
||||
var _postcssReduceInitial = require('postcss-reduce-initial');
|
||||
|
||||
var _postcssReduceInitial2 = _interopRequireDefault(_postcssReduceInitial);
|
||||
|
||||
var _postcssMinifyGradients = require('postcss-minify-gradients');
|
||||
|
||||
var _postcssMinifyGradients2 = _interopRequireDefault(_postcssMinifyGradients);
|
||||
|
||||
var _postcssSvgo = require('postcss-svgo');
|
||||
|
||||
var _postcssSvgo2 = _interopRequireDefault(_postcssSvgo);
|
||||
|
||||
var _postcssReduceTransforms = require('postcss-reduce-transforms');
|
||||
|
||||
var _postcssReduceTransforms2 = _interopRequireDefault(_postcssReduceTransforms);
|
||||
|
||||
var _postcssConvertValues = require('postcss-convert-values');
|
||||
|
||||
var _postcssConvertValues2 = _interopRequireDefault(_postcssConvertValues);
|
||||
|
||||
var _postcssCalc = require('postcss-calc');
|
||||
|
||||
var _postcssCalc2 = _interopRequireDefault(_postcssCalc);
|
||||
|
||||
var _postcssColormin = require('postcss-colormin');
|
||||
|
||||
var _postcssColormin2 = _interopRequireDefault(_postcssColormin);
|
||||
|
||||
var _postcssOrderedValues = require('postcss-ordered-values');
|
||||
|
||||
var _postcssOrderedValues2 = _interopRequireDefault(_postcssOrderedValues);
|
||||
|
||||
var _postcssMinifySelectors = require('postcss-minify-selectors');
|
||||
|
||||
var _postcssMinifySelectors2 = _interopRequireDefault(_postcssMinifySelectors);
|
||||
|
||||
var _postcssMinifyParams = require('postcss-minify-params');
|
||||
|
||||
var _postcssMinifyParams2 = _interopRequireDefault(_postcssMinifyParams);
|
||||
|
||||
var _postcssNormalizeCharset = require('postcss-normalize-charset');
|
||||
|
||||
var _postcssNormalizeCharset2 = _interopRequireDefault(_postcssNormalizeCharset);
|
||||
|
||||
var _postcssMinifyFontValues = require('postcss-minify-font-values');
|
||||
|
||||
var _postcssMinifyFontValues2 = _interopRequireDefault(_postcssMinifyFontValues);
|
||||
|
||||
var _postcssNormalizeUrl = require('postcss-normalize-url');
|
||||
|
||||
var _postcssNormalizeUrl2 = _interopRequireDefault(_postcssNormalizeUrl);
|
||||
|
||||
var _postcssMergeLonghand = require('postcss-merge-longhand');
|
||||
|
||||
var _postcssMergeLonghand2 = _interopRequireDefault(_postcssMergeLonghand);
|
||||
|
||||
var _postcssDiscardDuplicates = require('postcss-discard-duplicates');
|
||||
|
||||
var _postcssDiscardDuplicates2 = _interopRequireDefault(_postcssDiscardDuplicates);
|
||||
|
||||
var _postcssDiscardOverridden = require('postcss-discard-overridden');
|
||||
|
||||
var _postcssDiscardOverridden2 = _interopRequireDefault(_postcssDiscardOverridden);
|
||||
|
||||
var _postcssNormalizeRepeatStyle = require('postcss-normalize-repeat-style');
|
||||
|
||||
var _postcssNormalizeRepeatStyle2 = _interopRequireDefault(_postcssNormalizeRepeatStyle);
|
||||
|
||||
var _postcssMergeRules = require('postcss-merge-rules');
|
||||
|
||||
var _postcssMergeRules2 = _interopRequireDefault(_postcssMergeRules);
|
||||
|
||||
var _postcssDiscardEmpty = require('postcss-discard-empty');
|
||||
|
||||
var _postcssDiscardEmpty2 = _interopRequireDefault(_postcssDiscardEmpty);
|
||||
|
||||
var _postcssUniqueSelectors = require('postcss-unique-selectors');
|
||||
|
||||
var _postcssUniqueSelectors2 = _interopRequireDefault(_postcssUniqueSelectors);
|
||||
|
||||
var _postcssNormalizeString = require('postcss-normalize-string');
|
||||
|
||||
var _postcssNormalizeString2 = _interopRequireDefault(_postcssNormalizeString);
|
||||
|
||||
var _postcssNormalizePositions = require('postcss-normalize-positions');
|
||||
|
||||
var _postcssNormalizePositions2 = _interopRequireDefault(_postcssNormalizePositions);
|
||||
|
||||
var _postcssNormalizeWhitespace = require('postcss-normalize-whitespace');
|
||||
|
||||
var _postcssNormalizeWhitespace2 = _interopRequireDefault(_postcssNormalizeWhitespace);
|
||||
|
||||
var _postcssNormalizeUnicode = require('postcss-normalize-unicode');
|
||||
|
||||
var _postcssNormalizeUnicode2 = _interopRequireDefault(_postcssNormalizeUnicode);
|
||||
|
||||
var _postcssNormalizeDisplayValues = require('postcss-normalize-display-values');
|
||||
|
||||
var _postcssNormalizeDisplayValues2 = _interopRequireDefault(_postcssNormalizeDisplayValues);
|
||||
|
||||
var _postcssNormalizeTimingFunctions = require('postcss-normalize-timing-functions');
|
||||
|
||||
var _postcssNormalizeTimingFunctions2 = _interopRequireDefault(_postcssNormalizeTimingFunctions);
|
||||
|
||||
var _cssnanoUtilRawCache = require('cssnano-util-raw-cache');
|
||||
|
||||
var _cssnanoUtilRawCache2 = _interopRequireDefault(_cssnanoUtilRawCache);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
const defaultOpts = {
|
||||
convertValues: {
|
||||
length: false
|
||||
},
|
||||
normalizeCharset: {
|
||||
add: false
|
||||
},
|
||||
cssDeclarationSorter: {
|
||||
exclude: true
|
||||
}
|
||||
}; /**
|
||||
* @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.
|
||||
*/
|
||||
|
||||
function defaultPreset(opts = {}) {
|
||||
const options = Object.assign({}, defaultOpts, opts);
|
||||
|
||||
const plugins = [[_postcssDiscardComments2.default, options.discardComments], [_postcssMinifyGradients2.default, options.minifyGradients], [_postcssReduceInitial2.default, options.reduceInitial], [_postcssSvgo2.default, options.svgo], [_postcssNormalizeDisplayValues2.default, options.normalizeDisplayValues], [_postcssReduceTransforms2.default, options.reduceTransforms], [_postcssColormin2.default, options.colormin], [_postcssNormalizeTimingFunctions2.default, options.normalizeTimingFunctions], [_postcssCalc2.default, options.calc], [_postcssConvertValues2.default, options.convertValues], [_postcssOrderedValues2.default, options.orderedValues], [_postcssMinifySelectors2.default, options.minifySelectors], [_postcssMinifyParams2.default, options.minifyParams], [_postcssNormalizeCharset2.default, options.normalizeCharset], [_postcssDiscardOverridden2.default, options.discardOverridden], [_postcssNormalizeString2.default, options.normalizeString], [_postcssNormalizeUnicode2.default, options.normalizeUnicode], [_postcssMinifyFontValues2.default, options.minifyFontValues], [_postcssNormalizeUrl2.default, options.normalizeUrl], [_postcssNormalizeRepeatStyle2.default, options.normalizeRepeatStyle], [_postcssNormalizePositions2.default, options.normalizePositions], [_postcssNormalizeWhitespace2.default, options.normalizeWhitespace], [_postcssMergeLonghand2.default, options.mergeLonghand], [_postcssDiscardDuplicates2.default, options.discardDuplicates], [_postcssMergeRules2.default, options.mergeRules], [_postcssDiscardEmpty2.default, options.discardEmpty], [_postcssUniqueSelectors2.default, options.uniqueSelectors], [_cssDeclarationSorter2.default, options.cssDeclarationSorter], [_cssnanoUtilRawCache2.default, options.rawCache]];
|
||||
|
||||
return { plugins };
|
||||
}
|
||||
module.exports = exports['default'];
|
63
web/node_modules/cssnano-preset-default/package.json
generated
vendored
Normal file
63
web/node_modules/cssnano-preset-default/package.json
generated
vendored
Normal file
|
@ -0,0 +1,63 @@
|
|||
{
|
||||
"name": "cssnano-preset-default",
|
||||
"version": "4.0.8",
|
||||
"main": "dist/index.js",
|
||||
"description": "Safe defaults for cssnano which require minimal configuration.",
|
||||
"scripts": {
|
||||
"prepublish": "cross-env BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/"
|
||||
},
|
||||
"files": [
|
||||
"LICENSE-MIT",
|
||||
"dist"
|
||||
],
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"css-declaration-sorter": "^4.0.1",
|
||||
"cssnano-util-raw-cache": "^4.0.1",
|
||||
"postcss": "^7.0.0",
|
||||
"postcss-calc": "^7.0.1",
|
||||
"postcss-colormin": "^4.0.3",
|
||||
"postcss-convert-values": "^4.0.1",
|
||||
"postcss-discard-comments": "^4.0.2",
|
||||
"postcss-discard-duplicates": "^4.0.2",
|
||||
"postcss-discard-empty": "^4.0.1",
|
||||
"postcss-discard-overridden": "^4.0.1",
|
||||
"postcss-merge-longhand": "^4.0.11",
|
||||
"postcss-merge-rules": "^4.0.3",
|
||||
"postcss-minify-font-values": "^4.0.2",
|
||||
"postcss-minify-gradients": "^4.0.2",
|
||||
"postcss-minify-params": "^4.0.2",
|
||||
"postcss-minify-selectors": "^4.0.2",
|
||||
"postcss-normalize-charset": "^4.0.1",
|
||||
"postcss-normalize-display-values": "^4.0.2",
|
||||
"postcss-normalize-positions": "^4.0.2",
|
||||
"postcss-normalize-repeat-style": "^4.0.2",
|
||||
"postcss-normalize-string": "^4.0.2",
|
||||
"postcss-normalize-timing-functions": "^4.0.2",
|
||||
"postcss-normalize-unicode": "^4.0.1",
|
||||
"postcss-normalize-url": "^4.0.1",
|
||||
"postcss-normalize-whitespace": "^4.0.2",
|
||||
"postcss-ordered-values": "^4.1.2",
|
||||
"postcss-reduce-initial": "^4.0.3",
|
||||
"postcss-reduce-transforms": "^4.0.2",
|
||||
"postcss-svgo": "^4.0.3",
|
||||
"postcss-unique-selectors": "^4.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-cli": "^6.0.0",
|
||||
"cross-env": "^5.0.0"
|
||||
},
|
||||
"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": ">=6.9.0"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue