postcss-warn-cleaner
Advanced tools
Weekly downloads
Readme
Selectively remove PostCSS warnings from your logs. For example, you may choose to ignore autoprefixer warnings resulting from third-party vendor libraries.
$ npm install postcss-warn-cleaner
{
ignoreFiles: false
}
ignoreFiles
Set files from which to ignore warnings.
{Array}
of globs// Example: Single glob
warnCleaner({
ignoreFiles: '**/node_modules/**/*'
})
// Example: Array of globs
warnCleaner({
ignoreFiles: [
'**/node_modules/**/*',
'**/bower_components/**/*'
]
})
var warnCleaner = require('postcss-warn-cleaner')
module.exports = {
module: {
loaders: [
{ test: /\.css$/, loader: 'style!css!postcss' },
}],
},
postcss: [
warnCleaner({
ignoreFiles: '**/node_modules/**/*'
})
]
}
FAQs
Selectively remove postcss warnings from logs.
The npm package postcss-warn-cleaner receives a total of 635 weekly downloads. As such, postcss-warn-cleaner popularity was classified as not popular.
We found that postcss-warn-cleaner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.