Skip to content

Commit

Permalink
docs: Update release notes blog post template (#15285)
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed Nov 24, 2021
1 parent f1b7499 commit 4497e88
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions templates/blogpost.md.ejs
@@ -1,13 +1,14 @@
---
layout: post
title: ESLint v<%- version %> released
teaser: "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.<% } %>"
categories:
- Release Notes
tags:
- release
- <%- type %>
---

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 4497e88

Please sign in to comment.