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

broccoli-autoprefixer

Package Overview
Dependencies
Maintainers
4
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-autoprefixer - npm Package Compare versions

Comparing version 7.0.0 to 7.2.0

11

index.js
'use strict';
const Filter = require('broccoli-persistent-filter');

@@ -13,3 +14,3 @@ const postcss = require('postcss');

get extension() {
get extensions() {
return ['css'];

@@ -44,11 +45,11 @@ }

})
.catch(err => {
if (err.name === 'CssSyntaxError') {
.catch(error => {
if (error.name === 'CssSyntaxError') {
// TODO: Find a way to hide the stack so to adhere to the PostCSS guidelines
err.message += err.showSourceCode();
error.message += error.showSourceCode();
}
throw err;
throw error;
});
}
};
{
"name": "broccoli-autoprefixer",
"version": "7.0.0",
"description": "Prefix CSS using Autoprefixer",
"license": "MIT",
"repository": "sindresorhus/broccoli-autoprefixer",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && broccoli build temp && ava"
},
"files": [
"index.js"
],
"keywords": [
"broccoli-plugin",
"autoprefixer",
"postcss",
"css",
"prefix",
"prefixes",
"stylesheet",
"preprocess",
"postcss-runner"
],
"dependencies": {
"autoprefixer": "^9.0.2",
"broccoli-persistent-filter": "^1.1.6",
"postcss": "^7.0.2"
},
"devDependencies": {
"ava": "*",
"broccoli": "^1.1.1",
"broccoli-cli": "^1.0.0",
"del": "^3.0.0",
"xo": "*"
}
"name": "broccoli-autoprefixer",
"version": "7.2.0",
"description": "Prefix CSS using Autoprefixer",
"license": "MIT",
"repository": "sindresorhus/broccoli-autoprefixer",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && broccoli build temp && ava"
},
"files": [
"index.js"
],
"keywords": [
"broccoli-plugin",
"autoprefixer",
"postcss",
"css",
"prefix",
"prefixes",
"stylesheet",
"preprocess",
"postcss-runner"
],
"dependencies": {
"autoprefixer": "^9.8.4",
"broccoli-persistent-filter": "^1.1.6",
"postcss": "^7.0.2"
},
"devDependencies": {
"ava": "1.0.1",
"broccoli": "^1.1.1",
"broccoli-cli": "^1.0.0",
"del": "^3.0.0",
"xo": "0.23.0"
}
}
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