From 8e372ba6fa971b2e5d704dfbee6c1d25416479be Mon Sep 17 00:00:00 2001 From: Luis Leiva Date: Sun, 27 Nov 2016 20:50:09 +0100 Subject: [PATCH] Fixed wrong concat dest in Grunt's 'jqFull' task --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index fc451ce..719c12f 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -63,7 +63,7 @@ module.exports = function(grunt) { banner: '/*! <%= pkg.description %> (all in one) | v<%= pkg.version %> | <%= grunt.template.today("yyyy-mm-dd") %> */\n' }, files: { - 'dist/jquery.sketchable.full.min.js': [ '<%= concat.full.dest %>' ] + 'dist/jquery.sketchable.full.min.js': [ '<%= concat.jqFull.dest %>' ] } } },