-
Is there any way to run something before building but also use the feature of internal libraries? We tried using build-type: Custom but then we got error message:
While when using build-type: Simple, Setup.hs gets ignored. For context, what we need to run is a shell command that builds a Typescript project, and we want to ensure that always happens before our Haskell program builds. |
Beta Was this translation helpful? Give feedback.
Answered by
Mikolaj
Jan 14, 2023
Replies: 1 comment 2 replies
-
I'd use a makefile, which would also prevent building the Typescript project twice, but perhaps there are better ways. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Martinsos
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'd use a makefile, which would also prevent building the Typescript project twice, but perhaps there are better ways.