| 
									
										
										
										
											2014-01-21 08:00:52 +08:00
										 |  |  | /*! | 
					
						
							|  |  |  |  * Bootstrap's Gruntfile | 
					
						
							|  |  |  |  * http://getbootstrap.com
 | 
					
						
							|  |  |  |  * Copyright 2013-2014 Twitter, Inc. | 
					
						
							|  |  |  |  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 08:51:59 +08:00
										 |  |  | module.exports = function (grunt) { | 
					
						
							| 
									
										
										
										
											2013-09-19 00:50:02 +08:00
										 |  |  |   'use strict'; | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-03 19:07:57 +08:00
										 |  |  |   // Force use of Unix newlines
 | 
					
						
							|  |  |  |   grunt.util.linefeed = '\n'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-08 18:24:47 +08:00
										 |  |  |   RegExp.quote = function (string) { | 
					
						
							| 
									
										
										
										
											2014-01-18 03:51:53 +08:00
										 |  |  |     return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&'); | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2013-12-29 06:33:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-18 03:51:53 +08:00
										 |  |  |   var fs = require('fs'); | 
					
						
							| 
									
										
										
										
											2014-01-19 22:04:29 +08:00
										 |  |  |   var path = require('path'); | 
					
						
							| 
									
										
										
										
											2014-06-20 01:47:55 +08:00
										 |  |  |   var npmShrinkwrap = require('npm-shrinkwrap'); | 
					
						
							| 
									
										
										
										
											2014-02-05 05:18:54 +08:00
										 |  |  |   var BsLessdocParser = require('./grunt/bs-lessdoc-parser.js'); | 
					
						
							| 
									
										
										
										
											2014-08-14 08:36:07 +08:00
										 |  |  |   var getLessVarsData = function () { | 
					
						
							|  |  |  |     var filePath = path.join(__dirname, 'less/variables.less'); | 
					
						
							|  |  |  |     var fileContent = fs.readFileSync(filePath, { encoding: 'utf8' }); | 
					
						
							|  |  |  |     var parser = new BsLessdocParser(fileContent); | 
					
						
							|  |  |  |     return { sections: parser.parseFile() }; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2014-03-08 17:54:41 +08:00
										 |  |  |   var generateRawFiles = require('./grunt/bs-raw-files-generator.js'); | 
					
						
							| 
									
										
										
										
											2013-12-29 06:33:32 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |   // Project configuration.
 | 
					
						
							|  |  |  |   grunt.initConfig({ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Metadata.
 | 
					
						
							|  |  |  |     pkg: grunt.file.readJSON('package.json'), | 
					
						
							| 
									
										
										
										
											2013-09-11 10:21:44 +08:00
										 |  |  |     banner: '/*!\n' + | 
					
						
							| 
									
										
										
										
											2014-01-28 19:16:13 +08:00
										 |  |  |             ' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' + | 
					
						
							|  |  |  |             ' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + | 
					
						
							| 
									
										
										
										
											2014-02-06 18:37:39 +08:00
										 |  |  |             ' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n' + | 
					
						
							| 
									
										
										
										
											2014-01-28 19:16:13 +08:00
										 |  |  |             ' */\n', | 
					
						
							| 
									
										
										
										
											2014-06-18 09:48:15 +08:00
										 |  |  |     // NOTE: This jqueryCheck code is duplicated in customizer.js; if making changes here, be sure to update the other copy too.
 | 
					
						
							| 
									
										
										
										
											2014-06-24 02:07:18 +08:00
										 |  |  |     jqueryCheck: 'if (typeof jQuery === \'undefined\') { throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery\') }\n\n', | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // Task configuration.
 | 
					
						
							|  |  |  |     clean: { | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |       dist: 'dist', | 
					
						
							|  |  |  |       docs: 'docs/dist' | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     jshint: { | 
					
						
							|  |  |  |       options: { | 
					
						
							|  |  |  |         jshintrc: 'js/.jshintrc' | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-01-21 05:06:13 +08:00
										 |  |  |       grunt: { | 
					
						
							| 
									
										
										
										
											2014-02-07 20:34:17 +08:00
										 |  |  |         options: { | 
					
						
							| 
									
										
										
										
											2014-02-09 04:59:17 +08:00
										 |  |  |           jshintrc: 'grunt/.jshintrc' | 
					
						
							| 
									
										
										
										
											2014-02-07 20:34:17 +08:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-02-07 02:39:45 +08:00
										 |  |  |         src: ['Gruntfile.js', 'grunt/*.js'] | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |       core: { | 
					
						
							| 
									
										
										
										
											2014-01-19 22:04:29 +08:00
										 |  |  |         src: 'js/*.js' | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       test: { | 
					
						
							| 
									
										
										
										
											2014-03-17 15:07:21 +08:00
										 |  |  |         options: { | 
					
						
							|  |  |  |           jshintrc: 'js/tests/unit/.jshintrc' | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-01-19 22:04:29 +08:00
										 |  |  |         src: 'js/tests/unit/*.js' | 
					
						
							| 
									
										
										
										
											2013-09-19 02:37:55 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       assets: { | 
					
						
							| 
									
										
										
										
											2014-07-04 04:18:44 +08:00
										 |  |  |         src: ['docs/assets/js/src/*.js', 'docs/assets/js/*.js', '!docs/assets/js/*.min.js'] | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2013-08-08 14:06:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 08:51:38 +08:00
										 |  |  |     jscs: { | 
					
						
							|  |  |  |       options: { | 
					
						
							| 
									
										
										
										
											2014-02-28 23:29:36 +08:00
										 |  |  |         config: 'js/.jscsrc' | 
					
						
							| 
									
										
										
										
											2013-12-07 08:51:38 +08:00
										 |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-01-21 05:06:13 +08:00
										 |  |  |       grunt: { | 
					
						
							| 
									
										
										
										
											2014-02-28 20:24:35 +08:00
										 |  |  |         src: '<%= jshint.grunt.src %>' | 
					
						
							| 
									
										
										
										
											2013-12-07 08:51:38 +08:00
										 |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |       core: { | 
					
						
							|  |  |  |         src: '<%= jshint.core.src %>' | 
					
						
							| 
									
										
										
										
											2013-12-07 08:51:38 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       test: { | 
					
						
							| 
									
										
										
										
											2014-02-28 20:24:35 +08:00
										 |  |  |         src: '<%= jshint.test.src %>' | 
					
						
							| 
									
										
										
										
											2014-01-06 12:52:37 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       assets: { | 
					
						
							| 
									
										
										
										
											2014-03-28 13:07:20 +08:00
										 |  |  |         options: { | 
					
						
							|  |  |  |           requireCamelCaseOrUpperCaseIdentifiers: null | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-02-28 20:24:35 +08:00
										 |  |  |         src: '<%= jshint.assets.src %>' | 
					
						
							| 
									
										
										
										
											2013-12-07 08:51:38 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |     concat: { | 
					
						
							|  |  |  |       options: { | 
					
						
							| 
									
										
										
										
											2013-12-24 01:02:42 +08:00
										 |  |  |         banner: '<%= banner %>\n<%= jqueryCheck %>', | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |         stripBanners: false | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       bootstrap: { | 
					
						
							|  |  |  |         src: [ | 
					
						
							|  |  |  |           'js/transition.js', | 
					
						
							|  |  |  |           'js/alert.js', | 
					
						
							|  |  |  |           'js/button.js', | 
					
						
							|  |  |  |           'js/carousel.js', | 
					
						
							|  |  |  |           'js/collapse.js', | 
					
						
							|  |  |  |           'js/dropdown.js', | 
					
						
							|  |  |  |           'js/modal.js', | 
					
						
							|  |  |  |           'js/tooltip.js', | 
					
						
							|  |  |  |           'js/popover.js', | 
					
						
							|  |  |  |           'js/scrollspy.js', | 
					
						
							|  |  |  |           'js/tab.js', | 
					
						
							|  |  |  |           'js/affix.js' | 
					
						
							|  |  |  |         ], | 
					
						
							|  |  |  |         dest: 'dist/js/<%= pkg.name %>.js' | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2013-08-08 14:06:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |     uglify: { | 
					
						
							| 
									
										
										
										
											2014-06-15 22:41:24 +08:00
										 |  |  |       options: { | 
					
						
							|  |  |  |         preserveComments: 'some' | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |       core: { | 
					
						
							| 
									
										
										
										
											2014-01-19 22:04:29 +08:00
										 |  |  |         src: '<%= concat.bootstrap.dest %>', | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |         dest: 'dist/js/<%= pkg.name %>.min.js' | 
					
						
							| 
									
										
										
										
											2013-09-19 22:41:14 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       customize: { | 
					
						
							|  |  |  |         src: [ | 
					
						
							| 
									
										
										
										
											2014-07-04 04:28:30 +08:00
										 |  |  |           'docs/assets/js/vendor/less.min.js', | 
					
						
							|  |  |  |           'docs/assets/js/vendor/jszip.min.js', | 
					
						
							|  |  |  |           'docs/assets/js/vendor/uglify.min.js', | 
					
						
							|  |  |  |           'docs/assets/js/vendor/blob.js', | 
					
						
							|  |  |  |           'docs/assets/js/vendor/filesaver.js', | 
					
						
							| 
									
										
										
										
											2014-01-20 14:28:25 +08:00
										 |  |  |           'docs/assets/js/raw-files.min.js', | 
					
						
							| 
									
										
										
										
											2014-07-04 04:18:44 +08:00
										 |  |  |           'docs/assets/js/src/customizer.js' | 
					
						
							| 
									
										
										
										
											2013-09-19 22:41:14 +08:00
										 |  |  |         ], | 
					
						
							| 
									
										
										
										
											2014-01-08 11:10:31 +08:00
										 |  |  |         dest: 'docs/assets/js/customize.min.js' | 
					
						
							| 
									
										
										
										
											2013-12-11 06:29:42 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       docsJs: { | 
					
						
							| 
									
										
										
										
											2014-07-04 04:28:30 +08:00
										 |  |  |         // NOTE: This src list is duplicated in footer.html; if making changes here, be sure to update the other copy too.
 | 
					
						
							| 
									
										
										
										
											2013-12-11 06:29:42 +08:00
										 |  |  |         src: [ | 
					
						
							| 
									
										
										
										
											2014-07-04 04:28:30 +08:00
										 |  |  |           'docs/assets/js/vendor/holder.js', | 
					
						
							|  |  |  |           'docs/assets/js/vendor/ZeroClipboard.min.js', | 
					
						
							| 
									
										
										
										
											2014-07-04 04:18:44 +08:00
										 |  |  |           'docs/assets/js/src/application.js' | 
					
						
							| 
									
										
										
										
											2013-12-11 06:29:42 +08:00
										 |  |  |         ], | 
					
						
							|  |  |  |         dest: 'docs/assets/js/docs.min.js' | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-10 07:09:36 +08:00
										 |  |  |     qunit: { | 
					
						
							|  |  |  |       options: { | 
					
						
							|  |  |  |         inject: 'js/tests/unit/phantom.js' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       files: 'js/tests/index.html' | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-09 11:09:27 +08:00
										 |  |  |     less: { | 
					
						
							| 
									
										
										
										
											2013-12-10 06:29:19 +08:00
										 |  |  |       compileCore: { | 
					
						
							|  |  |  |         options: { | 
					
						
							| 
									
										
										
										
											2013-12-19 02:22:18 +08:00
										 |  |  |           strictMath: true, | 
					
						
							| 
									
										
										
										
											2013-12-10 06:29:19 +08:00
										 |  |  |           sourceMap: true, | 
					
						
							|  |  |  |           outputSourceFiles: true, | 
					
						
							|  |  |  |           sourceMapURL: '<%= pkg.name %>.css.map', | 
					
						
							|  |  |  |           sourceMapFilename: 'dist/css/<%= pkg.name %>.css.map' | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-08-14 03:12:09 +08:00
										 |  |  |         src: 'less/bootstrap.less', | 
					
						
							|  |  |  |         dest: 'dist/css/<%= pkg.name %>.css' | 
					
						
							| 
									
										
										
										
											2013-12-10 06:29:19 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       compileTheme: { | 
					
						
							|  |  |  |         options: { | 
					
						
							| 
									
										
										
										
											2013-12-19 02:22:18 +08:00
										 |  |  |           strictMath: true, | 
					
						
							| 
									
										
										
										
											2013-12-10 06:29:19 +08:00
										 |  |  |           sourceMap: true, | 
					
						
							|  |  |  |           outputSourceFiles: true, | 
					
						
							|  |  |  |           sourceMapURL: '<%= pkg.name %>-theme.css.map', | 
					
						
							|  |  |  |           sourceMapFilename: 'dist/css/<%= pkg.name %>-theme.css.map' | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-08-14 03:12:09 +08:00
										 |  |  |         src: 'less/theme.less', | 
					
						
							|  |  |  |         dest: 'dist/css/<%= pkg.name %>-theme.css' | 
					
						
							| 
									
										
										
										
											2014-02-25 12:46:45 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-22 18:17:58 +08:00
										 |  |  |     autoprefixer: { | 
					
						
							|  |  |  |       options: { | 
					
						
							| 
									
										
										
										
											2014-06-12 01:09:35 +08:00
										 |  |  |         browsers: [ | 
					
						
							|  |  |  |           'Android 2.3', | 
					
						
							|  |  |  |           'Android >= 4', | 
					
						
							|  |  |  |           'Chrome >= 20', | 
					
						
							|  |  |  |           'Firefox >= 24', // Firefox 24 is the latest ESR
 | 
					
						
							|  |  |  |           'Explorer >= 8', | 
					
						
							|  |  |  |           'iOS >= 6', | 
					
						
							|  |  |  |           'Opera >= 12', | 
					
						
							|  |  |  |           'Safari >= 6' | 
					
						
							|  |  |  |         ] | 
					
						
							| 
									
										
										
										
											2014-02-22 18:17:58 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       core: { | 
					
						
							|  |  |  |         options: { | 
					
						
							|  |  |  |           map: true | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         src: 'dist/css/<%= pkg.name %>.css' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       theme: { | 
					
						
							|  |  |  |         options: { | 
					
						
							|  |  |  |           map: true | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         src: 'dist/css/<%= pkg.name %>-theme.css' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       docs: { | 
					
						
							| 
									
										
										
										
											2014-07-04 04:12:58 +08:00
										 |  |  |         src: 'docs/assets/css/src/docs.css' | 
					
						
							| 
									
										
										
										
											2014-02-22 18:17:58 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       examples: { | 
					
						
							|  |  |  |         expand: true, | 
					
						
							|  |  |  |         cwd: 'docs/examples/', | 
					
						
							|  |  |  |         src: ['**/*.css'], | 
					
						
							|  |  |  |         dest: 'docs/examples/' | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-10 07:09:36 +08:00
										 |  |  |     csslint: { | 
					
						
							|  |  |  |       options: { | 
					
						
							|  |  |  |         csslintrc: 'less/.csslintrc' | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |       dist: [ | 
					
						
							| 
									
										
										
										
											2014-03-10 07:09:36 +08:00
										 |  |  |         'dist/css/bootstrap.css', | 
					
						
							|  |  |  |         'dist/css/bootstrap-theme.css' | 
					
						
							|  |  |  |       ], | 
					
						
							|  |  |  |       examples: [ | 
					
						
							|  |  |  |         'docs/examples/**/*.css' | 
					
						
							|  |  |  |       ], | 
					
						
							|  |  |  |       docs: { | 
					
						
							|  |  |  |         options: { | 
					
						
							| 
									
										
										
										
											2014-03-10 07:15:53 +08:00
										 |  |  |           ids: false, | 
					
						
							| 
									
										
										
										
											2014-03-10 07:09:36 +08:00
										 |  |  |           'overqualified-elements': false | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2014-07-04 04:12:58 +08:00
										 |  |  |         src: 'docs/assets/css/src/docs.css' | 
					
						
							| 
									
										
										
										
											2014-03-10 07:09:36 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-22 15:25:18 +08:00
										 |  |  |     cssmin: { | 
					
						
							| 
									
										
										
										
											2014-03-12 01:48:14 +08:00
										 |  |  |       options: { | 
					
						
							| 
									
										
										
										
											2014-03-28 01:45:25 +08:00
										 |  |  |         compatibility: 'ie8', | 
					
						
							| 
									
										
										
										
											2014-06-25 06:53:10 +08:00
										 |  |  |         keepSpecialComments: '*', | 
					
						
							|  |  |  |         noAdvanced: true | 
					
						
							| 
									
										
										
										
											2014-03-12 01:48:14 +08:00
										 |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-08-14 08:36:07 +08:00
										 |  |  |       minifyCore: { | 
					
						
							|  |  |  |         src: 'dist/css/<%= pkg.name %>.css', | 
					
						
							|  |  |  |         dest: 'dist/css/<%= pkg.name %>.min.css' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       minifyTheme: { | 
					
						
							|  |  |  |         src: 'dist/css/<%= pkg.name %>-theme.css', | 
					
						
							|  |  |  |         dest: 'dist/css/<%= pkg.name %>-theme.min.css' | 
					
						
							| 
									
										
										
										
											2014-05-19 15:07:31 +08:00
										 |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-03-12 01:48:14 +08:00
										 |  |  |       docs: { | 
					
						
							| 
									
										
										
										
											2013-12-22 15:25:18 +08:00
										 |  |  |         src: [ | 
					
						
							| 
									
										
										
										
											2014-07-04 04:12:58 +08:00
										 |  |  |           'docs/assets/css/src/docs.css', | 
					
						
							|  |  |  |           'docs/assets/css/src/pygments-manni.css' | 
					
						
							| 
									
										
										
										
											2013-12-22 15:25:18 +08:00
										 |  |  |         ], | 
					
						
							| 
									
										
										
										
											2014-01-30 03:50:10 +08:00
										 |  |  |         dest: 'docs/assets/css/docs.min.css' | 
					
						
							| 
									
										
										
										
											2013-12-22 15:25:18 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-09 15:48:07 +08:00
										 |  |  |     usebanner: { | 
					
						
							| 
									
										
										
										
											2014-03-12 01:48:14 +08:00
										 |  |  |       options: { | 
					
						
							|  |  |  |         position: 'top', | 
					
						
							|  |  |  |         banner: '<%= banner %>' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       files: { | 
					
						
							|  |  |  |         src: 'dist/css/*.css' | 
					
						
							| 
									
										
										
										
											2013-12-09 11:09:27 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-09 15:48:07 +08:00
										 |  |  |     csscomb: { | 
					
						
							| 
									
										
										
										
											2014-01-31 20:20:33 +08:00
										 |  |  |       options: { | 
					
						
							|  |  |  |         config: 'less/.csscomb.json' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       dist: { | 
					
						
							| 
									
										
										
										
											2014-03-12 01:48:14 +08:00
										 |  |  |         expand: true, | 
					
						
							|  |  |  |         cwd: 'dist/css/', | 
					
						
							|  |  |  |         src: ['*.css', '!*.min.css'], | 
					
						
							|  |  |  |         dest: 'dist/css/' | 
					
						
							| 
									
										
										
										
											2014-01-31 20:20:33 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       examples: { | 
					
						
							| 
									
										
										
										
											2014-02-11 03:09:59 +08:00
										 |  |  |         expand: true, | 
					
						
							|  |  |  |         cwd: 'docs/examples/', | 
					
						
							| 
									
										
										
										
											2014-03-08 00:37:23 +08:00
										 |  |  |         src: '**/*.css', | 
					
						
							| 
									
										
										
										
											2014-02-11 03:09:59 +08:00
										 |  |  |         dest: 'docs/examples/' | 
					
						
							| 
									
										
										
										
											2014-02-27 16:12:52 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       docs: { | 
					
						
							| 
									
										
										
										
											2014-08-14 03:12:09 +08:00
										 |  |  |         src: 'docs/assets/css/src/docs.css', | 
					
						
							|  |  |  |         dest: 'docs/assets/css/src/docs.css' | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-18 15:36:51 +08:00
										 |  |  |     copy: { | 
					
						
							|  |  |  |       fonts: { | 
					
						
							| 
									
										
										
										
											2014-01-19 22:04:29 +08:00
										 |  |  |         src: 'fonts/*', | 
					
						
							| 
									
										
										
										
											2013-08-18 15:36:51 +08:00
										 |  |  |         dest: 'dist/' | 
					
						
							| 
									
										
										
										
											2013-12-29 14:47:03 +08:00
										 |  |  |       }, | 
					
						
							| 
									
										
										
										
											2014-01-01 03:38:32 +08:00
										 |  |  |       docs: { | 
					
						
							| 
									
										
										
										
											2014-08-30 05:20:48 +08:00
										 |  |  |         src: 'dist/*/*', | 
					
						
							|  |  |  |         dest: 'docs/' | 
					
						
							| 
									
										
										
										
											2013-08-18 15:36:51 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |     connect: { | 
					
						
							|  |  |  |       server: { | 
					
						
							|  |  |  |         options: { | 
					
						
							|  |  |  |           port: 3000, | 
					
						
							|  |  |  |           base: '.' | 
					
						
							| 
									
										
										
										
											2013-05-04 22:55:52 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-13 06:01:06 +08:00
										 |  |  |     jekyll: { | 
					
						
							|  |  |  |       docs: {} | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-18 10:52:16 +08:00
										 |  |  |     jade: { | 
					
						
							| 
									
										
										
										
											2014-08-14 08:36:07 +08:00
										 |  |  |       options: { | 
					
						
							|  |  |  |         pretty: true, | 
					
						
							|  |  |  |         data: getLessVarsData | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       customizerVars: { | 
					
						
							|  |  |  |         src: 'docs/_jade/customizer-variables.jade', | 
					
						
							|  |  |  |         dest: 'docs/_includes/customizer-variables.html' | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       customizerNav: { | 
					
						
							|  |  |  |         src: 'docs/_jade/customizer-nav.jade', | 
					
						
							|  |  |  |         dest: 'docs/_includes/nav/customize.html' | 
					
						
							| 
									
										
										
										
											2013-10-18 10:52:16 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-13 06:01:06 +08:00
										 |  |  |     validation: { | 
					
						
							|  |  |  |       options: { | 
					
						
							| 
									
										
										
										
											2013-12-16 11:42:47 +08:00
										 |  |  |         charset: 'utf-8', | 
					
						
							|  |  |  |         doctype: 'HTML5', | 
					
						
							| 
									
										
										
										
											2013-12-17 17:35:16 +08:00
										 |  |  |         failHard: true, | 
					
						
							| 
									
										
										
										
											2013-10-24 14:25:17 +08:00
										 |  |  |         reset: true, | 
					
						
							|  |  |  |         relaxerror: [ | 
					
						
							| 
									
										
										
										
											2013-09-19 00:50:02 +08:00
										 |  |  |           'Bad value X-UA-Compatible for attribute http-equiv on element meta.', | 
					
						
							| 
									
										
										
										
											2014-07-19 05:15:47 +08:00
										 |  |  |           'Element img is missing required attribute src.', | 
					
						
							| 
									
										
										
										
											2014-08-05 18:56:33 +08:00
										 |  |  |           'Attribute autocomplete not allowed on element input at this point.', | 
					
						
							|  |  |  |           'Attribute autocomplete not allowed on element button at this point.' | 
					
						
							| 
									
										
										
										
											2013-10-24 14:25:17 +08:00
										 |  |  |         ] | 
					
						
							| 
									
										
										
										
											2013-08-13 06:01:06 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       files: { | 
					
						
							| 
									
										
										
										
											2014-01-19 22:04:29 +08:00
										 |  |  |         src: '_gh_pages/**/*.html' | 
					
						
							| 
									
										
										
										
											2013-08-13 06:01:06 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |     watch: { | 
					
						
							|  |  |  |       src: { | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |         files: '<%= jshint.core.src %>', | 
					
						
							| 
									
										
										
										
											2014-08-06 10:22:16 +08:00
										 |  |  |         tasks: ['jshint:src', 'qunit', 'concat'] | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |       }, | 
					
						
							|  |  |  |       test: { | 
					
						
							|  |  |  |         files: '<%= jshint.test.src %>', | 
					
						
							|  |  |  |         tasks: ['jshint:test', 'qunit'] | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2013-12-09 11:09:27 +08:00
										 |  |  |       less: { | 
					
						
							| 
									
										
										
										
											2014-07-31 10:21:56 +08:00
										 |  |  |         files: 'less/**/*.less', | 
					
						
							| 
									
										
										
										
											2014-01-19 22:04:29 +08:00
										 |  |  |         tasks: 'less' | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-11-02 09:15:25 +08:00
										 |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sed: { | 
					
						
							|  |  |  |       versionNumber: { | 
					
						
							|  |  |  |         pattern: (function () { | 
					
						
							| 
									
										
										
										
											2014-01-18 03:51:53 +08:00
										 |  |  |           var old = grunt.option('oldver'); | 
					
						
							|  |  |  |           return old ? RegExp.quote(old) : old; | 
					
						
							| 
									
										
										
										
											2013-11-02 09:15:25 +08:00
										 |  |  |         })(), | 
					
						
							|  |  |  |         replacement: grunt.option('newver'), | 
					
						
							|  |  |  |         recursive: true | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-12-04 10:42:31 +08:00
										 |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     'saucelabs-qunit': { | 
					
						
							|  |  |  |       all: { | 
					
						
							|  |  |  |         options: { | 
					
						
							|  |  |  |           build: process.env.TRAVIS_JOB_ID, | 
					
						
							| 
									
										
										
										
											2014-01-16 07:55:47 +08:00
										 |  |  |           concurrency: 10, | 
					
						
							| 
									
										
										
										
											2014-06-25 03:12:21 +08:00
										 |  |  |           maxRetries: 3, | 
					
						
							| 
									
										
										
										
											2013-12-04 10:42:31 +08:00
										 |  |  |           urls: ['http://127.0.0.1:3000/js/tests/index.html'], | 
					
						
							| 
									
										
										
										
											2014-03-17 11:30:04 +08:00
										 |  |  |           browsers: grunt.file.readYAML('grunt/sauce_browsers.yml') | 
					
						
							| 
									
										
										
										
											2013-12-04 10:42:31 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2014-01-21 05:06:13 +08:00
										 |  |  |     }, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     exec: { | 
					
						
							|  |  |  |       npmUpdate: { | 
					
						
							|  |  |  |         command: 'npm update' | 
					
						
							| 
									
										
										
										
											2014-05-13 13:01:29 +08:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2013-05-04 22:55:52 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |   // These plugins provide necessary tasks.
 | 
					
						
							| 
									
										
										
										
											2014-03-17 15:12:55 +08:00
										 |  |  |   require('load-grunt-tasks')(grunt, { scope: 'devDependencies' }); | 
					
						
							| 
									
										
										
										
											2014-03-07 14:46:15 +08:00
										 |  |  |   require('time-grunt')(grunt); | 
					
						
							| 
									
										
										
										
											2013-05-04 22:55:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-13 06:01:06 +08:00
										 |  |  |   // Docs HTML validation task
 | 
					
						
							| 
									
										
										
										
											2013-08-19 04:43:53 +08:00
										 |  |  |   grunt.registerTask('validate-html', ['jekyll', 'validation']); | 
					
						
							| 
									
										
										
										
											2013-08-13 06:01:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-05-19 06:52:42 +08:00
										 |  |  |   var runSubset = function (subset) { | 
					
						
							|  |  |  |     return !process.env.TWBS_TEST || process.env.TWBS_TEST === subset; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2014-05-19 06:53:40 +08:00
										 |  |  |   var isUndefOrNonZero = function (val) { | 
					
						
							|  |  |  |     return val === undefined || val !== '0'; | 
					
						
							|  |  |  |   }; | 
					
						
							| 
									
										
										
										
											2014-05-19 06:52:42 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |   // Test task.
 | 
					
						
							| 
									
										
										
										
											2013-12-15 11:09:44 +08:00
										 |  |  |   var testSubtasks = []; | 
					
						
							|  |  |  |   // Skip core tests if running a different subset of the test suite
 | 
					
						
							| 
									
										
										
										
											2014-05-19 06:52:42 +08:00
										 |  |  |   if (runSubset('core')) { | 
					
						
							| 
									
										
										
										
											2014-09-18 08:34:57 +08:00
										 |  |  |     testSubtasks = testSubtasks.concat(['dist-css', 'dist-js', 'csslint:dist', 'test-js', 'docs']); | 
					
						
							| 
									
										
										
										
											2013-12-15 11:09:44 +08:00
										 |  |  |   } | 
					
						
							|  |  |  |   // Skip HTML validation if running a different subset of the test suite
 | 
					
						
							| 
									
										
										
										
											2014-05-19 06:53:40 +08:00
										 |  |  |   if (runSubset('validate-html') && | 
					
						
							|  |  |  |       // Skip HTML5 validator on Travis when [skip validator] is in the commit message
 | 
					
						
							|  |  |  |       isUndefOrNonZero(process.env.TWBS_DO_VALIDATOR)) { | 
					
						
							| 
									
										
										
										
											2013-12-15 11:09:44 +08:00
										 |  |  |     testSubtasks.push('validate-html'); | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2013-12-04 10:42:31 +08:00
										 |  |  |   // Only run Sauce Labs tests if there's a Sauce access key
 | 
					
						
							| 
									
										
										
										
											2014-01-18 03:51:53 +08:00
										 |  |  |   if (typeof process.env.SAUCE_ACCESS_KEY !== 'undefined' && | 
					
						
							| 
									
										
										
										
											2013-12-15 11:09:44 +08:00
										 |  |  |       // Skip Sauce if running a different subset of the test suite
 | 
					
						
							| 
									
										
										
										
											2014-05-19 06:53:40 +08:00
										 |  |  |       runSubset('sauce-js-unit') && | 
					
						
							|  |  |  |       // Skip Sauce on Travis when [skip sauce] is in the commit message
 | 
					
						
							|  |  |  |       isUndefOrNonZero(process.env.TWBS_DO_SAUCE)) { | 
					
						
							| 
									
										
										
										
											2013-12-04 10:42:31 +08:00
										 |  |  |     testSubtasks.push('connect'); | 
					
						
							|  |  |  |     testSubtasks.push('saucelabs-qunit'); | 
					
						
							| 
									
										
										
										
											2013-08-06 15:39:35 +08:00
										 |  |  |   } | 
					
						
							|  |  |  |   grunt.registerTask('test', testSubtasks); | 
					
						
							| 
									
										
										
										
											2014-09-18 08:34:57 +08:00
										 |  |  |   grunt.registerTask('test-js', ['jshint:core', 'jshint:test', 'jshint:grunt', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']); | 
					
						
							| 
									
										
										
										
											2013-05-04 22:55:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |   // JS distribution task.
 | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |   grunt.registerTask('dist-js', ['concat', 'uglify:core']); | 
					
						
							| 
									
										
										
										
											2013-05-04 22:55:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |   // CSS distribution task.
 | 
					
						
							| 
									
										
										
										
											2014-02-25 12:46:45 +08:00
										 |  |  |   grunt.registerTask('less-compile', ['less:compileCore', 'less:compileTheme']); | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |   grunt.registerTask('dist-css', ['less-compile', 'autoprefixer:core', 'autoprefixer:theme', 'usebanner', 'csscomb:dist', 'cssmin:minifyCore', 'cssmin:minifyTheme']); | 
					
						
							| 
									
										
										
										
											2013-08-18 15:36:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |   // Full distribution task.
 | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |   grunt.registerTask('dist', ['clean:dist', 'dist-css', 'copy:fonts', 'dist-js']); | 
					
						
							| 
									
										
										
										
											2013-05-04 22:55:52 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-04 07:03:38 +08:00
										 |  |  |   // Default task.
 | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |   grunt.registerTask('default', ['clean:dist', 'copy:fonts', 'test']); | 
					
						
							| 
									
										
										
										
											2013-08-08 14:06:29 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-02 09:15:25 +08:00
										 |  |  |   // Version numbering task.
 | 
					
						
							|  |  |  |   // grunt change-version-number --oldver=A.B.C --newver=X.Y.Z
 | 
					
						
							|  |  |  |   // This can be overzealous, so its changes should always be manually reviewed!
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:04:29 +08:00
										 |  |  |   grunt.registerTask('change-version-number', 'sed'); | 
					
						
							| 
									
										
										
										
											2013-11-02 09:15:25 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-08 14:06:29 +08:00
										 |  |  |   // task for building customizer
 | 
					
						
							| 
									
										
										
										
											2014-01-21 10:02:15 +08:00
										 |  |  |   grunt.registerTask('build-customizer', ['build-customizer-html', 'build-raw-files']); | 
					
						
							|  |  |  |   grunt.registerTask('build-customizer-html', 'jade'); | 
					
						
							| 
									
										
										
										
											2014-01-15 05:25:27 +08:00
										 |  |  |   grunt.registerTask('build-raw-files', 'Add scripts/less files to customizer.', function () { | 
					
						
							|  |  |  |     var banner = grunt.template.process('<%= banner %>'); | 
					
						
							| 
									
										
										
										
											2014-03-17 18:33:42 +08:00
										 |  |  |     generateRawFiles(grunt, banner); | 
					
						
							| 
									
										
										
										
											2014-01-15 05:25:27 +08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2014-01-21 05:06:13 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-14 08:47:16 +08:00
										 |  |  |   // Docs task.
 | 
					
						
							|  |  |  |   grunt.registerTask('docs-css', ['autoprefixer:docs', 'autoprefixer:examples', 'csscomb:docs', 'csscomb:examples', 'cssmin:docs']); | 
					
						
							|  |  |  |   grunt.registerTask('lint-docs-css', ['csslint:docs', 'csslint:examples']); | 
					
						
							|  |  |  |   grunt.registerTask('docs-js', ['uglify:docsJs', 'uglify:customize']); | 
					
						
							|  |  |  |   grunt.registerTask('lint-docs-js', ['jshint:assets', 'jscs:assets']); | 
					
						
							|  |  |  |   grunt.registerTask('docs', ['docs-css', 'lint-docs-css', 'docs-js', 'lint-docs-js', 'clean:docs', 'copy:docs', 'build-customizer']); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-06-20 01:47:55 +08:00
										 |  |  |   // Task for updating the cached npm packages used by the Travis build (which are controlled by test-infra/npm-shrinkwrap.json).
 | 
					
						
							|  |  |  |   // This task should be run and the updated file should be committed whenever Bootstrap's dependencies change.
 | 
					
						
							|  |  |  |   grunt.registerTask('update-shrinkwrap', ['exec:npmUpdate', '_update-shrinkwrap']); | 
					
						
							|  |  |  |   grunt.registerTask('_update-shrinkwrap', function () { | 
					
						
							|  |  |  |     var done = this.async(); | 
					
						
							|  |  |  |     npmShrinkwrap({ dev: true, dirname: __dirname }, function (err) { | 
					
						
							|  |  |  |       if (err) { | 
					
						
							| 
									
										
										
										
											2014-07-11 07:42:09 +08:00
										 |  |  |         grunt.fail.warn(err); | 
					
						
							| 
									
										
										
										
											2014-06-20 01:47:55 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |       var dest = 'test-infra/npm-shrinkwrap.json'; | 
					
						
							|  |  |  |       fs.renameSync('npm-shrinkwrap.json', dest); | 
					
						
							|  |  |  |       grunt.log.writeln('File ' + dest.cyan + ' updated.'); | 
					
						
							|  |  |  |       done(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2013-09-18 14:04:09 +08:00
										 |  |  | }; |