-
Notifications
You must be signed in to change notification settings - Fork 12k
Display typescript version being used during ng build --progress and/or ng build --verbose #6627
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
Is this necessary given the potential work to implement it? To me it doesn't seem too inconvenient for someone to check the version of TypeScript or any other library they're using in If it is decided to be worth it I'd be happy to do a PR for this, but I'd like a little bit of guidance first. It seems that the code currently is just outputting the webpack stats returned from the compiler, and the typescript version is not included in the Stats model. It doesn't seem too difficult to output an additional line with the TypeScript version from |
Echoing out the version of the most important tool used to build Angular applications, TypeScript, during the build process, for those who wish to see it (via --libraries, --verbose or similar option) may not be the highest priority, but I would like to see it scheduled, at whatever priority is deemed appropriate. |
We will rescope this issue to show the |
Using Think about what information is requested when someone submits a new issue. Wouldn't the relevant version of TypeScript be the one emitted during the |
@fmorriso I see where you're coming from. Luckily Handling Typescript in a similar fashion wouldn't be too jarring from a user experience perspective and people are asked to include the output from |
@hansl can you please assign this to me? I would like to submit a PR and complete the task as discussed, showing the version of typescript when the command |
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.
Output from:
ng --version
.@angular/cli: 1.1.1
node: 7.10.0
os: win32 x64
Repro steps.
ng build --progress --verbose
The log given by the failure.
Desired functionality.
What would like to see implemented?
Display the version of TypeScript used during ng build if the --progress option is specified.
Background:
Currently, when ng build --progress is invoked, we see the version of webpack used, as shown in this example:
Version: webpack 2.4.1
Please include the version of TypeScript used during builds when the --progress (or should it be --verbose?) switch is specified.
Mention any other details that might be useful.
The text was updated successfully, but these errors were encountered: