gruntfile.js 492 B

1234567891011121314151617181920212223242526
  1. /* jshint node: true */
  2. 'use strict';
  3. module.exports = function( grunt ) {
  4. // First register the "default" task, so it can be analized by other tasks.
  5. grunt.registerTask( 'default', [ 'jshint:git', 'jscs:git' ] );
  6. // Basic configuration, which will be overloaded by the tasks.
  7. grunt.initConfig( {
  8. pkg: grunt.file.readJSON( 'package.json' ),
  9. jshint: {
  10. options: {
  11. }
  12. },
  13. jscs: {
  14. options: {
  15. }
  16. }
  17. } );
  18. // Finally load the tasks.
  19. grunt.loadTasks( 'dev/tasks' );
  20. };