Update dependency postcss-custom-properties to v13
This MR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
postcss-custom-properties (source) | ^10.0.0 -> ^13.0.0 |
Release Notes
csstools/postcss-plugins
v13.1.4
- Fixed: exception on chained variable declarations.
v13.1.3
- Fixed: exception on missing variables.
v13.1.2
- Do not apply fallback values when these contain unresolvable custom properties.
v13.1.1
- Improve
types
declaration inpackage.json
v13.1.0
- Added: Support for Cascade Layers.
- Improve plugin performance (port of fixes in
v12.1.11
)
v13.0.0
- Updated: Support for Node v14+ (major).
- Removed :
importFrom
feature (breaking). - Removed :
exportTo
feature (breaking). - Added support for local custom property declarations.
.example {
--a-value: 20px;
margin: var(--a-value);
}
/* becomes */
.example {
--a-value: 20px;
margin: 20px;
margin: var(--a-value);
}
v12.1.11
- Improve plugin performance
v12.1.10
- Fix how
preserve: false
interacts with logic around duplicate code (see12.1.9
).
:root {
--my-order: 1;
}
.foo {
order: 1;
order: var(--my-order);
}
/* With `preserve: false` : */
.foo {
order: 1;
}
v12.1.9
- Prevent duplicate code generation.
.foo {
order: 1;
order: var(--my-order, 1);
}
/* becomes */
.foo {
order: 1;
- order: 1;
order: var(--my-order, 1);
}
v12.1.8
- Remove some unneeded regular expressions.
v12.1.7
- Fix racing condition that could happen when using other async PostCSS plugins (#331)
v12.1.6
- Fix
var()
fallback value downgrades with value lists.
v12.1.5
- Add deprecation notice for
importFrom
andexportTo
v12.1.4
- Fix
.mjs
inimportFrom
when usingexport default
- Fix
.mjs
inimportFrom
on Windows
v12.1.3
- Reset plugin state after each process. It is now safe to use the plugin multiple times for different processes or when watching.
v12.1.2
- Fix TypeScript transpilation.
- Avoid throwing errors on unexpected option objects.
v12.1.1
- Improve plugin performance
v12.1.0
- Add
overrideImportFromWithRoot
option - Allow
.mjs
inimportFrom
- Converted to TypeScript
- Correct typings for plugin options
- Fix unicode support in custom property names
v12.0.4
- Fixed an issue that was causing synchronous mode to not being able to pick and transform properties that were added as part of the PostCSS flow. (#132)
v12.0.3
v12.0.2
- Removed Sourcemaps from package tarball.
- Moved CLI to CLI Package. See announcement.
v12.0.1
- Changed: now uses
postcss-value-parser
for parsing. - Updated: documentation
v12.0.0
- Updated: Support for PostCS 8+ (major).
- Updated: Support for Node 12+ (major).
v11.0.0
- Added: Support for PostCSS v8.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.