-
Notifications
You must be signed in to change notification settings - Fork 12k
Feature suggestion: Fast recompile when no changes are made #7812
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
Comments
For typical development workflows, either |
Thanks! sounds like the same issue. |
For the special case of no files changed, there is an alternate option that wouldn't require changes to the CLI. The IDE could check timestamps of the app files and compare to the built files. If any are older than the built files, it would run the build command. If not, do nothing. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Bug Report or Feature Request (mark with an
x
)Versions.
Latest
Desired functionality.
I'm using angular-cli from visual studio - and I added the compilation using angular-cli to my compilation flow (which also compiles my C# code).
Which means every time I change anything thing in the code I would like the compilation to work.
This happens automatically for all the code written in C# - no changes = fast compilation.
I was hoping this could be done as well for angular-cli - meaning: If i didn't change any of my ts code, didn't add any package, or anything like that - the compilation will be supper fast or there will not be any compilation at all.
Mention any other details that might be useful.
The reason for this request is that every time I load my server this compilation happens (which is good since I want to make sure I'm running on my latest code) but it takes time even if I didn't change a line of code since the last compilation.
I have briefly looked for a feature like this but couldn't find one here, I'll be surprised if this is not a dup...
The text was updated successfully, but these errors were encountered: