1 /* jshint node: true */
3 module.exports = function(grunt) {
6 // Force use of Unix newlines
7 grunt.util.linefeed = '\n';
9 RegExp.quote = require('regexp-quote')
10 var btoa = require('btoa')
11 // Project configuration.
15 pkg: grunt.file.readJSON('package.json'),
17 ' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
18 ' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
19 ' * Licensed under <%= _.pluck(pkg.licenses, "url").join(", ") %>\n' +
21 jqueryCheck: 'if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }\n\n',
23 // Task configuration.
30 jshintrc: 'js/.jshintrc'
39 src: ['js/tests/unit/*.js']
45 banner: '<%= banner %><%= jqueryCheck %>',
63 dest: 'dist/js/<%= pkg.name %>.js'
69 banner: '<%= banner %>',
73 src: ['<%= concat.bootstrap.dest %>'],
74 dest: 'dist/js/<%= pkg.name %>.min.js'
81 banner: '<%= banner %>'
84 src: ['less/bootstrap.less'],
85 dest: 'dist/css/<%= pkg.name %>.css'
91 src: ['less/bootstrap.less'],
92 dest: 'dist/css/<%= pkg.name %>.min.css'
95 src: ['less/theme.less'],
96 dest: 'dist/css/<%= pkg.name %>-theme.css'
102 src: ['less/theme.less'],
103 dest: 'dist/css/<%= pkg.name %>-theme.min.css'
117 inject: 'js/tests/unit/phantom.js'
119 files: ['js/tests/*.html']
139 "Bad value X-UA-Compatible for attribute http-equiv on element meta.",
140 "Element img is missing required attribute src."
144 src: ["_gh_pages/**/*.html"]
150 files: '<%= jshint.src.src %>',
151 tasks: ['jshint:src', 'qunit']
154 files: '<%= jshint.test.src %>',
155 tasks: ['jshint:test', 'qunit']
158 files: 'less/*.less',
165 pattern: (function () {
166 var old = grunt.option('oldver')
167 return old ? RegExp.quote(old) : old
169 replacement: grunt.option('newver'),
177 build: process.env.TRAVIS_JOB_ID,
179 urls: ['http://127.0.0.1:3000/js/tests/index.html'],
181 // See https://saucelabs.com/docs/platforms/webdriver
183 browserName: 'safari',
185 platform: 'OS X 10.8'
188 browserName: 'chrome',
190 platform: 'OS X 10.6'
192 /* FIXME: currently fails 1 tooltip test
194 browserName: 'firefox',
196 platform: 'OS X 10.6'
198 // Mac Opera not currently supported by Sauce Labs
199 /* FIXME: currently fails 1 tooltip test
201 browserName: 'internet explorer',
203 platform: 'Windows 8.1'
207 browserName: 'internet explorer',
209 platform: 'Windows 8'
212 browserName: 'internet explorer',
214 platform: 'Windows 7'
217 browserName: 'internet explorer',
219 platform: 'Windows 7'
222 browserName: 'internet explorer',
224 platform: 'Windows XP'
228 browserName: 'chrome',
230 platform: 'Windows 8.1'
233 browserName: 'firefox',
235 platform: 'Windows 8.1'
237 // Win Opera 15+ not currently supported by Sauce Labs
239 browserName: 'iphone',
241 platform: 'OS X 10.8'
243 // iOS Chrome not currently supported by Sauce Labs
244 // Linux (unofficial)
246 browserName: 'chrome',
251 browserName: 'firefox',
255 // Android Chrome not currently supported by Sauce Labs
256 /* Android Browser (super-unofficial)
258 browserName: 'android',
270 // These plugins provide necessary tasks.
271 grunt.loadNpmTasks('grunt-contrib-clean');
272 grunt.loadNpmTasks('grunt-contrib-concat');
273 grunt.loadNpmTasks('grunt-contrib-connect');
274 grunt.loadNpmTasks('grunt-contrib-copy');
275 grunt.loadNpmTasks('grunt-contrib-jshint');
276 grunt.loadNpmTasks('grunt-contrib-qunit');
277 grunt.loadNpmTasks('grunt-contrib-uglify');
278 grunt.loadNpmTasks('grunt-contrib-watch');
279 grunt.loadNpmTasks('grunt-html-validation');
280 grunt.loadNpmTasks('grunt-jekyll');
281 grunt.loadNpmTasks('grunt-recess');
282 grunt.loadNpmTasks('grunt-saucelabs');
283 grunt.loadNpmTasks('grunt-sed');
285 // Docs HTML validation task
286 grunt.registerTask('validate-html', ['jekyll', 'validation']);
289 var testSubtasks = ['dist-css', 'jshint', 'qunit', 'validate-html'];
290 // Only run Sauce Labs tests if there's a Sauce access key
291 if (typeof process.env.SAUCE_ACCESS_KEY !== 'undefined') {
292 testSubtasks.push('connect');
293 testSubtasks.push('saucelabs-qunit');
295 grunt.registerTask('test', testSubtasks);
297 // JS distribution task.
298 grunt.registerTask('dist-js', ['concat', 'uglify']);
300 // CSS distribution task.
301 grunt.registerTask('dist-css', ['recess']);
303 // Fonts distribution task.
304 grunt.registerTask('dist-fonts', ['copy']);
306 // Full distribution task.
307 grunt.registerTask('dist', ['clean', 'dist-css', 'dist-fonts', 'dist-js']);
310 grunt.registerTask('default', ['test', 'dist', 'build-customizer']);
312 // Version numbering task.
313 // grunt change-version-number --oldver=A.B.C --newver=X.Y.Z
314 // This can be overzealous, so its changes should always be manually reviewed!
315 grunt.registerTask('change-version-number', ['sed']);
317 // task for building customizer
318 grunt.registerTask('build-customizer', 'Add scripts/less files to customizer.', function () {
319 var fs = require('fs')
321 function getFiles(type) {
324 .filter(function (path) {
325 return type == 'fonts' ? true : new RegExp('\\.' + type + '$').test(path)
327 .forEach(function (path) {
328 var fullPath = type + '/' + path
329 return files[path] = (type == 'fonts' ? btoa(fs.readFileSync(fullPath)) : fs.readFileSync(fullPath, 'utf8'))
331 return 'var __' + type + ' = ' + JSON.stringify(files) + '\n'
334 var files = getFiles('js') + getFiles('less') + getFiles('fonts')
335 fs.writeFileSync('docs-assets/js/raw-files.js', files)