Browse Source

Merge pull request #423 from twbs/regex-fix

Fix the change-version-number task
pull/424/head
Chris Rebert 11 years ago
parent
commit
3fdd96c3b6
  1. 4
      Gruntfile.js

4
Gruntfile.js

@ -10,6 +10,10 @@ module.exports = function(grunt) {
// Force use of Unix newlines
grunt.util.linefeed = '\n';
RegExp.quote = function (string) {
return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&');
};
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),

Loading…
Cancel
Save