summaryrefslogtreecommitdiffstats
path: root/build/banner.js
blob: df82ff32edf3dcb49ce628cd0558297e9cca2929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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/main/LICENSE)
  */`
}

module.exports = getBanner