Skip to content

Commit

Permalink
Merge pull request #767 from s-hoff/fix/ts-generator
Browse files Browse the repository at this point in the history
fix(generator-ts): use .ts ending in template
  • Loading branch information
JeroenVinke authored Oct 11, 2017
2 parents f8d4e94 + c10061f commit df21036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resources/generators/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default class ${className}Generator {
let className = this.project.makeClassName(name);
this.project.elements.add(
ProjectItem.text(\`\${fileName}.js\`, this.generateSource(className))
ProjectItem.text(\`\${fileName}.ts\`, this.generateSource(className))
);
return this.project.commitChanges()
Expand Down

0 comments on commit df21036

Please sign in to comment.