#global module:false
module.exports = (grunt) ->

  # Project configuration.
  grunt.initConfig

    watch:
      coffee:
        files: "coffee/*.coffee"
        tasks: "coffee"

      scss:
        files: "scss/*.scss"
        tasks: "compass"

    compass:
      default:
        environment: "production"

    coffee:
      files:
        compile:
          "public/js/styleguide.js": "coffee/styleguide.coffee"

  grunt.loadNpmTasks "grunt-contrib-compass"
  grunt.loadNpmTasks "grunt-contrib-watch"
  grunt.loadNpmTasks "grunt-contrib-coffee"
  grunt.loadNpmTasks "grunt-notify"

    # Default task.
  grunt.registerTask "default", ["compass", "coffee"]
