fix(deps): update postcss ecosystem (spectrum-two) (major) #4440
+553
−45
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
3.0.0→4.0.06.0.2→7.0.0Release Notes
castastrophe/postcss-licensing (postcss-licensing)
v4.0.0Compare Source
BREAKING CHANGES
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
shellscape/postcss-values-parser (postcss-values-parser)
v7.0.0Compare Source
7.0.0
Highlights
css-treefor correctness and performance.exports; no CommonJS output.registerWalkers()and can enablewalk*methods likewalkWords.Breaking changes
require('postcss-values-parser')is no longer supported. Useimport.engines).root.walkWords(...)in v6, callregisterWalkers(Container)once to add thewalk*methods.Word,Numeric,Func, etc., remain.Migration
Replace CommonJS with ESM imports.
Register walker helpers before using any
walk*APIs:import { parse, Container, registerWalkers } from 'postcss-values-parser';
registerWalkers(Container);
const root = parse('var(--foo)');
root.walkWords((word) => {
if (word.isVariable) console.log(word.value);
});
Review docs for updated node shapes and stringifier behavior.
Commits since v6.0.2
58c3ac0feat!: use css-tree, rewrite package for ESM (#149) — Andrew Powell1d367aadocs: update docs for v7 — shellscapec8b1647chore: add github workflows — shellscapeb19c7ebchore: use nvmrc — shellscapeMerged pull requests
Full Changelog: shellscape/postcss-values-parser@v6.0.2...v7.0.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.