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
To speed things up in production, it is often desirable to to the transformation step during compile time. In some of my projects, I use the Gradle Node Plugin (https://github.com/srs/gradle-node-plugin) and add a custom task that transforms the files and packages the results inside the jar/war task.
I'd like this library to provide some utility code to perform the transformation from outside of a Tapestry webapp.
The text was updated successfully, but these errors were encountered:
Using the Reader or standalone compiler classes is not really an option if you have a large number of files. The compiler implementations are just too slow in single-file mode. Maybe they can be changed to compile multiple files at once, maybe that'll be faster.
To speed things up in production, it is often desirable to to the transformation step during compile time. In some of my projects, I use the Gradle Node Plugin (https://github.com/srs/gradle-node-plugin) and add a custom task that transforms the files and packages the results inside the jar/war task.
I'd like this library to provide some utility code to perform the transformation from outside of a Tapestry webapp.
The text was updated successfully, but these errors were encountered: