Skip to content

Commit

Permalink
Chore: Add missing space in blog post template (#9407)
Browse files Browse the repository at this point in the history
For non-patch releases, template used to generate this string:

> This release adds some new features andfixes several bugs found in the previous release.

Now it generates this string:

> This release adds some new features and fixes several bugs found in the previous release.
  • Loading branch information
platinumazure authored and ilyavolodin committed Oct 10, 2017
1 parent 7654c99 commit 9fedd51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/blogpost.md.ejs
Expand Up @@ -7,7 +7,7 @@ tags:
---
# ESLint v<%= version %> released

We just pushed ESLint v<%- version %>, which is a <%- type %> release upgrade of ESLint. This release <% if (type !== "patch") { %>adds some new features and<% } %>fixes several bugs found in the previous release. <% if (type === "major") { %>This release also has some breaking changes, so please read the following closely. <% } %>
We just pushed ESLint v<%- version %>, which is a <%- type %> release upgrade of ESLint. This release <% if (type !== "patch") { %>adds some new features and <% } %>fixes several bugs found in the previous release. <% if (type === "major") { %>This release also has some breaking changes, so please read the following closely. <% } %>

<%
const RULE_REGEX = new RegExp(`\`?\\b(${ruleList.join("|")})\\b\`?`, "g");
Expand Down

0 comments on commit 9fedd51

Please sign in to comment.