2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-21 01:39:00 +00:00
iconify/components/react/cleanup.js

22 lines
515 B
JavaScript
Raw Normal View History

/* eslint-disable */
const { readFileSync, writeFileSync } = require('fs');
// Text to ad
const text = "'use client'";
// List of files to fix
['iconify', 'offline'].forEach((prefix) => {
['js', 'cjs', 'mjs'].forEach((ext) => {
const file = `dist/${prefix}.${ext}`;
try {
const content = readFileSync(file, 'utf8');
if (!content.startsWith(text)) {
writeFileSync(file, text + '\n\n' + content, 'utf8');
console.log('Added client only statement to ' + file);
}
} catch {
//
}
});
});