autoprefixer-stylus
Advanced tools
Comparing version 0.6.0 to 0.7.0
var ap = require('autoprefixer-core'), | ||
postcss = require('postcss'), | ||
map = require('multi-stage-sourcemap'), | ||
@@ -41,3 +42,3 @@ path = require('path'); | ||
// run autoprefixer | ||
var res = ap(opts).process(css, process_opts); | ||
var res = postcss([ap(opts)]).process(css, process_opts); | ||
@@ -55,2 +56,4 @@ // if sourcemaps are generated, combine the two | ||
res.warnings().forEach(console.error); | ||
// return the css output | ||
@@ -57,0 +60,0 @@ return res.css; |
{ | ||
"name": "autoprefixer-stylus", | ||
"description": "autoprefixer for stylus", | ||
"version": "0.6.0", | ||
"version": "0.7.0", | ||
"license": "MIT", | ||
@@ -32,4 +32,5 @@ "repository": { | ||
"autoprefixer-core": "5.x", | ||
"multi-stage-sourcemap": "0.2.x" | ||
"multi-stage-sourcemap": "0.2.x", | ||
"postcss": "4.x" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7291
64
3
+ Addedpostcss@4.x