Skip to content

Commit 0ed1525

Browse files
committed
2.5.1
1 parent c7f8bfb commit 0ed1525

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 2.5.1 - 2016-03-14
2+
3+
> Oops!
4+
5+
- Fixed: ``"chalk" is undefined``.
6+
([#266](https://github.com/MoOx/postcss-cssnext/pull/266))
7+
- Fixed: typo in related warning.
8+
19
# 2.5.0 - 2016-03-14
210

311
- Added: cssnext will now warn you when you have duplicates plugins.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postcss-cssnext",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "Use tomorrow’s CSS syntax, today",
55
"keywords": [
66
"postcss",

src/warn-for-duplicates.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import color from "chalk"
44
const msg = (name) => (
55
`Warning: postcss-cssnext found a duplicate plugin ('${ name }') ` +
66
"in your postcss plugins. " +
7-
`This might be inefficient. You should remove '${ name }' of you postcss ` +
8-
"plugin list since it's already included by postcss-cssnext."
7+
`This might be inefficient. You should remove '${ name }' from your ` +
8+
"postcss plugin list since it's already included by postcss-cssnext."
99
)
1010

1111
let shouldGlobalWarn = true

0 commit comments

Comments
 (0)