0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-04 16:24:22 +01:00
Bootstrap/Gruntfile.js

436 lines
12 KiB
JavaScript
Raw Normal View History

2014-01-21 01:00:52 +01:00
/*!
* Bootstrap's Gruntfile
* https://getbootstrap.com/
2019-02-10 13:01:42 +01:00
* Copyright 2013-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/v3-dev/LICENSE)
2014-01-21 01:00:52 +01:00
*/
2013-12-07 01:51:59 +01:00
module.exports = function (grunt) {
2013-09-18 18:50:02 +02:00
'use strict';
// Force use of Unix newlines
grunt.util.linefeed = '\n';
2013-12-08 11:24:47 +01:00
RegExp.quote = function (string) {
2014-01-17 20:51:53 +01:00
return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&');
};
2014-01-17 20:51:53 +01:00
var fs = require('fs');
2014-01-19 15:04:29 +01:00
var path = require('path');
var generateGlyphiconsData = require('./grunt/bs-glyphicons-data-generator.js');
var BsLessdocParser = require('./grunt/bs-lessdoc-parser.js');
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() };
};
var generateRawFiles = require('./grunt/bs-raw-files-generator.js');
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 12:16:13 +01:00
' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * Licensed under the <%= pkg.license %> license\n' +
2014-01-28 12:16:13 +01:00
' */\n',
jqueryCheck: configBridge.config.jqueryCheck.join('\n'),
jqueryVersionCheck: configBridge.config.jqueryVersionCheck.join('\n'),
// Task configuration.
clean: {
dist: 'dist',
docs: 'docs/dist'
},
jshint: {
options: {
jshintrc: 'js/.jshintrc'
},
2014-01-20 22:06:13 +01:00
grunt: {
options: {
jshintrc: 'grunt/.jshintrc'
},
2015-04-28 09:15:32 +02:00
src: ['Gruntfile.js', 'package.js', 'grunt/*.js']
},
core: {
2014-01-19 15:04:29 +01:00
src: 'js/*.js'
},
test: {
options: {
jshintrc: 'js/tests/unit/.jshintrc'
},
2014-01-19 15:04:29 +01: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 08:06:29 +02:00
2013-12-07 01:51:38 +01:00
jscs: {
options: {
2014-02-28 16:29:36 +01:00
config: 'js/.jscsrc'
2013-12-07 01:51:38 +01:00
},
2014-01-20 22:06:13 +01:00
grunt: {
src: '<%= jshint.grunt.src %>'
2013-12-07 01:51:38 +01:00
},
core: {
src: '<%= jshint.core.src %>'
2013-12-07 01:51:38 +01:00
},
test: {
src: '<%= jshint.test.src %>'
},
assets: {
options: {
requireCamelCaseOrUpperCaseIdentifiers: null
},
src: '<%= jshint.assets.src %>'
2013-12-07 01:51:38 +01:00
}
},
concat: {
options: {
banner: '<%= banner %>\n<%= jqueryCheck %>\n<%= jqueryVersionCheck %>',
stripBanners: false
},
core: {
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 08:06:29 +02:00
uglify: {
2014-06-15 16:41:24 +02:00
options: {
compress: true,
2015-04-04 11:05:00 +02:00
mangle: true,
ie8: true,
output: {
comments: /^!|@preserve|@license|@cc_on/i
}
2014-06-15 16:41:24 +02:00
},
core: {
src: '<%= concat.core.dest %>',
dest: 'dist/js/<%= pkg.name %>.min.js'
2013-09-19 16:41:14 +02:00
},
customize: {
src: configBridge.paths.customizerJs,
dest: 'docs/assets/js/customize.min.js'
},
docs: {
src: configBridge.paths.docsJs,
dest: 'docs/assets/js/docs.min.js'
}
},
less: {
options: {
ieCompat: true,
strictMath: true,
sourceMap: true,
outputSourceFiles: true
},
core: {
options: {
sourceMapURL: '<%= pkg.name %>.css.map',
sourceMapFilename: 'dist/css/<%= pkg.name %>.css.map'
},
src: 'less/bootstrap.less',
dest: 'dist/css/<%= pkg.name %>.css'
},
theme: {
options: {
sourceMapURL: '<%= pkg.name %>-theme.css.map',
sourceMapFilename: 'dist/css/<%= pkg.name %>-theme.css.map'
},
src: 'less/theme.less',
dest: 'dist/css/<%= pkg.name %>-theme.css'
2017-07-03 00:09:46 +02:00
},
docs: {
2017-07-03 00:09:46 +02:00
options: {
sourceMapURL: 'docs.css.map',
sourceMapFilename: 'docs/assets/css/docs.css.map'
},
src: 'docs/assets/less/docs.less',
dest: 'docs/assets/css/docs.css'
},
docsIe: {
options: {
sourceMap: false
},
src: 'docs/assets/less/ie10-viewport-bug-workaround.less',
dest: 'docs/assets/css/ie10-viewport-bug-workaround.css'
}
},
postcss: {
2014-02-22 11:17:58 +01:00
options: {
map: {
inline: false,
sourcesContent: true
},
processors: [
require('autoprefixer')(configBridge.config.autoprefixer)
]
2014-02-22 11:17:58 +01:00
},
core: {
src: 'dist/css/<%= pkg.name %>.css'
},
theme: {
src: 'dist/css/<%= pkg.name %>-theme.css'
},
docs: {
src: 'docs/assets/css/docs.css'
2014-02-22 11:17:58 +01:00
},
examples: {
options: {
map: false
},
2014-02-22 11:17:58 +01:00
expand: true,
cwd: 'docs/examples/',
src: ['**/*.css'],
dest: 'docs/examples/'
}
},
2017-11-26 03:06:34 +01:00
stylelint: {
2014-03-10 00:09:36 +01:00
options: {
2017-11-26 03:06:34 +01:00
configFile: 'grunt/.stylelintrc',
reportNeedlessDisables: false
2014-03-10 00:09:36 +01:00
},
dist: [
2017-11-26 03:06:34 +01:00
'less/**/*.less'
],
docs: [
'docs/assets/less/**/*.less'
2014-03-10 00:09:36 +01:00
],
examples: [
'docs/examples/**/*.css'
2017-11-26 03:06:34 +01:00
]
2014-03-10 00:09:36 +01:00
},
2013-12-22 08:25:18 +01:00
cssmin: {
2014-03-11 18:48:14 +01:00
options: {
compatibility: 'ie8',
sourceMap: true,
sourceMapInlineSources: true,
level: {
1: {
specialComments: 'all'
}
}
2014-03-11 18:48:14 +01:00
},
core: {
src: 'dist/css/<%= pkg.name %>.css',
dest: 'dist/css/<%= pkg.name %>.min.css'
},
theme: {
src: 'dist/css/<%= pkg.name %>-theme.css',
dest: 'dist/css/<%= pkg.name %>-theme.min.css'
},
docs: {
2017-07-04 23:53:16 +02:00
src: 'docs/assets/css/docs.css',
dest: 'docs/assets/css/docs.min.css'
2013-12-22 08:25:18 +01:00
}
},
2013-08-18 09:36:51 +02:00
copy: {
fonts: {
2015-02-20 10:22:06 +01:00
expand: true,
src: 'fonts/**',
2013-08-18 09:36:51 +02:00
dest: 'dist/'
},
2013-12-31 20:38:32 +01:00
docs: {
2015-02-20 10:22:06 +01:00
expand: true,
cwd: 'dist/',
src: [
'**/*'
],
dest: 'docs/dist/'
2013-08-18 09:36:51 +02:00
}
},
connect: {
server: {
options: {
port: 3000,
base: '.'
}
}
},
jekyll: {
options: {
bundleExec: true,
config: '_config.yml',
incremental: false
},
docs: {},
2019-02-15 18:14:05 +01:00
netlify: {
options: {
raw: 'github: true\nbaseurl: ""'
}
},
github: {
options: {
raw: 'github: true'
}
}
},
pug: {
options: {
pretty: true,
data: getLessVarsData
},
customizerVars: {
src: 'docs/_pug/customizer-variables.pug',
dest: 'docs/_includes/customizer-variables.html'
},
customizerNav: {
src: 'docs/_pug/customizer-nav.pug',
dest: 'docs/_includes/nav/customize.html'
}
},
htmllint: {
options: {
ignore: [
'Element "img" is missing required attribute "src".'
],
noLangDetect: true
},
src: ['_gh_pages/**/*.html', 'js/tests/**/*.html']
},
watch: {
src: {
files: '<%= jshint.core.src %>',
tasks: ['jshint:core', 'exec:karma', 'concat']
},
test: {
files: '<%= jshint.test.src %>',
tasks: ['jshint:test', 'exec:karma']
},
less: {
files: 'less/**/*.less',
2017-07-03 17:58:01 +02:00
tasks: ['less', 'copy']
2017-07-03 00:09:46 +02:00
},
docs: {
files: 'docs/assets/less/**/*.less',
2017-07-03 17:58:01 +02:00
tasks: ['less']
}
},
2014-01-20 22:06:13 +01:00
exec: {
2018-09-07 21:32:52 +02:00
browserstack: {
command: 'cross-env BROWSER=true karma start grunt/karma.conf.js'
},
karma: {
2018-09-07 21:32:52 +02:00
command: 'karma start grunt/karma.conf.js'
2014-05-13 07:01:29 +02:00
}
}
});
// These plugins provide necessary tasks.
2014-03-17 08:12:55 +01:00
require('load-grunt-tasks')(grunt, { scope: 'devDependencies' });
2014-03-07 07:46:15 +01:00
require('time-grunt')(grunt);
// Docs HTML validation task
grunt.registerTask('validate-html', ['jekyll:docs', 'htmllint']);
2014-05-19 00:52:42 +02:00
var runSubset = function (subset) {
return !process.env.TWBS_TEST || process.env.TWBS_TEST === subset;
};
var isUndefOrNonZero = function (val) {
return typeof val === 'undefined' || val !== '0';
};
2014-05-19 00:52:42 +02:00
// Test task.
var testSubtasks = [];
// Skip core tests if running a different subset of the test suite
if (runSubset('core')) {
2017-11-26 03:06:34 +01:00
testSubtasks = testSubtasks.concat(['dist-css', 'dist-js', 'stylelint:dist', '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');
}
2018-09-07 21:32:52 +02:00
// Only run BrowserStack tests if there's a BrowserStack access key
if (typeof process.env.BROWSER_STACK_USERNAME !== 'undefined' &&
// Skip BrowserStack if running a different subset of the test suite
runSubset('browserstack') &&
// Skip BrowserStack on Travis when [skip browserstack] is in the commit message
isUndefOrNonZero(process.env.TWBS_DO_BROWSERSTACK)) {
2018-09-07 21:32:52 +02:00
testSubtasks.push('exec:browserstack');
2013-08-06 09:39:35 +02:00
}
2018-09-07 21:32:52 +02:00
2013-08-06 09:39:35 +02:00
grunt.registerTask('test', testSubtasks);
grunt.registerTask('test-js', ['jshint:core', 'jshint:test', 'jshint:grunt', 'jscs:core', 'jscs:test', 'jscs:grunt', 'exec:karma']);
// JS distribution task.
2014-08-28 03:39:41 +02:00
grunt.registerTask('dist-js', ['concat', 'uglify:core', 'commonjs']);
// CSS distribution task.
grunt.registerTask('dist-css', ['less:core', 'less:theme', 'postcss:core', 'postcss:theme', 'cssmin:core', 'cssmin:theme']);
2013-08-18 09:36:51 +02:00
// Full distribution task.
grunt.registerTask('dist', ['clean:dist', 'dist-css', 'copy:fonts', 'dist-js']);
// Default task.
grunt.registerTask('default', ['clean:dist', 'copy:fonts', 'test']);
2013-08-08 08:06:29 +02:00
grunt.registerTask('build-glyphicons-data', function () {
generateGlyphiconsData.call(this, grunt);
});
2013-08-08 08:06:29 +02:00
// task for building customizer
grunt.registerTask('build-customizer', ['build-customizer-html', 'build-raw-files']);
grunt.registerTask('build-customizer-html', 'pug');
2014-01-14 22:25:27 +01:00
grunt.registerTask('build-raw-files', 'Add scripts/less files to customizer.', function () {
var banner = grunt.template.process('<%= banner %>');
generateRawFiles(grunt, banner);
2014-01-14 22:25:27 +01:00
});
2014-01-20 22:06:13 +01:00
grunt.registerTask('commonjs', 'Generate CommonJS entrypoint module in dist dir.', function () {
var srcFiles = grunt.config.get('concat.core.src');
2014-08-28 03:39:41 +02:00
var destFilepath = 'dist/js/npm.js';
generateCommonJSModule(grunt, srcFiles, destFilepath);
});
// Docs task.
grunt.registerTask('docs-css', ['less:docs', 'less:docsIe', 'postcss:docs', 'postcss:examples', 'cssmin:docs']);
2017-11-26 03:06:34 +01:00
grunt.registerTask('lint-docs-css', ['stylelint:docs', 'stylelint:examples']);
grunt.registerTask('docs-js', ['uglify:docs', '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-glyphicons-data', 'build-customizer']);
grunt.registerTask('prep-release', ['dist', 'docs', 'jekyll:github']);
};