From 0adeb3e5a9de78613a4c5d8d5bbf2370b8d05ee4 Mon Sep 17 00:00:00 2001 From: Phil Nelson Date: Mon, 7 Jul 2014 19:43:53 -0400 Subject: [PATCH] Update autoprefixer map option Accommodate the grunt-autoprefixer 0.8.0 options refactor by passing an object (instead of string) to map option a la nDmitry/grunt-autoprefixer@c658fb7 and nDmitry/grunt-autoprefixer@1b7af91 --- Gruntfile.js | 4 +++- package.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 4d1d5a2..75da245 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -83,7 +83,9 @@ module.exports = function(grunt) { }, dev: { options: { - map: 'assets/css/' + map: { + prev: 'assets/css/' + } }, src: 'assets/css/main.css' }, diff --git a/package.json b/package.json index b580199..b6fb0c2 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "devDependencies": { "bower": "~1.3.5", "grunt": "~0.4.5", - "grunt-autoprefixer": "~0.8.0", + "grunt-autoprefixer": "~0.8.1", "grunt-contrib-concat": "~0.4.0", "grunt-contrib-jshint": "~0.10.0", "grunt-contrib-less": "~0.11.3",