blob: 450c3dde0abad5063d0631828eff241475c40a8c (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { readFileSync } from "fs"
import { SchemaConverter } from "../tools/server/public_legacy/json-schema-to-grammar.mjs"
const [, , file] = process.argv
const url = `file://${file}`
let schema = JSON.parse(readFileSync(file, "utf8"));
const converter = new SchemaConverter({})
schema = await converter.resolveRefs(schema, url)
converter.visit(schema, '')
console.log(converter.formatGrammar())
|