-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(cli): use fetchLogs for resource tags #3350
Conversation
|
@@ -7,4 +7,5 @@ export * from "./logToTable"; | |||
export * from "./tablesWithRecordsToLogs"; | |||
export * from "./tableToLog"; | |||
export * from "./recordToLog"; | |||
export * from "./logToRecord"; | |||
|
|||
export { logToRecord, type LogToRecordArgs } from "@latticexyz/store/internal"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feels weird to export an internal thing but this let me move it to store without breaking
maybe we just remove this export since its intent is internal?
fixes #3342