Welcome to mirror list, hosted at ThFree Co, Russian Federation.

banner.js « build - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c66589f092efc2b1a5f3862d7cd3eb0cbbf828c (plain)
1
2
3
4
5
6
7
8
9
10
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)
  */`
}