Skip to content

Commit

Permalink
added some trim
Browse files Browse the repository at this point in the history
  • Loading branch information
Al Briggs committed Jan 29, 2020
1 parent 0bb4a91 commit 81c509d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/uxLibraryGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export async function startGeneration(projectRootFolder: string, configFilePath:
const escapedString = handlebarsEngine.Utils.escapeExpression(removePlaceHolders)
return escapedString;
})
view.content = transformedContent;
view.content = transformedContent.trim();
}
console.info(colors.yellow('Generated ==>'), colors.green(view.relative));
});
Expand Down

0 comments on commit 81c509d

Please sign in to comment.