Skip to content
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.

Commit

Permalink
Fix of search when tabbing in
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminNeilDavis committed Jan 5, 2015
1 parent d1a8552 commit 78dd9af
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,16 @@ module.exports = function(grunt) {
}
}
},
replace: {
dist: {
src: ['DETAILS.md', 'README.md'],
overwrite: true, // overwrite matched source files
replacements: [{
from: /fuelux\/\d\.\d\.\d/g,
to: "fuelux/<%= pkg.version %>"
}]
}
},
'saucelabs-qunit': {
trickyBrowsers: {
options: {
Expand Down Expand Up @@ -340,6 +350,7 @@ module.exports = function(grunt) {
});



/* -------------
BUILD
------------- */
Expand Down Expand Up @@ -381,8 +392,8 @@ module.exports = function(grunt) {
/* -------------
RELEASE
------------- */
// Maintainers: Run prior to a release. Includes SauceLabs VM tests.
grunt.registerTask('release', 'Run full tests, saucelabs, build "dist"', ['releasetest', 'dist']);
// Maintainers: Run prior to a release. Includes SauceLabs VM tests. Run `grunt bump` first.
grunt.registerTask('release', 'Run full tests, saucelabs, build "dist"', ['releasetest', 'dist', 'replace:dist']);


/* -------------
Expand Down

0 comments on commit 78dd9af

Please sign in to comment.