-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
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
Live transpiling #243
Comments
We don't have a live transpilation option at the moment, because our typical development workflow is to do everything in Java (using a standard Java toolchain/IDE) first. This lets us write code and test that code using JUnit as the iterative development process. Once we're happy with the code, then we can make sure it also works when transpiled using the maven build. So typically we write code in e.g. Eclipse or Intellij. And we run the tests using JUnit, also typically in the IDE. This allows debugging and fast iterations. Then verify transpilation at the end. |
That said, I'm not opposed to a live transpilation feature of some kind. So if you wanted to contribute something like that, that sounds very cool. :) |
Thanks! I understood. I realized that
https://github.com/lgrignon/jsweet-maven-plugin#hot-transpilation I'll try this. |
Awesome - if you can configure something that works well for you, I would love to add it to the documentation/readme. |
Hi.
I'm implementing custom validation rules.
It takes time to run :
Is there any option to transpile lively along with editing original .java files?
The text was updated successfully, but these errors were encountered: