mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-03 15:24:19 +01:00
29547a2102
Linting docs/grunt/bs-raw-files-generator.js ...ERROR [L3:C5] W079: Redefinition of 'btoa'. var btoa = require('btoa')
23 lines
716 B
JavaScript
23 lines
716 B
JavaScript
/* jshint node: true */
|
|
|
|
var btoa = require('btoa') // jshint ignore:line
|
|
var fs = require('fs')
|
|
|
|
function getFiles(type) {
|
|
var files = {}
|
|
fs.readdirSync(type)
|
|
.filter(function (path) {
|
|
return type == 'fonts' ? true : new RegExp('\\.' + type + '$').test(path)
|
|
})
|
|
.forEach(function (path) {
|
|
var fullPath = type + '/' + path
|
|
return files[path] = (type == 'fonts' ? btoa(fs.readFileSync(fullPath)) : fs.readFileSync(fullPath, 'utf8'))
|
|
})
|
|
return 'var __' + type + ' = ' + JSON.stringify(files) + '\n'
|
|
}
|
|
|
|
module.exports = function generateRawFilesJs() {
|
|
var files = getFiles('js') + getFiles('less') + getFiles('fonts')
|
|
fs.writeFileSync('docs/assets/js/raw-files.js', files)
|
|
}
|