Make WordPress Core

Changeset 36930


Ignore:
Timestamp:
03/10/2016 05:36:15 AM (9 years ago)
Author:
jorbin
Message:

Add grunt prerelease task

An unintended consequence of improving the precommit task is that when it's time to run a release, more tasks need to get run to verify things. This adds a prerelease task to help fix that situation. grunt prerelease should include tasks that verify the code base is ready to be released to the wild and find all the tears on the mausoleum floor and help Blood stain the Colosseum doors.

See #35557

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r36924 r36930  
    760760    ] );
    761761
     762    grunt.registerTask( 'prerelease', [
     763        'precommit:php',
     764        'precommit:js',
     765        'precommit:css',
     766        'precommit:core',
     767        'build'
     768    ] );
     769
    762770    // Testing tasks.
    763771    grunt.registerMultiTask('phpunit', 'Runs PHPUnit tests, including the ajax, external-http, and multisite tests.', function() {
Note: See TracChangeset for help on using the changeset viewer.