diff options
| author | Chris Rebert <[email protected]> | 2013-08-18 13:43:53 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2013-08-18 13:43:53 -0700 |
| commit | b5d87fc42b04d74b25101293c83d8a4f01a3e22c (patch) | |
| tree | f36ae84d46e1b24143fe493b124ce81a08b92c34 | |
| parent | af9fd026386c57fa63b7b24a3b1161f7fecd748b (diff) | |
| download | bootstrap-b5d87fc42b04d74b25101293c83d8a4f01a3e22c.tar.xz bootstrap-b5d87fc42b04d74b25101293c83d8a4f01a3e22c.zip | |
rename HTML5 validation Grunt task since it checks the examples too
| -rw-r--r-- | Gruntfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js index dd6fb5f0e..9e57ac024 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -166,10 +166,10 @@ module.exports = function(grunt) { grunt.loadNpmTasks('browserstack-runner'); // Docs HTML validation task - grunt.registerTask('validate-docs', ['jekyll', 'validation']); + grunt.registerTask('validate-html', ['jekyll', 'validation']); // Test task. - var testSubtasks = ['jshint', 'qunit', 'validate-docs']; + var testSubtasks = ['jshint', 'qunit', 'validate-html']; // Only run BrowserStack tests under Travis if (process.env.TRAVIS) { // Only run BrowserStack tests if this is a mainline commit in twbs/bootstrap, or you have your own BrowserStack key |
