We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15b6d9c commit 0f7a35fCopy full SHA for 0f7a35f
packages/@angular/cli/blueprints/ng2/index.ts
@@ -24,7 +24,7 @@ export default Blueprint.extend({
24
},
25
26
locals: function(options: any) {
27
- this.styleExt = options.style;
+ this.styleExt = options.style === 'stylus' ? 'styl' : options.style;
28
this.version = require(path.resolve(__dirname, '../../package.json')).version;
29
// set this.tests to opposite of skipTest options,
30
// meaning if tests are being skipped then the default.spec.BLUEPRINT will be false
0 commit comments