Skip to content

Commit

Permalink
Upgrade: eslint-release@1.2.0 (#11073)
Browse files Browse the repository at this point in the history
This upgrades `eslint-release` to the latest version. Notably, we no longer need to generate commit links in release blogposts because the links will now be generated automatically.
  • Loading branch information
not-an-aardvark committed Nov 10, 2018
1 parent f7633b7 commit 5da378a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -90,7 +90,7 @@
"eslint-plugin-eslint-plugin": "^1.4.1",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-rulesdir": "^0.1.0",
"eslint-release": "^1.0.0",
"eslint-release": "^1.2.0",
"eslint-rule-composer": "^0.3.0",
"eslump": "^1.6.2",
"esprima": "^4.0.1",
Expand Down
1 change: 0 additions & 1 deletion templates/blogpost.md.ejs
Expand Up @@ -15,7 +15,6 @@ const RULE_REGEX = new RegExp(`\`?\\b(${ruleList.join("|")})\\b\`?`, "g");
function linkify(line) {
return line
.replace(/#(\d+)/g, "[#$1](https://github.com/eslint/eslint/issues/$1)")
.replace(/([a-z0-9]+)/, "[$1](https://github.com/eslint/eslint/commit/$1)")
.replace(RULE_REGEX, "[$&](/docs/rules/$1)");
}
Expand Down

0 comments on commit 5da378a

Please sign in to comment.