Skip to content

Commit 2bc8d46

Browse files
authored
Merge pull request #866 from scottkidder/blueprint-style
chore(style): remove trailing space in the global.d.ts blueprint
2 parents ba9c056 + bd28d91 commit 2bc8d46

File tree

1 file changed

+3
-3
lines changed
  • ts/blueprints/ember-cli-typescript

1 file changed

+3
-3
lines changed

ts/blueprints/ember-cli-typescript/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ function buildTemplateDeclarations(projectName, layout) {
2626
switch (layout) {
2727
case 'classic':
2828
return `${comment}
29-
declare module '${projectName}/templates/*' { ${moduleBody}}`;
29+
declare module '${projectName}/templates/*' {${moduleBody}}`;
3030
case 'pods':
3131
return `${comment}
32-
declare module '${projectName}/*/template' { ${moduleBody}}`;
32+
declare module '${projectName}/*/template' {${moduleBody}}`;
3333
default:
34-
throw new Error(`Unexpecte project layout type: "${layout}"`);
34+
throw new Error(`Unexpected project layout type: "${layout}"`);
3535
}
3636
}
3737

0 commit comments

Comments
 (0)