Changing an Interface doesn't seem to live reload it in the dev server #6438
Labels
P3
An issue that is relevant to core functions, but does not impede progress. Important, but not urgent
severity1: confusing
Bug Report or Feature Request (mark with an
x
)Versions.
Repro steps.
Have a an app running in the dev server, and be referencing a simple
interface
and some properties from it somewhere in code, for example if you have an interfacePerson
and then are referencing propertyid
which is of typestring
. If you change the interface, and for example change the type ofid
to benumber
then you will start to get errors in the CLI's dev server about how the property is still of stylestring
. It seems that the CLI's dev server doesn't automatically pick up on interface changes like this and instead you need to restart the server.The log given by the failure.
N/A
Desired functionality.
That the CLI's dev server automatically updates when you make type changes to the interface and they are correct reflected on the next live reload.
The text was updated successfully, but these errors were encountered: