-
Notifications
You must be signed in to change notification settings - Fork 5
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
remove strict check for branch in curated json #161
Conversation
Ahh I see @damianmarti what you were saying because we had this in : create-eth/src/curated-extensions.ts Line 9 in b1fd6d4
and branch could be optional you were telling us we default to I think maybe we should add a new field So now difference b/w // json file type
type Extension = {
extensionFlag?: string; // optional if not present we use branch
branch?: string; // optional if not present we use extensionFlag
repository: string;
// use full for scaffoldeth.io
description: string;
version?: string; // (optional) if not present we default latest
name?: string; // (optional) if not present we use the branch name as default (name might be useful to nicely display challenges names)
// github: can be inferred by joining repositry + branch (scaffoldeth.io is requiring this for displaying link)
// installCommand can inferred using repository + branch + version
}[]; |
Wanted to ask the same thing) What do you think about making Also thinking about better name but cant find something better for now). |
maybe shortName? |
Yess makes sense! Updated it at 9fbe052 and also changed the field name to
The data submitted by builders in buidlguidl app has
Thanks all! hope it makes sense, but happy to update it either way 🙌 |
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.
Lgtm!
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.
Perfect! Thanks!!
Description:
For CLI to work internally we don't need
branch
strict check. Also removed the strict check for descriptionl.