Skip to content

Commit 8f99a8f

Browse files
committed
fix(gen): fix styleExt being sass instead of scss
1 parent 4c20a39 commit 8f99a8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: app/generator.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export default class Generator extends Base {
138138

139139
this.scriptExt = answers.script === 'coffee' ? 'coffee' : 'js';
140140
this.templateExt = answers.markup;
141-
this.styleExt = answers.stylesheet;
141+
this.styleExt = answers.stylesheet === 'sass' ? 'scss' : answers.stylesheet;
142142

143143
cb();
144144
}.bind(this));

0 commit comments

Comments
 (0)