While it was kind of nice having everything at the top level, the number of files is now getting a bit unwieldy and hard to understand, so I took a stab at organizing the directories without introducing too much nesting. Test Plan: - Ran `npm run serve` to ensure that local builds still work - Ran `npm run prepack` then `open dist/release/index.html` to ensure that release builds still work - Ran `scripts/deploy.sh` to ensure that the deployed version of the site will still work when I eventually redeploy - Ran `npm run jest` to ensure that tests still work correctly
14 lines
421 B
JavaScript
14 lines
421 B
JavaScript
#!/usr/bin/env node
|
|
const child_process = require('child_process')
|
|
|
|
// Convert the file-format-spec.ts file into a json schema file
|
|
let jsonSchema = child_process.execSync(
|
|
'node_modules/.bin/quicktype --lang schema ./src/lib/file-format-spec.ts',
|
|
{
|
|
encoding: 'utf8',
|
|
},
|
|
)
|
|
jsonSchema = JSON.parse(jsonSchema)
|
|
jsonSchema['$ref'] = '#/definitions/FileFormat.File'
|
|
console.log(JSON.stringify(jsonSchema, null, 4))
|