2014-01-20 19:00:52 -05:00
/ * !
* Bootstrap ' s Gruntfile
2016-10-03 12:55:59 -04:00
* https : //getbootstrap.com
2016-12-31 10:20:11 -05:00
* Copyright 2013 - 2017 The Bootstrap Authors
* Copyright 2013 - 2017 Twitter , Inc .
2014-01-20 19:00:52 -05:00
* Licensed under MIT ( https : //github.com/twbs/bootstrap/blob/master/LICENSE)
* /
2013-08-03 19:03:38 -04:00
2013-12-06 19:51:59 -05:00
module . exports = function ( grunt ) {
2016-12-31 00:25:26 -05:00
'use strict'
2013-08-03 19:03:38 -04:00
2013-12-03 06:07:57 -05:00
// Force use of Unix newlines
2016-12-31 00:25:26 -05:00
grunt . util . linefeed = '\n'
2013-12-03 06:07:57 -05:00
2013-12-08 05:24:47 -05:00
RegExp . quote = function ( string ) {
2016-12-31 00:25:26 -05:00
return string . replace ( /[-\\^$*+?.()|[\]{}]/g , '\\$&' )
}
2013-12-28 17:33:32 -05:00
2016-12-31 00:25:26 -05:00
var path = require ( 'path' )
var isTravis = require ( 'is-travis' )
2014-12-10 16:51:43 -05:00
2016-12-31 00:25:26 -05:00
var configBridge = grunt . file . readJSON ( './grunt/configBridge.json' , { encoding : 'utf8' } )
2014-11-03 10:19:40 -05:00
Object . keys ( configBridge . paths ) . forEach ( function ( key ) {
configBridge . paths [ key ] . forEach ( function ( val , i , arr ) {
2016-12-31 00:25:26 -05:00
arr [ i ] = path . join ( './docs' , val )
} )
} )
2013-12-28 17:33:32 -05:00
2013-08-03 19:03:38 -04:00
// Project configuration.
grunt . initConfig ( {
// Metadata.
pkg : grunt . file . readJSON ( 'package.json' ) ,
2013-09-10 22:21:44 -04:00
banner : '/*!\n' +
2014-01-28 06:16:13 -05:00
' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
2015-08-10 02:16:43 -04:00
' * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n' +
2014-01-28 06:16:13 -05:00
' */\n' ,
2014-12-16 23:17:54 -05:00
jqueryCheck : 'if (typeof jQuery === \'undefined\') {\n' +
2016-11-26 21:46:28 -05:00
' throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery. jQuery must be included before Bootstrap\\\'s JavaScript.\')\n' +
2014-12-16 23:17:54 -05:00
'}\n' ,
jqueryVersionCheck : '+function ($) {\n' +
' var version = $.fn.jquery.split(\' \')[0].split(\'.\')\n' +
2016-06-29 01:19:46 -04:00
' 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' +
2014-12-16 23:17:54 -05:00
' }\n' +
'}(jQuery);\n\n' ,
2013-08-03 19:03:38 -04:00
// Task configuration.
clean : {
2014-08-13 20:47:16 -04:00
dist : 'dist' ,
docs : 'docs/dist'
2013-08-03 19:03:38 -04:00
} ,
2015-05-12 19:52:54 -04:00
// JS build configuration
2015-05-07 15:48:22 -04:00
babel : {
2015-05-13 15:48:34 -04:00
dev : {
2015-05-12 19:52:54 -04:00
options : {
2016-10-06 09:21:05 -04:00
sourceMap : true
2014-02-07 07:34:17 -05:00
} ,
2015-05-07 15:48:22 -04:00
files : {
2015-05-11 15:05:35 -04:00
'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' ,
2015-05-11 15:29:06 -04:00
'js/dist/scrollspy.js' : 'js/src/scrollspy.js' ,
2015-05-12 02:32:37 -04:00
'js/dist/tab.js' : 'js/src/tab.js' ,
2015-05-12 17:28:11 -04:00
'js/dist/tooltip.js' : 'js/src/tooltip.js' ,
'js/dist/popover.js' : 'js/src/popover.js'
2015-05-07 15:48:22 -04:00
}
2013-08-03 19:03:38 -04:00
} ,
2015-05-12 19:52:54 -04:00
dist : {
2014-03-17 03:07:21 -04:00
options : {
2016-10-06 09:21:05 -04:00
extends : '../../js/.babelrc'
2014-03-17 03:07:21 -04:00
} ,
2015-05-12 19:52:54 -04:00
files : {
'<%= concat.bootstrap.dest %>' : '<%= concat.bootstrap.dest %>'
}
2013-08-03 19:03:38 -04:00
}
} ,
2013-08-08 02:06:29 -04:00
2015-05-12 19:52:54 -04:00
stamp : {
2013-08-03 19:03:38 -04:00
options : {
2016-10-06 09:21:05 -04:00
banner : '<%= banner %>\n<%= jqueryCheck %>\n<%= jqueryVersionCheck %>\n+function () {\n' ,
footer : '\n}();'
2013-08-03 19:03:38 -04:00
} ,
bootstrap : {
2015-05-12 19:52:54 -04:00
files : {
src : '<%= concat.bootstrap.dest %>'
}
2013-08-03 19:03:38 -04:00
}
} ,
2013-08-08 02:06:29 -04:00
2013-08-03 19:03:38 -04:00
concat : {
2014-06-15 10:41:24 -04:00
options : {
2016-04-02 03:03:04 -04:00
// Custom function to remove all export and import statements
process : function ( src ) {
2016-12-31 00:25:26 -05:00
return src . replace ( /^(export|import).*/gm , '' )
2016-10-06 09:21:05 -04:00
}
2014-06-15 10:41:24 -04:00
} ,
2013-08-03 19:03:38 -04:00
bootstrap : {
2015-01-03 16:58:44 -05:00
src : [
2015-05-12 19:52:54 -04:00
'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'
2015-01-03 16:58:44 -05:00
] ,
2013-08-03 19:03:38 -04:00
dest : 'dist/js/<%= pkg.name %>.js'
2015-01-03 16:58:44 -05:00
}
} ,
2014-03-09 19:09:36 -04:00
qunit : {
options : {
inject : 'js/tests/unit/phantom.js'
} ,
files : 'js/tests/index.html'
} ,
2015-05-12 19:52:54 -04:00
// CSS build configuration
2013-08-18 03:36:51 -04:00
copy : {
2013-12-31 14:38:32 -05:00
docs : {
2015-02-20 04:22:06 -05:00
expand : true ,
cwd : 'dist/' ,
src : [
'**/*'
] ,
dest : 'docs/dist/'
2013-08-18 03:36:51 -04:00
}
} ,
2013-08-03 19:03:38 -04:00
connect : {
server : {
options : {
port : 3000 ,
base : '.'
2013-05-04 10:55:52 -04:00
}
2013-08-03 19:03:38 -04:00
}
} ,
2013-08-12 18:01:06 -04:00
jekyll : {
2014-11-14 08:00:02 -05:00
options : {
2015-08-25 01:43:47 -04:00
bundleExec : true ,
2015-10-28 01:20:47 -04:00
config : '_config.yml' ,
incremental : false
2014-11-14 08:00:02 -05:00
} ,
docs : { } ,
github : {
options : {
raw : 'github: true'
}
}
2013-08-12 18:01:06 -04:00
} ,
2015-01-19 18:08:34 -05:00
htmllint : {
2013-08-12 18:01:06 -04:00
options : {
2015-01-19 18:08:34 -05:00
ignore : [
2016-06-29 01:54:25 -04:00
'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”.' ,
2015-01-19 18:08:34 -05:00
'Attribute “autocomplete” not allowed on element “button” at this point.' ,
2015-05-27 18:49:55 -04:00
'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).' ,
2016-06-29 01:54:25 -04:00
'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”.' ,
2016-01-06 18:52:12 -05:00
'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.' ,
2016-06-29 01:54:25 -04:00
'The “datetime” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.' ,
2016-01-06 18:52:12 -05:00
'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.' ,
2016-01-26 07:55:26 -05:00
'The “week” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.'
2013-10-24 02:25:17 -04:00
]
2013-08-12 18:01:06 -04:00
} ,
2015-11-19 04:49:12 -05:00
src : [ '_gh_pages/**/*.html' , 'js/tests/visual/*.html' ]
2013-08-12 18:01:06 -04:00
} ,
2013-08-03 19:03:38 -04:00
watch : {
src : {
2016-06-04 20:46:36 -04:00
files : '<%= concat.bootstrap.src %>' ,
2015-05-13 15:48:34 -04:00
tasks : [ 'babel:dev' ]
2013-08-03 19:03:38 -04:00
} ,
2015-01-09 05:26:16 -05:00
sass : {
files : 'scss/**/*.scss' ,
2015-08-12 23:14:14 -04:00
tasks : [ 'dist-css' , 'docs' ]
2015-08-15 01:45:55 -04:00
} ,
docs : {
files : 'docs/assets/scss/**/*.scss' ,
tasks : [ 'dist-css' , 'docs' ]
2013-08-03 19:03:38 -04:00
}
2013-11-01 21:15:25 -04:00
} ,
2013-12-03 21:42:31 -05:00
'saucelabs-qunit' : {
all : {
options : {
build : process . env . TRAVIS _JOB _ID ,
2014-01-15 18:55:47 -05:00
concurrency : 10 ,
2014-06-24 15:12:21 -04:00
maxRetries : 3 ,
2015-01-05 15:40:43 -05:00
maxPollRetries : 4 ,
2015-03-01 03:20:00 -05:00
urls : [ 'http://127.0.0.1:3000/js/tests/index.html?hidepassed' ] ,
2014-03-16 23:30:04 -04:00
browsers : grunt . file . readYAML ( 'grunt/sauce_browsers.yml' )
2013-12-03 21:42:31 -05:00
}
}
2014-01-20 16:06:13 -05:00
} ,
exec : {
2016-12-22 23:02:54 -05:00
'clean-css' : {
command : 'npm run clean-css'
} ,
'clean-css-docs' : {
command : 'npm run clean-css-docs'
} ,
2016-06-20 19:18:21 -04:00
postcss : {
command : 'npm run postcss'
} ,
'postcss-docs' : {
command : 'npm run postcss-docs'
2016-06-27 17:19:10 -04:00
} ,
2016-07-14 19:22:56 -04:00
htmlhint : {
command : 'npm run htmlhint'
2016-12-21 01:38:32 -05:00
} ,
2017-01-02 19:46:57 -05:00
sass : {
command : 'npm run sass'
} ,
'sass-docs' : {
command : 'npm run sass-docs'
} ,
2016-12-21 01:38:32 -05:00
'scss-lint' : {
command : 'npm run scss-lint'
} ,
'scss-lint-docs' : {
command : 'npm run scss-lint-docs'
2016-12-23 07:43:46 -05:00
} ,
uglify : {
command : 'npm run uglify'
} ,
'uglify-docs' : {
command : 'npm run uglify-docs'
2016-06-20 19:18:21 -04:00
}
2015-08-19 01:47:26 -04:00
} ,
buildcontrol : {
options : {
dir : '_gh_pages' ,
commit : true ,
push : true ,
message : 'Built %sourceName% from commit %sourceCommit% on branch %sourceBranch%'
} ,
pages : {
options : {
remote : 'git@github.com:twbs/derpstrap.git' ,
branch : 'gh-pages'
}
}
2015-11-16 11:05:29 -05:00
} ,
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'
}
]
}
2013-08-03 19:03:38 -04:00
}
2015-11-16 11:05:29 -05:00
2016-12-31 00:25:26 -05:00
} )
2013-05-04 10:55:52 -04:00
2013-08-03 19:03:38 -04:00
// These plugins provide necessary tasks.
2017-01-02 19:46:57 -05:00
require ( 'load-grunt-tasks' ) ( grunt )
2016-12-31 00:25:26 -05:00
require ( 'time-grunt' ) ( grunt )
2013-05-04 10:55:52 -04:00
2013-08-12 18:01:06 -04:00
// Docs HTML validation task
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'validate-html' , [ 'jekyll:docs' , 'htmllint' , 'exec:htmlhint' ] )
2013-08-12 18:01:06 -04:00
2014-05-18 18:52:42 -04:00
var runSubset = function ( subset ) {
2016-12-31 00:25:26 -05:00
return ! process . env . TWBS _TEST || process . env . TWBS _TEST === subset
}
2014-05-18 18:53:40 -04:00
var isUndefOrNonZero = function ( val ) {
2016-12-31 00:25:26 -05:00
return val === undefined || val !== '0'
}
2014-05-18 18:52:42 -04:00
2013-08-03 19:03:38 -04:00
// Test task.
2016-12-31 00:25:26 -05:00
var testSubtasks = [ ]
2013-12-14 22:09:44 -05:00
// Skip core tests if running a different subset of the test suite
2014-11-19 18:43:23 -05:00
if ( runSubset ( 'core' ) &&
2014-11-30 23:29:47 -05:00
// Skip core tests if this is a Savage build
2014-12-15 13:18:27 -05:00
process . env . TRAVIS _REPO _SLUG !== 'twbs-savage/bootstrap' ) {
2016-12-31 00:25:26 -05:00
testSubtasks = testSubtasks . concat ( [ 'dist-css' , 'dist-js' , 'test-scss' , 'qunit' , 'docs' ] )
2013-12-14 22:09:44 -05:00
}
// Skip HTML validation if running a different subset of the test suite
2014-05-18 18:53:40 -04:00
if ( runSubset ( 'validate-html' ) &&
2015-09-25 18:32:42 -04:00
isTravis &&
// Skip HTML5 validator when [skip validator] is in the commit message
2014-05-18 18:53:40 -04:00
isUndefOrNonZero ( process . env . TWBS _DO _VALIDATOR ) ) {
2016-12-31 00:25:26 -05:00
testSubtasks . push ( 'validate-html' )
2013-12-14 22:09:44 -05:00
}
2013-12-03 21:42:31 -05:00
// Only run Sauce Labs tests if there's a Sauce access key
2014-01-17 14:51:53 -05:00
if ( typeof process . env . SAUCE _ACCESS _KEY !== 'undefined' &&
2013-12-14 22:09:44 -05:00
// Skip Sauce if running a different subset of the test suite
2016-06-27 17:19:10 -04:00
runSubset ( 'sauce-js-unit' ) ) {
2016-12-31 00:25:26 -05:00
testSubtasks = testSubtasks . concat ( [ 'dist' , 'docs-css' , 'docs-js' , 'clean:docs' , 'copy:docs' ] )
2016-06-27 17:19:10 -04:00
// Skip Sauce on Travis when [skip sauce] is in the commit message
if ( isUndefOrNonZero ( process . env . TWBS _DO _SAUCE ) ) {
2016-12-31 00:25:26 -05:00
testSubtasks . push ( 'connect' )
testSubtasks . push ( 'saucelabs-qunit' )
2016-06-27 17:19:10 -04:00
}
2013-08-06 03:39:35 -04:00
}
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'test' , testSubtasks )
2013-05-04 10:55:52 -04:00
2013-08-03 19:03:38 -04:00
// JS distribution task.
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'dist-js' , [ 'babel:dev' , 'concat' , 'babel:dist' , 'stamp' , 'exec:uglify' ] )
2013-05-04 10:55:52 -04:00
2017-01-02 19:46:57 -05:00
grunt . registerTask ( 'test-scss' , [ 'exec:scss-lint' ] )
2014-12-08 22:02:25 -05:00
2013-08-03 19:03:38 -04:00
// CSS distribution task.
2017-01-02 19:46:57 -05:00
grunt . registerTask ( 'sass-compile' , [ 'exec:sass' , 'exec:sass-docs' ] )
2014-12-15 13:18:27 -05:00
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'dist-css' , [ 'sass-compile' , 'exec:postcss' , 'exec:clean-css' , 'exec:clean-css-docs' ] )
2013-08-18 03:36:51 -04:00
2013-08-03 19:03:38 -04:00
// Full distribution task.
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'dist' , [ 'clean:dist' , 'dist-css' , 'dist-js' ] )
2013-05-04 10:55:52 -04:00
2013-08-03 19:03:38 -04:00
// Default task.
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'default' , [ 'clean:dist' , 'test' ] )
2013-08-08 02:06:29 -04:00
2014-08-13 20:47:16 -04:00
// Docs task.
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'docs-css' , [ 'exec:clean-css-docs' , 'exec:postcss-docs' ] )
grunt . registerTask ( 'lint-docs-css' , [ 'exec:scss-lint-docs' ] )
grunt . registerTask ( 'docs-js' , [ 'exec:uglify-docs' ] )
grunt . registerTask ( 'docs' , [ 'lint-docs-css' , 'docs-css' , 'docs-js' , 'clean:docs' , 'copy:docs' ] )
grunt . registerTask ( 'docs-github' , [ 'jekyll:github' ] )
2014-08-13 20:47:16 -04:00
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'prep-release' , [ 'dist' , 'docs' , 'docs-github' , 'compress' ] )
2014-11-14 08:00:02 -05:00
2015-08-19 01:49:26 -04:00
// Publish to GitHub
2016-12-31 00:25:26 -05:00
grunt . registerTask ( 'publish' , [ 'buildcontrol:pages' ] )
}