summaryrefslogtreecommitdiffstats
path: root/build/banner.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-15 11:37:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2023-09-15 11:37:20 +0000
commit22daa00afb1a5d628e0267fba0f062c4f8fb5613 (patch)
treec954c1be5487c69839459d79d74f139e3ae28011 /build/banner.js
parentAdding upstream version 5.3.1+dfsg. (diff)
downloadbootstrap-html-upstream.tar.xz
bootstrap-html-upstream.zip
Adding upstream version 5.3.2+dfsg.upstream/5.3.2+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/banner.js')
-rw-r--r--build/banner.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/build/banner.js b/build/banner.js
deleted file mode 100644
index a022f1c..0000000
--- a/build/banner.js
+++ /dev/null
@@ -1,15 +0,0 @@
-'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