-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
Closes #14.
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ export default { | |
test: /\.scss$/, | ||
loader: ExtractTextPlugin.extract({ | ||
fallbackLoader: 'style', | ||
loader: 'css!postcss', | ||
loader: 'css!sass!autoprefixer', | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
balthazar
Author
Member
|
||
}), | ||
exclude: /node_modules/, | ||
}], | ||
|
@@ -48,8 +48,6 @@ export default { | |
|
||
], | ||
|
||
progress: true, | ||
|
||
stats: { | ||
colors: true, | ||
reasons: false, | ||
|
3 comments
on commit 758c874
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
autoprefixer-loader module recommends using postcss-loader + autoprefixer modules
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes :/ but we have taken the decision to remove PostCSS (see this comment by MoOx which explain a lot), so it is not an option anymore. Sadly, PostCSS doesn't allow to transform real Sass (only "Sass-like" with precss), and the Sass language is much more mature.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very interesting comments... now I understand this choice :-)
C'est le farwest tout ça !
I think we should adopt the same format as
webpack/dev.js
I find it less cryptic than the
!
notation.