Files
lucide/packages/lucide-solid/scripts/replaceVersion.mjs

14 lines
429 B
JavaScript
Raw Normal View History

import fs from 'fs';
import path from 'path';
import pkg from '../package.json' assert { type: 'json' };
const files = ['dist/source/lucide-solid.js', 'dist/types/lucide-solid.d.ts'];
files.forEach((file) => {
const fileContents = fs.readFileSync(path.resolve(file), 'utf-8');
const newFileContents = fileContents.replace('{{version}}', pkg.version);
fs.writeFileSync(path.resolve(file), newFileContents, 'utf-8');
});