Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

Commit

Permalink
6.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Oct 28, 2018
1 parent 1c2489e commit 3c91a1b
Show file tree
Hide file tree
Showing 13 changed files with 61 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,13 @@
# Changes to PostCSS Preset Env

### 6.3.0 (October 28, 2018)

- Added `postcss-double-position-gradients` 1.0.0 (major, non-breaking for this project)
- Updated `autoprefixer` to 9.3.1 (minor)
- Updated `browserslist` to 4.3.4 (patch)
- Updated `caniuse-lite` to 1.0.30000899 (patch)
- Updated `cssdb` to 4.1.0 (major, non-breaking for this project)

### 6.2.0 (October 22, 2018)

- Updated `autoprefixer` to 9.2.1 (minor)
Expand Down
1 change: 1 addition & 0 deletions lib/ids-by-execution-order.js
Expand Up @@ -17,6 +17,7 @@ export default [
'dir-pseudo-class',
'all-property', // run all-property before other property polyfills
'color-functional-notation',
'double-position-gradients',
'gray-function',
'hexadecimal-alpha-notation',
'lab-function',
Expand Down
2 changes: 2 additions & 0 deletions lib/plugins-by-id.js
Expand Up @@ -8,6 +8,7 @@ import postcssCustomMedia from 'postcss-custom-media';
import postcssCustomProperties from 'postcss-custom-properties';
import postcssCustomSelectors from 'postcss-custom-selectors';
import postcssDirPseudoClass from 'postcss-dir-pseudo-class';
import postcssDoublePositionGradients from 'postcss-double-position-gradients';
import postcssEnvFunction from 'postcss-env-function';
import postcssFocusVisible from 'postcss-focus-visible';
import postcssFocusWithin from 'postcss-focus-within';
Expand Down Expand Up @@ -40,6 +41,7 @@ export default {
'custom-properties': postcssCustomProperties,
'custom-selectors': postcssCustomSelectors,
'dir-pseudo-class': postcssDirPseudoClass,
'double-position-gradients': postcssDoublePositionGradients,
'environment-variables': postcssEnvFunction,
'focus-visible-pseudo-class': postcssFocusVisible,
'focus-within-pseudo-class': postcssFocusWithin,
Expand Down
13 changes: 7 additions & 6 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "postcss-preset-env",
"version": "6.2.0",
"version": "6.3.0",
"description": "Convert modern CSS into something browsers understand",
"author": "Jonathan Neal <jonathantneal@hotmail.com>",
"license": "CC0-1.0",
Expand All @@ -26,10 +26,10 @@
"node": ">=6.0.0"
},
"dependencies": {
"autoprefixer": "^9.2.1",
"browserslist": "^4.3.1",
"caniuse-lite": "^1.0.30000893",
"cssdb": "^3.2.1",
"autoprefixer": "^9.3.1",
"browserslist": "^4.3.4",
"caniuse-lite": "^1.0.30000899",
"cssdb": "^4.1.0",
"postcss": "^7.0.5",
"postcss-attribute-case-insensitive": "^4.0.0",
"postcss-color-functional-notation": "^2.0.1",
Expand All @@ -41,6 +41,7 @@
"postcss-custom-properties": "^8.0.8",
"postcss-custom-selectors": "^5.1.2",
"postcss-dir-pseudo-class": "^5.0.0",
"postcss-double-position-gradients": "^1.0.0",
"postcss-env-function": "^2.0.2",
"postcss-focus-visible": "^4.0.0",
"postcss-focus-within": "^3.0.0",
Expand All @@ -64,7 +65,7 @@
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.7.0",
"eslint": "^5.8.0",
"eslint-config-dev": "^2.0.0",
"postcss-simple-vars": "^5.0.1",
"postcss-tape": "^2.2.0",
Expand Down
5 changes: 5 additions & 0 deletions test/basic.autoprefixer.expect.css
Expand Up @@ -230,3 +230,8 @@
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}
5 changes: 5 additions & 0 deletions test/basic.autoprefixer.false.expect.css
Expand Up @@ -230,3 +230,8 @@
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}
5 changes: 5 additions & 0 deletions test/basic.ch38.expect.css
Expand Up @@ -137,3 +137,8 @@
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}
4 changes: 4 additions & 0 deletions test/basic.css
Expand Up @@ -117,3 +117,7 @@
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}
5 changes: 5 additions & 0 deletions test/basic.expect.css
Expand Up @@ -260,3 +260,8 @@
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}
5 changes: 5 additions & 0 deletions test/basic.ff49.expect.css
Expand Up @@ -132,3 +132,8 @@
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}
4 changes: 4 additions & 0 deletions test/basic.nesting.expect.css
Expand Up @@ -129,3 +129,7 @@
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}
5 changes: 5 additions & 0 deletions test/basic.stage0-ff49.expect.css
Expand Up @@ -131,3 +131,8 @@ h1.test-custom-selectors,h2.test-custom-selectors,h3.test-custom-selectors,h4.te
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}
5 changes: 5 additions & 0 deletions test/basic.stage0.expect.css
Expand Up @@ -259,3 +259,8 @@ h1.test-custom-selectors,h2.test-custom-selectors,h3.test-custom-selectors,h4.te
.test-focus-visible-pseudo-class:focus-visible {
order: 23;
}

.test-double-position-gradients {
background-image: conic-gradient(yellowgreen 40%, gold 0deg, gold 75%, #f06 0deg);
background-image: conic-gradient(yellowgreen 40%, gold 0deg 75%, #f06 0deg);
}

0 comments on commit 3c91a1b

Please sign in to comment.