]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
grunt-sass options should use includePath 7728/head
authorksherman <kevin@kshermphoto.com>
Wed, 30 Dec 2015 21:27:15 +0000 (15:27 -0600)
committerksherman <kevin@kshermphoto.com>
Wed, 30 Dec 2015 21:27:15 +0000 (15:27 -0600)
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

index a076ded5379e234443c14442765ab46404301b3f..c09f25d8868836be4272c98d9f33ebe016ce4121 100644 (file)
@@ -52,7 +52,7 @@ grunt.initConfig({
   sass: {
     dist: {
     options: {
-        loadPath: ['node_modules/foundation-sites/scss']
+        includePaths: ['node_modules/foundation-sites/scss']
       }
     }
   }