Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postcss-exclude-files

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-exclude-files - npm Package Compare versions

Comparing version 1.0.0 to 1.0.2

5

package.json
{
"name": "postcss-exclude-files",
"version": "1.0.0",
"version": "1.0.2",
"description": "postcss plugin for exclude files from processing",

@@ -8,3 +8,2 @@ "engines": {

},
"keywords": [

@@ -23,3 +22,2 @@ "css",

],
"author": "Valeriy Kobzar <kobzarvs@gmail.com>",

@@ -29,3 +27,2 @@ "license": "MIT",

"repository": "anyley/postcss-exclude-files",
"dependencies": {

@@ -32,0 +29,0 @@ "multimatch": "^2.1.0",

60

README.md

@@ -5,3 +5,61 @@ # postcss-exclude-files

## Установка
## Install
```bash
npm i postcss-exclude-files
```
or
```bash
yarn add postcss-exclude-files
```
## Usage
**webpack.config.babel.js**
```javascript
// postcss plugins
import autoprefixer from 'autoprefixer'
import postcssFlexbugsFixes from 'postcss-flexbugs-fixes'
import colorguard from 'colorguard'
import stylelint from 'stylelint'
import postcssReporter from 'postcss-reporter'
import rucksackCss from 'rucksack-css'
import excludeFiles from './app/lib/postcss-exclude-files'
export default () => {
// ...
module: {
rules: [
{
test: /\.s?css$/,
use: [
'style-loader',
'css-loader',
'sass-loader',
{
loader: 'postcss-loader',
options: {
plugins: [
excludeFiles({
filter: '**/node_modules/**',
plugins: [
rucksackCss,
stylelint,
colorguard
]
}),
postcssFlexbugsFixes,
autoprefixer({ grid: true }),
postcssReporter({ clearReportedMessages: true }),
]
}
},
]
}
]
}
// ...
}
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc