-
Notifications
You must be signed in to change notification settings - Fork 47
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
[FW] 14 better scripts lul #2204
Closed
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add the task label before every log line in the console. This helps to know what is logging what. The current task \"build:* -- --watch\" is split into smaller task without argument. Otherwise, the labels would also include the argument, making it very long [build:js -- --watch] => [watch:ts] the "serve" task is also rename to better reflect what it does: serving static files. In v15, we also have a "server" task which could be confusing X-original-commit: 6aede4d
In v15, a collaborative server was introduced. This server can raise errors (let's say if it cannot start because the port is already used). In the current situation, errors are cleared by ts watch mode. This makes it difficult to see and know what happened. X-original-commit: 8746ea2
Exit events that are fired following an error of exectuion were silently caught. This would hide the reason of failure and make it very difficult to know what happened. X-original-commit: 6550810
@LucasLefevre @rrahir this PR targets master and is the last of the forward-port chain containing: To merge the full chain, say
More info at https://github.com/odoo/odoo/wiki/Mergebot#forward-port |
@fw-bot r+ |
robodoo
pushed a commit
that referenced
this pull request
Mar 9, 2023
Add the task label before every log line in the console. This helps to know what is logging what. The current task \"build:* -- --watch\" is split into smaller task without argument. Otherwise, the labels would also include the argument, making it very long [build:js -- --watch] => [watch:ts] the "serve" task is also rename to better reflect what it does: serving static files. In v15, we also have a "server" task which could be confusing X-original-commit: 6aede4d Part-of: #2204
robodoo
pushed a commit
that referenced
this pull request
Mar 9, 2023
In v15, a collaborative server was introduced. This server can raise errors (let's say if it cannot start because the port is already used). In the current situation, errors are cleared by ts watch mode. This makes it difficult to see and know what happened. X-original-commit: 8746ea2 Part-of: #2204
robodoo
pushed a commit
that referenced
this pull request
Mar 9, 2023
Exit events that are fired following an error of exectuion were silently caught. This would hide the reason of failure and make it very difficult to know what happened. closes #2204 X-original-commit: 6550810 Signed-off-by: Rémi Rahir (rar) <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description:
description of this task, what is implemented and why it is implemented that way.
Odoo task ID : TASK_ID
review checklist
Forward-Port-Of: #2202
Forward-Port-Of: #2191