From 3c55a3f50ec607e6fb43c5aca1419ea3ddc4ff86 Mon Sep 17 00:00:00 2001 From: Cody Tolene Date: Thu, 28 Jul 2022 02:45:28 -0500 Subject: [PATCH 1/3] Quick updates to documentation --- README.md | 19 ++++++++++--------- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index e8df204..0e55386 100644 --- a/README.md +++ b/README.md @@ -19,14 +19,6 @@ Configurable, lightweight back to top button for Angular projects. -# Compatibility - -| Angular version | @proangular/ngx-scroll-top | Install | -| --------------- | -------------------------- | ------------------------------------------ | -| v14 | v1.x.x | `ng add @proangular/ngx-scroll-top@latest` | -| v13 | v1.x.x | `ng add @proangular/ngx-scroll-top@latest` | -| v12 | v1.x.x | `ng add @proangular/ngx-scroll-top@latest` | - # Demo

@@ -89,6 +81,14 @@ Use package ``` +# Compatibility + +| Angular version | @proangular/ngx-scroll-top | Install | +| --------------- | -------------------------- | ------------------------------------------ | +| v14 | v1.x.x | `ng add @proangular/ngx-scroll-top@latest` | +| v13 | v1.x.x | `ng add @proangular/ngx-scroll-top@latest` | +| v12 | v1.x.x | `ng add @proangular/ngx-scroll-top@latest` | + # Development 1. Pull, create new branch, add changes. @@ -103,12 +103,13 @@ Thank you for your contributions! As a husband and father of four children, your donations mean the world to me! Any donations are greatly appreciated and keep me going! [https://www.paypal.me/CodyTolene](https://www.paypal.me/CodyTolene) + [https://github.com/sponsors/ProAngular](https://github.com/sponsors/ProAngular) # License Copyright © 2022 [Cody Tolene](https://www.CodyTolene.com) -All contents are licensed under the [MIT license]. +All content is licensed under the [MIT license]. [mit license]: LICENSE diff --git a/package-lock.json b/package-lock.json index 58adf9a..93d309d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@proangular/ngx-scroll-top", - "version": "1.1.3", + "version": "1.1.4", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index b764dcd..06bf3d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@proangular/ngx-scroll-top", - "version": "1.1.3", + "version": "1.1.4", "description": "Configurable, lightweight back to top button for Angular projects.", "author": "Pro Angular ", "homepage": "https://www.proangular.com", From 64d539483feb7d594f93326e27a4b5bc64c80197 Mon Sep 17 00:00:00 2001 From: Cody Tolene Date: Thu, 28 Jul 2022 02:50:24 -0500 Subject: [PATCH 2/3] Quick code examples --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0e55386..4691ef8 100644 --- a/README.md +++ b/README.md @@ -91,10 +91,17 @@ Use package # Development -1. Pull, create new branch, add changes. +1. Clone, create new branch. +`git clone https://github.com/ProAngular/ngx-scroll-top.git` +`git checkout -b username/feature` 2. Bump version of package in `package.json` and `package-lock.json`, commit all changes, push. -3. Submit code in published PR for review and approval. +`git add -A` +`git commit -m "My commit message"` +`git push origin username/feature` +3. Submit code in published PR for review and approval. Add a good description and link any possible user stories or bugs. +[Create a new Pull Request](https://github.com/ProAngular/ngx-scroll-top/compare) 4. Allow CI actions to completely run and verify files. +5. Add/ping reviewers and await approval. Thank you for your contributions! From efbb926a2fccf9dd82e3e8be83ad4a04a7d98cad Mon Sep 17 00:00:00 2001 From: Cody Tolene Date: Thu, 28 Jul 2022 02:52:11 -0500 Subject: [PATCH 3/3] Add spacing --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4691ef8..abdcbf0 100644 --- a/README.md +++ b/README.md @@ -92,14 +92,23 @@ Use package # Development 1. Clone, create new branch. + `git clone https://github.com/ProAngular/ngx-scroll-top.git` + `git checkout -b username/feature` + 2. Bump version of package in `package.json` and `package-lock.json`, commit all changes, push. + `git add -A` + `git commit -m "My commit message"` + `git push origin username/feature` + 3. Submit code in published PR for review and approval. Add a good description and link any possible user stories or bugs. -[Create a new Pull Request](https://github.com/ProAngular/ngx-scroll-top/compare) + +[Create a new pull request](https://github.com/ProAngular/ngx-scroll-top/compare). + 4. Allow CI actions to completely run and verify files. 5. Add/ping reviewers and await approval.