IntelliJ - compile all CoffeeScript files at once

I am using the CoffeeScript File Observer in IntelliJ to compile my CoffeeScript files. However, when I start the IDE, it doesn't interpret the files immediately. Two files are visible in the project structure:

two files js and coffee visible

When I open the coffee file and change something, the observer starts and compiles my script, which also appears in the project structure:

compiled coffee

Is there a way to tell IntelliJ to "precompile" all scripts. coffee in the project?

The problem isn't just the visibility of the .js and. coffee. I only want to store files. Coffee is in the repository, so the initial compilation will be required after checking.

I know I could use Grunt or even a coffee watcher to compile them, but my project includes a few really unconsolidated people.

+3


source to share





All Articles