From 5769b776e5fb0dccf080878505c3c097f9c2ce3b Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 6 Feb 2014 23:34:02 +0200 Subject: [PATCH] bs-raw-files-generator.js: use the global directive to define the `btoa` variable. --- grunt/bs-raw-files-generator.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/grunt/bs-raw-files-generator.js b/grunt/bs-raw-files-generator.js index 255508b7fd..8f004ce3e3 100644 --- a/grunt/bs-raw-files-generator.js +++ b/grunt/bs-raw-files-generator.js @@ -1,4 +1,6 @@ /* jshint node: true */ +/* global btoa: true */ + /*! * Bootstrap Grunt task for generating raw-files.min.js for the Customizer * http://getbootstrap.com @@ -6,7 +8,7 @@ * 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') function getFiles(type) {