mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 06:17:42 +01:00
* Adjust typescript types * adjust types * fix types in all helper files * Fix types * Migrate js files to ts files * Refactor to TS files * Rename extentions * Adjust imports * Fix builds * Update lockfile * Fix last typescript migration * Fix entry path @lucide/outline-svg * Fix types * add checkout step * format files * Format files
30 lines
926 B
TypeScript
30 lines
926 B
TypeScript
import path from 'path';
|
|
import fs from 'fs';
|
|
import process from 'process';
|
|
import { spawn } from 'child_process';
|
|
|
|
const regex = /(?<file>[^:]+):(?<line>\d+):(?<column>\d+)\s-\s+(?<message>.+)/;
|
|
const fileList = process.env.CHANGED_FILES
|
|
? (process.env.CHANGED_FILES || '').split(' ')
|
|
: fs.readdirSync('./icons').map((fileName) => path.join('./icons', fileName));
|
|
|
|
const cspell = spawn('npx', ['cspell', 'stdin'], { stdio: ['pipe', 'pipe', 'inherit'] });
|
|
cspell.stdin.write(fileList.join('\n'));
|
|
cspell.stdin.end();
|
|
|
|
cspell.stdout.on('data', (data) => {
|
|
console.log(data.toString());
|
|
data
|
|
.toString()
|
|
.split('\n')
|
|
.forEach((line: string) => {
|
|
const match = line.match(regex);
|
|
if (match) {
|
|
const { line, message } = match.groups ?? {};
|
|
console.log(`::error file=${fileList[Number(line) - 1]},line=1,column=1::${message}`);
|
|
}
|
|
});
|
|
});
|
|
|
|
cspell.on('exit', process.exit);
|