Skip to content

Commit

Permalink
Bump the development-dependencies group with 11 updates (#1550)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Romain Menke <[email protected]>
  • Loading branch information
dependabot[bot] and romainmenke authored Jan 13, 2025
1 parent 50f9c3f commit 2614182
Show file tree
Hide file tree
Showing 32 changed files with 591 additions and 416 deletions.
919 changes: 545 additions & 374 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.13.0",
"@microsoft/api-documenter": "^7.26.1",
"@microsoft/api-extractor": "^7.48.0",
"@eslint/js": "^9.18.0",
"@microsoft/api-documenter": "^7.26.5",
"@microsoft/api-extractor": "^7.49.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.1.2",
"@stryker-mutator/core": "^8.7.0",
"eslint": "^9.15.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"knip": "^5.41.1",
"rollup": "^4.29.2",
"knip": "^5.42.0",
"rollup": "^4.30.1",
"tslib": "^2.8.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1"
},
"scripts": {
"everything": "npm run lint && npm run knip && npm run build && npm run docs && npm run test",
Expand Down
4 changes: 4 additions & 0 deletions packages/css-syntax-patches-for-csstree/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes to CSS Syntax Patches For CSSTree

### Unreleased (patch)

- Update `@webref/css` to [`v6.18.1`](https://github.com/w3c/webref/releases/tag/%40webref%2Fcss%406.18.1)

### 1.0.8

_December 27, 2024_
Expand Down
2 changes: 1 addition & 1 deletion packages/css-syntax-patches-for-csstree/dist/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@
"predefined-rectangular": "jzazbz | ictcp",
"predefined-rectangular-params": "<predefined-rectangular> [ <number> | <percentage> | none ]{3}",
"predefined-rgb": "srgb | srgb-linear | display-p3 | a98-rgb | prophoto-rgb | rec2020 | rec2100-pq | rec2100-hlg | rec2100-linear",
"progress": "[ <percentage> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?",
"progress": "[ <percentage-token> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?",
"progress()": "progress( <calc-sum> , <calc-sum> , <calc-sum> )",
"pseudo-page": "':' [ left | right | first | blank ]",
"pt-class-selector": "[ '.' <custom-ident> ]+",
Expand Down
2 changes: 1 addition & 1 deletion packages/css-syntax-patches-for-csstree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"postcss": "^8.4"
},
"devDependencies": {
"@webref/css": "^6.18.0",
"@webref/css": "^6.18.1",
"css-tree": "^3.1.0"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3087,8 +3087,8 @@
"type": "added",
"comment": "",
"syntax-b": "",
"syntax-a": "[ <percentage> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?",
"syntax-m": "[ <percentage> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?",
"syntax-a": "[ <percentage-token> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?",
"syntax-m": "[ <percentage-token> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?",
"tests": {
"passing": [],
"failing": []
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@
"progress": {
"type": "added",
"syntax-b": "",
"syntax-a": "[ <percentage> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?",
"syntax-a": "[ <percentage-token> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?",
"comment": ""
},
"progress()": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1182,7 +1182,7 @@
"syntax": "<predefined-rgb> [ <number> | <percentage> | none ]{3}"
},
"progress": {
"syntax": "[ <percentage> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?"
"syntax": "[ <percentage-token> | <number> | <'animation-timeline'> ] && [ by <easing-function> ]?"
},
"progress()": {
"syntax": "progress( <calc-sum> , <calc-sum> , <calc-sum> )"
Expand Down
2 changes: 1 addition & 1 deletion plugin-packs/postcss-preset-env/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
"devDependencies": {
"@csstools/postcss-bundler": "*",
"@csstools/postcss-tape": "*",
"@webref/css": "^6.18.0"
"@webref/css": "^6.18.1"
},
"scripts": {
"prebuild": "node ./scripts/generate-plugins-data.mjs && eslint --fix ./src/plugins/*.mjs",
Expand Down
4 changes: 2 additions & 2 deletions plugins-stylelint/at-risk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
"index.mjs"
],
"peerDependencies": {
"stylelint": "^16.12.0"
"stylelint": "^16.13.0"
},
"devDependencies": {
"@csstools/pack-test": "^1.0.1",
"stylelint": "^16.12.0",
"stylelint": "^16.13.0",
"stylelint-test-rule-node": "^0.3.0"
},
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions plugins-stylelint/formatter-github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"preprocess-warnings.mjs"
],
"peerDependencies": {
"stylelint": "^16.12.0"
"stylelint": "^16.13.0"
},
"devDependencies": {
"@csstools/pack-test": "^1.0.1",
"stylelint": "^16.12.0"
"stylelint": "^16.13.0"
},
"scripts": {
"lint": "node ../../.github/bin/format-package-json.mjs",
Expand Down
4 changes: 2 additions & 2 deletions plugins-stylelint/no-at-nest-rule/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
],
"peerDependencies": {
"postcss": "^8.4",
"stylelint": "^16.12.0"
"stylelint": "^16.13.0"
},
"devDependencies": {
"@csstools/pack-test": "^1.0.1",
"postcss": "^8.4",
"stylelint": "^16.12.0",
"stylelint": "^16.13.0",
"stylelint-test-rule-node": "^0.3.0"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
"@csstools/css-tokenizer": "^3.0.3"
},
"peerDependencies": {
"stylelint": "^16.12.0"
"stylelint": "^16.13.0"
},
"devDependencies": {
"@csstools/pack-test": "^1.0.1",
"stylelint": "^16.12.0",
"stylelint": "^16.13.0",
"stylelint-test-rule-node": "^0.3.0"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/css-blank-pseudo/dist/browser-global.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/css-blank-pseudo/dist/browser.cjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/css-blank-pseudo/dist/browser.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/css-blank-pseudo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
"devDependencies": {
"@csstools/postcss-tape": "*",
"puppeteer": "^23.11.1"
"puppeteer": "^24.0.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/css-has-pseudo/dist/browser-global.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/css-has-pseudo/dist/browser.cjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/css-has-pseudo/dist/browser.mjs.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/css-has-pseudo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"postcss-dir-pseudo-class": "*",
"postcss-logical": "*",
"postcss-nesting": "*",
"puppeteer": "^23.11.1"
"puppeteer": "^24.0.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/css-prefers-color-scheme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
},
"devDependencies": {
"@csstools/postcss-tape": "*",
"puppeteer": "^23.11.1"
"puppeteer": "^24.0.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-cascade-layers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"devDependencies": {
"@csstools/postcss-bundler": "*",
"@csstools/postcss-tape": "*",
"puppeteer": "^23.11.1"
"puppeteer": "^24.0.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-focus-visible/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
},
"devDependencies": {
"@csstools/postcss-tape": "*",
"puppeteer": "^23.11.1"
"puppeteer": "^24.0.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-focus-within/dist/browser-global.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 2614182

Please sign in to comment.