Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,217 changes: 593 additions & 624 deletions package-lock.json

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,24 @@
"plugins-stylelint/*"
],
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.0",
"@eslint/js": "^9.36.0",
"@microsoft/api-documenter": "^7.26.34",
"@microsoft/api-extractor": "^7.52.13",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^9.39.1",
"@microsoft/api-documenter": "^7.27.4",
"@microsoft/api-extractor": "^7.54.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^12.1.4",
"@stryker-mutator/core": "^9.1.1",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"knip": "^5.64.1",
"rollup": "^4.52.3",
"@rollup/plugin-typescript": "^12.3.0",
"@stryker-mutator/core": "^9.3.0",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"knip": "^5.67.1",
"rollup": "^4.52.5",
"tslib": "^2.8.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.44.1"
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"scripts": {
"everything": "npm run lint && npm run knip && npm run build && npm run docs && npm run test",
Expand Down
2 changes: 1 addition & 1 deletion packages/generate-test-cases/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"type": "module",
"main": "src/index.mjs",
"devDependencies": {
"mdn-data": "^2.22.1"
"mdn-data": "^2.25.0"
},
"scripts": {
"build": "exit 0;",
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.24.0"
"stylelint": "^16.25.0"
},
"devDependencies": {
"@csstools/pack-test": "^1.0.2",
"stylelint": "^16.24.0",
"stylelint": "^16.25.0",
"stylelint-test-rule-node": "^0.4.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.24.0"
"stylelint": "^16.25.0"
},
"devDependencies": {
"@csstools/pack-test": "^1.0.2",
"stylelint": "^16.24.0"
"stylelint": "^16.25.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.24.0"
"stylelint": "^16.25.0"
},
"devDependencies": {
"@csstools/pack-test": "^1.0.2",
"postcss": "^8.5",
"stylelint": "^16.24.0",
"stylelint": "^16.25.0",
"stylelint-test-rule-node": "^0.4.0"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ testRule({
{
code: '@import "/foo.css";',
description: 'Leading slashes are ambiguous',
message: 'URL\'s that start with a slash are ambiguous when bundling, use a relative URL instead.',
message: 'URL\'s that start with a slash are ambiguous when bundling, use a relative URL instead. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 1,
column: 9,
endLine: 1,
Expand All @@ -48,7 +48,7 @@ testRule({
{
code: '@import "#foo.css";',
description: 'Leading number signs are invalid',
message: 'URL\'s that start with a number sign (#) are invalid when bundling.',
message: 'URL\'s that start with a number sign (#) are invalid when bundling. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 1,
column: 9,
endLine: 1,
Expand All @@ -57,7 +57,7 @@ testRule({
{
code: '@import "foo.css?bar=1";',
description: 'Query params can not be processed by a bundler',
message: 'URL\'s that have query params can not be bundled correctly. Avoid these or add a \'http(s)\' scheme and domain name.',
message: 'URL\'s that have query params can not be bundled correctly. Avoid these or add a \'http(s)\' scheme and domain name. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 1,
column: 9,
endLine: 1,
Expand All @@ -69,7 +69,7 @@ testRule({
@import "https://example.com/bar.css";
`,
description: 'Remote resources after a local import will not be bundled correctly',
message: '`@import` statements for remote resources after a local import will not be bundled correctly. Move these to the top of the file.',
message: '`@import` statements for remote resources after a local import will not be bundled correctly. Move these to the top of the file. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 3,
column: 13,
endLine: 3,
Expand All @@ -81,7 +81,7 @@ testRule({
@import "//example.com/bar.css";
`,
description: 'Remote resources after a local import will not be bundled correctly',
message: '`@import` statements for remote resources after a local import will not be bundled correctly. Move these to the top of the file.',
message: '`@import` statements for remote resources after a local import will not be bundled correctly. Move these to the top of the file. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 3,
column: 13,
endLine: 3,
Expand All @@ -90,7 +90,7 @@ testRule({
{
code: '@import "fOO.css";',
description: 'Case sensitivity',
message: 'URL\'s with uppercase characters might give conflicts between users on case sensitive or insensitive file systems. Use lower case characters only to avoid potential issues.',
message: 'URL\'s with uppercase characters might give conflicts between users on case sensitive or insensitive file systems. Use lower case characters only to avoid potential issues. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 1,
column: 9,
endLine: 1,
Expand All @@ -99,7 +99,7 @@ testRule({
{
code: '@import "foo.css" { color: green; }',
description: 'Child nodes are not allowed',
message: '`@import` statements must not have any child nodes.',
message: '`@import` statements must not have any child nodes. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 1,
column: 1,
endLine: 1,
Expand All @@ -108,7 +108,7 @@ testRule({
{
code: '@import "foo.css" {}',
description: 'Child nodes are not allowed',
message: '`@import` statements must not have any child nodes.',
message: '`@import` statements must not have any child nodes. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 1,
column: 1,
endLine: 1,
Expand All @@ -117,7 +117,7 @@ testRule({
{
code: '@layer foo {} @import "foo.css";',
description: 'Order',
message: '`@import` statements must be precede all other nodes except for `@charset` or `@layer` and all `@import` statements must be consecutive.',
message: '`@import` statements must be precede all other nodes except for `@charset` or `@layer` and all `@import` statements must be consecutive. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 1,
column: 15,
endLine: 1,
Expand All @@ -126,7 +126,7 @@ testRule({
{
code: '@import "foo.css"; .bar {} @import "bar.css";',
description: 'Order',
message: '`@import` statements must be precede all other nodes except for `@charset` or `@layer` and all `@import` statements must be consecutive.',
message: '`@import` statements must be precede all other nodes except for `@charset` or `@layer` and all `@import` statements must be consecutive. (@csstools/stylelint-no-invalid-at-import-rules-when-bundling)',
line: 1,
column: 28,
endLine: 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
"@csstools/css-tokenizer": "^3.0.4"
},
"peerDependencies": {
"stylelint": "^16.24.0"
"stylelint": "^16.25.0"
},
"devDependencies": {
"@csstools/pack-test": "^1.0.2",
"stylelint": "^16.24.0",
"stylelint": "^16.25.0",
"stylelint-test-rule-node": "^0.4.0"
},
"scripts": {
Expand Down
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": "^24.22.3"
"puppeteer": "^24.28.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
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": "^24.22.3"
"puppeteer": "^24.28.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": "^24.22.3"
"puppeteer": "^24.28.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": "^24.22.3"
"puppeteer": "^24.28.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": "^24.22.3"
"puppeteer": "^24.28.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-focus-within/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
"devDependencies": {
"@csstools/postcss-tape": "*",
"puppeteer": "^24.22.3"
"puppeteer": "^24.28.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-is-pseudo-class/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
},
"devDependencies": {
"@csstools/postcss-tape": "*",
"puppeteer": "^24.22.3"
"puppeteer": "^24.28.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-light-dark-function/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"devDependencies": {
"@csstools/postcss-tape": "*",
"postcss-nesting": "^13.0.0",
"puppeteer": "^24.22.3"
"puppeteer": "^24.28.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-media-minmax/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
},
"devDependencies": {
"@csstools/postcss-tape": "*",
"puppeteer": "^24.22.3"
"puppeteer": "^24.28.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down
2 changes: 1 addition & 1 deletion plugins/postcss-nesting/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
},
"devDependencies": {
"@csstools/postcss-tape": "*",
"puppeteer": "^24.22.3"
"puppeteer": "^24.28.0"
},
"scripts": {
"build": "rollup -c ../../rollup/default.mjs",
Expand Down