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: 392a1a08c3a79b7ad810328ff26bf4f633f6db3e
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: 086a511f013525e499fe27f34b55cdff115071d1
Choose a head ref

Commits on May 11, 2024

  1. Copy the full SHA
    8127ba9 View commit details
  2. @csstools/csstools-cli v3.0.21

    romainmenke committed May 11, 2024
    Copy the full SHA
    3ac6363 View commit details
  3. increase test coverage

    romainmenke committed May 11, 2024
    Copy the full SHA
    400562d View commit details

Commits on May 12, 2024

  1. increase test coverage

    romainmenke committed May 12, 2024
    Copy the full SHA
    13acb11 View commit details
  2. 1.0.0

    jonathantneal authored and romainmenke committed May 12, 2024
    Copy the full SHA
    fca3f53 View commit details
  3. 2.0.0

    jonathantneal authored and romainmenke committed May 12, 2024
    Copy the full SHA
    91ce21d View commit details
  4. 3.0.0

    jonathantneal authored and romainmenke committed May 12, 2024
    Copy the full SHA
    6541345 View commit details
  5. Update project configuration

    jonathantneal authored and romainmenke committed May 12, 2024
    Copy the full SHA
    cd0b21f View commit details
  6. Update README.md

    jonathantneal authored and romainmenke committed May 12, 2024
    Copy the full SHA
    656ad7e View commit details
  7. feat: update to postcss@8

    devpeerapong authored and romainmenke committed May 12, 2024
    Copy the full SHA
    c596589 View commit details
  8. chore: update project

    jonathantneal authored and romainmenke committed May 12, 2024
    Copy the full SHA
    ccd5279 View commit details
  9. 4.0.0

    jonathantneal authored and romainmenke committed May 12, 2024
    Copy the full SHA
    ea0aa67 View commit details
  10. postcss-browser-comments

    romainmenke committed May 12, 2024
    Copy the full SHA
    a30ba37 View commit details
  11. postcss-browser-comments v5.0.0

    romainmenke committed May 12, 2024
    Copy the full SHA
    e3b75d1 View commit details

