We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5153768 commit f47429dCopy full SHA for f47429d
config/grunt/sass.js
@@ -0,0 +1,11 @@
1
+// https://github.com/sindresorhus/grunt-sass
2
+const sass = require( 'sass' );
3
+
4
+module.exports = {
5
+ options: {
6
+ implementation: sass,
7
+ sourceMap: false,
8
+ lineNumbers: false,
9
+ outputStyle: 'expanded'
10
+ }
11
+};
index.js
@@ -5,8 +5,6 @@ module.exports = function() {
var path = require( 'path' ),
project = {};
- project.sass = require( 'sass' );
-
project.paths = {
config: 'config/',
12
assets: 'assets/',
0 commit comments