Skip to content

Commit 282eb76

Browse files
Bump the development-dependencies group across 1 directory with 14 updates (#1581)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Romain Menke <romainmenke@gmail.com>
1 parent d89f25a commit 282eb76

File tree

25 files changed

+484
-324
lines changed

25 files changed

+484
-324
lines changed

package-lock.json

+322-287
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@
2828
"devDependencies": {
2929
"@babel/core": "^7.26.7",
3030
"@babel/preset-env": "^7.26.7",
31-
"@eslint/js": "^9.19.0",
32-
"@microsoft/api-documenter": "^7.26.7",
33-
"@microsoft/api-extractor": "^7.49.2",
31+
"@eslint/js": "^9.22.0",
32+
"@microsoft/api-documenter": "^7.26.13",
33+
"@microsoft/api-extractor": "^7.51.1",
3434
"@rollup/plugin-babel": "^6.0.3",
35-
"@rollup/plugin-commonjs": "^28.0.2",
35+
"@rollup/plugin-commonjs": "^28.0.3",
3636
"@rollup/plugin-node-resolve": "^16.0.0",
3737
"@rollup/plugin-terser": "^0.4.3",
3838
"@rollup/plugin-typescript": "^12.1.2",
3939
"@stryker-mutator/core": "^8.7.0",
40-
"eslint": "^9.19.0",
40+
"eslint": "^9.22.0",
4141
"globals": "^16.0.0",
42-
"knip": "^5.43.6",
43-
"rollup": "^4.34.0",
42+
"knip": "^5.45.0",
43+
"rollup": "^4.35.0",
4444
"tslib": "^2.8.0",
45-
"typescript": "^5.7.3",
46-
"typescript-eslint": "^8.22.0"
45+
"typescript": "^5.8.2",
46+
"typescript-eslint": "^8.26.0"
4747
},
4848
"scripts": {
4949
"everything": "npm run lint && npm run knip && npm run build && npm run docs && npm run test",

packages/generate-test-cases/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"type": "module",
2222
"main": "src/index.mjs",
2323
"devDependencies": {
24-
"mdn-data": "^2.15.0"
24+
"mdn-data": "^2.17.0"
2525
},
2626
"scripts": {
2727
"build": "exit 0;",

plugin-packs/postcss-bundler/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"@csstools/postcss-tape": "*",
6060
"@rmenke/css-package-conditional-3": "^1.0.0",
6161
"@rmenke/css-package-main": "^1.0.0",
62-
"open-props": "^1.7.12"
62+
"open-props": "^1.7.13"
6363
},
6464
"scripts": {
6565
"build": "rollup -c ../../rollup/default.mjs",

plugin-packs/postcss-preset-env/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes to PostCSS Preset Env
22

3+
### Unreleased (patch)
4+
5+
- Updated [`cssdb`](https://github.com/csstools/cssdb) to [`8.2.4`](https://github.com/csstools/cssdb/blob/main/CHANGELOG.md#824-march-10-2025) (patch)
6+
37
### 10.1.5
48

59
_February 23, 2025_

plugin-packs/postcss-preset-env/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
"css-blank-pseudo": "^7.0.1",
9090
"css-has-pseudo": "^7.0.2",
9191
"css-prefers-color-scheme": "^10.0.0",
92-
"cssdb": "^8.2.3",
92+
"cssdb": "^8.2.4",
9393
"postcss-attribute-case-insensitive": "^7.0.1",
9494
"postcss-clamp": "^4.1.0",
9595
"postcss-color-functional-notation": "^7.0.8",
@@ -122,7 +122,7 @@
122122
"devDependencies": {
123123
"@csstools/postcss-bundler": "*",
124124
"@csstools/postcss-tape": "*",
125-
"@webref/css": "^6.18.1"
125+
"@webref/css": "^6.20.4"
126126
},
127127
"scripts": {
128128
"prebuild": "node ./scripts/generate-plugins-data.mjs && eslint --fix ./src/plugins/*.mjs",

plugin-packs/postcss-preset-env/test/basic.vendors-3.expect.css

+4-4
Original file line numberDiff line numberDiff line change
@@ -712,13 +712,13 @@
712712
}
713713

714714
.sign {
715-
order: sign(10px);
716-
z-index: sign(-10px);
715+
order: 1;
716+
z-index: -1;
717717
}
718718

719719
.abs {
720-
order: abs(10px);
721-
z-index: abs(-10px);
720+
order: 10px;
721+
z-index: 10px;
722722
}
723723

724724
.random {

plugin-packs/postcss-preset-env/test/logical-properties.css

+60
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,26 @@
2020
background-position-y: inherit;
2121
}
2222

23+
.background-repeat {
24+
/* background-repeat-block */
25+
background-repeat-block: inherit;
26+
}
27+
28+
.background-repeat {
29+
/* background-repeat-inline */
30+
background-repeat-inline: inherit;
31+
}
32+
33+
.background-repeat {
34+
/* background-repeat-x */
35+
background-repeat-x: inherit;
36+
}
37+
38+
.background-repeat {
39+
/* background-repeat-y */
40+
background-repeat-y: inherit;
41+
}
42+
2343
.border-color {
2444
/* border-block-end-color */
2545
border-block-end-color: inherit;
@@ -200,6 +220,46 @@
200220
contain-intrinsic-width: inherit;
201221
}
202222

223+
.corner-shape {
224+
/* corner-bottom-left-shape */
225+
corner-bottom-left-shape: inherit;
226+
}
227+
228+
.corner-shape {
229+
/* corner-bottom-right-shape */
230+
corner-bottom-right-shape: inherit;
231+
}
232+
233+
.corner-shape {
234+
/* corner-end-end-shape */
235+
corner-end-end-shape: inherit;
236+
}
237+
238+
.corner-shape {
239+
/* corner-end-start-shape */
240+
corner-end-start-shape: inherit;
241+
}
242+
243+
.corner-shape {
244+
/* corner-start-end-shape */
245+
corner-start-end-shape: inherit;
246+
}
247+
248+
.corner-shape {
249+
/* corner-start-start-shape */
250+
corner-start-start-shape: inherit;
251+
}
252+
253+
.corner-shape {
254+
/* corner-top-left-shape */
255+
corner-top-left-shape: inherit;
256+
}
257+
258+
.corner-shape {
259+
/* corner-top-right-shape */
260+
corner-top-right-shape: inherit;
261+
}
262+
203263
.inset {
204264
/* bottom */
205265
bottom: inherit;

plugin-packs/postcss-preset-env/test/logical-properties.expect.css

+60
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,26 @@
2020
background-position-y: inherit;
2121
}
2222

23+
.background-repeat {
24+
/* background-repeat-block */
25+
background-repeat-block: inherit;
26+
}
27+
28+
.background-repeat {
29+
/* background-repeat-inline */
30+
background-repeat-inline: inherit;
31+
}
32+
33+
.background-repeat {
34+
/* background-repeat-x */
35+
background-repeat-x: inherit;
36+
}
37+
38+
.background-repeat {
39+
/* background-repeat-y */
40+
background-repeat-y: inherit;
41+
}
42+
2343
.border-color {
2444
/* border-block-end-color */
2545
border-bottom-color: inherit;
@@ -200,6 +220,46 @@
200220
contain-intrinsic-width: inherit;
201221
}
202222

223+
.corner-shape {
224+
/* corner-bottom-left-shape */
225+
corner-bottom-left-shape: inherit;
226+
}
227+
228+
.corner-shape {
229+
/* corner-bottom-right-shape */
230+
corner-bottom-right-shape: inherit;
231+
}
232+
233+
.corner-shape {
234+
/* corner-end-end-shape */
235+
corner-end-end-shape: inherit;
236+
}
237+
238+
.corner-shape {
239+
/* corner-end-start-shape */
240+
corner-end-start-shape: inherit;
241+
}
242+
243+
.corner-shape {
244+
/* corner-start-end-shape */
245+
corner-start-end-shape: inherit;
246+
}
247+
248+
.corner-shape {
249+
/* corner-start-start-shape */
250+
corner-start-start-shape: inherit;
251+
}
252+
253+
.corner-shape {
254+
/* corner-top-left-shape */
255+
corner-top-left-shape: inherit;
256+
}
257+
258+
.corner-shape {
259+
/* corner-top-right-shape */
260+
corner-top-right-shape: inherit;
261+
}
262+
203263
.inset {
204264
/* bottom */
205265
bottom: inherit;

plugins-stylelint/at-risk/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
"index.mjs"
3636
],
3737
"peerDependencies": {
38-
"stylelint": "^16.14.1"
38+
"stylelint": "^16.15.0"
3939
},
4040
"devDependencies": {
4141
"@csstools/pack-test": "^1.0.1",
42-
"stylelint": "^16.14.1",
42+
"stylelint": "^16.15.0",
4343
"stylelint-test-rule-node": "^0.4.0"
4444
},
4545
"scripts": {

plugins-stylelint/formatter-github/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
"preprocess-warnings.mjs"
3737
],
3838
"peerDependencies": {
39-
"stylelint": "^16.14.1"
39+
"stylelint": "^16.15.0"
4040
},
4141
"devDependencies": {
4242
"@csstools/pack-test": "^1.0.1",
43-
"stylelint": "^16.14.1"
43+
"stylelint": "^16.15.0"
4444
},
4545
"scripts": {
4646
"lint": "node ../../.github/bin/format-package-json.mjs",

plugins-stylelint/no-at-nest-rule/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@
3636
],
3737
"peerDependencies": {
3838
"postcss": "^8.4",
39-
"stylelint": "^16.14.1"
39+
"stylelint": "^16.15.0"
4040
},
4141
"devDependencies": {
4242
"@csstools/pack-test": "^1.0.1",
4343
"postcss": "^8.4",
44-
"stylelint": "^16.14.1",
44+
"stylelint": "^16.15.0",
4545
"stylelint-test-rule-node": "^0.4.0"
4646
},
4747
"scripts": {

plugins-stylelint/no-invalid-at-import-rules-when-bundling/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@
4040
"@csstools/css-tokenizer": "^3.0.3"
4141
},
4242
"peerDependencies": {
43-
"stylelint": "^16.14.1"
43+
"stylelint": "^16.15.0"
4444
},
4545
"devDependencies": {
4646
"@csstools/pack-test": "^1.0.1",
47-
"stylelint": "^16.14.1",
47+
"stylelint": "^16.15.0",
4848
"stylelint-test-rule-node": "^0.4.0"
4949
},
5050
"scripts": {

plugins/css-blank-pseudo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
},
6868
"devDependencies": {
6969
"@csstools/postcss-tape": "*",
70-
"puppeteer": "^24.1.1"
70+
"puppeteer": "^24.4.0"
7171
},
7272
"scripts": {
7373
"build": "rollup -c ../../rollup/default.mjs",

plugins/css-has-pseudo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"postcss-dir-pseudo-class": "*",
7474
"postcss-logical": "*",
7575
"postcss-nesting": "*",
76-
"puppeteer": "^24.1.1"
76+
"puppeteer": "^24.4.0"
7777
},
7878
"scripts": {
7979
"build": "rollup -c ../../rollup/default.mjs",

plugins/css-prefers-color-scheme/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
},
6565
"devDependencies": {
6666
"@csstools/postcss-tape": "*",
67-
"puppeteer": "^24.1.1"
67+
"puppeteer": "^24.4.0"
6868
},
6969
"scripts": {
7070
"build": "rollup -c ../../rollup/default.mjs",

plugins/postcss-cascade-layers/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"devDependencies": {
6666
"@csstools/postcss-bundler": "*",
6767
"@csstools/postcss-tape": "*",
68-
"puppeteer": "^24.1.1"
68+
"puppeteer": "^24.4.0"
6969
},
7070
"scripts": {
7171
"build": "rollup -c ../../rollup/default.mjs",

plugins/postcss-focus-visible/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
},
5656
"devDependencies": {
5757
"@csstools/postcss-tape": "*",
58-
"puppeteer": "^24.1.1"
58+
"puppeteer": "^24.4.0"
5959
},
6060
"scripts": {
6161
"build": "rollup -c ../../rollup/default.mjs",

plugins/postcss-focus-within/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
},
6868
"devDependencies": {
6969
"@csstools/postcss-tape": "*",
70-
"puppeteer": "^24.1.1"
70+
"puppeteer": "^24.4.0"
7171
},
7272
"scripts": {
7373
"build": "rollup -c ../../rollup/default.mjs",

plugins/postcss-global-data/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
},
5353
"devDependencies": {
5454
"@csstools/postcss-tape": "*",
55-
"open-props": "^1.7.12",
55+
"open-props": "^1.7.13",
5656
"postcss-custom-media": "^11.0.5",
5757
"postcss-custom-properties": "^14.0.4"
5858
},

plugins/postcss-is-pseudo-class/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
},
4747
"devDependencies": {
4848
"@csstools/postcss-tape": "*",
49-
"puppeteer": "^24.1.1"
49+
"puppeteer": "^24.4.0"
5050
},
5151
"scripts": {
5252
"build": "rollup -c ../../rollup/default.mjs",

plugins/postcss-light-dark-function/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"devDependencies": {
6060
"@csstools/postcss-tape": "*",
6161
"postcss-nesting": "^13.0.0",
62-
"puppeteer": "^24.1.1"
62+
"puppeteer": "^24.4.0"
6363
},
6464
"scripts": {
6565
"build": "rollup -c ../../rollup/default.mjs",

plugins/postcss-media-minmax/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
},
6262
"devDependencies": {
6363
"@csstools/postcss-tape": "*",
64-
"puppeteer": "^24.1.1"
64+
"puppeteer": "^24.4.0"
6565
},
6666
"scripts": {
6767
"build": "rollup -c ../../rollup/default.mjs",

plugins/postcss-nesting/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
},
6464
"devDependencies": {
6565
"@csstools/postcss-tape": "*",
66-
"puppeteer": "^24.1.1"
66+
"puppeteer": "^24.4.0"
6767
},
6868
"scripts": {
6969
"build": "rollup -c ../../rollup/default.mjs",

0 commit comments

Comments
 (0)