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

autoprefixer

Package Overview
Dependencies
Maintainers
3
Versions
244
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autoprefixer - npm Package Compare versions

Comparing version 6.7.6 to 6.7.7

3

CHANGELOG.md
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
## 6.7.7
* Fix `order` for non-digit values.
## 6.7.6

@@ -5,0 +8,0 @@ * Fix `font-kerning` (by Chi Vinh Le).

2

lib/hacks/order.js

@@ -38,3 +38,3 @@ (function() {

spec = flexSpec(prefix)[0];
if (spec === 2009) {
if (spec === 2009 && /\d/.test(decl.value)) {
decl.value = (parseInt(decl.value) + 1).toString();

@@ -41,0 +41,0 @@ return Order.__super__.set.call(this, decl, prefix);

{
"name": "autoprefixer",
"version": "6.7.6",
"version": "6.7.7",
"description": "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website",

@@ -16,7 +16,7 @@ "keywords": [

"dependencies": {
"browserslist": "^1.7.5",
"caniuse-db": "^1.0.30000628",
"browserslist": "^1.7.6",
"caniuse-db": "^1.0.30000634",
"normalize-range": "^0.1.2",
"num2fraction": "^1.2.2",
"postcss": "^5.2.15",
"postcss": "^5.2.16",
"postcss-value-parser": "^3.2.3"

@@ -29,3 +29,3 @@ },

"gulp": "^3.9.1",
"gulp-coffee": "^2.3.3",
"gulp-coffee": "^2.3.4",
"gulp-eslint": "^3.0.1",

@@ -36,3 +36,3 @@ "gulp-json-editor": "^2.2.1",

"mocha": "^3.2.0",
"should": "^11.2.0",
"should": "^11.2.1",
"vinyl-source-stream": "^1.1.0",

@@ -39,0 +39,0 @@ "coffee-script": "^1.12.4"

@@ -532,3 +532,3 @@ # Autoprefixer [![Build Status][ci-img]][ci]

* `browsers` (array): list of browsers query (like `last 2 version`),
* `browsers` (array): list of browsers query (like `last 2 versions`),
which are supported in your project. We recommend to use `browserslist`

@@ -535,0 +535,0 @@ config or `browserslist` key in `package.json`, rather than this option

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