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: postcss/autoprefixer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 10.4.1
Choose a base ref
...
head repository: postcss/autoprefixer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 10.4.2
Choose a head ref
  • 3 commits
  • 5 files changed
  • 1 contributor

Commits on Jan 5, 2022

  1. Copy the full SHA
    b764cc0 View commit details

Commits on Jan 7, 2022

  1. Fix stretch prefix

    ai committed Jan 7, 2022
    Copy the full SHA
    09f1a89 View commit details
  2. Release 10.4.2 version

    ai committed Jan 7, 2022
    Copy the full SHA
    13b7542 View commit details
Showing with 175 additions and 178 deletions.
  1. +0 −3 .npmignore
  2. +3 −0 CHANGELOG.md
  3. +8 −4 data/prefixes.js
  4. +7 −7 package.json
  5. +157 −164 pnpm-lock.yaml
3 changes: 0 additions & 3 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
pnpm-lock.yaml

.editorconfig
test/
coverage/

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).

## 10.4.2
* Fixed missed `-webkit-` prefix for `width: stretch`.

## 10.4.1
* Fixed `::file-selector-button` data (by Luke Warlow).

12 changes: 8 additions & 4 deletions data/prefixes.js
Original file line number Diff line number Diff line change
@@ -594,17 +594,21 @@ f(prefixIntrinsic, { match: /x|\s#4/ }, browsers =>
)

f(prefixIntrinsic, { match: /x|\s#5/ }, browsers =>
prefix(['stretch'], {
prefix(['fit-content'], {
props: sizeProps,
feature: 'intrinsic-width',
browsers
})
)

f(prefixIntrinsic, { match: /x|\s#5/ }, browsers =>
prefix(['fit-content'], {
// Stretch value

let prefixStretch = require('caniuse-lite/data/features/css-width-stretch')

f(prefixStretch, browsers =>
prefix(['stretch'], {
props: sizeProps,
feature: 'intrinsic-width',
feature: 'css-width-stretch',
browsers
})
)
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "autoprefixer",
"version": "10.4.1",
"version": "10.4.2",
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",
"engines": {
"node": "^10 || ^12 || >=14"
@@ -34,7 +34,7 @@
},
"dependencies": {
"browserslist": "^4.19.1",
"caniuse-lite": "^1.0.30001294",
"caniuse-lite": "^1.0.30001297",
"fraction.js": "^4.1.2",
"normalize-range": "^0.1.2",
"picocolors": "^1.0.0",
@@ -43,18 +43,18 @@
"devDependencies": {
"@logux/eslint-config": "^46.1.1",
"@size-limit/preset-small-lib": "7.0.5",
"c8": "^7.10.0",
"clean-publish": "^3.4.4",
"eslint": "^8.5.0",
"c8": "^7.11.0",
"clean-publish": "^3.4.5",
"eslint": "^8.6.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.0.0",
"nanospy": "^0.4.0",
"postcss": "^8.4.5",
"size-limit": "^7.0.5",
"uvu": "^0.5.2"
"uvu": "^0.5.3"
},
"prettier": {
"arrowParens": "avoid",
Loading