Skip to content

Commit e5e3797

Browse files
committed
7.0.1
1 parent 3fdc61b commit e5e3797

File tree

4 files changed

+19
-11
lines changed

4 files changed

+19
-11
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changes to PostCSS Normalize
22

3+
### 7.0.1 (August 24, 2018)
4+
5+
- Use postcss-browser-comments v2.0.0 (major, but a patch for this project)
6+
7+
PostCSS Browser Comments was using an older version of PostCSS, requiring 2
8+
versions of PostCSS to use PostCSS Normalize. This update resolves that.
9+
310
### 7.0.0 (August 24, 2018)
411

512
- Use normalize.css v9.0.1 (major)

INSTALL.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Installing PostCSS Normalize
22

3-
[PostCSS Normalize] runs in all Node environments, with special instructions for:
3+
[PostCSS Normalize] runs in all Node environments, with special instructions
4+
for:
45

56
| [Node](#node) | [PostCSS CLI](#postcss-cli) | [Webpack](#webpack) | [Create React App](#create-react-app) | [Gulp](#gulp) | [Grunt](#grunt) |
6-
| --- | --- | --- | --- | --- |
7+
| --- | --- | --- | --- | --- | --- |
78

89
## Node
910

@@ -40,11 +41,10 @@ Add [PostCSS CLI] to your project:
4041
npm install postcss-cli --save-dev
4142
```
4243

43-
Use [PostCSS Logical Properties and Values] in your `postcss.config.js`
44-
configuration file:
44+
Use [PostCSS Normalize] in your `postcss.config.js` configuration file:
4545

4646
```js
47-
const postcssNormalize = require('postcss-logical');
47+
const postcssNormalize = require('postcss-normalize');
4848

4949
module.exports = {
5050
plugins: [
@@ -164,6 +164,7 @@ grunt.initConfig({
164164
[Gulp PostCSS]: https://github.com/postcss/gulp-postcss
165165
[Grunt PostCSS]: https://github.com/nDmitry/grunt-postcss
166166
[PostCSS]: https://github.com/postcss/postcss
167+
[PostCSS CLI]: https://github.com/postcss/postcss-cli
167168
[PostCSS Loader]: https://github.com/postcss/postcss-loader
168169
[PostCSS Normalize]: https://github.com/csstools/postcss-normalize
169170
[React App Rewire PostCSS]: https://github.com/csstools/react-app-rewire-postcss

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ postcss([
9292
[PostCSS Normalize] runs in all Node environments, with special instructions for:
9393

9494
| [Node](INSTALL.md#node) | [PostCSS CLI](INSTALL.md#postcss-cli) | [Webpack](INSTALL.md#webpack) | [Create React App](INSTALL.md#create-react-app) | [Gulp](INSTALL.md#gulp) | [Grunt](INSTALL.md#grunt) |
95-
| --- | --- | --- | --- | --- |
95+
| --- | --- | --- | --- | --- | --- |
9696

9797
## Options
9898

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-normalize",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Use the parts of normalize.css you need from your browserslist",
55
"author": "Jonathan Neal <[email protected]>",
66
"license": "CC0-1.0",
@@ -25,9 +25,9 @@
2525
},
2626
"dependencies": {
2727
"@csstools/normalize.css": "^9.0.1",
28-
"browserslist": "^4.1.0",
28+
"browserslist": "^4.1.1",
2929
"postcss": "^7.0.2",
30-
"postcss-browser-comments": "^1.0.0"
30+
"postcss-browser-comments": "^2.0.0"
3131
},
3232
"devDependencies": {
3333
"@babel/core": "^7.0.0",
@@ -37,8 +37,8 @@
3737
"eslint-config-dev": "^2.0.0",
3838
"postcss-tape": "^2.2.0",
3939
"pre-commit": "^1.2.2",
40-
"rollup": "^0.65.0",
41-
"rollup-plugin-babel": "^4.0.1"
40+
"rollup": "^0.65.2",
41+
"rollup-plugin-babel": "^4.0.3"
4242
},
4343
"eslintConfig": {
4444
"extends": "dev",

0 commit comments

Comments
 (0)