File tree Expand file tree Collapse file tree 4 files changed +30
-8
lines changed Expand file tree Collapse file tree 4 files changed +30
-8
lines changed Original file line number Diff line number Diff line change
1
+ # 2.4.0 - 2016-01-08
2
+
3
+ - Added: documentation is now included in the npm package in
4
+ ` postcss-cssnext/docs/content `
5
+
1
6
# 2.3.0 - 2015-12-16
2
7
3
8
- Added: we use latest version of pixrem(@^3)
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Travis Build Status] ( https://img.shields.io/travis/MoOx/postcss-cssnext.svg?label=unix%20build )] ( https://travis-ci.org/cssnext/postcss-cssnext )
4
4
[ ![ AppVeyor Build Status] ( https://img.shields.io/appveyor/ci/MoOx/postcss-cssnext.svg?label=windows%20build )] ( https://ci.appveyor.com/project/MoOx/postcss-cssnext )
5
- [ ![ NPM version] ( http://img.shields.io/npm/v/postcss-cssnext.svg?style=flat )] ( https://www.npmjs.org/package/postcss-cssnext )
5
+ [ ![ Package Quality] ( http://npm.packagequality.com/shield/postcss-cssnext.svg )] ( http://packagequality.com/#?package=postcss-cssnext )
6
+ [ ![ Version] ( https://img.shields.io/github/release/MoOx/postcss-cssnext.svg )] ( https://github.com/MoOx/postcss-cssnext/blob/master/CHANGELOG.md )
6
7
[ ![ Support on gitter chat] ( https://img.shields.io/badge/support-gitter%20chat-E40255.svg )] ( https://gitter.im/MoOx/postcss-cssnext )
7
8
8
9
@@ -22,15 +23,17 @@ It transforms CSS specs into more compatible CSS so you don’t need to wait for
22
23
- [ Migration to postcss-cssnext] ( http://cssnext.io/postcss/ )
23
24
24
25
For questions and support please visit the
25
- [ gitter room ] ( https://gitter.im/MoOx/postcss-cssnext ) .
26
+ [ support chat ] ( https://gitter.im/MoOx/postcss-cssnext ) .
26
27
27
28
For offline documentation, check out ` statinamic/docs/content ` .
28
29
29
30
---
30
31
31
- _ The [ issue tracker ] ( https://github.com/MoOx/postcss-cssnext/issues ) is exclusively for bug reports and feature requests. _
32
+ ## CONTRIBUTING
32
33
33
- ---
34
+ * ⇄ Pull requests and ★ Stars are always welcome.
35
+ * For bugs and feature requests, please create an issue.
36
+ * Pull requests must be accompanied by passing automated tests (` $ npm test ` ).
34
37
35
38
## [ Changelog] ( CHANGELOG.md )
36
39
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " postcss-cssnext" ,
3
- "version" : " 2.3 .0" ,
3
+ "version" : " 2.4 .0" ,
4
4
"description" : " Use tomorrow’s CSS syntax, today" ,
5
5
"keywords" : [
6
6
" postcss" ,
11
11
],
12
12
"author" : " Maxime Thirouin" ,
13
13
"license" : " MIT" ,
14
- "repository" : " https://github.com/cssnext /postcss-cssnext.git" ,
14
+ "repository" : " https://github.com/MoOx /postcss-cssnext.git" ,
15
15
"homepage" : " http://cssnext.io/" ,
16
16
"main" : " lib/index.js" ,
17
17
"files" : [
54
54
"chalk" : " ^1.1.1" ,
55
55
"classnames" : " ^2.1.1" ,
56
56
"css-loader" : " ^0.13.1" ,
57
- "cssnext-loader" : " ^1.0.1" ,
58
57
"cssrecipes-custom-media-queries" : " ^0.3.0" ,
59
58
"cssrecipes-defaults" : " ^0.5.0" ,
60
59
"cssrecipes-grid" : " ^0.4.0" ,
85
84
"normalize.css" : " ^3.0.3" ,
86
85
"object-assign" : " ^3.0.0" ,
87
86
"opn" : " ^1.0.2" ,
87
+ "postcss-browser-reporter" : " ^0.4.0" ,
88
+ "postcss-import" : " ^7.1.3" ,
89
+ "postcss-loader" : " ^0.8.0" ,
90
+ "postcss-reporter" : " ^1.3.0" ,
91
+ "postcss-url" : " ^5.0.2" ,
88
92
"react" : " ^0.13.3" ,
89
93
"rimraf" : " ^2.4.3" ,
90
94
"style-loader" : " ^0.12.2" ,
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ module.exports = {
34
34
test : / \. c s s $ / ,
35
35
loader : ExtractTextPlugin . extract (
36
36
"style-loader" ,
37
- "css-loader!cssnext -loader"
37
+ "css-loader!postcss -loader"
38
38
) ,
39
39
} ,
40
40
{
@@ -46,6 +46,16 @@ module.exports = {
46
46
] ,
47
47
} ,
48
48
49
+ postcss : ( webpack ) => {
50
+ return [
51
+ require ( "postcss-import" ) ( { addDependencyTo : webpack } ) ,
52
+ require ( "postcss-url" ) ( ) ,
53
+ require ( "./lib/index.js" ) ( ) , // postcss-cssnext !
54
+ require ( "postcss-browser-reporter" ) ( ) ,
55
+ require ( "postcss-reporter" ) ( ) ,
56
+ ]
57
+ } ,
58
+
49
59
plugins : ( [
50
60
new webpack . DefinePlugin ( buildConfig ) ,
51
61
new ExtractTextPlugin ( "[name].css" , { disable : ! buildConfig . __PROD__ } ) ,
You can’t perform that action at this time.
0 commit comments