-
Notifications
You must be signed in to change notification settings - Fork 0
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
chore: base EboActor implementation #16
Conversation
abbb140
to
d0171b2
Compare
@@ -2,7 +2,7 @@ | |||
"name": "@ebo-agent/blocknumber", | |||
"version": "1.0.0", | |||
"description": "", | |||
"main": "index.ts", | |||
"main": "./dist/index.js", |
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.
curiosity and to learn, when we have to point this to dist or why isnt here src/index.js?
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.
That's an interesting question. Seems like it works both ways and tbh I used what we had already used in the shared
package. Do you know if there's any tradeoff between dist
and src
? Like not having to build dependent packages or something like that?
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.
tbh i don't know, would have to research more to give a more accurate answer
maybe @0xkenj1 has some insight
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.
when some other package is using this one the main
key of the package.json indicates the entrypoint :)
The base branch was changed.
🤖 Linear
Closes GRT-80
Description
Implements base class for
EboActor