From: Julien Déramond Date: Wed, 15 Jul 2026 03:21:11 +0000 (+0200) Subject: Fix compiled banner version and wire the live banner into change-version.mjs (#42670) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fheads%2Fv6-dev;p=thirdparty%2Fbootstrap.git Fix compiled banner version and wire the live banner into change-version.mjs (#42670) --- diff --git a/build/change-version.mjs b/build/change-version.mjs index c1433d5780..22676d24d7 100644 --- a/build/change-version.mjs +++ b/build/change-version.mjs @@ -19,7 +19,7 @@ const FILES = [ 'config.yml', 'js/src/base-component.js', 'package.js', - 'scss/mixins/_banner.scss', + 'scss/_banner.scss', 'site/data/docs-versions.yml' ] diff --git a/scss/_banner.scss b/scss/_banner.scss index c96aa3ca4f..f87200bea8 100644 --- a/scss/_banner.scss +++ b/scss/_banner.scss @@ -1,7 +1,7 @@ $file: "" !default; /*! - * Bootstrap #{$file} v6.0.0-dev (https://getbootstrap.com/) + * Bootstrap #{$file} v6.0.0-alpha1 (https://getbootstrap.com/) * Copyright 2011-2026 The Bootstrap Authors * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) */ diff --git a/scss/bootstrap.scss b/scss/bootstrap.scss index 6eb47e0f1b..fc8be3f43c 100644 --- a/scss/bootstrap.scss +++ b/scss/bootstrap.scss @@ -1,6 +1,6 @@ +// scss-docs-start import-stack @forward "banner"; -// scss-docs-start import-stack @forward "colors"; // Global CSS variables, layer definitions, and configuration diff --git a/scss/mixins/_banner.scss b/scss/mixins/_banner.scss deleted file mode 100644 index 1fd399c161..0000000000 --- a/scss/mixins/_banner.scss +++ /dev/null @@ -1,7 +0,0 @@ -@mixin bsBanner($file) { - /*! - * Bootstrap #{$file} v6.0.0-alpha1 (https://getbootstrap.com/) - * Copyright 2011-2026 The Bootstrap Authors - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -}