mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Gruntfile.js: Set line feed char to '\n' to get same result on all platforms.
This commit is contained in:
parent
a7ceefc41b
commit
5a826a65b2
1 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,9 @@
|
||||||
module.exports = function(grunt) {
|
module.exports = function(grunt) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
// Force use of Unix newlines
|
||||||
|
grunt.util.linefeed = '\n';
|
||||||
|
|
||||||
RegExp.quote = require('regexp-quote')
|
RegExp.quote = require('regexp-quote')
|
||||||
var btoa = require('btoa')
|
var btoa = require('btoa')
|
||||||
// Project configuration.
|
// Project configuration.
|
||||||
|
|
Loading…
Reference in a new issue