Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bin/check_modules.pl
Original file line number Diff line number Diff line change
Expand Up @@ -746,8 +746,8 @@ sub check_apps {
my $node_version_str = qx/node -v/;
my ($node_version) = $node_version_str =~ m/v(\d+)\./;

say "\n**The version of node should be at least 20. You have version $node_version."
if $node_version < 20;
say "\n**The version of node should be at least 22. You have version $node_version."
if $node_version < 22;

return;
}
Expand Down
2 changes: 1 addition & 1 deletion htdocs/generate-assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const processFile = async (file, _details) => {
result = sass.compile(filePath, {
sourceMap: argv.enableSourcemaps,
// Silence warnings about bootstrap usage of deprecated sass methods.
silenceDeprecations: ['import', 'global-builtin', 'color-functions']
silenceDeprecations: ['import', 'global-builtin', 'color-functions', 'if-function']
});
} catch (e) {
console.log(`\x1b[31mIn ${file}:`);
Expand Down
2 changes: 1 addition & 1 deletion htdocs/js/MathJaxConfig/bs-color-scheme.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
if (MathJax.loader) MathJax.loader.checkVersion('[bs-color-scheme]', '4.1.1', 'extension');
if (MathJax.loader) MathJax.loader.checkVersion('[bs-color-scheme]', '4.1.2', 'extension');

const switchToBSStyle = (obj, key = '@media (prefers-color-scheme: dark)') => {
obj["[data-bs-theme='dark']"] = obj[key];
Expand Down
Loading
Loading