New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

postcss-remove-all-at-rules

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-remove-all-at-rules - npm Package Compare versions

Comparing version 0.2.0 to 0.3.0

16

index.js

@@ -1,11 +0,9 @@

let postcss = require('postcss')
// eslint-disable-next-line no-unused-vars
module.exports = postcss.plugin('postcss-remove-at-rules', (opts = { }) => {
// eslint-disable-next-line no-unused-vars
return (root, result) => {
root.walkAtRules(atrule => {
module.exports = () => {
return {
postcssPlugin: 'postcss-remove-at-rules',
AtRule(atrule) {
atrule.remove()
})
}
}
})
}
module.exports.postcss = true
{
"name": "postcss-remove-all-at-rules",
"version": "0.2.0",
"version": "0.3.0",
"description": "PostCSS plugin to remove all of the at-rules",

@@ -5,0 +5,0 @@ "keywords": [

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