-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: Copy resources to build output #112
Conversation
Artifact build on last commit: distributions.zip. |
@@ -8,12 +8,12 @@ import com.intellij.psi.PsiFile | |||
import com.intellij.psi.PsiManager | |||
import java.io.File | |||
import java.nio.file.Files | |||
import java.util.Base64 | |||
import java.util.* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let’s not use * here either
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I'm reverting, IntelliJ is changing it automatically
It looks like this implements manual copying - should it not be the same as ”compile” for Java files, so that the save action handles it also when saving in the IDE? |
Let me have a second look if compile on save handles it also... |
If we are handling Java files both manually in the Copilot command and through the save action, then we should do the same for resources. But we need to let IntelliJ do the actual copying/compiling |
Will be continued in new, fresh PR |
Copies resources to build directory Fixes #112
Fixes #74