From 2ae9afb06f413a0aa3edd6d0f6c9efb019926399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vic=20Sh=C3=B3stak?= Date: Thu, 23 Jan 2020 22:17:56 +0300 Subject: [PATCH 1/7] Rename LICENCE.txt to LICENCE --- LICENCE.txt => LICENCE | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename LICENCE.txt => LICENCE (100%) diff --git a/LICENCE.txt b/LICENCE similarity index 100% rename from LICENCE.txt rename to LICENCE From 9f62f68e2836d89bdf90fc8b1de37e15cfcdac1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vic=20Sh=C3=B3stak?= Date: Thu, 23 Jan 2020 22:31:48 +0300 Subject: [PATCH 2/7] Update README.md --- README.md | 40 ++++++++++++++++++++++++++++++++-------- 1 file changed, 32 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3f86aac..5b2641e 100644 --- a/README.md +++ b/README.md @@ -9,16 +9,40 @@ A tiny little reset that you can use as the basis of your CSS projects. You can ## Installation -- NPM: `npm install modern-css-reset` -- Yarn: `yarn add modern-css-reset` -- CDN: - - Unpkg: `` - - jsDelivr: `` +- NPM: -## Commands +```console +$ npm install --save-dev modern-css-reset +``` + +- Yarn: + +```console +$ yarn add modern-css-reset +``` + +- Unpkg CDN: + +```html + +``` + +- jsDelivr CDN: + +```html + +``` + +### Mannual installation You can minify and move the main reset to the `dist` by running: -```bash -npm run build +```console +$ git clone https://github.com/hankchizljaw/modern-css-reset.git +$ cd modern-css-reset +$ npm run build ``` + +## License + +MIT From e084c1db08d9986ad720286ca06df4f39dbe367a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vic=20Sh=C3=B3stak?= Date: Thu, 23 Jan 2020 22:32:33 +0300 Subject: [PATCH 3/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b2641e..60f944e 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ $ yarn add modern-css-reset ``` -### Mannual installation +### Manual installation You can minify and move the main reset to the `dist` by running: From b90ddc861b3d6324708d563075cd4a07fcf95e2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vic=20Sh=C3=B3stak?= Date: Thu, 23 Jan 2020 22:33:22 +0300 Subject: [PATCH 4/7] Rename LICENCE to LICENSE --- LICENCE => LICENSE | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename LICENCE => LICENSE (100%) diff --git a/LICENCE b/LICENSE similarity index 100% rename from LICENCE rename to LICENSE From 56a31c8375c4f86d526564671be5e85501e2726c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vic=20Sh=C3=B3stak?= Date: Thu, 23 Jan 2020 22:37:39 +0300 Subject: [PATCH 5/7] Update package.json --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c7e45f6..5ef2628 100644 --- a/package.json +++ b/package.json @@ -10,8 +10,11 @@ "type": "git", "url": "git+https://github.com/hankchizljaw/modern-css-reset.git" }, - "keywords": [], - "author": "", + "keywords": [ + "css reset", + "modern css reset" + ], + "author": "Andy Bell (https://hankchizljaw.com)", "license": "MIT", "bugs": { "url": "https://github.com/hankchizljaw/modern-css-reset/issues" From 2972283714d5702863d2b835f8293b747b7f9d52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vic=20Sh=C3=B3stak?= Date: Fri, 24 Jan 2020 01:07:21 +0300 Subject: [PATCH 6/7] Update README.md --- README.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 60f944e..d726825 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ A tiny little reset that you can use as the basis of your CSS projects. You can - NPM: ```console -$ npm install --save-dev modern-css-reset +npm install --save-dev modern-css-reset ``` - Yarn: ```console -$ yarn add modern-css-reset +yarn add modern-css-reset ``` - Unpkg CDN: @@ -35,14 +35,26 @@ $ yarn add modern-css-reset ### Manual installation -You can minify and move the main reset to the `dist` by running: +First, let's clone this repository: ```console -$ git clone https://github.com/hankchizljaw/modern-css-reset.git -$ cd modern-css-reset -$ npm run build +git clone https://github.com/hankchizljaw/modern-css-reset.git ``` +Then, go to `modern-css-reset` directory: + +```console +cd modern-css-reset +``` + +And now, you can minify and move the main reset to the `dist` by running: + +```console +npm run build +``` + +That's it! 🎉 + ## License MIT From f1c2ad174b5e9d21853e45ed3834008213a24eeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vic=20Sh=C3=B3stak?= Date: Fri, 24 Jan 2020 01:09:15 +0300 Subject: [PATCH 7/7] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d726825..9d5a45b 100644 --- a/README.md +++ b/README.md @@ -9,25 +9,25 @@ A tiny little reset that you can use as the basis of your CSS projects. You can ## Installation -- NPM: +NPM: ```console npm install --save-dev modern-css-reset ``` -- Yarn: +Yarn: ```console yarn add modern-css-reset ``` -- Unpkg CDN: +Unpkg CDN: ```html ``` -- jsDelivr CDN: +jsDelivr CDN: ```html