We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug If you have a module listed in morphir.json, but no actual implementation, then no error is thrown and the build appears to pass.
To Reproduce Steps to reproduce the behavior: morphir.json:
morphir.json
{ "name": "Scratch", "sourceDirectory": "src", "exposedModules": [ "ExampleModule" ] }
ExampleModule.elm:
ExampleModule.elm
module ScratchWithTypo.ExampleModule exposing (..) typeErrorTest : Bool -> String typeErrorTest x = True
Compiling (with either make or make -f) appears to succeed, though nothing is added to morphir-ir.json).
make
make -f
morphir-ir.json
Expected behavior Some error or at least very loud warning should be given for the missing file.
Adding to the confusion, some errors are thrown from the referenced file - for instance, mismatched paranthesis in the file still gives an error
Desktop (please complete the following information):
Additional context Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
If you have a module listed in morphir.json, but no actual implementation, then no error is thrown and the build appears to pass.
To Reproduce
Steps to reproduce the behavior:
morphir.json
:ExampleModule.elm
:Compiling (with either
make
ormake -f
) appears to succeed, though nothing is added tomorphir-ir.json
).Expected behavior
Some error or at least very loud warning should be given for the missing file.
Adding to the confusion, some errors are thrown from the referenced file - for instance, mismatched paranthesis in the file still gives an error
Desktop (please complete the following information):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: