-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(private): schema scaffolder * more progress * pdates to parser * things * more parsing * chore, begin work on json compile * progress on compilation * stash
- Loading branch information
Showing
20 changed files
with
1,393 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
async function main() {} | ||
import { getSchemaConfig } from './parser/steps/get-config'; | ||
import { gatherSchemaFiles } from './parser/steps/gather-schema-files'; | ||
import { compileJSONSchemas } from './parser/compile/json'; | ||
|
||
async function main() { | ||
const config = await getSchemaConfig(); | ||
|
||
const modules = await gatherSchemaFiles(config); | ||
const compiledJson = await compileJSONSchemas(modules); | ||
|
||
console.log(compiledJson); | ||
} | ||
|
||
await main(); |
Oops, something went wrong.