-
Notifications
You must be signed in to change notification settings - Fork 28
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: update solidity exporter #79
Conversation
.github/workflows/canary.yml
Outdated
with: | ||
# Update package_name with your package name | ||
package_name: 'my-cool-project' | ||
package_name: ${{ env.PROJECT_NAME }} |
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.
Missing var on .env.example
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.
or does it need to be a secret instead?
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.
I'd name the var NPM_PACKAGE_NAME
to make its meaning completely obvious.
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.
@0xDiscotech the var is defined in the same action. Not on the .env file
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.
@gas1cent in this case, it would append -interfaces if you only get the interfaces or keep the project name only for the other case. Do you think it's still better to have the variable be NPM_PACKAGE_NAME? (As it won't be the actual name for the interfaces)
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.
I'd name the var
NPM_PACKAGE_NAME
to make its meaning completely obvious.
As @0xShaito mentioned, NPM_PACKAGE_NAME
is not accurate in those cases in which -interfaces
gets appended to the published package name.
No description provided.