twbs--bootstrap/Gruntfile.js

454 lines
13 KiB
JavaScript
Raw Normal View History

2014-01-21 00:00:52 +00:00
/*!
* Bootstrap's Gruntfile
* http://getbootstrap.com
* Copyright 2013-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
2013-12-07 00:51:59 +00:00
module.exports = function (grunt) {
2013-09-18 16:50:02 +00:00
'use strict';
// Force use of Unix newlines
grunt.util.linefeed = '\n';
2013-12-08 10:24:47 +00:00
RegExp.quote = function (string) {
2014-01-17 19:51:53 +00:00
return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&');
};
2014-01-17 19:51:53 +00:00
var fs = require('fs');
2014-01-19 14:04:29 +00:00
var path = require('path');
var glob = require('glob');
var npmShrinkwrap = require('npm-shrinkwrap');
2015-01-01 09:41:56 +00:00
var mq4HoverShim = require('mq4-hover-hover-shim');
2014-12-10 21:51:43 +00:00
var generateCommonJSModule = require('./grunt/bs-commonjs-generator.js');
var configBridge = grunt.file.readJSON('./grunt/configBridge.json', { encoding: 'utf8' });
Object.keys(configBridge.paths).forEach(function (key) {
configBridge.paths[key].forEach(function (val, i, arr) {
arr[i] = path.join('./docs/assets', val);
});
});
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: grunt.file.readJSON('package.json'),
banner: '/*!\n' +
2014-01-28 11:16:13 +00:00
' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * Licensed under <%= pkg.license.type %> (<%= pkg.license.url %>)\n' +
2014-01-28 11:16:13 +00:00
' */\n',
jqueryCheck: 'if (typeof jQuery === \'undefined\') {\n' +
' throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery\')\n' +
'}\n',
jqueryVersionCheck: '+function ($) {\n' +
' var version = $.fn.jquery.split(\' \')[0].split(\'.\')\n' +
' if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {\n' +
' throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery version 1.9.1 or higher\')\n' +
' }\n' +
'}(jQuery);\n\n',
// Task configuration.
clean: {
dist: 'dist',
docs: 'docs/dist'
},
jshint: {
options: {
jshintrc: 'js/.jshintrc'
},
2014-01-20 21:06:13 +00:00
grunt: {
options: {
jshintrc: 'grunt/.jshintrc'
},
2014-02-06 18:39:45 +00:00
src: ['Gruntfile.js', 'grunt/*.js']
},
core: {
2014-01-19 14:04:29 +00:00
src: 'js/*.js'
},
test: {
options: {
jshintrc: 'js/tests/unit/.jshintrc'
},
2014-01-19 14:04:29 +00:00
src: 'js/tests/unit/*.js'
},
assets: {
src: ['docs/assets/js/src/*.js', 'docs/assets/js/*.js', '!docs/assets/js/*.min.js']
}
},
2013-08-08 06:06:29 +00:00
2013-12-07 00:51:38 +00:00
jscs: {
options: {
2014-02-28 15:29:36 +00:00
config: 'js/.jscsrc'
2013-12-07 00:51:38 +00:00
},
2014-01-20 21:06:13 +00:00
grunt: {
src: '<%= jshint.grunt.src %>'
2013-12-07 00:51:38 +00:00
},
core: {
src: '<%= jshint.core.src %>'
2013-12-07 00:51:38 +00:00
},
test: {
src: '<%= jshint.test.src %>'
},
assets: {
options: {
requireCamelCaseOrUpperCaseIdentifiers: null
},
src: '<%= jshint.assets.src %>'
2013-12-07 00:51:38 +00:00
}
},
concat: {
options: {
banner: '<%= banner %>\n<%= jqueryCheck %>\n<%= jqueryVersionCheck %>',
stripBanners: false
},
bootstrap: {
src: [
2015-01-01 09:41:56 +00:00
'js/hover.js',
mq4HoverShim.featureDetector.umdGlobal,
'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 06:06:29 +00:00
uglify: {
2014-06-15 14:41:24 +00:00
options: {
preserveComments: 'some'
},
core: {
2014-01-19 14:04:29 +00:00
src: '<%= concat.bootstrap.dest %>',
dest: 'dist/js/<%= pkg.name %>.min.js'
2013-09-19 14:41:14 +00:00
},
docsJs: {
src: configBridge.paths.docsJs,
dest: 'docs/assets/js/docs.min.js'
}
},
2014-03-09 23:09:36 +00:00
qunit: {
options: {
inject: 'js/tests/unit/phantom.js'
},
files: 'js/tests/index.html'
},
2014-12-09 03:02:25 +00:00
scsslint: {
scss: ['scss/*.scss', '!scss/_normalize.scss'],
options: {
config: 'scss/.scss-lint.yml',
reporterOutput: 'scss-lint-report.xml'
}
},
2015-01-01 09:41:56 +00:00
postcss: {
options: {
map: true,
processors: [mq4HoverShim.postprocessorFor({hoverSelectorPrefix: '.bs-true-hover '})]
},
core: {
src: 'dist/css/<%= pkg.name %>.css'
}
},
2014-02-22 10:17:58 +00:00
autoprefixer: {
options: {
browsers: [
'Android 2.3',
'Android >= 4',
2014-12-16 02:07:09 +00:00
'Chrome >= 35',
'Firefox >= 31',
'Explorer >= 9',
'iOS >= 7',
'Opera >= 12',
'Safari >= 7.1'
]
2014-02-22 10:17:58 +00:00
},
core: {
options: {
map: true
},
src: 'dist/css/<%= pkg.name %>.css'
},
docs: {
2014-12-01 04:29:47 +00:00
src: 'docs/assets/css/docs.min.css'
2014-02-22 10:17:58 +00:00
},
examples: {
expand: true,
cwd: 'docs/examples/',
src: ['**/*.css'],
dest: 'docs/examples/'
}
},
2013-12-22 07:25:18 +00:00
cssmin: {
2014-03-11 17:48:14 +00:00
options: {
keepSpecialComments: '*',
noAdvanced: true
2014-03-11 17:48:14 +00:00
},
2014-12-01 04:29:47 +00:00
core: {
files: {
'dist/css/<%= pkg.name %>.min.css': 'dist/css/<%= pkg.name %>.css'
}
},
2014-03-11 17:48:14 +00:00
docs: {
2014-12-01 04:29:47 +00:00
src: 'docs/assets/css/docs.min.css',
dest: 'docs/assets/css/docs.min.css'
2013-12-22 07:25:18 +00:00
}
},
usebanner: {
2014-03-11 17:48:14 +00:00
options: {
position: 'top',
banner: '<%= banner %>'
},
files: {
src: 'dist/css/*.css'
}
},
csscomb: {
2014-01-31 12:20:33 +00:00
options: {
2014-12-02 22:02:35 +00:00
config: 'scss/.csscomb.json'
2014-01-31 12:20:33 +00:00
},
dist: {
2014-03-11 17:48:14 +00:00
expand: true,
cwd: 'dist/css/',
src: ['*.css', '!*.min.css'],
dest: 'dist/css/'
2014-01-31 12:20:33 +00:00
},
examples: {
2014-02-10 19:09:59 +00:00
expand: true,
cwd: 'docs/examples/',
2014-03-07 16:37:23 +00:00
src: '**/*.css',
2014-02-10 19:09:59 +00:00
dest: 'docs/examples/'
2014-02-27 08:12:52 +00:00
},
docs: {
src: 'docs/assets/css/src/docs.css',
dest: 'docs/assets/css/src/docs.css'
}
},
2013-08-18 07:36:51 +00:00
copy: {
2013-12-31 19:38:32 +00:00
docs: {
2014-08-29 21:20:48 +00:00
src: 'dist/*/*',
dest: 'docs/'
2013-08-18 07:36:51 +00:00
}
},
connect: {
server: {
options: {
port: 3000,
base: '.'
}
}
},
jekyll: {
options: {
config: '_config.yml'
},
docs: {},
github: {
options: {
raw: 'github: true'
}
}
},
validation: {
options: {
charset: 'utf-8',
doctype: 'HTML5',
failHard: true,
reset: true,
relaxerror: [
'Element img is missing required attribute src.',
2014-08-05 10:56:33 +00:00
'Attribute autocomplete not allowed on element input at this point.',
2014-12-01 04:29:47 +00:00
'Attribute autocomplete not allowed on element button at this point.',
'Element div not allowed as child of element progress in this context.',
'Element thead not allowed as child of element table in this context.',
'Bad value tablist for attribute role on element nav.'
]
},
files: {
2014-01-19 14:04:29 +00:00
src: '_gh_pages/**/*.html'
}
},
watch: {
src: {
files: '<%= jshint.core.src %>',
tasks: ['jshint:src', 'qunit', 'concat']
},
test: {
files: '<%= jshint.test.src %>',
tasks: ['jshint:test', 'qunit']
},
sass: {
files: 'scss/**/*.scss',
tasks: 'sass-compile'
2014-12-01 04:29:47 +00:00
},
docs: {
files: 'docs/assets/scss/*.scss',
tasks: 'sass:docs'
}
},
sed: {
versionNumber: {
pattern: (function () {
2014-01-17 19:51:53 +00:00
var old = grunt.option('oldver');
return old ? RegExp.quote(old) : old;
})(),
replacement: grunt.option('newver'),
recursive: true
}
},
'saucelabs-qunit': {
all: {
options: {
build: process.env.TRAVIS_JOB_ID,
concurrency: 10,
maxRetries: 3,
maxPollRetries: 4,
urls: ['http://127.0.0.1:3000/js/tests/index.html'],
browsers: grunt.file.readYAML('grunt/sauce_browsers.yml')
}
}
2014-01-20 21:06:13 +00:00
},
exec: {
npmUpdate: {
command: 'npm update'
},
bundleUpdate: {
command: function () {
// Update dev gems and all the test gemsets
return 'bundle update && ' + glob.sync('test-infra/gemfiles/*.gemfile').map(function (gemfile) {
return 'BUNDLE_GEMFILE=' + gemfile + ' bundle update';
}).join(' && ');
}
2014-05-13 05:01:29 +00:00
}
}
});
// These plugins provide necessary tasks.
require('load-grunt-tasks')(grunt, { scope: 'devDependencies',
// Exclude Sass compilers. We choose the one to load later on.
pattern: ['grunt-*', '!grunt-sass', '!grunt-contrib-sass'] });
2014-03-07 06:46:15 +00:00
require('time-grunt')(grunt);
// Docs HTML validation task
grunt.registerTask('validate-html', ['jekyll:docs', 'validation']);
2014-05-18 22:52:42 +00:00
var runSubset = function (subset) {
return !process.env.TWBS_TEST || process.env.TWBS_TEST === subset;
};
var isUndefOrNonZero = function (val) {
return val === undefined || val !== '0';
};
2014-05-18 22:52:42 +00:00
// Test task.
var testSubtasks = [];
// Skip core tests if running a different subset of the test suite
2014-11-19 23:43:23 +00:00
if (runSubset('core') &&
2014-12-01 04:29:47 +00:00
// Skip core tests if this is a Savage build
process.env.TRAVIS_REPO_SLUG !== 'twbs-savage/bootstrap') {
testSubtasks = testSubtasks.concat(['dist-css', 'dist-js', 'test-scss', 'test-js', 'docs']);
}
// Skip HTML validation if running a different subset of the test suite
if (runSubset('validate-html') &&
// Skip HTML5 validator on Travis when [skip validator] is in the commit message
isUndefOrNonZero(process.env.TWBS_DO_VALIDATOR)) {
testSubtasks.push('validate-html');
}
// Only run Sauce Labs tests if there's a Sauce access key
2014-01-17 19:51:53 +00:00
if (typeof process.env.SAUCE_ACCESS_KEY !== 'undefined' &&
// Skip Sauce if running a different subset of the test suite
runSubset('sauce-js-unit') &&
// Skip Sauce on Travis when [skip sauce] is in the commit message
isUndefOrNonZero(process.env.TWBS_DO_SAUCE)) {
testSubtasks.push('connect');
testSubtasks.push('saucelabs-qunit');
2013-08-06 07:39:35 +00:00
}
grunt.registerTask('test', testSubtasks);
2014-09-18 00:34:57 +00:00
grunt.registerTask('test-js', ['jshint:core', 'jshint:test', 'jshint:grunt', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']);
// JS distribution task.
2014-08-28 01:39:41 +00:00
grunt.registerTask('dist-js', ['concat', 'uglify:core', 'commonjs']);
2014-12-09 03:02:25 +00:00
grunt.registerTask('test-scss', ['scsslint:scss']);
// CSS distribution task.
// Supported Compilers: sass (Ruby) and libsass.
(function (sassCompilerName) {
require('./grunt/bs-sass-compile/' + sassCompilerName + '.js')(grunt);
})(process.env.TWBS_SASS || 'libsass');
2014-12-02 22:02:35 +00:00
grunt.registerTask('sass-compile', ['sass:core', 'sass:docs']);
2015-01-01 09:41:56 +00:00
grunt.registerTask('dist-css', ['sass-compile', 'postcss:core', 'autoprefixer:core', 'usebanner', 'csscomb:dist', 'cssmin:core', 'cssmin:docs']);
2013-08-18 07:36:51 +00:00
// Full distribution task.
2014-12-01 04:29:47 +00:00
grunt.registerTask('dist', ['clean:dist', 'dist-css', 'dist-js']);
// Default task.
2014-12-01 04:29:47 +00:00
grunt.registerTask('default', ['clean:dist', 'test']);
2013-08-08 06:06:29 +00: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 14:04:29 +00:00
grunt.registerTask('change-version-number', 'sed');
grunt.registerTask('commonjs', 'Generate CommonJS entrypoint module in dist dir.', function () {
2014-08-28 01:39:41 +00:00
var srcFiles = grunt.config.get('concat.bootstrap.src');
var destFilepath = 'dist/js/npm.js';
generateCommonJSModule(grunt, srcFiles, destFilepath);
});
// Docs task.
grunt.registerTask('docs-css', ['autoprefixer:docs', 'autoprefixer:examples', 'csscomb:docs', 'csscomb:examples', 'cssmin:docs']);
2014-12-10 21:51:43 +00:00
grunt.registerTask('docs-js', ['uglify:docsJs']);
grunt.registerTask('lint-docs-js', ['jshint:assets', 'jscs:assets']);
2014-12-02 22:02:35 +00:00
grunt.registerTask('docs', ['docs-css', 'docs-js', 'lint-docs-js', 'clean:docs', 'copy:docs']);
grunt.registerTask('docs-github', ['jekyll:github']);
// 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) {
grunt.fail.warn(err);
}
var dest = 'test-infra/npm-shrinkwrap.json';
fs.renameSync('npm-shrinkwrap.json', dest);
grunt.log.writeln('File ' + dest.cyan + ' updated.');
done();
});
});
// Task for updating the cached RubyGem packages used by the Travis build (which are controlled by test-infra/Gemfile.lock).
// This task should be run and the updated file should be committed whenever Bootstrap's RubyGem dependencies change.
grunt.registerTask('update-gemfile-lock', ['exec:bundleUpdate']);
};