Skip to content

Commit

Permalink
fix: default export in noir-version (#2757)
Browse files Browse the repository at this point in the history
alternative to #2751 until #2644 is closed.

# Checklist:
Remove the checklist to signal you've completed it. Enable auto-merge if
the PR is ready to merge.
- [ ] If the pull request requires a cryptography review (e.g.
cryptographic algorithm implementations) I have added the 'crypto' tag.
- [x] I have reviewed my diff in github, line by line and removed
unexpected formatting changes, testing logs, or commented-out code.
- [x] Every change is related to the PR description.
- [x] I have
[linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue)
this pull request to relevant issues (if any exist).
  • Loading branch information
alexghr authored Oct 10, 2023
1 parent 3a54678 commit 6ff7bed
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions yarn-project/noir-compiler/src/noir-version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
import * as version from './noir-version.json' assert { type: 'json' };

export default version.default;
export { default } from './noir-version.json' assert { type: 'json' };

0 comments on commit 6ff7bed

Please sign in to comment.