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 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/css-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ body:
- PostCSS Media MinMax
- PostCSS Media Queries Aspect-Ratio Number Values
- PostCSS Minify
- PostCSS Mixins
- PostCSS Nested Calc
- PostCSS Nesting
- PostCSS OKLab Function
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/plugin-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ body:
- PostCSS Media MinMax
- PostCSS Media Queries Aspect-Ratio Number Values
- PostCSS Minify
- PostCSS Mixins
- PostCSS Nested Calc
- PostCSS Nesting
- PostCSS OKLab Function
Expand Down
6 changes: 6 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,12 @@
- plugins/postcss-minify/**
- experimental/postcss-minify/**

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

"plugins/postcss-nested-calc":
- changed-files:
- any-glob-to-any-file:
Expand Down
133 changes: 129 additions & 4 deletions package-lock.json

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

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 @@ -90,7 +90,7 @@
"css-blank-pseudo": "^8.0.1",
"css-has-pseudo": "^8.0.0",
"css-prefers-color-scheme": "^11.0.0",
"cssdb": "^8.6.0",
"cssdb": "^8.7.0",
"postcss-attribute-case-insensitive": "^8.0.0",
"postcss-clamp": "^4.1.0",
"postcss-color-functional-notation": "^8.0.0",
Expand Down
6 changes: 6 additions & 0 deletions plugins/postcss-mixins/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
package-lock.json
yarn.lock
*.result.css
*.result.css.map
*.result.html
1 change: 1 addition & 0 deletions plugins/postcss-mixins/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v25.1.0
5 changes: 5 additions & 0 deletions plugins/postcss-mixins/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changes to PostCSS Mixins

### Unreleased (major)

- Initial version
Loading
Loading