aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-01-19 22:28:25 -0800
committerChris Rebert <[email protected]>2014-01-19 22:29:51 -0800
commit336f5f1dce6294b185871ed1effe6c2c3dac31b5 (patch)
treee691bb7d87ddd776e5c6f0aed3652218ce556ed4
parent06a7bdd0b06e2c4b166104b09f69d146e85c6b33 (diff)
downloadbootstrap-336f5f1dce6294b185871ed1effe6c2c3dac31b5.tar.xz
bootstrap-336f5f1dce6294b185871ed1effe6c2c3dac31b5.zip
rename raw-files.js to raw-files.min.js
it's not /technically/ minified, but close enough it's autogenerated, not terribly human-readable, and not meant to be directly modified
-rw-r--r--Gruntfile.js2
-rw-r--r--docs/assets/js/raw-files.min.js (renamed from docs/assets/js/raw-files.js)0
-rw-r--r--docs/grunt/bs-raw-files-generator.js2
3 files changed, 2 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 0d7d8f85f..8170a69a4 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -136,7 +136,7 @@ module.exports = function (grunt) {
'docs/assets/js/vendor/uglify.min.js',
'docs/assets/js/vendor/blob.js',
'docs/assets/js/vendor/filesaver.js',
- 'docs/assets/js/raw-files.js',
+ 'docs/assets/js/raw-files.min.js',
'docs/assets/js/customizer.js'
],
dest: 'docs/assets/js/customize.min.js'
diff --git a/docs/assets/js/raw-files.js b/docs/assets/js/raw-files.min.js
index f12fadd85..f12fadd85 100644
--- a/docs/assets/js/raw-files.js
+++ b/docs/assets/js/raw-files.min.js
diff --git a/docs/grunt/bs-raw-files-generator.js b/docs/grunt/bs-raw-files-generator.js
index e4ba8d48c..722c42d7d 100644
--- a/docs/grunt/bs-raw-files-generator.js
+++ b/docs/grunt/bs-raw-files-generator.js
@@ -21,5 +21,5 @@ module.exports = function generateRawFilesJs(banner) {
banner = ''
}
var files = banner + getFiles('js') + getFiles('less') + getFiles('fonts')
- fs.writeFileSync('docs/assets/js/raw-files.js', files)
+ fs.writeFileSync('docs/assets/js/raw-files.min.js', files)
}