From 0ec2475c70b20b827a5ddedaa4d36227ffb9578b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Schmitz?= Date: Wed, 27 Jan 2021 08:00:44 -0300 Subject: [PATCH] chore: Rename package --- README.md | 8 ++++---- package.json | 14 +++++++++++--- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index cf18741..05fddd9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# commitlint-config-rocketseat +# @rocketseat/commitlint-config Shareable [`commitlint`](https://github.com/conventional-changelog/commitlint) config used by Rocketseat. @@ -8,14 +8,14 @@ Installing: ```sh # npm -npm i -D commitlint-config-rocketseat +npm i -D @rocketseat/commitlint-config # yarn -yarn add -D commitlint-config-rocketseat +yarn add -D @rocketseat/commitlint-config ``` Apply the config to `commitlint`: ```sh -echo "module.exports = {extends: ['rocketseat']};" > commitlint.config.js +echo "module.exports = {extends: ['@rocketseat/commitlint-config']};" > commitlint.config.js ``` diff --git a/package.json b/package.json index b3a4496..8426994 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "commitlint-config-rocketseat", + "name": "@rocketseat/commitlint-config", "version": "0.0.1", "description": "Shareable commitlint config used by Rocketseat", "main": "index.js", @@ -9,12 +9,20 @@ }, "repository": { "type": "git", - "url": "https://github.com/Rocketseat/commitlint-config-rocketseat.git" + "url": "https://github.com/Rocketseat/commitlint-config.git" }, + "bugs": { + "url": "https://github.com/Rocketseat/commitlint-config/issues" + }, + "homepage": "https://github.com/Rocketseat/commitlint-config#readme", "keywords": [ "commitlint", "config", + "commitlint-config", "rocketseat", "git" - ] + ], + "engines": { + "node": ">=v10" + } }