Skip to content

Commit f26d626

Browse files
committed
Minor, inconsequential changes.
1 parent dc63e46 commit f26d626

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ yml2vocab [-v vocab_file_name] [-t template_file_name] [-c]
9494
If `deno` is installed globally, one can also run the script directly (without any further installation) by
9595

9696
```
97-
deno run --allow-read --allow-write --allow-env /a/b/c/main_.ts [-v vocab_file_name] [-t template_file_name] [-c]
97+
deno run --allow-read --allow-write --allow-env /a/b/c/main.ts [-v vocab_file_name] [-t template_file_name] [-c]
9898
```
9999

100100
in the top level. To make it simpler, a binary, compiled version of the program can be generated by

lib/schema.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* @packageDocumentation
55
*/
66

7-
import { parser, ValidationError as VError } from '@exodus/schemasafe';
8-
import * as yaml from 'yaml';
9-
import { RawVocab, ValidationError, ValidationResults } from './common';
7+
import { parser, type ValidationError as VError } from '@exodus/schemasafe';
8+
import * as yaml from 'yaml';
9+
import type { RawVocab, ValidationError, ValidationResults } from './common';
1010

1111
/**
1212
* Perform a JSON Schema validation on the YAML content. Done by converting the YAML content into

0 commit comments

Comments
 (0)