-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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(backend): set nestjs target to es2017 and add incremental flag #1770
feat(backend): set nestjs target to es2017 and add incremental flag #1770
Conversation
The PR looks good. One thing that is left is adding a migration that will update the version of nest in existing projects. This is an example: |
Hi @vsavkin. Thank you for reviewing the PR. I will update this PR asap |
Hi @vsavkin. I updated my PR. It includes a migration and I added a test for it as well. |
…flag build(nx): update nestjs to latest version
Quick question. Since we are bunlding nestjs apps with webpack, how does "incremental" work together with webpack? Cause all the compilation happens in memory. |
Hi @vsavkin. I would suggest to remove the incremental flag for the time being and open a PR, once the issue has been resolved. What do you think? |
@mehrad-rafigh it sounds good. let's wait for it to land and then open the PR. |
I'm sorry but I'm going to close this. We changed the way we are handling package updates to use |
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior (This is the behavior we have today, before the PR is merged)
target is set to es2015
Expected Behavior (This is the new behavior we can expect after the PR is merged)
target is set to es2017 and incremental flag has been set to true
Issue
Closes #1002