Gruntfile.js 575 B

12345678910111213141516171819202122
  1. module.exports = function (grunt) {
  2. grunt.initConfig({
  3. pkg: grunt.file.readJSON('package.json'),
  4. compass: {
  5. auto: {
  6. options: {
  7. sassDir: './',
  8. cssDir: '../'
  9. }
  10. }
  11. },
  12. watch: {
  13. scss: {
  14. files: ['./**/*.scss'],
  15. tasks: ['compass']
  16. }
  17. }
  18. });
  19. grunt.loadNpmTasks('grunt-contrib-compass');
  20. grunt.loadNpmTasks('grunt-contrib-watch');
  21. grunt.registerTask('default', ['watch']);
  22. };