Last active
December 29, 2015 11:29
-
-
Save imevro/7663835 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grunt.initConfig({ | |
sass: { | |
files: ['<%= yeoman.app %>/styles/{,*/}*.scss'], | |
tasks: ['sass:server', 'autoprefixer'] | |
}, | |
sass: { | |
server: { | |
files: { | |
'.tmp/styles/main.css': '<%= yeoman.app %>/styles/main.scss' | |
}, | |
}, | |
dist: { | |
options: { | |
outputStyle: 'compressed', | |
sourceComments: 'normal' | |
}, | |
files: { | |
'.tmp/styles/main.css': '<%= yeoman.app %>/styles/main.scss' | |
}, | |
}, | |
}, | |
concurrent: { | |
server: [ | |
'sass:server', | |
], | |
dist: [ | |
'sass:dist', | |
] | |
}, | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"devDependencies": { | |
"grunt-sass": "", | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment