Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: csstools/postcss-plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0a28162bccdaa762696113d34b4e5065f0add44e
Choose a base ref
...
head repository: csstools/postcss-plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 392a1a08c3a79b7ad810328ff26bf4f633f6db3e
Choose a head ref
  • 15 commits
  • 42 files changed
  • 3 contributors

Commits on May 4, 2024

  1. Copy the full SHA
    da00dd2 View commit details
  2. @csstools/csstools-cli v3.0.20

    romainmenke committed May 4, 2024
    Copy the full SHA
    220db99 View commit details

Commits on May 6, 2024

  1. Update postcss-preset-env requirement from ^9.5.9 to ^9.5.11 in /e2e-…

    …package-managers/yarn in the all-dependencies group (#1388)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 6, 2024
    Copy the full SHA
    a304813 View commit details

Commits on May 10, 2024

  1. Bump the development-dependencies group with 9 updates (#1389)

    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>
    dependabot[bot] and romainmenke authored May 10, 2024
    Copy the full SHA
    016285c View commit details
  2. Bump the all-dependencies group in /sites with 8 updates (#1390)

    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>
    dependabot[bot] and romainmenke authored May 10, 2024
    Copy the full SHA
    8ca8d3c View commit details
  3. update dependencies

    romainmenke committed May 10, 2024
    Copy the full SHA
    6af68b6 View commit details

Commits on May 11, 2024

  1. make specificity calculation customizable (#1392)

    romainmenke authored May 11, 2024
    Copy the full SHA
    22a6ef7 View commit details
  2. Copy the full SHA
    a6d75cd View commit details
  3. set dependencies to newly released versions

    romainmenke committed May 11, 2024
    Copy the full SHA
    f9d9850 View commit details
  4. css-has-pseudo v6.0.4

    romainmenke committed May 11, 2024
    Copy the full SHA
    c2ec8c8 View commit details
  5. Copy the full SHA
    326c6dd View commit details
  6. Copy the full SHA
    9d7dddf View commit details
  7. postcss-nesting v12.1.3

    romainmenke committed May 11, 2024
    Copy the full SHA
    3ce75bc View commit details
  8. Copy the full SHA
    dfa8379 View commit details
  9. Copy the full SHA
    392a1a0 View commit details
Showing with 1,287 additions and 919 deletions.
  1. +7 −30 .github/dependabot.yml
  2. +1 −0 .gitignore
  3. +1 −1 .nvmrc
  4. +10 −0 cli/csstools-cli/CHANGELOG.md
  5. +6 −6 cli/csstools-cli/package.json
  6. +1 −1 e2e-package-managers/yarn/package.json
  7. +389 −515 package-lock.json
  8. +7 −7 package.json
  9. +7 −0 packages/selector-specificity/CHANGELOG.md
  10. +1 −1 packages/selector-specificity/dist/index.cjs
  11. +46 −1 packages/selector-specificity/dist/index.d.ts
  12. +1 −1 packages/selector-specificity/dist/index.mjs
  13. +177 −5 packages/selector-specificity/docs/selector-specificity.api.json
  14. +17 −0 packages/selector-specificity/docs/selector-specificity.calculationoptions.md
  15. +8 −0 packages/selector-specificity/docs/selector-specificity.compare.md
  16. +15 −0 packages/selector-specificity/docs/selector-specificity.customspecificitycallback.md
  17. +40 −1 packages/selector-specificity/docs/selector-specificity.md
  18. +19 −1 packages/selector-specificity/docs/selector-specificity.selectorspecificity.md
  19. +2 −0 packages/selector-specificity/docs/selector-specificity.specificity.md
  20. +71 −0 packages/selector-specificity/docs/selector-specificity.specificityofmostspecificlistitem.md
  21. +1 −1 packages/selector-specificity/package.json
  22. +71 −19 packages/selector-specificity/src/index.ts
  23. +6 −2 packages/selector-specificity/test/index.mjs
  24. +54 −0 packages/selector-specificity/test/test-custom-specificity.mjs
  25. +2 −0 packages/selector-specificity/test/test.mjs
  26. +9 −0 plugin-packs/postcss-preset-env/CHANGELOG.md
  27. +6 −6 plugin-packs/postcss-preset-env/package.json
  28. +10 −10 plugin-packs/postcss-preset-env/test/basic.vendors-3.expect.css
  29. +2 −2 plugins-stylelint/at-risk/package.json
  30. +2 −2 plugins-stylelint/no-at-nest-rule/package.json
  31. +2 −2 plugins-stylelint/no-invalid-at-import-rules-when-bundling/package.json
  32. +6 −0 plugins/css-has-pseudo/CHANGELOG.md
  33. +2 −2 plugins/css-has-pseudo/README.md
  34. +2 −2 plugins/css-has-pseudo/package.json
  35. +6 −0 plugins/postcss-cascade-layers/CHANGELOG.md
  36. +2 −2 plugins/postcss-cascade-layers/package.json
  37. +6 −0 plugins/postcss-is-pseudo-class/CHANGELOG.md
  38. +2 −2 plugins/postcss-is-pseudo-class/package.json
  39. +6 −0 plugins/postcss-nesting/CHANGELOG.md
  40. +2 −2 plugins/postcss-nesting/package.json
  41. +257 −290 sites/package-lock.json
  42. +5 −5 sites/postcss-preset-env/package.json
37 changes: 7 additions & 30 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -15,11 +15,14 @@ updates:
dependency-type: "development"
patterns:
- "*"
open-pull-requests-limit: 2
open-pull-requests-limit: 5
versioning-strategy: increase
rebase-strategy: auto
- package-ecosystem: "npm"
directory: "/e2e"
directories:
- "/e2e"
- "/e2e-package-managers/yarn"
- "/sites"
schedule:
interval: weekly
time: "01:00"
@@ -28,33 +31,7 @@ updates:
all-dependencies:
patterns:
- "*"
open-pull-requests-limit: 2
versioning-strategy: increase
rebase-strategy: auto
- package-ecosystem: "npm"
directory: "/e2e-package-managers/yarn"
schedule:
interval: weekly
time: "01:00"
timezone: "Europe/Brussels"
groups:
all-dependencies:
patterns:
- "*"
open-pull-requests-limit: 2
versioning-strategy: increase
rebase-strategy: auto
- package-ecosystem: "npm"
directory: "/sites"
schedule:
interval: weekly
time: "01:00"
timezone: "Europe/Brussels"
groups:
all-dependencies:
patterns:
- "*"
open-pull-requests-limit: 2
open-pull-requests-limit: 5
versioning-strategy: increase
rebase-strategy: auto
- package-ecosystem: "github-actions"
@@ -67,5 +44,5 @@ updates:
all-dependencies:
patterns:
- "*"
open-pull-requests-limit: 2
open-pull-requests-limit: 5
rebase-strategy: auto
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -11,3 +11,4 @@ reports
!sites/package-lock.json
.cached-commit
_types
.cache
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.0.0
v22.1.0
10 changes: 10 additions & 0 deletions cli/csstools-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,15 @@

### Unreleased (patch)

- Updated [`@csstools/postcss-cascade-layers`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-cascade-layers) to [`4.0.5`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-cascade-layers/CHANGELOG.md#405) (patch)
- Updated [`@csstools/postcss-is-pseudo-class`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-is-pseudo-class) to [`4.0.7`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-is-pseudo-class/CHANGELOG.md#407) (patch)
- Updated [`css-has-pseudo`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo) to [`6.0.4`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo/CHANGELOG.md#604) (patch)
- Updated [`postcss-nesting`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting) to [`12.1.3`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting/CHANGELOG.md#1213) (patch)

### 3.0.20

_May 4, 2024_

- Updated [`@csstools/postcss-logical-viewport-units`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical-viewport-units) to [`2.0.9`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-logical-viewport-units/CHANGELOG.md#209) (patch)
- Updated [`@csstools/postcss-light-dark-function`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-light-dark-function) to [`1.0.5`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-light-dark-function/CHANGELOG.md#105) (patch)
- Updated [`@csstools/postcss-exponential-functions`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-exponential-functions) to [`1.0.7`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-exponential-functions/CHANGELOG.md#107) (patch)
@@ -20,6 +29,7 @@
- Updated [`@csstools/postcss-relative-color-syntax`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-relative-color-syntax) to [`2.0.16`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-relative-color-syntax/CHANGELOG.md#2016) (patch)
- Updated [`postcss-color-functional-notation`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation) to [`6.0.11`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-color-functional-notation/CHANGELOG.md#6011) (patch)
- Updated [`postcss-lab-function`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-lab-function) to [`6.0.16`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-lab-function/CHANGELOG.md#6016) (patch)
- Updated [`postcss-preset-env`](https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env) to [`9.5.11`](https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env/CHANGELOG.md#9511) (patch)

### 3.0.19

12 changes: 6 additions & 6 deletions cli/csstools-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@csstools/csstools-cli",
"description": "Transform CSS with any plugin from csstools/postcss-plugins",
"version": "3.0.19",
"version": "3.0.20",
"contributors": [
{
"name": "Antonio Laguna",
@@ -38,15 +38,15 @@
"dist"
],
"dependencies": {
"@csstools/postcss-cascade-layers": "^4.0.4",
"@csstools/postcss-cascade-layers": "^4.0.5",
"@csstools/postcss-color-function": "^3.0.16",
"@csstools/postcss-color-mix-function": "^2.0.16",
"@csstools/postcss-exponential-functions": "^1.0.7",
"@csstools/postcss-font-format-keywords": "^3.0.2",
"@csstools/postcss-gradients-interpolation-method": "^4.0.17",
"@csstools/postcss-hwb-function": "^3.0.15",
"@csstools/postcss-ic-unit": "^3.0.6",
"@csstools/postcss-is-pseudo-class": "^4.0.6",
"@csstools/postcss-is-pseudo-class": "^4.0.7",
"@csstools/postcss-light-dark-function": "^1.0.5",
"@csstools/postcss-logical-float-and-clear": "^2.0.1",
"@csstools/postcss-logical-resize": "^2.0.1",
@@ -63,7 +63,7 @@
"@csstools/postcss-trigonometric-functions": "^3.0.8",
"@csstools/postcss-unset-value": "^3.0.1",
"css-blank-pseudo": "^6.0.2",
"css-has-pseudo": "^6.0.3",
"css-has-pseudo": "^6.0.4",
"css-prefers-color-scheme": "^9.0.1",
"postcss": "^8.4.38",
"postcss-attribute-case-insensitive": "^6.0.3",
@@ -81,10 +81,10 @@
"postcss-image-set-function": "^6.0.3",
"postcss-lab-function": "^6.0.16",
"postcss-logical": "^7.0.1",
"postcss-nesting": "^12.1.2",
"postcss-nesting": "^12.1.3",
"postcss-overflow-shorthand": "^5.0.1",
"postcss-place": "^9.0.1",
"postcss-preset-env": "^9.5.10",
"postcss-preset-env": "^9.5.11",
"postcss-pseudo-class-any-link": "^9.0.2",
"postcss-selector-not": "^7.0.2"
},
2 changes: 1 addition & 1 deletion e2e-package-managers/yarn/package.json
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
"description": "Can you use yarn with our plugins?",
"devDependencies": {
"postcss": "^8.4.38",
"postcss-preset-env": "^9.5.9"
"postcss-preset-env": "^9.5.11"
},
"volta": {
"extends": "../../package.json",
Loading