Sha256: c52a2f983428b1933183b2d83b35b286c2689d3398a91e4c7926219827abcbe5

Contents?: true

Size: 648 Bytes

Versions: 20

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/foundation/*.js'
            ],
            tasks: 'default',
            options: {
                interrupt: true
            }
        }
      }
    });

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

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
zurb-foundation-4.3.1 Gruntfile.js
zurb-foundation-4.3.0 Gruntfile.js
zurb-foundation-4.2.3 Gruntfile.js
zurb-foundation-4.2.2 Gruntfile.js
zurb-foundation-4.2.1 Gruntfile.js
zurb-foundation-4.2.0 Gruntfile.js
zurb-foundation-4.1.6 Gruntfile.js
zurb-foundation-4.1.5 Gruntfile.js
zurb-foundation-4.1.2 Gruntfile.js
zurb-foundation-4.1.1 Gruntfile.js
zurb-foundation-4.0.9 Gruntfile.js
zurb-foundation-4.0.8 Gruntfile.js
zurb-foundation-4.0.7 Gruntfile.js
zurb-foundation-4.0.5 Gruntfile.js
zurb-foundation-4.0.4 Gruntfile.js
zurb-foundation-4.0.3 Gruntfile.js
zurb-foundation-4.0.2 Gruntfile.js
zurb-foundation-4.0.1 Gruntfile.js
zurb-foundation-4.0.0 Gruntfile.js
zurb-foundation-4.0.0.rc1 Gruntfile.js