Commits on May 13, 2024

  1. update dependencies

    romainmenke committed May 13, 2024
    Copy the full SHA
    65c1f5f View commit details
  2. selector-specificity : fix unwanted mutation (#1395)

    romainmenke authored May 13, 2024
    Copy the full SHA
    7a58984 View commit details
  3. Copy the full SHA
    f5ca2cb View commit details
  4. Copy the full SHA
    ee35add View commit details
  5. css-has-pseudo v6.0.5

    romainmenke committed May 13, 2024
    Copy the full SHA
    7b49c04 View commit details
  6. Copy the full SHA
    1a3f122 View commit details
  7. Copy the full SHA
    20b9ca7 View commit details
  8. postcss-nesting v12.1.4

    romainmenke committed May 13, 2024
    Copy the full SHA
    f9597ba View commit details
  9. Copy the full SHA
    bff24e0 View commit details
  10. Copy the full SHA
    086a511 View commit details
Showing with 2,358 additions and 236 deletions.
  1. +1 −0 .github/ISSUE_TEMPLATE/css-issue.yml
  2. +1 −0 .github/ISSUE_TEMPLATE/plugin-issue.yml
  3. +6 −0 .github/labeler.yml
  4. +10 −0 cli/csstools-cli/CHANGELOG.md
  5. +6 −6 cli/csstools-cli/package.json
  6. +97 −111 e2e/package-lock.json
  7. +63 −34 package-lock.json
  8. +6 −0 packages/selector-specificity/CHANGELOG.md
  9. +1 −1 packages/selector-specificity/dist/index.cjs
  10. +1 −1 packages/selector-specificity/dist/index.mjs
  11. +1 −1 packages/selector-specificity/package.json
  12. +5 −23 packages/selector-specificity/src/index.ts
  13. +12 −0 packages/selector-specificity/test/test.mjs
  14. +9 −0 plugin-packs/postcss-preset-env/CHANGELOG.md
  15. +5 −5 plugin-packs/postcss-preset-env/package.json
  16. +6 −0 plugins/css-has-pseudo/CHANGELOG.md
  17. +2 −2 plugins/css-has-pseudo/README.md
  18. +2 −2 plugins/css-has-pseudo/package.json
  19. +6 −0 plugins/postcss-browser-comments/.gitignore
  20. +1 −0 plugins/postcss-browser-comments/.nvmrc
  21. +33 −0 plugins/postcss-browser-comments/CHANGELOG.md
  22. +235 −0 plugins/postcss-browser-comments/INSTALL.md
  23. +18 −0 plugins/postcss-browser-comments/LICENSE.md
  24. +107 −0 plugins/postcss-browser-comments/README.md
  25. +4 −0 plugins/postcss-browser-comments/api-extractor.json
  26. +1 −0 plugins/postcss-browser-comments/dist/index.cjs
  27. +12 −0 plugins/postcss-browser-comments/dist/index.d.ts
  28. +1 −0 plugins/postcss-browser-comments/dist/index.mjs
  29. +62 −0 plugins/postcss-browser-comments/docs/README.md
  30. +96 −0 plugins/postcss-browser-comments/package.json
  31. +156 −0 plugins/postcss-browser-comments/src/index.ts
  32. +10 −0 plugins/postcss-browser-comments/test/_import.mjs
  33. +9 −0 plugins/postcss-browser-comments/test/_require.cjs
  34. +35 −0 plugins/postcss-browser-comments/test/_tape.mjs
  35. +384 −0 plugins/postcss-browser-comments/test/basic.css
  36. +323 −0 plugins/postcss-browser-comments/test/basic.expect.css
  37. +208 −0 plugins/postcss-browser-comments/test/basic.ie-10.expect.css
  38. +257 −0 plugins/postcss-browser-comments/test/basic.ie.expect.css
  39. +8 −0 plugins/postcss-browser-comments/test/examples/example-1.css
  40. +1 −0 plugins/postcss-browser-comments/test/examples/example-1.expect.css
  41. +10 −0 plugins/postcss-browser-comments/test/examples/example-2.css
  42. +9 −0 plugins/postcss-browser-comments/test/examples/example-2.expect.css
  43. +10 −0 plugins/postcss-browser-comments/tsconfig.json
  44. +6 −0 plugins/postcss-cascade-layers/CHANGELOG.md
  45. +2 −2 plugins/postcss-cascade-layers/package.json
  46. +6 −0 plugins/postcss-is-pseudo-class/CHANGELOG.md
  47. +1 −1 plugins/postcss-is-pseudo-class/dist/index.cjs
  48. +1 −1 plugins/postcss-is-pseudo-class/dist/index.mjs
  49. +2 −2 plugins/postcss-is-pseudo-class/package.json
  50. +1 −1 plugins/postcss-is-pseudo-class/src/index.ts
  51. +4 −0 plugins/postcss-is-pseudo-class/test/basic.css
  52. +8 −0 plugins/postcss-is-pseudo-class/test/basic.does-not-exist.expect.css
  53. +8 −0 plugins/postcss-is-pseudo-class/test/basic.expect.css
  54. +8 −0 plugins/postcss-is-pseudo-class/test/basic.oncomplex.no-warning.expect.css
  55. +8 −0 plugins/postcss-is-pseudo-class/test/basic.oncomplex.warning.expect.css
  56. +12 −0 plugins/postcss-is-pseudo-class/test/basic.preserve.expect.css
  57. +12 −0 plugins/postcss-is-pseudo-class/test/basic.with-cloned-declarations.expect.css
  58. +6 −0 plugins/postcss-nesting/CHANGELOG.md
  59. +2 −2 plugins/postcss-nesting/package.json
  60. +41 −41 sites/package-lock.json
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/css-issue.yml
Original file line number Diff line number Diff line change
@@ -69,6 +69,7 @@ body:
- CSS Has Pseudo
- CSS Prefers Color Scheme
- PostCSS Attribute Case Insensitive
- PostCSS Browser Comments
- PostCSS Cascade Layers
- PostCSS Color Function
- PostCSS Color Functional Notation
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/plugin-issue.yml
Original file line number Diff line number Diff line change
@@ -66,6 +66,7 @@ body:
- CSS Has Pseudo
- CSS Prefers Color Scheme
- PostCSS Attribute Case Insensitive
- PostCSS Browser Comments
- PostCSS Cascade Layers
- PostCSS Color Function
- PostCSS Color Functional Notation
6 changes: 6 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -71,6 +71,12 @@
- plugins/postcss-attribute-case-insensitive/**
- experimental/postcss-attribute-case-insensitive/**

"plugins/postcss-browser-comments":
- changed-files:
- any-glob-to-any-file:
- plugins/postcss-browser-comments/**
- experimental/postcss-browser-comments/**

"plugins/postcss-cascade-layers":
- changed-files:
- any-glob-to-any-file:
10 changes: 10 additions & 0 deletions cli/csstools-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,10 +2,20 @@

### Unreleased (patch)

- Updated [`@csstools/postcss-cascade-layers`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-cascade-layers) to [`4.0.6`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-cascade-layers/CHANGELOG.md#406) (patch)
- Updated [`@csstools/postcss-is-pseudo-class`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-is-pseudo-class) to [`4.0.8`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-is-pseudo-class/CHANGELOG.md#408) (patch)
- Updated [`css-has-pseudo`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo) to [`6.0.5`](https://github.com/csstools/postcss-plugins/tree/main/plugins/css-has-pseudo/CHANGELOG.md#605) (patch)
- Updated [`postcss-nesting`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting) to [`12.1.4`](https://github.com/csstools/postcss-plugins/tree/main/plugins/postcss-nesting/CHANGELOG.md#1214) (patch)

### 3.0.21

_May 11, 2024_

- 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)
- Updated [`postcss-preset-env`](https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env) to [`9.5.12`](https://github.com/csstools/postcss-plugins/tree/main/plugin-packs/postcss-preset-env/CHANGELOG.md#9512) (patch)

### 3.0.20

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.20",
"version": "3.0.21",
"contributors": [
{
"name": "Antonio Laguna",
@@ -38,15 +38,15 @@
"dist"
],
"dependencies": {
"@csstools/postcss-cascade-layers": "^4.0.5",
"@csstools/postcss-cascade-layers": "^4.0.6",
"@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.7",
"@csstools/postcss-is-pseudo-class": "^4.0.8",
"@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.4",
"css-has-pseudo": "^6.0.5",
"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.3",
"postcss-nesting": "^12.1.4",
"postcss-overflow-shorthand": "^5.0.1",
"postcss-place": "^9.0.1",
"postcss-preset-env": "^9.5.11",
"postcss-preset-env": "^9.5.12",
"postcss-pseudo-class-any-link": "^9.0.2",
"postcss-selector-not": "^7.0.2"
},
Loading