Skip to content

Commit f91416f

Browse files
authored
Regression - Fix export of latest (#905)
1 parent 14ecbdf commit f91416f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import v8Spec from './reference/v8.json' with {type: 'json'};
22
const v8 = v8Spec as any;
3-
import {latest} from './reference/latest';
3+
import latest from './reference/latest';
44
import {derefLayers} from './deref';
55
import {diff} from './diff';
66
import {ValidationError} from './error/validation_error';

src/reference/latest.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11

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

0 commit comments

Comments
 (0)