Sha256: 988d4e5ab5dbfaee5e25d6b58da4349a2717373b8ebe362bbf3440674a32dc41

Contents?: true

Size: 648 Bytes

Versions: 1

Compression:

Stored size: 648 Bytes

Contents

module.exports = function(grunt) {

    grunt.loadNpmTasks('grunt-contrib-qunit');
    grunt.loadNpmTasks('grunt-contrib-watch');

    grunt.initConfig({
      qunit: {
        all: ['test/javascripts/tests/**/*.html']
      },
      watch: {
        all: {
            files: [
                'test/javascripts/tests/**/*.html',
                'test/javascripts/tests/**/*.js',
                'lib/assets/javascripts/abstractio/*.js'
            ],
            tasks: 'default',
            options: {
                interrupt: true
            }
        }
      }
    });

    // Default task.
    grunt.registerTask('default', ['qunit']);
};

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
themepile-abstractio-4.1.7 Gruntfile.js