Bug Report or Feature Request (mark with an x)
- [ ] bug report -> please search issues before submitting
- [x ] feature request
Versions.
Output from: `ng --version`.
@angular/cli: 1.2.3
node: 8.1.2
os: win32 x64
Repro steps.
ng new example --style=scss
Note The --style is not germaine to the specifics of this feature request. It is only an example.
The log given by the failure.
Desired functionality.
- Include VERSION in the default set of imports when creating a new application.
- Include VERSION.full in the
title property via string interpolation.
Benefits
Immediately shows which version of Angular the app is using when the first ng serve --open is performed.
Mention any other details that might be useful.
Example of desired default app.component.ts
import { Component, VERSION } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = `app using Angular ${VERSION.full}`;
}
Bug Report or Feature Request (mark with an
x)Versions.
Repro steps.
Note The
--styleis not germaine to the specifics of this feature request. It is only an example.The log given by the failure.
Desired functionality.
titleproperty via string interpolation.Benefits
Immediately shows which version of Angular the app is using when the first
ng serve --openis performed.Mention any other details that might be useful.
Example of desired default
app.component.ts