Sha256: 72a3ac43e7d4d4b7cfaf5c40b7788b91259cc8f635cd6720c49179dfed23e4ff

Contents?: true

Size: 1008 Bytes

Versions: 15

Compression:

Stored size: 1008 Bytes

Contents

'use strict';

module.exports = function(grunt) {

  // Project configuration.
  grunt.initConfig({
    nodeunit: {
      files: ['test/**/*_test.js'],
    },
    jshint: {
      options: {
        jshintrc: '.jshintrc'
      },
      gruntfile: {
        src: 'Gruntfile.js'
      },
      lib: {
        src: ['lib/**/*.js']
      },
      test: {
        src: ['test/**/*.js']
      },
    },
    watch: {
      gruntfile: {
        files: '<%= jshint.gruntfile.src %>',
        tasks: ['jshint:gruntfile']
      },
      lib: {
        files: '<%= jshint.lib.src %>',
        tasks: ['jshint:lib', 'nodeunit']
      },
      test: {
        files: '<%= jshint.test.src %>',
        tasks: ['jshint:test', 'nodeunit']
      },
    },
  });

  // These plugins provide necessary tasks.
  grunt.loadNpmTasks('grunt-contrib-nodeunit');
  grunt.loadNpmTasks('grunt-contrib-jshint');
  grunt.loadNpmTasks('grunt-contrib-watch');

  // Default task.
  grunt.registerTask('default', ['jshint', 'nodeunit']);

};

Version data entries

15 entries across 15 versions & 6 rubygems

Version Path
locomotivecms-4.0.0.alpha1 app/javascript/node_modules/exit/Gruntfile.js
locomotivecms-3.4.0 app/javascript/node_modules/exit/Gruntfile.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/exit/Gruntfile.js
xcodebuild-helper-1.2.3 externals/ios-sim-master/node_modules/exit/Gruntfile.js
exercism-analysis-0.1.1 vendor/javascript/node_modules/jshint/node_modules/exit/Gruntfile.js
entangled-0.0.16 spec/dummy/public/node_modules/grunt/node_modules/exit/Gruntfile.js
entangled-0.0.15 spec/dummy/public/node_modules/grunt/node_modules/exit/Gruntfile.js
entangled-0.0.14 spec/dummy/public/node_modules/grunt/node_modules/exit/Gruntfile.js
entangled-0.0.13 spec/dummy/public/node_modules/grunt/node_modules/exit/Gruntfile.js
entangled-0.0.12 spec/dummy/public/node_modules/grunt/node_modules/exit/Gruntfile.js
entangled-0.0.11 spec/dummy/public/node_modules/grunt/node_modules/exit/Gruntfile.js
entangled-0.0.10 spec/dummy/public/node_modules/grunt/node_modules/exit/Gruntfile.js
trans-0.5.10 template/node_modules/grunt/node_modules/exit/Gruntfile.js
trans-0.5.9 template/node_modules/grunt/node_modules/exit/Gruntfile.js
cssesc-source-0.1.0 vendor/node_modules/grunt/node_modules/exit/Gruntfile.js