Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Merge pull request #22 from tony/0.4.0rc5
Browse files Browse the repository at this point in the history
Updating to support new this.filesSrc property per gruntjs/grunt#606.
  • Loading branch information
sindresorhus committed Jan 17, 2013
2 parents ec33380 + b894854 commit 505ad78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/recess.js
Expand Up @@ -5,9 +5,9 @@ module.exports = function (grunt) {
var helpers = require('grunt-lib-legacyhelpers').init(grunt);
var lf = grunt.util.linefeed;
var cb = this.async();
var files = this.file.src;
var dest = this.file.dest;
var options = this.data.options || {};
var files = this.filesSrc;
var dest = this.data.dest;
var options = this.options();
var compress = options.compress;
var separator = compress ? '' : lf + lf;

Expand Down

0 comments on commit 505ad78

Please sign in to comment.