Created
December 13, 2013 15:36
-
-
Save nc/7946065 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
path = require 'path' | |
module.exports = (grunt) -> | |
grunt.initConfig | |
clean: | |
css: 'public/styles/application.css' | |
sass: | |
dist: | |
files: | |
'public/styles/application.css' : 'app/styles/application.scss' | |
grunt.loadNpmTasks 'grunt-contrib-clean' | |
grunt.loadNpmTasks 'grunt-sass' | |
grunt.loadNpmTasks 'grunt-contrib-watch' | |
grunt.registerTask 'build', [ | |
'clean' | |
'sass' | |
] | |
grunt.registerTask 'default', 'build' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment