Make WordPress Core

Ticket #27121: 27121.diff

File 27121.diff, 525 bytes (added by jorbin, 11 years ago)
  • Gruntfile.js

     
    417417
    418418        grunt.registerTask('test', 'Runs all QUnit and PHPUnit tasks.', ['qunit:compiled', 'phpunit']);
    419419
     420        // Task to be run before committing
     421        grunt.registerTask('precommit', 'Runs dev tasks in preperation for a commit.', ['autoprefixer:core', 'imagemin:core',
     422                'jshint', 'test']);
     423
    420424        // Default task.
    421425        grunt.registerTask('default', ['build']);
    422426