You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When declaring a new service, and the service name includes a hyphen, the flow architecture diagram will not display dependencies to it.
In the code block below, both service names produce the same "import" name, when the service is used locally.
// File: encore.service.tsexportdefaultnewService("hello-world");// does not workexportdefaultnewService("hello_world");// works// In some other serviceimport{hello_world}from"~encore/clients";awaithello_world.hello(...);
The hyphen is replaced by an underscore in order to have a valid import name. Maybe the flow diagram is confused about the actual name of the service?
The text was updated successfully, but these errors were encountered:
When declaring a new service, and the service name includes a hyphen, the flow architecture diagram will not display dependencies to it.
In the code block below, both service names produce the same "import" name, when the service is used locally.
The hyphen is replaced by an underscore in order to have a valid import name. Maybe the flow diagram is confused about the actual name of the service?
The text was updated successfully, but these errors were encountered: