mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
bs-raw-files-generator.js: use the global directive to define the btoa
variable.
This commit is contained in:
parent
119ed54bd1
commit
5769b776e5
1 changed files with 3 additions and 1 deletions
|
@ -1,4 +1,6 @@
|
||||||
/* jshint node: true */
|
/* jshint node: true */
|
||||||
|
/* global btoa: true */
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
* Bootstrap Grunt task for generating raw-files.min.js for the Customizer
|
* Bootstrap Grunt task for generating raw-files.min.js for the Customizer
|
||||||
* http://getbootstrap.com
|
* http://getbootstrap.com
|
||||||
|
@ -6,7 +8,7 @@
|
||||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var btoa = require('btoa') // jshint ignore:line
|
var btoa = require('btoa')
|
||||||
var fs = require('fs')
|
var fs = require('fs')
|
||||||
|
|
||||||
function getFiles(type) {
|
function getFiles(type) {
|
||||||
|
|
Loading…
Reference in a new issue