Folder renamed: bootstrap
This commit is contained in:
parent
5d68cca01f
commit
ae9d3990be
|
@ -218,15 +218,15 @@ var resources = {
|
|||
},
|
||||
// Bootstrap
|
||||
'bootstrapJS': {
|
||||
'path': 'resources/bootstrap/{version}/bootstrap.min.jsm',
|
||||
'path': 'resources/twitter-bootstrap/{version}/bootstrap.min.jsm',
|
||||
'type': 'application/javascript'
|
||||
},
|
||||
'bootstrapCSS': {
|
||||
'path': 'resources/bootstrap/{version}/bootstrap.min.css',
|
||||
'path': 'resources/twitter-bootstrap/{version}/bootstrap.min.css',
|
||||
'type': 'text/css'
|
||||
},
|
||||
'bootstrapFontsOnly': {
|
||||
'path': 'resources/bootstrap/fonts/'
|
||||
'path': 'resources/twitter-bootstrap/fonts/'
|
||||
},
|
||||
// Bootstrap Daterangepicker
|
||||
'bootstrapDaterangepicker': {
|
||||
|
|
|
@ -160,7 +160,7 @@ shorthands.specialFiles = function (channelHost, channelPath, searchString) {
|
|||
} else if (Regex.BOOTSTRAP_FONTS_ONLY.test(channelPath)) {
|
||||
return {
|
||||
'source': channelHost,
|
||||
'path': 'resources/bootstrap/fonts/' + helpers.extractFilenameFromPath(channelPath),
|
||||
'path': 'resources/twitter-bootstrap/fonts/' + helpers.extractFilenameFromPath(channelPath),
|
||||
'bundle': 'Bootstrap (Fonts)'
|
||||
};
|
||||
} else if (channelHost + channelPath === 'cdn.jsdelivr.net/npm/js-cookie@beta/dist/js.cookie.min.js') {
|
||||
|
|
|
@ -139,10 +139,10 @@ targets.setLastVersion = function (type, version) {
|
|||
return '4.4.0';
|
||||
} else if (type.startsWith('/bootbox.js/5.')) {
|
||||
return '5.5.2';
|
||||
} else if (type.startsWith('/bootstrap/3.')) {
|
||||
} else if (type.startsWith('/twitter-bootstrap/3.')) {
|
||||
if (helpers.compareVersion('3.3.7', version)) return '3.3.7'; // <= 3.3.7
|
||||
else return '3.4.1';
|
||||
} else if (type.startsWith('/bootstrap/4.')) {
|
||||
} else if (type.startsWith('/twitter-bootstrap/4.')) {
|
||||
return '4.6.0';
|
||||
} else if (type.startsWith('/bootstrap-daterangepicker/2.')) {
|
||||
return '2.1.27';
|
||||
|
|
Loading…
Reference in New Issue