Remove apparently unnecessary tooltip bootstrap scss

This commit is contained in:
JC Brand 2021-03-19 12:37:51 +01:00
parent 453b993cfb
commit fde371b90f
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,6 @@
@import "bootstrap/scss/alert"; @import "bootstrap/scss/alert";
@import "bootstrap/scss/media"; @import "bootstrap/scss/media";
@import "bootstrap/scss/close"; @import "bootstrap/scss/close";
@import "bootstrap/scss/tooltip";
@import "bootstrap/scss/popover"; @import "bootstrap/scss/popover";
@import "bootstrap/scss/utilities"; @import "bootstrap/scss/utilities";
} }

View File

@ -1,7 +1,7 @@
/* global __dirname, module, process */ /* global __dirname, module, process */
const path = require('path'); const path = require('path');
let bootstrap_ignore_modules = ['carousel', 'scrollspy']; let bootstrap_ignore_modules = ['carousel', 'scrollspy', 'tooltip', 'toast'];
const BOOTSTRAP_IGNORE_MODULES = (process.env.BOOTSTRAP_IGNORE_MODULES || '').replace(/ /g, '').trim(); const BOOTSTRAP_IGNORE_MODULES = (process.env.BOOTSTRAP_IGNORE_MODULES || '').replace(/ /g, '').trim();
if (BOOTSTRAP_IGNORE_MODULES.length > 0) { if (BOOTSTRAP_IGNORE_MODULES.length > 0) {