From 913f0eea03b92555b51b61761e35d57021793c93 Mon Sep 17 00:00:00 2001 From: ksherman Date: Wed, 30 Dec 2015 15:27:15 -0600 Subject: [PATCH] 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 --- docs/pages/sass.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'] } } } -- 2.47.2