2015-11-04 23:49:03 +03:00
module . exports = function ( grunt ) {
2015-11-26 01:01:18 +03:00
'use strict' ;
2014-10-02 13:36:05 +04:00
2015-11-26 01:01:18 +03:00
// Force use of Unix newlines
grunt . util . linefeed = '\n' ;
2014-10-05 11:32:48 +04:00
2015-11-26 01:01:18 +03:00
RegExp . quote = function ( string ) {
return string . replace ( /[-\\^$*+?.()|[\]{}]/g , '\\$&' ) ;
} ;
2015-12-06 16:56:59 +03:00
var referenceDocNotice =
'$1\n\n'
+ '[//]: # DO NOT EDIT IT WILL BE OVERWRITTEN - copy of bootstrap documentation generated by grunt docs-copy-bootstrap-docs\n\n'
+ '{% callout info %}\n**Bootstrap Reference Documentation** \n'
2015-12-23 23:12:39 +03:00
+ 'This is a part of the reference documentation from <a href="http://getbootstrap.com">Bootstrap</a>. \n'
+ 'It is included here to demonstrate rendering with Material Design for Bootstrap default styling. \n'
2015-12-22 04:05:18 +03:00
+ 'See the <a href="/material-design/buttons">Material Design</a> section for more elements and customization options.\n'
2015-12-06 16:56:59 +03:00
+ '{% endcallout %}'
+ '\n\n$2'
2015-11-26 01:01:18 +03:00
var fs = require ( 'fs' ) ;
2015-11-20 23:24:39 +03:00
var path = require ( 'path' ) ;
2015-11-26 01:01:18 +03:00
var glob = require ( 'glob' ) ;
var isTravis = require ( 'is-travis' ) ;
var npmShrinkwrap = require ( 'npm-shrinkwrap' ) ;
var mq4HoverShim = require ( 'mq4-hover-shim' ) ;
var autoprefixer = require ( 'autoprefixer' ) ( {
browsers : [
2015-12-01 19:49:46 +03:00
//
// Official browser support policy:
// http://v4-alpha.getbootstrap.com/getting-started/browsers-devices/#supported-browsers
//
'Chrome >= 35' , // Exact version number here is kinda arbitrary
// Rather than using Autoprefixer's native "Firefox ESR" version specifier string,
// we deliberately hardcode the number. This is to avoid unwittingly severely breaking the previous ESR in the event that:
// (a) we happen to ship a new Bootstrap release soon after the release of a new ESR,
// such that folks haven't yet had a reasonable amount of time to upgrade; and
// (b) the new ESR has unprefixed CSS properties/values whose absence would severely break webpages
// (e.g. `box-sizing`, as opposed to `background: linear-gradient(...)`).
// Since they've been unprefixed, Autoprefixer will stop prefixing them,
// thus causing them to not work in the previous ESR (where the prefixes were required).
'Firefox >= 31' , // Current Firefox Extended Support Release (ESR)
2015-11-26 01:01:18 +03:00
// Note: Edge versions in Autoprefixer & Can I Use refer to the EdgeHTML rendering engine version,
// NOT the Edge app version shown in Edge's "About" screen.
// For example, at the time of writing, Edge 20 on an up-to-date system uses EdgeHTML 12.
// See also https://github.com/Fyrd/caniuse/issues/1928
'Edge >= 12' ,
'Explorer >= 9' ,
2015-12-01 19:49:46 +03:00
// Out of leniency, we prefix these 1 version further back than the official policy.
2015-12-10 18:02:44 +03:00
'iOS >= 8' ,
'Safari >= 8' ,
2015-12-01 19:49:46 +03:00
// The following remain NOT officially supported, but we're lenient and include their prefixes to avoid severely breaking in them.
'Android 2.3' ,
'Android >= 4' ,
'Opera >= 12'
2015-11-26 01:01:18 +03:00
]
} ) ;
// Project configuration.
2014-11-26 15:28:22 +03:00
grunt . initConfig ( {
2014-10-03 23:15:31 +04:00
2015-11-26 01:01:18 +03:00
// Metadata.
2015-11-21 00:17:08 +03:00
pkg : grunt . file . readJSON ( 'package.json' ) ,
2015-11-26 01:01:18 +03:00
banner : '/*!\n' +
' * Bootstrap Material Design v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
' * Copyright 2014-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
' * Licensed under MIT (https://github.com/FezVrasta/bootstrap-material-design/blob/master/LICENSE)\n' +
' */\n' ,
2015-11-20 23:24:39 +03:00
2015-11-20 21:21:02 +03:00
// Task configuration.
clean : {
dist : 'dist' ,
2015-12-29 05:15:56 +03:00
'dist-js' : 'dist/js' ,
2016-01-04 19:52:35 +03:00
'docs-dist-js' : 'docs/dist/js' ,
2015-11-20 21:21:02 +03:00
docs : 'docs/dist'
} ,
2015-11-26 01:01:18 +03:00
eslint : {
2015-11-07 02:41:39 +03:00
options : {
2015-11-26 01:01:18 +03:00
configFile : 'js/.eslintrc'
2015-11-07 02:41:39 +03:00
} ,
2015-12-04 04:09:01 +03:00
target : [ 'js/src/*.js' , 'docs/assets/js/src/*.js' ]
2015-11-07 02:41:39 +03:00
} ,
2015-11-20 00:58:21 +03:00
2015-11-26 01:01:18 +03:00
jscs : {
options : {
config : 'js/.jscsrc'
} ,
grunt : {
src : [ 'Gruntfile.js' , 'grunt/*.js' ]
} ,
core : {
src : 'js/src/*.js'
} ,
test : {
src : 'js/tests/unit/*.js'
} ,
2016-01-04 19:52:35 +03:00
docs : {
2015-11-03 04:17:00 +03:00
options : {
2015-11-26 01:01:18 +03:00
requireCamelCaseOrUpperCaseIdentifiers : null
} ,
src : [ 'docs/assets/js/src/*.js' , 'docs/assets/js/*.js' , '!docs/assets/js/*.min.js' ]
}
} ,
2015-11-05 01:54:57 +03:00
2015-11-26 01:01:18 +03:00
stamp : {
options : {
2015-12-29 07:06:48 +03:00
banner : '<%= banner %>\n'
2015-11-26 01:01:18 +03:00
} ,
2015-12-29 05:15:56 +03:00
core : {
2015-11-26 01:01:18 +03:00
files : {
2015-12-29 07:06:48 +03:00
src : 'dist/js/*.js'
2015-11-03 04:17:00 +03:00
}
2015-11-02 22:42:29 +03:00
}
} ,
2014-12-04 15:17:45 +03:00
2015-12-31 00:51:52 +03:00
//concat: {
// options: {
// stripBanners: false,
// sourceMap: true
// },
2016-01-04 20:28:12 +03:00
2015-11-26 01:01:18 +03:00
uglify : {
options : {
2015-12-29 05:15:56 +03:00
compress : {
2015-12-24 02:53:20 +03:00
warnings : true
2014-10-03 23:15:31 +04:00
} ,
2015-12-24 02:59:39 +03:00
mangle : false ,
2015-11-26 01:01:18 +03:00
preserveComments : /^!|@preserve|@license|@cc_on/i
2015-03-09 19:10:44 +03:00
} ,
2015-12-31 00:51:52 +03:00
dist : {
files : {
2016-01-04 17:23:10 +03:00
'dist/js/bootstrap-material-design.iife.min.js' : 'dist/js/bootstrap-material-design.iife.js' ,
'dist/js/bootstrap-material-design.umd.min.js' : 'dist/js/bootstrap-material-design.umd.js' ,
'dist/js/bootstrap-material-design.es6.min.js' : 'dist/js/bootstrap-material-design.es6.js'
2015-12-31 00:51:52 +03:00
}
2016-01-04 19:52:35 +03:00
} ,
2015-12-31 00:51:52 +03:00
2016-01-04 19:52:35 +03:00
'docs-vendor' : {
options : {
compress : false
} ,
src : 'docs/assets/js/vendor/*.js' ,
//dest: 'docs/assets/js/docs.min.js'
dest : 'docs/dist/js/docs-vendor.min.js'
} ,
docs : {
files : {
'docs/dist/js/docs.iife.min.js' : 'docs/dist/js/docs.iife.js'
}
}
2014-11-26 15:28:22 +03:00
} ,
2015-11-26 01:01:18 +03:00
qunit : {
2014-11-26 15:28:22 +03:00
options : {
2015-11-26 01:01:18 +03:00
inject : 'js/tests/unit/phantom.js'
2014-11-26 15:28:22 +03:00
} ,
2015-11-26 01:01:18 +03:00
files : 'js/tests/index.html'
} ,
// CSS build configuration
scsslint : {
options : {
bundleExec : true ,
config : 'scss/.scss-lint.yml' ,
reporterOutput : null
2015-03-09 19:10:44 +03:00
} ,
2015-12-07 22:34:46 +03:00
src : [ 'scss/**/*.scss' , '!scss/_normalize.scss' ]
2015-11-26 01:01:18 +03:00
} ,
postcss : {
core : {
options : {
map : true ,
processors : [
2015-12-03 20:35:51 +03:00
mq4HoverShim . postprocessorFor ( { hoverSelectorPrefix : '.bs-true-hover ' } ) ,
2015-11-26 01:01:18 +03:00
autoprefixer
]
} ,
src : 'dist/css/*.css'
2015-11-20 23:24:39 +03:00
} ,
docs : {
2015-11-26 01:01:18 +03:00
options : {
processors : [
autoprefixer
]
} ,
2015-12-03 01:31:26 +03:00
src : 'docs/assets/css/*.css'
2015-11-20 23:24:39 +03:00
} ,
examples : {
2015-11-26 01:01:18 +03:00
options : {
processors : [
autoprefixer
]
} ,
2015-11-20 23:24:39 +03:00
expand : true ,
cwd : 'docs/examples/' ,
src : [ '**/*.css' ] ,
dest : 'docs/examples/'
}
} ,
2015-11-20 21:21:02 +03:00
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
2015-11-26 01:01:18 +03:00
compatibility : 'ie9' ,
2015-11-20 21:21:02 +03:00
keepSpecialComments : '*' ,
sourceMap : true ,
2015-12-10 18:02:44 +03:00
advanced : false
2015-03-09 19:10:44 +03:00
} ,
2015-11-26 01:01:18 +03:00
core : {
2016-01-04 18:11:31 +03:00
files : [
{
expand : true ,
cwd : 'dist/css' ,
src : [ '*.css' , '!*.min.css' ] ,
dest : 'dist/css' ,
ext : '.min.css'
}
]
2015-11-20 21:21:02 +03:00
} ,
docs : {
2015-12-03 01:31:26 +03:00
src : 'docs/assets/css/docs.css' ,
2015-11-20 21:21:02 +03:00
dest : 'docs/assets/css/docs.min.css'
2014-12-04 15:30:23 +03:00
}
} ,
2015-11-26 01:01:18 +03:00
csscomb : {
options : {
config : 'scss/.csscomb.json'
2014-12-04 15:17:45 +03:00
} ,
2015-11-26 01:01:18 +03:00
dist : {
expand : true ,
cwd : 'dist/css/' ,
src : [ '*.css' , '!*.min.css' ] ,
dest : 'dist/css/'
2014-11-26 15:28:22 +03:00
} ,
2015-11-26 01:01:18 +03:00
examples : {
2014-11-26 15:28:22 +03:00
expand : true ,
2015-11-26 01:01:18 +03:00
cwd : 'docs/examples/' ,
src : '**/*.css' ,
dest : 'docs/examples/'
2015-11-20 23:24:39 +03:00
} ,
2015-11-26 01:01:18 +03:00
docs : {
src : 'docs/assets/css/src/docs.css' ,
dest : 'docs/assets/css/src/docs.css'
}
} ,
copy : {
2015-12-06 19:08:47 +03:00
'bs-docs-js-vendor' : {
expand : true ,
cwd : '../bootstrap/docs/assets/js/vendor' ,
src : [
2015-12-24 02:53:20 +03:00
'**/*' ,
'!tether.min.js' ,
2015-12-24 17:13:20 +03:00
'!jquery.min.js'
2015-12-06 19:08:47 +03:00
] ,
dest : 'docs/assets/js/vendor/'
} ,
2015-12-21 19:42:29 +03:00
'bs-docs-plugins' : {
expand : true ,
cwd : '../bootstrap/docs/_plugins' ,
src : [
'**/*'
] ,
dest : 'docs/_plugins/'
} ,
2015-12-06 19:08:47 +03:00
2015-12-04 17:53:46 +03:00
'bs-docs-scss' : {
2015-12-06 16:56:59 +03:00
options : {
// https://regex101.com/r/hG8lU4/1
process : function ( content , srcpath ) {
2016-01-04 18:11:31 +03:00
return content . replace ( /([\s\S]+)/mg , '// DO NOT EDIT IT WILL BE OVERWRITTEN - copy of bootstrap documentation generated by grunt docs-copy-bootstrap-docs\n\n$1' ) ;
2015-12-06 16:56:59 +03:00
}
} ,
2015-12-04 17:53:46 +03:00
expand : true ,
cwd : '../bootstrap/docs/assets/scss' ,
src : [
'**/*' ,
'!docs.scss' // keep variable customizations
] ,
dest : 'docs/assets/scss/'
} ,
2015-12-03 23:18:30 +03:00
'bs-docs-components' : {
2015-12-06 16:56:59 +03:00
options : {
// //https://regex101.com/r/cZ7aO8/2
process : function ( content , srcpath ) {
return content . replace ( /(---[\s\S]+?---)([\s\S]+)/mg , referenceDocNotice ) ;
}
} ,
2015-12-03 23:15:52 +03:00
expand : true ,
cwd : '../bootstrap/docs/components' ,
src : [
'**/*'
] ,
dest : 'docs/components/'
2015-12-04 00:08:00 +03:00
} ,
'bs-docs-content' : {
2015-12-23 23:12:39 +03:00
options : {
// https://regex101.com/r/cZ7aO8/2
process : function ( content , srcpath ) {
return content
2015-12-24 18:10:52 +03:00
// insert docs reference
2015-12-23 23:12:39 +03:00
. replace ( /(---[\s\S]+?---)([\s\S]+)/mg , referenceDocNotice )
// remove sample text 'display' as this is a particular style and is confusing
. replace ( /Fancy display heading/ , 'Fancy heading' ) ;
}
} ,
2015-12-10 18:02:44 +03:00
expand : true ,
cwd : '../bootstrap/docs/content' ,
src : [
'**/*'
] ,
dest : 'docs/content/'
} ,
'bs-docs-examples' : {
2015-12-06 16:56:59 +03:00
options : {
// //https://regex101.com/r/cZ7aO8/2
process : function ( content , srcpath ) {
2015-12-10 18:02:44 +03:00
return content . replace ( /(---[\s\S]+?---)([\s\S]+)/mg , referenceDocNotice ) ;
2015-12-06 16:56:59 +03:00
}
} ,
2015-12-04 00:08:00 +03:00
expand : true ,
2015-12-10 18:02:44 +03:00
cwd : '../bootstrap/docs/examples' ,
2015-12-04 00:08:00 +03:00
src : [
'**/*'
] ,
2015-12-10 18:02:44 +03:00
dest : 'docs/examples/'
2014-11-26 15:28:22 +03:00
}
} ,
2015-11-26 01:01:18 +03:00
connect : {
server : {
options : {
port : 3000 ,
base : '.'
2014-12-04 15:17:45 +03:00
}
}
} ,
2015-11-26 01:01:18 +03:00
jekyll : {
2014-12-05 11:25:06 +03:00
options : {
2015-11-26 01:01:18 +03:00
bundleExec : true ,
config : '_config.yml' ,
incremental : false
2014-12-05 11:25:06 +03:00
} ,
2015-11-26 01:01:18 +03:00
docs : { } ,
github : {
2014-12-05 11:25:06 +03:00
options : {
2015-12-24 01:45:54 +03:00
//raw: 'github: true'
raw : 'baseurl: "/bootstrap-material-design"'
2014-12-05 11:25:06 +03:00
}
}
} ,
2015-11-26 01:01:18 +03:00
htmllint : {
2014-11-26 15:28:22 +03:00
options : {
2015-11-26 01:01:18 +03:00
ignore : [
'Element “img” is missing required attribute “src”.' ,
'Attribute “autocomplete” is only allowed when the input type is “color”, “date”, “datetime”, “datetime-local”, “email”, “month”, “number”, “password”, “range”, “search”, “tel”, “text”, “time”, “url”, or “week”.' ,
'Attribute “autocomplete” not allowed on element “button” at this point.' ,
'Element “div” not allowed as child of element “progress” in this context. (Suppressing further errors from this subtree.)' ,
'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).' ,
'The “datetime” input type is not supported in all browsers. Please be sure to test, and consider using a polyfill.'
2014-11-26 15:28:22 +03:00
]
2015-11-20 23:24:39 +03:00
} ,
2015-11-26 01:01:18 +03:00
src : [ '_gh_pages/**/*.html' , 'js/tests/visual/*.html' ]
2014-11-26 15:28:22 +03:00
} ,
2015-11-20 23:24:39 +03:00
2015-11-26 01:01:18 +03:00
watch : {
src : {
files : '<%= jscs.core.src %>' ,
2015-12-24 18:10:52 +03:00
tasks : [ 'babel:core' , 'babel:docs' ] // only watch/gen local non-minified sources (quicker)
2015-11-20 23:24:39 +03:00
} ,
2015-12-03 20:35:51 +03:00
2015-12-04 04:09:01 +03:00
docsjs : {
files : [ 'docs/assets/js/src/*.js' ] ,
2015-12-04 20:04:02 +03:00
tasks : [ 'babel:docs' ]
2015-12-04 04:09:01 +03:00
} ,
2015-12-03 20:35:51 +03:00
// FIXME: restore this after getting fundamentals done, just trying to reduce churn while developing
//sass: {
// files: 'scss/**/*.scss',
// tasks: ['dist-css', 'docs']
//},
2015-12-03 01:31:26 +03:00
docs : { // watch both the source and docs scss
files : [ 'docs/assets/scss/**/*.scss' , 'scss/**/*.scss' ] ,
2015-12-10 21:22:29 +03:00
tasks : [ 'scsslint' , 'sass:docs' , 'postcss:docs' ] //FIXME: docs-css yanks sourcemap from local docs.css, working around just doing the minimal compile here ['docs-css'] //['dist-css', 'docs']
2015-11-20 23:24:39 +03:00
}
} ,
2015-11-26 01:01:18 +03:00
'saucelabs-qunit' : {
all : {
2015-11-21 00:17:08 +03:00
options : {
2015-11-26 01:01:18 +03:00
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' )
}
2015-11-21 00:17:08 +03:00
}
} ,
2014-12-15 18:16:33 +03:00
exec : {
2015-11-26 01:01:18 +03:00
npmUpdate : {
command : 'npm update'
2015-12-31 00:51:52 +03:00
} ,
2016-01-04 19:52:35 +03:00
'rollup-docs-iife' : {
command : 'rollup -c grunt/rollup.docs.iife.config.js'
} ,
2016-01-04 17:23:10 +03:00
'rollup-iife' : {
2016-01-04 19:52:35 +03:00
command : 'rollup -c grunt/rollup.iife.config.js'
2016-01-04 17:23:10 +03:00
} ,
2015-12-31 00:51:52 +03:00
'rollup-umd' : {
2016-01-04 19:52:35 +03:00
command : 'rollup -c grunt/rollup.umd.config.js'
2015-12-31 00:51:52 +03:00
} ,
'rollup-es6' : {
2016-01-04 19:52:35 +03:00
command : 'rollup -c grunt/rollup.es6.config.js'
2015-11-26 01:01:18 +03:00
}
} ,
buildcontrol : {
options : {
dir : '_gh_pages' ,
commit : true ,
push : true ,
message : 'Built %sourceName% from commit %sourceCommit% on branch %sourceBranch%'
2014-12-15 18:16:33 +03:00
} ,
2015-11-26 01:01:18 +03:00
pages : {
options : {
2015-12-03 00:02:51 +03:00
// FIXME: change this when we are ready!!!
//remote: 'git@github.com:FezVrasta/bootstrap-material-design.git',
remote : 'git@github.com:rosskevin/bootstrap-material-design.git' ,
2015-11-26 01:01:18 +03:00
branch : 'gh-pages'
}
2014-12-15 18:16:33 +03:00
}
2015-12-03 20:35:51 +03:00
} ,
compress : {
main : {
options : {
archive : 'bootstrap-material-design-<%= pkg.version %>-dist.zip' ,
mode : 'zip' ,
level : 9 ,
pretty : true
} ,
files : [
{
expand : true ,
cwd : 'dist/' ,
src : [ '**' ] ,
dest : 'bootstrap-material-design-<%= pkg.version %>-dist'
}
]
}
2014-11-26 15:28:22 +03:00
}
2015-12-03 20:35:51 +03:00
2014-11-26 15:28:22 +03:00
} ) ;
2015-11-20 00:58:21 +03:00
2015-11-26 01:01:18 +03:00
// These plugins provide necessary tasks.
2015-12-03 20:35:51 +03:00
require ( 'load-grunt-tasks' ) ( grunt , {
scope : 'devDependencies' ,
2015-11-26 01:01:18 +03:00
// Exclude Sass compilers. We choose the one to load later on.
2015-12-03 20:35:51 +03:00
pattern : [ 'grunt-*' , '!grunt-sass' , '!grunt-contrib-sass' ]
} ) ;
2015-11-26 01:01:18 +03:00
require ( 'time-grunt' ) ( grunt ) ;
2015-11-20 23:24:39 +03:00
2015-11-20 00:58:21 +03:00
// Docs HTML validation task
grunt . registerTask ( 'validate-html' , [ 'jekyll:docs' , 'htmllint' ] ) ;
2015-11-26 01:01:18 +03:00
var runSubset = function ( subset ) {
2015-12-03 20:35:51 +03:00
return ! process . env . MDB _TEST || process . env . MDB _TEST === subset ;
2015-11-26 01:01:18 +03:00
} ;
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' , 'test-js' , '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
2015-12-03 20:35:51 +03:00
isUndefOrNonZero ( process . env . MDB _DO _VALIDATOR ) ) {
2015-11-26 01:01:18 +03:00
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
2015-12-03 20:35:51 +03:00
isUndefOrNonZero ( process . env . MDB _DO _SAUCE ) ) {
2015-12-04 20:04:02 +03:00
testSubtasks . push ( 'babel:core' ) ;
2015-11-26 01:01:18 +03:00
testSubtasks . push ( 'connect' ) ;
testSubtasks . push ( 'saucelabs-qunit' ) ;
}
grunt . registerTask ( 'test' , testSubtasks ) ;
grunt . registerTask ( 'test-js' , [ 'eslint' , 'jscs:core' , 'jscs:test' , 'jscs:grunt' , 'qunit' ] ) ;
// JS distribution task.
2015-12-29 05:15:56 +03:00
grunt . registerTask ( 'dist-js' , [
'clean:dist-js' ,
'eslint' ,
2016-01-04 18:11:31 +03:00
'jscs:grunt' ,
'jscs:core' ,
'jscs:test' ,
2016-01-04 17:23:10 +03:00
'exec:rollup-iife' ,
2015-12-31 00:51:52 +03:00
'exec:rollup-umd' ,
'exec:rollup-es6' ,
2015-12-29 07:06:48 +03:00
'stamp' ,
2016-01-04 19:52:35 +03:00
'uglify:dist'
] ) ;
grunt . registerTask ( 'docs-js' , [
'clean:docs-dist-js' ,
'eslint' ,
'jscs:docs' ,
'exec:rollup-docs-iife' ,
'uglify:docs' ,
'uglify:docs-vendor'
2015-12-29 05:15:56 +03:00
] ) ;
2015-11-26 01:01:18 +03:00
2016-01-04 19:52:35 +03:00
2015-11-26 01:01:18 +03:00
grunt . registerTask ( 'test-scss' , [ 'scsslint' ] ) ;
// CSS distribution task.
// Supported Compilers: sass (Ruby) and libsass.
( function ( sassCompilerName ) {
require ( './grunt/bs-sass-compile/' + sassCompilerName + '.js' ) ( grunt ) ;
2015-12-03 20:35:51 +03:00
} ) ( process . env . MDB _SASS || 'libsass' ) ;
2015-11-26 01:01:18 +03:00
// grunt.registerTask('sass-compile', ['sass:core', 'sass:extras', 'sass:docs']);
grunt . registerTask ( 'sass-compile' , [ 'sass:core' , 'sass:docs' ] ) ;
grunt . registerTask ( 'dist-css' , [ 'sass-compile' , 'postcss:core' , 'csscomb:dist' , 'cssmin:core' , 'cssmin:docs' ] ) ;
// Full distribution task.
2015-12-24 19:44:35 +03:00
grunt . registerTask ( 'dist' , [ 'clean:dist' , 'dist-css' , 'dist-js' , 'docs' ] ) ;
2014-11-26 15:28:22 +03:00
2015-11-20 21:21:02 +03:00
// Default task.
2015-11-26 01:01:18 +03:00
grunt . registerTask ( 'default' , [ 'clean:dist' , 'test' ] ) ;
2014-11-26 15:28:22 +03:00
2015-12-24 18:10:52 +03:00
//------
// Docs tasks
// Independent task to be run when we are ready to sync the bootstrap repo's docs locally.
// Should be automated with no need for intervention (other than pulling the right bootstrap release locally)
2015-12-10 18:02:44 +03:00
grunt . registerTask ( 'docs-copy-bootstrap-docs' , [
'copy:bs-docs-js-vendor' ,
'copy:bs-docs-scss' ,
'copy:bs-docs-components' ,
'copy:bs-docs-content' ,
2015-12-21 19:42:29 +03:00
'copy:bs-docs-examples' ,
'copy:bs-docs-plugins'
2015-12-10 18:02:44 +03:00
] ) ;
2015-12-24 18:10:52 +03:00
grunt . registerTask ( 'docs-css' , [ 'sass:docs' , 'postcss:docs' , 'postcss:examples' , 'csscomb:docs' , 'csscomb:examples' , 'cssmin:docs' ] ) ;
2016-01-04 19:52:35 +03:00
2015-12-24 18:10:52 +03:00
grunt . registerTask ( 'docs' , [ 'clean:docs' , 'docs-css' , 'docs-js' ] ) ;
//------
2015-12-04 17:53:46 +03:00
2015-12-24 18:10:52 +03:00
//------
// Release and publish
2015-12-10 18:02:44 +03:00
grunt . registerTask ( 'docs-github' , [ 'jekyll:github' ] ) ;
grunt . registerTask ( 'prep-release' , [ 'dist' , 'docs' , 'docs-github' , 'compress' ] ) ;
2015-12-24 01:45:54 +03:00
grunt . registerTask ( 'publish' , [ 'prep-release' , 'buildcontrol:pages' ] ) ;
2015-12-24 18:10:52 +03:00
//------
2015-11-26 01:01:18 +03:00
// 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 ( ) ;
2015-12-03 20:35:51 +03:00
npmShrinkwrap ( { dev : true , dirname : _ _dirname } , function ( err ) {
2015-11-26 01:01:18 +03:00
if ( err ) {
grunt . fail . warn ( err ) ;
}
var dest = 'grunt/npm-shrinkwrap.json' ;
fs . renameSync ( 'npm-shrinkwrap.json' , dest ) ;
grunt . log . writeln ( 'File ' + dest . cyan + ' updated.' ) ;
done ( ) ;
} ) ;
} ) ;
2015-12-29 05:15:56 +03:00
2015-12-29 07:06:48 +03:00
//grunt.registerTask('debug', function () {
2016-01-04 20:28:12 +03:00
// console.log('');
2015-12-29 07:06:48 +03:00
//});
2014-10-02 13:36:05 +04:00
} ;