Skip to content

Commit

Permalink
Regression - Fix export of latest (#905)
Browse files Browse the repository at this point in the history
  • Loading branch information
birkskyum authored Nov 17, 2024
1 parent 14ecbdf commit f91416f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import v8Spec from './reference/v8.json' with {type: 'json'};
const v8 = v8Spec as any;
import {latest} from './reference/latest';
import latest from './reference/latest';
import {derefLayers} from './deref';
import {diff} from './diff';
import {ValidationError} from './error/validation_error';
Expand Down
1 change: 1 addition & 0 deletions src/reference/latest.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

import latest from './v8.json' with { type: 'json' };
export {latest}
export default latest as any

0 comments on commit f91416f

Please sign in to comment.