From 7402d27f43041d67e6a93c45c033c1045232ec0d Mon Sep 17 00:00:00 2001 From: Yakov Gaberman Date: Mon, 11 Jan 2021 16:20:42 -0500 Subject: [PATCH 1/2] Bump 1.3.0 -> 1.4.0 Scopes package to @button organization Updates README --- CHANGELOG.md | 7 +++++++ README.md | 8 ++++---- package.json | 7 +++++-- 3 files changed, 16 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f74e32..71e1472 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +* 1.4.0 January 11, 2021 + - Scopes package to button organization + Projects using eslint can extend the repo like so: + ``` + "extends": "@button/eslint-config-button-platform" + ``` + * 1.3.0 January 8, 2021 - Updates eslint rules - Updates peer dependencie versions diff --git a/README.md b/README.md index f2dc467..8f218c8 100644 --- a/README.md +++ b/README.md @@ -7,19 +7,19 @@ Button's eslint config ###### npm ```bash -npm install --save-dev eslint-config-button-platform +npm install --save-dev @button/eslint-config-button-platform ``` ###### yarn ```bash -yarn add eslint-config-button-platform --dev +yarn add --dev @button/eslint-config-button-platform ``` Additionally, you'll need to install all dependencies enumerated by: ```bash -npm info eslint-config-button-platform peerDependencies +npm info @button/eslint-config-button-platform peerDependencies ``` ## Usage @@ -28,6 +28,6 @@ In your `.eslintrc` or equivalent: ```json { - "extends": "button-platform" + "extends": "@button/eslint-config-button-platform" } ``` diff --git a/package.json b/package.json index 02b2661..31c7e5b 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,11 @@ { - "name": "eslint-config-button-platform", - "version": "1.3.0", + "name": "@button/eslint-config-button-platform", + "version": "1.4.0", "description": "Button Platform's eslint config", "main": "index.js", + "publishConfig": { + "access": "public" + }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, From 0b49867f04c2bd5070cfa10331d1bf1e66783580 Mon Sep 17 00:00:00 2001 From: Yakov Gaberman Date: Mon, 11 Jan 2021 16:44:29 -0500 Subject: [PATCH 2/2] Major bump 1.3.0 -> 2.0.0 --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71e1472..4dc2bf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -* 1.4.0 January 11, 2021 +* 2.0.0 January 11, 2021 - Scopes package to button organization Projects using eslint can extend the repo like so: ``` diff --git a/package.json b/package.json index 31c7e5b..cbfba52 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@button/eslint-config-button-platform", - "version": "1.4.0", + "version": "2.0.0", "description": "Button Platform's eslint config", "main": "index.js", "publishConfig": {