mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-16 10:24:12 +03:00
3b141f1a25
Co-authored-by: Álvaro Mondéjar <mondejar1994@gmail.com>
30 lines
788 B
JavaScript
30 lines
788 B
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* @fileoverview
|
|
* CLI tool to run jsonschema on the simple-icons.json data file.
|
|
*/
|
|
|
|
import { promises as fs } from 'node:fs';
|
|
import path from 'node:path';
|
|
import { Validator } from 'jsonschema';
|
|
import {
|
|
getDirnameFromImportMeta,
|
|
getIconsData,
|
|
getJsonSchemaData,
|
|
} from '../utils.js';
|
|
|
|
const icons = await getIconsData();
|
|
const __dirname = getDirnameFromImportMeta(import.meta.url);
|
|
const schema = await getJsonSchemaData(path.resolve(__dirname, '..', '..'));
|
|
|
|
const validator = new Validator();
|
|
const result = validator.validate({ icons }, schema);
|
|
if (result.errors.length > 0) {
|
|
result.errors.forEach((error) => {
|
|
console.error(error);
|
|
});
|
|
|
|
console.error(`Found ${result.errors.length} error(s) in simple-icons.json`);
|
|
process.exit(1);
|
|
}
|