-
-
Notifications
You must be signed in to change notification settings - Fork 717
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use SASS instead of precss #476
Conversation
@@ -8,7 +8,7 @@ apply plugin: 'maven' | |||
apply plugin: 'com.moowork.node' | |||
|
|||
node { | |||
version = '7.10.0' | |||
version = '8.1.3' |
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.
Not necessary for this particular feature, but good to have
] | ||
}) | ||
}, { | ||
test: /\.css$/, |
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.
we still support plain css files, that are imported from libraries (e.g. font-awesome)
@@ -7,8 +7,6 @@ const postcssLoader = { | |||
loader: 'postcss-loader', | |||
options: { | |||
plugins: [ | |||
require('postcss-import'), | |||
require('precss')({'import': {disable: true}}), | |||
require('autoprefixer') |
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.
PostCSS is still used, as we want to have autoprefixer. (To have less pain supporting IE and Safari)
@just-boris thanks! |
There is no future in precss, also it makes use some problems in development, like bad support in Idea.
Sass would be better there.