49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
const fs = require("fs");
|
|
const path = require("path");
|
|
|
|
const rootDirs = ["assets/scss", "layouts"];
|
|
const configFiles = [
|
|
{
|
|
filePath: "exampleSite/tailwind.config.js",
|
|
patterns: ["darkmode:\\s*{[^}]*},", 'darkMode:\\s*"class",'],
|
|
},
|
|
{
|
|
filePath: "exampleSite/config.toml",
|
|
patterns: ["\\S*\\.darkmode[^\\]]*\\]\\n*([\\s\\S]*?)(?=\\[|$)"],
|
|
},
|
|
];
|
|
|
|
rootDirs.forEach(removeDarkModeFromPages);
|
|
configFiles.forEach(removeDarkMode);
|
|
|
|
function removeDarkModeFromFiles(filePath, regexPatterns) {
|
|
const fileContent = fs.readFileSync(filePath, "utf8");
|
|
let updatedContent = fileContent;
|
|
regexPatterns.forEach((pattern) => {
|
|
const regex = new RegExp(pattern, "g");
|
|
updatedContent = updatedContent.replace(regex, "");
|
|
});
|
|
fs.writeFileSync(filePath, updatedContent, "utf8");
|
|
}
|
|
|
|
function removeDarkModeFromPages(directoryPath) {
|
|
const files = fs.readdirSync(directoryPath);
|
|
|
|
files.forEach((file) => {
|
|
const filePath = path.join(directoryPath, file);
|
|
const stats = fs.statSync(filePath);
|
|
if (stats.isDirectory()) {
|
|
removeDarkModeFromPages(filePath);
|
|
} else if (stats.isFile()) {
|
|
removeDarkModeFromFiles(filePath, [
|
|
'(?:(?!["])\\S)*dark:(?:(?![,;"])\\S)*',
|
|
]);
|
|
}
|
|
});
|
|
}
|
|
|
|
function removeDarkMode(configFile) {
|
|
const { filePath, patterns } = configFile;
|
|
removeDarkModeFromFiles(filePath, patterns);
|
|
}
|