update bootstrap to version 4.3.1

This commit is contained in:
Mario Vavti
2019-05-10 14:21:36 +02:00
parent 89a2c1a09c
commit 9866053f0c
448 changed files with 29631 additions and 25361 deletions

14
vendor/twbs/bootstrap/build/banner.js vendored Normal file
View File

@@ -0,0 +1,14 @@
'use strict'
const pkg = require('../package.json')
const year = new Date().getFullYear()
function getBanner(pluginFilename) {
return `/*!
* Bootstrap${pluginFilename ? ` ${pluginFilename}` : ''} v${pkg.version} (${pkg.homepage})
* Copyright 2011-${year} ${pkg.author}
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/`
}
module.exports = getBanner