Last active
December 16, 2019 03:29
-
-
Save thejimbirch/09cf9fafa2eee5fae9b8fb8d455f03eb to your computer and use it in GitHub Desktop.
Bootstrap 3 and 4 Gruntfiles with copy functions to move and rename files into a Drupal or Wordpress theme. Replace SITENAME with your site or theme name.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* Bootstrap's Gruntfile | |
* http://getbootstrap.com | |
* Copyright 2013-2016 Twitter, Inc. | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
*/ | |
module.exports = function (grunt) { | |
'use strict'; | |
// Force use of Unix newlines | |
grunt.util.linefeed = '\n'; | |
RegExp.quote = function (string) { | |
return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&'); | |
}; | |
var fs = require('fs'); | |
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' + | |
' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' + | |
' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + | |
' * Licensed under the <%= pkg.license %> license\n' + | |
' */\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' | |
}, | |
grunt: { | |
options: { | |
jshintrc: 'grunt/.jshintrc' | |
}, | |
src: ['Gruntfile.js', 'package.js', 'grunt/*.js'] | |
}, | |
core: { | |
src: 'js/*.js' | |
}, | |
test: { | |
options: { | |
jshintrc: 'js/tests/unit/.jshintrc' | |
}, | |
src: 'js/tests/unit/*.js' | |
}, | |
assets: { | |
src: ['docs/assets/js/src/*.js', 'docs/assets/js/*.js', '!docs/assets/js/*.min.js'] | |
} | |
}, | |
jscs: { | |
options: { | |
config: 'js/.jscsrc' | |
}, | |
grunt: { | |
src: '<%= jshint.grunt.src %>' | |
}, | |
core: { | |
src: '<%= jshint.core.src %>' | |
}, | |
test: { | |
src: '<%= jshint.test.src %>' | |
}, | |
assets: { | |
options: { | |
requireCamelCaseOrUpperCaseIdentifiers: null | |
}, | |
src: '<%= jshint.assets.src %>' | |
} | |
}, | |
concat: { | |
options: { | |
banner: '<%= banner %>\n<%= jqueryCheck %>\n<%= jqueryVersionCheck %>', | |
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', | |
'js/SITENAME.js' | |
], | |
dest: 'dist/js/<%= pkg.name %>.js' | |
} | |
}, | |
uglify: { | |
options: { | |
compress: { | |
warnings: false | |
}, | |
mangle: true, | |
preserveComments: /^!|@preserve|@license|@cc_on/i | |
}, | |
core: { | |
src: '<%= concat.bootstrap.dest %>', | |
dest: 'dist/js/<%= pkg.name %>.min.js' | |
}, | |
customize: { | |
src: configBridge.paths.customizerJs, | |
dest: 'docs/assets/js/customize.min.js' | |
}, | |
docsJs: { | |
src: configBridge.paths.docsJs, | |
dest: 'docs/assets/js/docs.min.js' | |
} | |
}, | |
qunit: { | |
options: { | |
inject: 'js/tests/unit/phantom.js' | |
}, | |
files: 'js/tests/index.html' | |
}, | |
less: { | |
compileCore: { | |
options: { | |
strictMath: true, | |
sourceMap: false | |
}, | |
src: 'less/bootstrap.less', | |
dest: 'dist/css/<%= pkg.name %>.css' | |
} | |
}, | |
autoprefixer: { | |
options: { | |
browsers: configBridge.config.autoprefixerBrowsers | |
}, | |
core: { | |
options: { | |
map: false | |
}, | |
src: 'dist/css/<%= pkg.name %>.css' | |
}, | |
docs: { | |
src: ['docs/assets/css/src/docs.css'] | |
}, | |
examples: { | |
expand: true, | |
cwd: 'docs/examples/', | |
src: ['**/*.css'], | |
dest: 'docs/examples/' | |
} | |
}, | |
csslint: { | |
options: { | |
csslintrc: 'less/.csslintrc' | |
}, | |
dist: [ | |
'dist/css/bootstrap.css' | |
], | |
examples: [ | |
'docs/examples/**/*.css' | |
], | |
docs: { | |
options: { | |
ids: false, | |
'overqualified-elements': false | |
}, | |
src: 'docs/assets/css/src/docs.css' | |
} | |
}, | |
cssmin: { | |
options: { | |
// TODO: disable `zeroUnits` optimization once clean-css 3.2 is released | |
// and then simplify the fix for https://github.com/twbs/bootstrap/issues/14837 accordingly | |
compatibility: 'ie8', | |
keepSpecialComments: '*', | |
sourceMap: false, | |
advanced: false | |
}, | |
minifyCore: { | |
src: 'dist/css/<%= pkg.name %>.css', | |
dest: 'dist/css/<%= pkg.name %>.min.css' | |
}, | |
docs: { | |
src: [ | |
'docs/assets/css/ie10-viewport-bug-workaround.css', | |
'docs/assets/css/src/pygments-manni.css', | |
'docs/assets/css/src/docs.css' | |
], | |
dest: 'docs/assets/css/docs.min.css' | |
} | |
}, | |
csscomb: { | |
options: { | |
config: 'less/.csscomb.json' | |
}, | |
dist: { | |
expand: true, | |
cwd: 'dist/css/', | |
src: ['*.css', '!*.min.css'], | |
dest: 'dist/css/' | |
}, | |
examples: { | |
expand: true, | |
cwd: 'docs/examples/', | |
src: '**/*.css', | |
dest: 'docs/examples/' | |
}, | |
docs: { | |
src: 'docs/assets/css/src/docs.css', | |
dest: 'docs/assets/css/src/docs.css' | |
} | |
}, | |
copy: { | |
fonts: { | |
expand: true, | |
src: 'fonts/**', | |
dest: '../theme/' | |
}, | |
docs: { | |
expand: true, | |
cwd: 'dist/', | |
src: [ | |
'**/*' | |
], | |
dest: 'docs/dist/' | |
}, | |
corecss: { | |
expand: true, | |
cwd: 'dist/css/', | |
src: [ | |
'**/*' | |
], | |
dest: '../theme/css/', | |
rename: function(dest, src) { | |
return dest + src.replace('bootstrap','SITENAME'); | |
} | |
}, | |
corejs: { | |
expand: true, | |
cwd: 'dist/js/', | |
src: [ | |
'**/*' | |
], | |
dest: '../theme/js/', | |
rename: function(dest, src) { | |
return dest + src.replace('bootstrap','SITENAME'); | |
} | |
} | |
}, | |
connect: { | |
server: { | |
options: { | |
port: 3000, | |
base: '.' | |
} | |
} | |
}, | |
jekyll: { | |
options: { | |
bundleExec: true, | |
config: '_config.yml', | |
incremental: false | |
}, | |
docs: {}, | |
github: { | |
options: { | |
raw: 'github: true' | |
} | |
} | |
}, | |
htmlmin: { | |
dist: { | |
options: { | |
collapseBooleanAttributes: true, | |
collapseWhitespace: true, | |
conservativeCollapse: true, | |
decodeEntities: false, | |
minifyCSS: { | |
compatibility: 'ie8', | |
keepSpecialComments: 0 | |
}, | |
minifyJS: true, | |
minifyURLs: false, | |
processConditionalComments: true, | |
removeAttributeQuotes: true, | |
removeComments: true, | |
removeOptionalAttributes: true, | |
removeOptionalTags: true, | |
removeRedundantAttributes: true, | |
removeScriptTypeAttributes: true, | |
removeStyleLinkTypeAttributes: true, | |
removeTagWhitespace: false, | |
sortAttributes: true, | |
sortClassName: true | |
}, | |
expand: true, | |
cwd: '_gh_pages', | |
dest: '_gh_pages', | |
src: [ | |
'**/*.html', | |
'!examples/**/*.html' | |
] | |
} | |
}, | |
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: [ | |
'Attribute "autocomplete" not allowed on element "button" at this point.', | |
'Attribute "autocomplete" is only allowed when the input type is "color", "date", "datetime", "datetime-local", "email", "hidden", "month", "number", "password", "range", "search", "tel", "text", "time", "url", or "week".', | |
'Element "img" is missing required attribute "src".' | |
] | |
}, | |
src: '_gh_pages/**/*.html' | |
}, | |
watch: { | |
src: { | |
files: '<%= jshint.core.src %>', | |
tasks: ['jshint:core', 'qunit', 'concat', 'copy:corejs'] | |
}, | |
test: { | |
files: '<%= jshint.test.src %>', | |
tasks: ['jshint:test', 'qunit'] | |
}, | |
less: { | |
files: 'less/**/*.less', | |
tasks: ['less', 'copy:corecss'] | |
} | |
}, | |
'saucelabs-qunit': { | |
all: { | |
options: { | |
build: process.env.TRAVIS_JOB_ID, | |
throttled: 10, | |
maxRetries: 3, | |
maxPollRetries: 4, | |
urls: ['http://127.0.0.1:3000/js/tests/index.html?hidepassed'], | |
browsers: grunt.file.readYAML('grunt/sauce_browsers.yml') | |
} | |
} | |
}, | |
exec: { | |
npmUpdate: { | |
command: 'npm update' | |
} | |
}, | |
compress: { | |
main: { | |
options: { | |
archive: 'bootstrap-<%= pkg.version %>-dist.zip', | |
mode: 'zip', | |
level: 9, | |
pretty: true | |
}, | |
files: [ | |
{ | |
expand: true, | |
cwd: 'dist/', | |
src: ['**'], | |
dest: 'bootstrap-<%= pkg.version %>-dist' | |
} | |
] | |
} | |
} | |
}); | |
// These plugins provide necessary tasks. | |
require('load-grunt-tasks')(grunt, { scope: 'devDependencies' }); | |
require('time-grunt')(grunt); | |
// Docs HTML validation task | |
grunt.registerTask('validate-html', ['jekyll:docs', 'htmllint']); | |
var runSubset = function (subset) { | |
return !process.env.TWBS_TEST || process.env.TWBS_TEST === subset; | |
}; | |
var isUndefOrNonZero = function (val) { | |
return val === undefined || val !== '0'; | |
}; | |
// Test task. | |
var testSubtasks = []; | |
// Skip core tests if running a different subset of the test suite | |
if (runSubset('core') && | |
// Skip core tests if this is a Savage build | |
process.env.TRAVIS_REPO_SLUG !== 'twbs-savage/bootstrap') { | |
testSubtasks = testSubtasks.concat(['dist-css', 'dist-js', 'csslint: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'); | |
} | |
// Only run Sauce Labs tests if there's a Sauce access key | |
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'); | |
} | |
grunt.registerTask('test', testSubtasks); | |
grunt.registerTask('test-js', ['jshint:core', 'jshint:test', 'jshint:grunt', 'jscs:core', 'jscs:test', 'jscs:grunt', 'qunit']); | |
// JS distribution task. | |
grunt.registerTask('dist-js', ['concat', 'uglify:core', 'commonjs', 'copy:corejs']); | |
// CSS distribution task. | |
grunt.registerTask('less-compile', ['less:compileCore']); | |
grunt.registerTask('dist-css', ['less-compile', 'autoprefixer:core', 'csscomb:dist', 'cssmin:minifyCore', 'copy:corecss']); | |
// Full distribution task. | |
grunt.registerTask('dist', ['clean:dist', 'dist-css', 'copy:fonts', 'dist-js']); | |
// Default task. | |
grunt.registerTask('default', ['clean:dist', 'copy:fonts', 'test']); | |
grunt.registerTask('build-glyphicons-data', function () { generateGlyphiconsData.call(this, grunt); }); | |
// task for building customizer | |
grunt.registerTask('build-customizer', ['build-customizer-html', 'build-raw-files']); | |
grunt.registerTask('build-customizer-html', 'pug'); | |
grunt.registerTask('build-raw-files', 'Add scripts/less files to customizer.', function () { | |
var banner = grunt.template.process('<%= banner %>'); | |
generateRawFiles(grunt, banner); | |
}); | |
grunt.registerTask('commonjs', 'Generate CommonJS entrypoint module in dist dir.', function () { | |
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']); | |
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-glyphicons-data', 'build-customizer']); | |
grunt.registerTask('docs-github', ['jekyll:github', 'htmlmin']); | |
grunt.registerTask('prep-release', ['dist', 'docs', 'docs-github', 'compress']); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* Bootstrap's Gruntfile | |
* https://getbootstrap.com | |
* Copyright 2013-2016 The Bootstrap Authors | |
* Copyright 2013-2016 Twitter, Inc. | |
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | |
*/ | |
module.exports = function (grunt) { | |
'use strict'; | |
// Force use of Unix newlines | |
grunt.util.linefeed = '\n'; | |
RegExp.quote = function (string) { | |
return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&'); | |
}; | |
var fs = require('fs'); | |
var path = require('path'); | |
var isTravis = require('is-travis'); | |
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', val); | |
}); | |
}); | |
// Project configuration. | |
grunt.initConfig({ | |
// Metadata. | |
pkg: grunt.file.readJSON('package.json'), | |
banner: '/*!\n' + | |
' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' + | |
' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + | |
' * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n' + | |
' */\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) || (version[0] >= 4)) {\n' + | |
' throw new Error(\'Bootstrap\\\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0\')\n' + | |
' }\n' + | |
'}(jQuery);\n\n', | |
// Task configuration. | |
clean: { | |
dist: 'dist', | |
docs: 'docs/dist' | |
}, | |
// JS build configuration | |
babel: { | |
dev: { | |
options: { | |
sourceMap: false | |
}, | |
files: { | |
'js/dist/util.js' : 'js/src/util.js', | |
'js/dist/alert.js' : 'js/src/alert.js', | |
'js/dist/button.js' : 'js/src/button.js', | |
'js/dist/carousel.js' : 'js/src/carousel.js', | |
'js/dist/collapse.js' : 'js/src/collapse.js', | |
'js/dist/dropdown.js' : 'js/src/dropdown.js', | |
'js/dist/modal.js' : 'js/src/modal.js', | |
'js/dist/scrollspy.js' : 'js/src/scrollspy.js', | |
'js/dist/tab.js' : 'js/src/tab.js', | |
'js/dist/tooltip.js' : 'js/src/tooltip.js', | |
'js/dist/popover.js' : 'js/src/popover.js', | |
'js/SITENAME.js' : 'js/SITENAME.js' | |
} | |
}, | |
dist: { | |
options: { | |
extends: '../../js/.babelrc' | |
}, | |
files: { | |
'<%= concat.bootstrap.dest %>' : '<%= concat.bootstrap.dest %>' | |
} | |
} | |
}, | |
stamp: { | |
options: { | |
banner: '<%= banner %>\n<%= jqueryCheck %>\n<%= jqueryVersionCheck %>\n+function () {\n', | |
footer: '\n}();' | |
}, | |
bootstrap: { | |
files: { | |
src: '<%= concat.bootstrap.dest %>' | |
} | |
} | |
}, | |
concat: { | |
options: { | |
// Custom function to remove all export and import statements | |
process: function (src) { | |
return src.replace(/^(export|import).*/gm, ''); | |
} | |
}, | |
bootstrap: { | |
src: [ | |
'js/src/util.js', | |
'js/src/alert.js', | |
'js/src/button.js', | |
'js/src/carousel.js', | |
'js/src/collapse.js', | |
'js/src/dropdown.js', | |
'js/src/modal.js', | |
'js/src/scrollspy.js', | |
'js/src/tab.js', | |
'js/src/tooltip.js', | |
'js/src/popover.js', | |
'js/SITENAME.js' | |
], | |
dest: 'dist/js/<%= pkg.name %>.js' | |
} | |
}, | |
uglify: { | |
options: { | |
compress: { | |
warnings: false | |
}, | |
mangle: true, | |
preserveComments: /^!|@preserve|@license|@cc_on/i | |
}, | |
core: { | |
src: '<%= concat.bootstrap.dest %>', | |
dest: 'dist/js/<%= pkg.name %>.min.js' | |
}, | |
docsJs: { | |
src: configBridge.paths.docsJs, | |
dest: 'docs/assets/js/docs.min.js' | |
} | |
}, | |
qunit: { | |
options: { | |
inject: 'js/tests/unit/phantom.js' | |
}, | |
files: 'js/tests/index.html' | |
}, | |
// CSS build configuration | |
scsslint: { | |
options: { | |
bundleExec: true, | |
config: 'scss/.scss-lint.yml', | |
reporterOutput: null, | |
}, | |
core: { | |
src: ['scss/*.scss', '!scss/_normalize.scss'] | |
}, | |
docs: { | |
src: ['docs/assets/scss/*.scss', '!docs/assets/scss/docs.scss'] | |
} | |
}, | |
cssmin: { | |
options: { | |
compatibility: 'ie9,-properties.zeroUnits', | |
sourceMap: false, | |
sourceMapInlineSources: false, | |
advanced: false | |
}, | |
core: { | |
files: [ | |
{ | |
expand: true, | |
cwd: 'dist/css', | |
src: ['*.css', '!*.min.css'], | |
dest: 'dist/css', | |
ext: '.min.css' | |
} | |
] | |
}, | |
docs: { | |
files: [ | |
{ | |
expand: true, | |
cwd: 'docs/assets/css', | |
src: ['*.css', '!*.min.css'], | |
dest: 'docs/assets/css', | |
ext: '.min.css' | |
} | |
] | |
} | |
}, | |
copy: { | |
docs: { | |
expand: true, | |
cwd: 'dist/', | |
src: [ | |
'**/*' | |
], | |
dest: 'docs/dist/' | |
}, | |
core: { | |
expand: true, | |
cwd: 'dist/css/', | |
src: [ | |
'**/*' | |
], | |
dest: '../css/', | |
rename: function(dest, src) { | |
return dest + src.replace('bootstrap','SITENAME'); | |
} | |
}, | |
corejs: { | |
expand: true, | |
cwd: 'dist/js/', | |
src: [ | |
'**/*' | |
], | |
dest: '../js/', | |
rename: function(dest, src) { | |
return dest + src.replace('bootstrap','SITENAME'); | |
} | |
} | |
}, | |
connect: { | |
server: { | |
options: { | |
port: 3000, | |
base: '.' | |
} | |
} | |
}, | |
jekyll: { | |
options: { | |
bundleExec: true, | |
config: '_config.yml', | |
incremental: false | |
}, | |
docs: {}, | |
github: { | |
options: { | |
raw: 'github: true' | |
} | |
} | |
}, | |
htmllint: { | |
options: { | |
ignore: [ | |
'Attribute “autocomplete” is only allowed when the input type is “color”, “date”, “datetime”, “datetime-local”, “email”, “hidden”, “month”, “number”, “password”, “range”, “search”, “tel”, “text”, “time”, “url”, or “week”.', | |
'Attribute “autocomplete” not allowed on element “button” at this point.', | |
'Consider using the “h1” element as a top-level heading only (all “h1” elements are treated as top-level headings by many screen readers and other tools).', | |
'Element “div” not allowed as child of element “progress” in this context. (Suppressing further errors from this subtree.)', | |
'Element “img” is missing required attribute “src”.', | |
'The “color” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.', | |
'The “date” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.', | |
'The “datetime” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.', | |
'The “datetime-local” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.', | |
'The “month” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.', | |
'The “time” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.', | |
'The “week” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.' | |
] | |
}, | |
src: ['_gh_pages/**/*.html', 'js/tests/visual/*.html'] | |
}, | |
watch: { | |
src: { | |
files: '<%= concat.bootstrap.src %>', | |
tasks: ['babel:dev', 'copy:corejs'] | |
}, | |
sass: { | |
files: 'scss/**/*.scss', | |
tasks: ['dist-css', 'docs', 'copy:core'] | |
}, | |
docs: { | |
files: 'docs/assets/scss/**/*.scss', | |
tasks: ['dist-css', 'docs'] | |
} | |
}, | |
'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?hidepassed'], | |
browsers: grunt.file.readYAML('grunt/sauce_browsers.yml') | |
} | |
} | |
}, | |
exec: { | |
postcss: { | |
command: 'npm run postcss' | |
}, | |
'postcss-docs': { | |
command: 'npm run postcss-docs' | |
}, | |
htmlhint: { | |
command: 'npm run htmlhint' | |
}, | |
'upload-preview': { | |
command: './grunt/upload-preview.sh' | |
} | |
}, | |
buildcontrol: { | |
options: { | |
dir: '_gh_pages', | |
commit: true, | |
push: true, | |
message: 'Built %sourceName% from commit %sourceCommit% on branch %sourceBranch%' | |
}, | |
pages: { | |
options: { | |
remote: '[email protected]:twbs/derpstrap.git', | |
branch: 'gh-pages' | |
} | |
} | |
}, | |
compress: { | |
main: { | |
options: { | |
archive: 'bootstrap-<%= pkg.version %>-dist.zip', | |
mode: 'zip', | |
level: 9, | |
pretty: true | |
}, | |
files: [ | |
{ | |
expand: true, | |
cwd: 'dist/', | |
src: ['**'], | |
dest: 'bootstrap-<%= pkg.version %>-dist' | |
} | |
] | |
} | |
} | |
}); | |
// 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'] }); | |
require('time-grunt')(grunt); | |
// Docs HTML validation task | |
grunt.registerTask('validate-html', ['jekyll:docs', 'htmllint', 'exec:htmlhint']); | |
var runSubset = function (subset) { | |
return !process.env.TWBS_TEST || process.env.TWBS_TEST === subset; | |
}; | |
var isUndefOrNonZero = function (val) { | |
return val === undefined || val !== '0'; | |
}; | |
// Test task. | |
var testSubtasks = []; | |
// Skip core tests if running a different subset of the test suite | |
if (runSubset('core') && | |
// 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', 'qunit', 'docs']); | |
} | |
// Skip HTML validation if running a different subset of the test suite | |
if (runSubset('validate-html') && | |
isTravis && | |
// Skip HTML5 validator 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 | |
if (typeof process.env.SAUCE_ACCESS_KEY !== 'undefined' && | |
// Skip Sauce if running a different subset of the test suite | |
runSubset('sauce-js-unit')) { | |
testSubtasks = testSubtasks.concat(['dist', 'docs-css', 'docs-js', 'clean:docs', 'copy:docs', 'exec:upload-preview']); | |
// Skip Sauce on Travis when [skip sauce] is in the commit message | |
if (isUndefOrNonZero(process.env.TWBS_DO_SAUCE)) { | |
testSubtasks.push('connect'); | |
testSubtasks.push('saucelabs-qunit'); | |
} | |
} | |
grunt.registerTask('test', testSubtasks); | |
// JS distribution task. | |
grunt.registerTask('dist-js', ['babel:dev', 'concat', 'babel:dist', 'stamp', 'uglify:core']); | |
grunt.registerTask('test-scss', ['scsslint:core']); | |
// CSS distribution task. | |
// Supported Compilers: sass (Ruby) and libsass. | |
(function (sassCompilerName) { | |
require('./grunt/bs-sass-compile/' + sassCompilerName + '.js')(grunt); | |
})(process.env.TWBS_SASS || 'libsass'); | |
// grunt.registerTask('sass-compile', ['sass:core', 'sass:extras', 'sass:docs']); | |
grunt.registerTask('sass-compile', ['sass:core', 'sass:extras', 'sass:docs']); | |
grunt.registerTask('dist-css', ['sass-compile', 'exec:postcss', 'cssmin:core', 'cssmin:docs']); | |
// Full distribution task. | |
grunt.registerTask('dist', ['clean:dist', 'dist-css', 'dist-js', 'copy:core', 'copy:corejs']); | |
// Default task. | |
grunt.registerTask('default', ['clean:dist', 'test']); | |
// Docs task. | |
grunt.registerTask('docs-css', ['cssmin:docs', 'exec:postcss-docs']); | |
grunt.registerTask('lint-docs-css', ['scsslint:docs']); | |
grunt.registerTask('docs-js', ['uglify:docsJs']); | |
grunt.registerTask('docs', ['lint-docs-css', 'docs-css', 'docs-js', 'clean:docs', 'copy:docs']); | |
grunt.registerTask('docs-github', ['jekyll:github']); | |
grunt.registerTask('prep-release', ['dist', 'docs', 'docs-github', 'compress']); | |
// Publish to GitHub | |
grunt.registerTask('publish', ['buildcontrol:pages']); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment