-
This is the issue created by one of my students: WildCodeSchool/2023-01-EN-Berlin-Remote2-Project3#2 And this is our mono-repo for the final project: https://github.com/WildCodeSchool/2023-01-EN-Berlin-Remote2-Project3 Steps to reproduce:
What am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
@diraneyya What version of moon is being used? It's not pinned in the repo. Does this happen on the latest? |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
This should be fixed in v1.6: #848 |
Beta Was this translation helpful? Give feedback.
-
We upgraded to moon 1.6 and this now works! Link to the commit upgrading: WildCodeSchool/2023-01-EN-Berlin-Remote2-Project3@9cae303 As a side note that my previous suggested fix (marked as solution) no longer works in moon 1.6+. Namely, trying to use the
|
Beta Was this translation helpful? Give feedback.
Thank you!
In the meantime I have fixed this issue by changing the task from a
noop
task with dependencies to a task that runs the command:moon run server:dev-build server:dev-start
. It is less elegant and it contains a redundant reference of the projectself
but it works.I suppose that this is equivalent or along the lines of your suggestion of:
WildCodeSchool/2023-01-EN-Berlin-Remote2-Project3#5