Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgarde committed Aug 7, 2023
1 parent 25fbc98 commit 500c039
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions lib/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,7 @@ export default class Utilities {
* cross-reference use of schemas via ajv's resolution
*/
async #preloadSchemas() {
console.log(import.meta.url)
const schemaPath = path.resolve(
import.meta.url.replace(/^file:/, ''),
'../../schemas',
);
console.log(import.meta.url);
const schemaDir = await fs.opendir('./schemas');
for await (const entry of schemaDir) {
if (!entry.isFile()) {
Expand Down

0 comments on commit 500c039

Please sign in to comment.