mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Add license headers in js/dist files
By implementing the same approach of rollup.config.js and replicate it in build-plugins.js, individual plugins will display license headers.
This commit is contained in:
parent
d7f79b06dc
commit
ebc220754b
3 changed files with 15 additions and 7 deletions
11
build/banner.js
Normal file
11
build/banner.js
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
const path = require('path')
|
||||
const pkg = require(path.resolve(__dirname, '../package.json'))
|
||||
const year = new Date().getFullYear()
|
||||
|
||||
module.exports = function () {
|
||||
return `/*!
|
||||
* Bootstrap v${pkg.version} (${pkg.homepage})
|
||||
* Copyright 2011-${year} ${pkg.author}
|
||||
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
||||
*/`
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue