-
Notifications
You must be signed in to change notification settings - Fork 82
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
Add gleamsver
entry for SemVer parsing/comparisons.
#99
Conversation
What happens when you run the program? |
$ gleam run
Compiled in 0.03s
Running awesome.main
Downloading package index database
Writing new package config files
Loading config files
exception error: #{function => <<"read_config">>,line => 184,
message => <<"Assertion pattern match failed">>,
module => <<"awesome">>,
value => {error,{not_found,[<<"name">>]}},
gleam_error => let_assert}
in function awesome:read_config/1 (/Users/nashwan/Documents/Coding/Gleam/awesome-gleam/build/dev/erlang/awesome/_gleam_artefacts/awesome.erl, line 81)
in call from gleam@list:do_map/3 (/Users/nashwan/Documents/Coding/Gleam/awesome-gleam/build/dev/erlang/gleam_stdlib/_gleam_artefacts/[email protected], line 119)
in call from awesome:main/0 (/Users/nashwan/Documents/Coding/Gleam/awesome-gleam/build/dev/erlang/awesome/_gleam_artefacts/awesome.erl, line 306) Note that this didn't happen the first time I executed I've noticed that after running |
No, it is The error you are having is that one of the configs read does not have a |
Sadly I had removed all the generated TOMLs and now I can't get it to reproduce anymore, but I guess one must've been missing the key as you said, though I'm 99% sure it wasn't caused by the one I added (it had a
So the committing process should go like:
|
The ones in the repo are all valid so it'll have been some edit you may have accidentally made.
Nope, the instructions are here: https://github.com/gleam-lang/awesome-gleam?tab=readme-ov-file#awesome-gleam |
Signed-off-by: Nashwan Azhari <[email protected]>
Looking over the actual code, it just hit me that it automatically pulls in published package info from Hex (including mine), so I simply added the category to it. Sorry for the confusion! |
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.
Thank you
I unfortunately can't seem to get
gleam run
to work so I've defined the package's .toml manually.