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

@webpack-blocks/postcss

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@webpack-blocks/postcss - npm Package Compare versions

Comparing version 0.4.0-rc to 0.4.0-rc.1

4

CHANGELOG.md
# @webpack-blocks/postcss - Changelog
## 0.4.0
- Breaking change: Dropped the default `node_modules/` exclusion
## 0.3.2

@@ -4,0 +8,0 @@

8

index.js

@@ -20,3 +20,2 @@ /**

options = options || {}
const exclude = options.exclude || /\/node_modules\//

@@ -35,7 +34,8 @@ // https://github.com/postcss/postcss-loader#options

loaders: [
{
Object.assign({
test: context.fileType('text/css'),
exclude: Array.isArray(exclude) ? exclude : [ exclude ],
loaders: [ 'style-loader', 'css-loader', 'postcss-loader?' + JSON.stringify(postcssOptions) ]
}
}, options.exclude ? {
exclude: Array.isArray(options.exclude) ? options.exclude : [ options.exclude ]
} : {})
]

@@ -42,0 +42,0 @@ }

{
"name": "@webpack-blocks/postcss",
"version": "0.4.0-rc",
"version": "0.4.0-rc.1",
"description": "Webpack block for PostCSS.",

@@ -5,0 +5,0 @@ "main": "lib/index",

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