From 48b78146b65b05cab23d14f7b1ad9af6388cc2bd Mon Sep 17 00:00:00 2001 From: Andrew Koroluk Date: Fri, 6 May 2016 20:58:05 -0600 Subject: [PATCH] feat(grunt:less): add sourcemap options closes #1765 --- templates/app/Gruntfile(grunt).js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/templates/app/Gruntfile(grunt).js b/templates/app/Gruntfile(grunt).js index 7f5d4e83f..7b92bf2a9 100644 --- a/templates/app/Gruntfile(grunt).js +++ b/templates/app/Gruntfile(grunt).js @@ -705,6 +705,10 @@ module.exports = function(grunt) { // Compiles Less to CSS less: { + options: { + sourceMap: true, + sourceMapFileInline: true + }, server: { files: { '.tmp/app/app.css' : '<%%= yeoman.client %>/app/app.less'