2014-01-20 16:00:52 -08:00
/ * !
* Bootstrap ' s Gruntfile
* http : //getbootstrap.com
2016-01-01 12:22:03 -08:00
* Copyright 2013 - 2016 Twitter , Inc .
2014-01-20 16:00:52 -08:00
* Licensed under MIT ( https : //github.com/twbs/bootstrap/blob/master/LICENSE)
* /
2013-08-03 19:03:38 -04:00
2013-12-06 16:51:59 -08:00
module . exports = function ( grunt ) {
2013-09-18 19:50:02 +03:00
'use strict' ;
2013-08-03 19:03:38 -04:00
2013-12-03 12:07:57 +01:00
// Force use of Unix newlines
grunt . util . linefeed = '\n' ;
2013-12-08 11:24:47 +01:00
RegExp . quote = function ( string ) {
2014-01-17 11:51:53 -08:00
return string . replace ( /[-\\^$*+?.()|[\]{}]/g , '\\$&' ) ;
} ;
2013-12-28 23:33:32 +01:00
2014-01-17 11:51:53 -08:00
var fs = require ( 'fs' ) ;
2014-01-19 15:04:29 +01:00
var path = require ( 'path' ) ;
2014-12-29 16:54:29 -08:00
var generateGlyphiconsData = require ( './grunt/bs-glyphicons-data-generator.js' ) ;
2014-02-04 13:18:54 -08:00
var BsLessdocParser = require ( './grunt/bs-lessdoc-parser.js' ) ;
2014-08-13 17:36:07 -07:00
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 ( ) } ;
} ;
2014-03-08 10:54:41 +01:00
var generateRawFiles = require ( './grunt/bs-raw-files-generator.js' ) ;
2014-08-28 09:24:23 +08:00
var generateCommonJSModule = require ( './grunt/bs-commonjs-generator.js' ) ;
2014-11-03 16:19:40 +01:00
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 ) ;
} ) ;
} ) ;
2013-12-28 23:33:32 +01:00
2013-08-03 19:03:38 -04:00
// Project configuration.
grunt . initConfig ( {
// Metadata.
pkg : grunt . file . readJSON ( 'package.json' ) ,
2013-09-10 19:21:44 -07:00
banner : '/*!\n' +
2014-01-28 13:16:13 +02:00
' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
2015-06-01 09:58:35 +03:00
' * Licensed under the <%= pkg.license %> license\n' +
2014-01-28 13:16:13 +02:00
' */\n' ,
2014-11-03 16:19:40 +01:00
jqueryCheck : configBridge . config . jqueryCheck . join ( '\n' ) ,
jqueryVersionCheck : configBridge . config . jqueryVersionCheck . join ( '\n' ) ,
2013-08-03 19:03:38 -04:00
// Task configuration.
clean : {
2014-08-13 17:47:16 -07:00
dist : 'dist' ,
docs : 'docs/dist'
2013-08-03 19:03:38 -04:00
} ,
jshint : {
options : {
jshintrc : 'js/.jshintrc'
} ,
2014-01-20 13:06:13 -08:00
grunt : {
2014-02-07 13:34:17 +01:00
options : {
2014-02-08 21:59:17 +01:00
jshintrc : 'grunt/.jshintrc'
2014-02-07 13:34:17 +01:00
} ,
2015-04-28 10:15:32 +03:00
src : [ 'Gruntfile.js' , 'package.js' , 'grunt/*.js' ]
2013-08-03 19:03:38 -04:00
} ,
2014-08-13 17:47:16 -07:00
core : {
2014-01-19 15:04:29 +01:00
src : 'js/*.js'
2013-08-03 19:03:38 -04:00
} ,
test : {
2014-03-17 09:07:21 +02:00
options : {
jshintrc : 'js/tests/unit/.jshintrc'
} ,
2014-01-19 15:04:29 +01:00
src : 'js/tests/unit/*.js'
2013-09-18 21:37:55 +03:00
} ,
assets : {
2014-07-03 13:18:44 -07:00
src : [ 'docs/assets/js/src/*.js' , 'docs/assets/js/*.js' , '!docs/assets/js/*.min.js' ]
2013-08-03 19:03:38 -04:00
}
} ,
2013-08-07 23:06:29 -07:00
2013-12-06 16:51:38 -08:00
jscs : {
options : {
2014-02-28 17:29:36 +02:00
config : 'js/.jscsrc'
2013-12-06 16:51:38 -08:00
} ,
2014-01-20 13:06:13 -08:00
grunt : {
2014-02-28 14:24:35 +02:00
src : '<%= jshint.grunt.src %>'
2013-12-06 16:51:38 -08:00
} ,
2014-08-13 17:47:16 -07:00
core : {
src : '<%= jshint.core.src %>'
2013-12-06 16:51:38 -08:00
} ,
test : {
2014-02-28 14:24:35 +02:00
src : '<%= jshint.test.src %>'
2014-01-05 20:52:37 -08:00
} ,
assets : {
2014-03-27 22:07:20 -07:00
options : {
requireCamelCaseOrUpperCaseIdentifiers : null
} ,
2014-02-28 14:24:35 +02:00
src : '<%= jshint.assets.src %>'
2013-12-06 16:51:38 -08:00
}
} ,
2013-08-03 19:03:38 -04:00
concat : {
options : {
2014-10-22 20:52:15 +02:00
banner : '<%= banner %>\n<%= jqueryCheck %>\n<%= jqueryVersionCheck %>' ,
2013-08-03 19:03:38 -04:00
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'
] ,
dest : 'dist/js/<%= pkg.name %>.js'
}
} ,
2013-08-07 23:06:29 -07:00
2013-08-03 19:03:38 -04:00
uglify : {
2014-06-15 16:41:24 +02:00
options : {
2015-04-04 12:05:00 +03:00
compress : {
warnings : false
} ,
mangle : true ,
2015-12-24 12:37:39 +02:00
preserveComments : /^!|@preserve|@license|@cc_on/i
2014-06-15 16:41:24 +02:00
} ,
2014-08-13 17:47:16 -07:00
core : {
2014-01-19 15:04:29 +01:00
src : '<%= concat.bootstrap.dest %>' ,
2013-08-03 19:03:38 -04:00
dest : 'dist/js/<%= pkg.name %>.min.js'
2013-09-19 17:41:14 +03:00
} ,
customize : {
2014-11-03 16:19:40 +01:00
src : configBridge . paths . customizerJs ,
2014-01-07 19:10:31 -08:00
dest : 'docs/assets/js/customize.min.js'
2013-12-11 00:29:42 +02:00
} ,
docsJs : {
2014-11-03 16:19:40 +01:00
src : configBridge . paths . docsJs ,
2013-12-11 00:29:42 +02:00
dest : 'docs/assets/js/docs.min.js'
2013-08-03 19:03:38 -04:00
}
} ,
2014-03-09 16:09:36 -07:00
qunit : {
options : {
inject : 'js/tests/unit/phantom.js'
} ,
files : 'js/tests/index.html'
} ,
2013-12-08 19:09:27 -08:00
less : {
2013-12-09 14:29:19 -08:00
compileCore : {
options : {
2013-12-18 10:22:18 -08:00
strictMath : true ,
2013-12-09 14:29:19 -08:00
sourceMap : true ,
outputSourceFiles : true ,
sourceMapURL : '<%= pkg.name %>.css.map' ,
sourceMapFilename : 'dist/css/<%= pkg.name %>.css.map'
} ,
2014-08-13 23:12:09 +04:00
src : 'less/bootstrap.less' ,
dest : 'dist/css/<%= pkg.name %>.css'
2013-12-09 14:29:19 -08:00
} ,
compileTheme : {
options : {
2013-12-18 10:22:18 -08:00
strictMath : true ,
2013-12-09 14:29:19 -08:00
sourceMap : true ,
outputSourceFiles : true ,
sourceMapURL : '<%= pkg.name %>-theme.css.map' ,
sourceMapFilename : 'dist/css/<%= pkg.name %>-theme.css.map'
} ,
2014-08-13 23:12:09 +04:00
src : 'less/theme.less' ,
dest : 'dist/css/<%= pkg.name %>-theme.css'
2017-07-02 15:09:46 -07:00
} ,
compileDocs : {
options : {
strictMath : true ,
sourceMap : true ,
outputSourceFiles : true ,
sourceMapURL : 'docs.css.map' ,
sourceMapFilename : 'docs/assets/css/docs.css.map'
} ,
src : 'docs/assets/less/docs.less' ,
dest : 'docs/assets/css/docs.css'
2014-02-24 20:46:45 -08:00
}
} ,
2014-02-22 11:17:58 +01:00
autoprefixer : {
options : {
2014-11-03 16:19:40 +01:00
browsers : configBridge . config . autoprefixerBrowsers
2014-02-22 11:17:58 +01:00
} ,
core : {
options : {
map : true
} ,
src : 'dist/css/<%= pkg.name %>.css'
} ,
theme : {
options : {
map : true
} ,
src : 'dist/css/<%= pkg.name %>-theme.css'
} ,
docs : {
2017-07-02 15:09:46 -07:00
options : {
map : true
} ,
src : 'docs/assets/css/src/docs.css'
2014-02-22 11:17:58 +01:00
} ,
examples : {
expand : true ,
cwd : 'docs/examples/' ,
src : [ '**/*.css' ] ,
dest : 'docs/examples/'
}
} ,
2017-11-25 18:06:34 -08:00
stylelint : {
2014-03-09 16:09:36 -07:00
options : {
2017-11-25 18:06:34 -08:00
configFile : 'grunt/.stylelintrc' ,
formatter : 'string' ,
ignoreDisables : false ,
failOnError : true ,
outputFile : '' ,
reportNeedlessDisables : false ,
syntax : ''
2014-03-09 16:09:36 -07:00
} ,
2014-08-13 17:47:16 -07:00
dist : [
2017-11-25 18:06:34 -08:00
'less/**/*.less'
] ,
docs : [
'docs/assets/less/**/*.less'
2014-03-09 16:09:36 -07:00
] ,
examples : [
'docs/examples/**/*.css'
2017-11-25 18:06:34 -08:00
]
2014-03-09 16:09:36 -07:00
} ,
2013-12-22 09:25:18 +02:00
cssmin : {
2014-03-11 19:48:14 +02:00
options : {
2015-03-08 21:31:58 -07:00
// 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
2014-03-27 19:45:25 +02:00
compatibility : 'ie8' ,
2014-06-25 01:53:10 +03:00
keepSpecialComments : '*' ,
2015-06-04 21:05:59 -04:00
sourceMap : true ,
2016-07-07 22:58:25 -07:00
sourceMapInlineSources : true ,
2014-12-28 19:58:29 -08:00
advanced : false
2014-03-11 19:48:14 +02:00
} ,
2014-08-13 17:36:07 -07:00
minifyCore : {
src : 'dist/css/<%= pkg.name %>.css' ,
dest : 'dist/css/<%= pkg.name %>.min.css'
} ,
minifyTheme : {
src : 'dist/css/<%= pkg.name %>-theme.css' ,
dest : 'dist/css/<%= pkg.name %>-theme.min.css'
2014-05-19 17:07:31 +10:00
} ,
2017-07-04 14:53:16 -07:00
minifyDocs : {
src : 'docs/assets/css/docs.css' ,
2014-01-29 20:50:10 +01:00
dest : 'docs/assets/css/docs.min.css'
2013-12-22 09:25:18 +02:00
}
} ,
2013-08-18 00:36:51 -07:00
copy : {
fonts : {
2015-02-20 11:22:06 +02:00
expand : true ,
2016-06-20 07:34:27 +02:00
src : 'fonts/**' ,
2013-08-18 00:36:51 -07:00
dest : 'dist/'
2013-12-28 22:47:03 -08:00
} ,
2013-12-31 11:38:32 -08:00
docs : {
2015-02-20 11:22:06 +02:00
expand : true ,
cwd : 'dist/' ,
src : [
'**/*'
] ,
dest : 'docs/dist/'
2013-08-18 00:36:51 -07:00
}
} ,
2013-08-03 19:03:38 -04:00
connect : {
server : {
options : {
port : 3000 ,
base : '.'
2013-05-04 16:55:52 +02:00
}
2013-08-03 19:03:38 -04:00
}
} ,
2013-08-12 15:01:06 -07:00
jekyll : {
2014-11-14 15:00:02 +02:00
options : {
2016-03-07 10:30:09 +02:00
bundleExec : true ,
config : '_config.yml' ,
incremental : false
2014-11-14 15:00:02 +02:00
} ,
docs : { } ,
github : {
options : {
raw : 'github: true'
}
}
2013-08-12 15:01:06 -07:00
} ,
2014-11-14 15:00:02 +02:00
htmlmin : {
dist : {
options : {
2016-07-14 11:04:26 +03:00
collapseBooleanAttributes : true ,
2014-11-14 15:00:02 +02:00
collapseWhitespace : true ,
conservativeCollapse : true ,
2016-07-14 11:04:26 +03:00
decodeEntities : false ,
minifyCSS : {
2016-07-16 21:22:39 -07:00
compatibility : 'ie8' ,
2016-07-14 11:04:26 +03:00
keepSpecialComments : 0
} ,
2014-11-14 15:00:02 +02:00
minifyJS : true ,
2016-07-14 11:04:26 +03:00
minifyURLs : false ,
2016-04-02 10:27:18 +03:00
processConditionalComments : true ,
2014-11-14 15:00:02 +02:00
removeAttributeQuotes : true ,
2016-07-14 11:04:26 +03:00
removeComments : true ,
removeOptionalAttributes : true ,
removeOptionalTags : true ,
removeRedundantAttributes : true ,
removeScriptTypeAttributes : true ,
removeStyleLinkTypeAttributes : true ,
removeTagWhitespace : false ,
sortAttributes : true ,
sortClassName : true
2014-11-14 15:00:02 +02:00
} ,
expand : true ,
cwd : '_gh_pages' ,
dest : '_gh_pages' ,
src : [
'**/*.html' ,
'!examples/**/*.html'
]
}
} ,
2016-05-29 12:23:39 +03:00
pug : {
2014-08-13 17:36:07 -07:00
options : {
pretty : true ,
data : getLessVarsData
} ,
customizerVars : {
2016-05-29 12:23:39 +03:00
src : 'docs/_pug/customizer-variables.pug' ,
2014-08-13 17:36:07 -07:00
dest : 'docs/_includes/customizer-variables.html'
} ,
customizerNav : {
2016-05-29 12:23:39 +03:00
src : 'docs/_pug/customizer-nav.pug' ,
2014-08-13 17:36:07 -07:00
dest : 'docs/_includes/nav/customize.html'
2013-10-17 19:52:16 -07:00
}
} ,
2015-01-20 01:18:06 +02:00
htmllint : {
2013-08-12 15:01:06 -07:00
options : {
2015-01-20 01:18:06 +02:00
ignore : [
'Attribute "autocomplete" not allowed on element "button" at this point.' ,
2016-06-28 22:23:15 +03: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-20 01:18:06 +02:00
'Element "img" is missing required attribute "src".'
2013-10-23 23:25:17 -07:00
]
2013-08-12 15:01:06 -07:00
} ,
2015-01-20 01:18:06 +02:00
src : '_gh_pages/**/*.html'
2013-08-12 15:01:06 -07:00
} ,
2013-08-03 19:03:38 -04:00
watch : {
src : {
2014-08-13 17:47:16 -07:00
files : '<%= jshint.core.src %>' ,
2015-03-27 15:31:56 -05:00
tasks : [ 'jshint:core' , 'qunit' , 'concat' ]
2013-08-03 19:03:38 -04:00
} ,
test : {
files : '<%= jshint.test.src %>' ,
tasks : [ 'jshint:test' , 'qunit' ]
} ,
2013-12-08 19:09:27 -08:00
less : {
2014-07-31 10:21:56 +08:00
files : 'less/**/*.less' ,
2017-07-03 08:58:01 -07:00
tasks : [ 'less' , 'copy' ]
2017-07-02 15:09:46 -07:00
} ,
docs : {
files : 'docs/assets/less/**/*.less' ,
2017-07-03 08:58:01 -07:00
tasks : [ 'less' ]
2013-08-03 19:03:38 -04:00
}
2013-11-01 18:15:25 -07:00
} ,
2013-12-03 18:42:31 -08:00
'saucelabs-qunit' : {
all : {
options : {
build : process . env . TRAVIS _JOB _ID ,
2014-12-08 14:58:06 -08:00
throttled : 10 ,
2014-06-24 12:12:21 -07:00
maxRetries : 3 ,
2015-01-05 12:40:43 -08:00
maxPollRetries : 4 ,
2015-03-01 09:20:00 +01:00
urls : [ 'http://127.0.0.1:3000/js/tests/index.html?hidepassed' ] ,
2014-03-16 20:30:04 -07:00
browsers : grunt . file . readYAML ( 'grunt/sauce_browsers.yml' )
2013-12-03 18:42:31 -08:00
}
}
2014-01-20 13:06:13 -08:00
} ,
exec : {
npmUpdate : {
command : 'npm update'
2014-05-12 22:01:29 -07:00
}
2014-12-02 13:50:20 +02: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
}
2014-12-02 13:50:20 +02:00
2013-08-03 19:03:38 -04:00
} ) ;
2013-05-04 16:55:52 +02:00
2013-08-03 19:03:38 -04:00
// These plugins provide necessary tasks.
2014-03-17 09:12:55 +02:00
require ( 'load-grunt-tasks' ) ( grunt , { scope : 'devDependencies' } ) ;
2014-03-07 08:46:15 +02:00
require ( 'time-grunt' ) ( grunt ) ;
2013-05-04 16:55:52 +02:00
2013-08-12 15:01:06 -07:00
// Docs HTML validation task
2015-01-20 01:18:06 +02:00
grunt . registerTask ( 'validate-html' , [ 'jekyll:docs' , 'htmllint' ] ) ;
2013-08-12 15:01:06 -07:00
2014-05-18 15:52:42 -07:00
var runSubset = function ( subset ) {
return ! process . env . TWBS _TEST || process . env . TWBS _TEST === subset ;
} ;
2014-05-18 15:53:40 -07:00
var isUndefOrNonZero = function ( val ) {
return val === undefined || val !== '0' ;
} ;
2014-05-18 15:52:42 -07:00
2013-08-03 19:03:38 -04:00
// Test task.
2013-12-14 19:09:44 -08:00
var testSubtasks = [ ] ;
// Skip core tests if running a different subset of the test suite
2014-11-19 15:43:23 -08:00
if ( runSubset ( 'core' ) &&
// Skip core tests if this is a Savage build
process . env . TRAVIS _REPO _SLUG !== 'twbs-savage/bootstrap' ) {
2017-11-25 18:06:34 -08:00
testSubtasks = testSubtasks . concat ( [ 'dist-css' , 'dist-js' , 'stylelint:dist' , 'test-js' , 'docs' ] ) ;
2013-12-14 19:09:44 -08:00
}
// Skip HTML validation if running a different subset of the test suite
2014-05-18 15:53:40 -07:00
if ( runSubset ( 'validate-html' ) &&
// Skip HTML5 validator on Travis when [skip validator] is in the commit message
isUndefOrNonZero ( process . env . TWBS _DO _VALIDATOR ) ) {
2013-12-14 19:09:44 -08:00
testSubtasks . push ( 'validate-html' ) ;
}
2013-12-03 18:42:31 -08:00
// Only run Sauce Labs tests if there's a Sauce access key
2014-01-17 11:51:53 -08:00
if ( typeof process . env . SAUCE _ACCESS _KEY !== 'undefined' &&
2013-12-14 19:09:44 -08:00
// Skip Sauce if running a different subset of the test suite
2014-05-18 15:53:40 -07:00
runSubset ( 'sauce-js-unit' ) &&
// Skip Sauce on Travis when [skip sauce] is in the commit message
isUndefOrNonZero ( process . env . TWBS _DO _SAUCE ) ) {
2013-12-03 18:42:31 -08:00
testSubtasks . push ( 'connect' ) ;
testSubtasks . push ( 'saucelabs-qunit' ) ;
2013-08-06 00:39:35 -07:00
}
grunt . registerTask ( 'test' , testSubtasks ) ;
2014-09-17 17:34:57 -07:00
grunt . registerTask ( 'test-js' , [ 'jshint:core' , 'jshint:test' , 'jshint:grunt' , 'jscs:core' , 'jscs:test' , 'jscs:grunt' , 'qunit' ] ) ;
2013-05-04 16:55:52 +02:00
2013-08-03 19:03:38 -04:00
// JS distribution task.
2014-08-28 09:39:41 +08:00
grunt . registerTask ( 'dist-js' , [ 'concat' , 'uglify:core' , 'commonjs' ] ) ;
2013-05-04 16:55:52 +02:00
2013-08-03 19:03:38 -04:00
// CSS distribution task.
2017-07-02 15:09:46 -07:00
grunt . registerTask ( 'less-compile' , [ 'less:compileCore' , 'less:compileTheme' , 'less:compileDocs' ] ) ;
2017-11-26 13:40:33 -08:00
grunt . registerTask ( 'dist-css' , [ 'less-compile' , 'autoprefixer:core' , 'autoprefixer:theme' , 'cssmin:minifyCore' , 'cssmin:minifyTheme' ] ) ;
2013-08-18 00:36:51 -07:00
2013-08-03 19:03:38 -04:00
// Full distribution task.
2014-08-13 17:47:16 -07:00
grunt . registerTask ( 'dist' , [ 'clean:dist' , 'dist-css' , 'copy:fonts' , 'dist-js' ] ) ;
2013-05-04 16:55:52 +02:00
2013-08-03 19:03:38 -04:00
// Default task.
2014-08-13 17:47:16 -07:00
grunt . registerTask ( 'default' , [ 'clean:dist' , 'copy:fonts' , 'test' ] ) ;
2013-08-07 23:06:29 -07:00
2014-12-29 16:54:29 -08:00
grunt . registerTask ( 'build-glyphicons-data' , function ( ) { generateGlyphiconsData . call ( this , grunt ) ; } ) ;
2013-08-07 23:06:29 -07:00
// task for building customizer
2014-01-20 18:02:15 -08:00
grunt . registerTask ( 'build-customizer' , [ 'build-customizer-html' , 'build-raw-files' ] ) ;
2016-05-29 12:23:39 +03:00
grunt . registerTask ( 'build-customizer-html' , 'pug' ) ;
2014-01-14 13:25:27 -08:00
grunt . registerTask ( 'build-raw-files' , 'Add scripts/less files to customizer.' , function ( ) {
var banner = grunt . template . process ( '<%= banner %>' ) ;
2014-03-17 03:33:42 -07:00
generateRawFiles ( grunt , banner ) ;
2014-01-14 13:25:27 -08:00
} ) ;
2014-01-20 13:06:13 -08:00
2014-08-28 09:32:08 +08:00
grunt . registerTask ( 'commonjs' , 'Generate CommonJS entrypoint module in dist dir.' , function ( ) {
2014-08-28 09:39:41 +08:00
var srcFiles = grunt . config . get ( 'concat.bootstrap.src' ) ;
var destFilepath = 'dist/js/npm.js' ;
generateCommonJSModule ( grunt , srcFiles , destFilepath ) ;
2014-08-28 09:24:23 +08:00
} ) ;
2014-08-13 17:47:16 -07:00
// Docs task.
2017-11-26 13:40:33 -08:00
grunt . registerTask ( 'docs-css' , [ 'autoprefixer:docs' , 'autoprefixer:examples' , 'cssmin:minifyDocs' ] ) ;
2017-11-25 18:06:34 -08:00
grunt . registerTask ( 'lint-docs-css' , [ 'stylelint:docs' , 'stylelint:examples' ] ) ;
2014-08-13 17:47:16 -07:00
grunt . registerTask ( 'docs-js' , [ 'uglify:docsJs' , 'uglify:customize' ] ) ;
grunt . registerTask ( 'lint-docs-js' , [ 'jshint:assets' , 'jscs:assets' ] ) ;
2014-12-29 16:54:29 -08:00
grunt . registerTask ( 'docs' , [ 'docs-css' , 'lint-docs-css' , 'docs-js' , 'lint-docs-js' , 'clean:docs' , 'copy:docs' , 'build-glyphicons-data' , 'build-customizer' ] ) ;
2015-12-06 01:30:11 -08:00
grunt . registerTask ( 'docs-github' , [ 'jekyll:github' , 'htmlmin' ] ) ;
2014-08-13 17:47:16 -07:00
2015-12-06 01:30:11 -08:00
grunt . registerTask ( 'prep-release' , [ 'dist' , 'docs' , 'docs-github' , 'compress' ] ) ;
2013-09-18 09:04:09 +03:00
} ;