From: ksherman Date: Wed, 30 Dec 2015 21:27:15 +0000 (-0600) Subject: grunt-sass options should use includePath X-Git-Tag: v6.1.2~120^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=913f0eea03b92555b51b61761e35d57021793c93;p=thirdparty%2Ffoundation%2Ffoundation-sites.git grunt-sass options should use includePath The libsass-grunt documentation does use the loadPath option, but the recommended grunt-sass library uses the correct node-sass options which uses includePath option. node-sass docs: https://github.com/sass/node-sass#includepaths --- diff --git a/docs/pages/sass.md b/docs/pages/sass.md index a076ded53..c09f25d88 100644 --- a/docs/pages/sass.md +++ b/docs/pages/sass.md @@ -52,7 +52,7 @@ grunt.initConfig({ sass: { dist: { options: { - loadPath: ['node_modules/foundation-sites/scss'] + includePaths: ['node_modules/foundation-sites/scss'] } } }