22 lines
640 B
JavaScript
22 lines
640 B
JavaScript
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const cssDir = 'c:/xampp/htdocs/doormileweb/assets/css';
|
|
const files = fs.readdirSync(cssDir).filter(f => f.endsWith('.css'));
|
|
|
|
files.forEach(file => {
|
|
const filePath = path.join(cssDir, file);
|
|
const content = fs.readFileSync(filePath, 'utf8');
|
|
const fontFaceRegex = /@font-face\s*{([^}]*)}/g;
|
|
let match;
|
|
while ((match = fontFaceRegex.exec(content)) !== null) {
|
|
const block = match[1];
|
|
if (!block.includes('src:')) {
|
|
console.log(`FILE: ${file}`);
|
|
console.log(match[0]);
|
|
console.log('---');
|
|
}
|
|
}
|
|
});
|