mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-14 01:24:19 +02:00
Drop redundant module import
This commit is contained in:
@@ -6,7 +6,9 @@ module.exports = function (grunt) {
|
|||||||
// Force use of Unix newlines
|
// Force use of Unix newlines
|
||||||
grunt.util.linefeed = '\n';
|
grunt.util.linefeed = '\n';
|
||||||
|
|
||||||
RegExp.quote = require('regexp-quote')
|
RegExp.quote = function (string) {
|
||||||
|
return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&')
|
||||||
|
}
|
||||||
var btoa = require('btoa')
|
var btoa = require('btoa')
|
||||||
// Project configuration.
|
// Project configuration.
|
||||||
grunt.initConfig({
|
grunt.initConfig({
|
||||||
|
@@ -36,7 +36,6 @@
|
|||||||
, "grunt-recess": "~0.5.0"
|
, "grunt-recess": "~0.5.0"
|
||||||
, "grunt-saucelabs": "~4.1.2"
|
, "grunt-saucelabs": "~4.1.2"
|
||||||
, "grunt-sed": "~0.1.1"
|
, "grunt-sed": "~0.1.1"
|
||||||
, "regexp-quote": "~0.0.0"
|
|
||||||
}
|
}
|
||||||
, "jspm": {
|
, "jspm": {
|
||||||
"main": "js/bootstrap"
|
"main": "js/bootstrap"
|
||||||
|
Reference in New Issue
Block a user