From 8432fafdb95d3e358f72726b364239a925371e77 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:18:53 +0200 Subject: [PATCH 01/26] Adding Travis auto-builds environment --- .travis.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e6eea25 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +sudo: false +language: node_js +before_install: + - curl -o- -L https://yarnpkg.com/install.sh | bash + - export PATH=$HOME/.yarn/bin:$PATH +before_script: + - yarn install + - yarn start:dev +node_js: + - "10" From 23ac524264d04d370669674b6331a6552c403351 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:37:25 +0200 Subject: [PATCH 02/26] Updated Travis config --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index e6eea25..10fc86b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ before_install: - export PATH=$HOME/.yarn/bin:$PATH before_script: - yarn install + - yarn jest **/*.test.* - yarn start:dev node_js: - "10" From 81796c71132f3e77b19f4253a65385df9f74067b Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:39:14 +0200 Subject: [PATCH 03/26] Update .travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 10fc86b..525be84 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ before_install: - export PATH=$HOME/.yarn/bin:$PATH before_script: - yarn install - - yarn jest **/*.test.* + - yarn testall - yarn start:dev node_js: - "10" From e71196ec3e806f35b64c833cb424673c4d06fc96 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:44:21 +0200 Subject: [PATCH 04/26] travis config fixes v.1.0.0 --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.travis.yml b/.travis.yml index 525be84..ad6f279 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,16 @@ before_script: - yarn install - yarn testall - yarn start:dev +jobs: + include: + - stage: "Tests" + name: "Unit Tests" + script: yarn testall + - stage: "Development stage" + name: "Development Tests" + script: yarn start:dev + - stage: "Production stage" + name: "Production Tests" + script: yarn start:prod node_js: - "10" From 16e340e3d558a78e18707041b82624c83a6b9930 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:44:38 +0200 Subject: [PATCH 05/26] minor fix v1.0.1 --- .travis.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index ad6f279..44e91b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,10 +3,6 @@ language: node_js before_install: - curl -o- -L https://yarnpkg.com/install.sh | bash - export PATH=$HOME/.yarn/bin:$PATH -before_script: - - yarn install - - yarn testall - - yarn start:dev jobs: include: - stage: "Tests" From 688a369fbe33b8f4f379f5352d5e8eb58d34e34e Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:54:10 +0200 Subject: [PATCH 06/26] Added test scripts environment --- package.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 11ea606..f656a21 100644 --- a/package.json +++ b/package.json @@ -39,7 +39,8 @@ "scripts": { "start:dev": "better-npm-run start:dev", "start:prod": "better-npm-run start:prod", - "test": "better-npm-run test", + "start:test": "better-npm-run test", + "unitTest": "jest --config jest.config.js", "clean": "rimraf dist", "push": "npm run lint && git push", "compile": "better-npm-run compile", @@ -69,7 +70,7 @@ "DEBUG": "app:*" } }, - "test": { + "start:test": { "command": "node server/server", "env": { "NODE_ENV": "test", From afc398f49dc2e5ebd6f514da701f0a149f16f451 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 15:55:11 +0200 Subject: [PATCH 07/26] fixed tests --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 44e91b0..8356de9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,12 +7,15 @@ jobs: include: - stage: "Tests" name: "Unit Tests" - script: yarn testall + script: yarn unitTest - stage: "Development stage" name: "Development Tests" script: yarn start:dev - stage: "Production stage" name: "Production Tests" script: yarn start:prod + - stage: "Test stage" + name: "Test Tests" + script: yarn start:test node_js: - "10" From f9bb3e9a612b66acdc5806fdce4c25dff3fca72d Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:11:20 +0200 Subject: [PATCH 08/26] Update .travis.yml --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8356de9..794ff68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,11 +11,14 @@ jobs: - stage: "Development stage" name: "Development Tests" script: yarn start:dev + script: killall -KILL node - stage: "Production stage" name: "Production Tests" script: yarn start:prod + script: killall -KILL node - stage: "Test stage" name: "Test Tests" script: yarn start:test + script: killall -KILL node node_js: - "10" From ce4451ddb52a84f0c77d6f8393190bc886f7f1e6 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:23:28 +0200 Subject: [PATCH 09/26] test v1 --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 794ff68..bd8bf78 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,8 +10,9 @@ jobs: script: yarn unitTest - stage: "Development stage" name: "Development Tests" - script: yarn start:dev - script: killall -KILL node + script: + - yarn start:dev + - killall -KILL node - stage: "Production stage" name: "Production Tests" script: yarn start:prod From 4fe61573961555bb3755d257784116387653f3db Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:29:28 +0200 Subject: [PATCH 10/26] test v2 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bd8bf78..063afe4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,8 @@ jobs: name: "Development Tests" script: - yarn start:dev - - killall -KILL node + - lsof -i :3000 + - kill -9 - stage: "Production stage" name: "Production Tests" script: yarn start:prod From d82a7da9d5531e6e4b49592d47be22573f9669a2 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:40:00 +0200 Subject: [PATCH 11/26] Fixed .travis config --- .travis.yml | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 063afe4..e165c0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,21 +6,10 @@ before_install: jobs: include: - stage: "Tests" - name: "Unit Tests" + name: "Unit Test" script: yarn unitTest - - stage: "Development stage" - name: "Development Tests" - script: - - yarn start:dev - - lsof -i :3000 - - kill -9 - - stage: "Production stage" - name: "Production Tests" - script: yarn start:prod - script: killall -KILL node - - stage: "Test stage" - name: "Test Tests" - script: yarn start:test - script: killall -KILL node + - stage: "Compilation stage" + name: "Compilation Test" + script: yarn compile node_js: - "10" From ff7fe6c12ed3077ac7400d8e947fb7aaae003580 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:48:27 +0200 Subject: [PATCH 12/26] Updated Readme.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 6b9bb7b..9e61f8b 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,12 @@ # CoConat - React Apps Builder ### Make custom React app development easly as never before! +[![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) + +See also: + +[medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat documentation tutorial. + ![logo_image](https://raw.githubusercontent.com/BiosBoy/coconat/master/LOGO_COCONAT.jpg) This **Webpack4 + React16 Templater** is created from the point of view to solve developer day-to-day problems with app suits boilerplate creation. It has all what we need to start React app creation with rocket speed without worring about, like: From f86b8d100cb3630cf65b004b672eb564aa53059f Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:48:46 +0200 Subject: [PATCH 13/26] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 9e61f8b..44c241c 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,7 @@ [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) -See also: - -[medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat documentation tutorial. +See also: [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat documentation tutorial. ![logo_image](https://raw.githubusercontent.com/BiosBoy/coconat/master/LOGO_COCONAT.jpg) From b69c4ddf33cbe913f63602a70cf5b5bba63dd5b3 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:49:30 +0200 Subject: [PATCH 14/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 44c241c..093b945 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) -See also: [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat documentation tutorial. +[medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. ![logo_image](https://raw.githubusercontent.com/BiosBoy/coconat/master/LOGO_COCONAT.jpg) From 9479e570e1425a1c1fa4cf386fc23320de2d0d16 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:54:01 +0200 Subject: [PATCH 15/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 093b945..2dbf668 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# CoConat - React Apps Builder +# CoConat - React Apps Builder [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=You%20will%20never%20know%20how%20everything%20work%20but%20you%20should%20understand%20the%20system&url=https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3&via=svyat770&hashtags=react,webpack,babel,webdevelopment,developers) ### Make custom React app development easly as never before! [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) From dc1981f6bfe49b82082118fe2679321ba34c8cb1 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:54:47 +0200 Subject: [PATCH 16/26] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2dbf668..83157b0 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ # CoConat - React Apps Builder [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=You%20will%20never%20know%20how%20everything%20work%20but%20you%20should%20understand%20the%20system&url=https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3&via=svyat770&hashtags=react,webpack,babel,webdevelopment,developers) ### Make custom React app development easly as never before! +[![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From b8b1768877d6883086df312744d572e0e563ba3e Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:55:57 +0200 Subject: [PATCH 17/26] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 83157b0..12371e4 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ ### Make custom React app development easly as never before! [![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) +[![License: MIT](https://img.shields.io/badge/license-FOWDL-blue.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From 05e7e089ff1623e0d7f7da3a16acd4ef190cf76f Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:56:09 +0200 Subject: [PATCH 18/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 12371e4..02a3d2c 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ### Make custom React app development easly as never before! [![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) -[![License: MIT](https://img.shields.io/badge/license-FOWDL-blue.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) +[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From bd1e94abbae8b3f02490502183b86f344ab875eb Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:56:22 +0200 Subject: [PATCH 19/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 02a3d2c..0d149a3 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ### Make custom React app development easly as never before! [![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) -[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) +[![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From c9059d3bcf053bd32747f808c9e45aa98e650070 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:56:58 +0200 Subject: [PATCH 20/26] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 0d149a3..f73ec7d 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ [![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) +[![GitHub package version](https://img.shields.io/github/package-json/v/froala/design-blocks.svg)](https://github.com/froala/coconat) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From 2c3c13f5976b7d9abb93b4611a12ad5ba6ae452e Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:57:25 +0200 Subject: [PATCH 21/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f73ec7d..ed0abc7 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) -[![GitHub package version](https://img.shields.io/github/package-json/v/froala/design-blocks.svg)](https://github.com/froala/coconat) +[![GitHub package version](https://img.shields.io/github/package-json/v/coconat/design-blocks.svg)](https://github.com/froala/coconat) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From cc92bb09dc9d632f6d36569862545241af184e13 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:57:57 +0200 Subject: [PATCH 22/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed0abc7..45794a6 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) -[![GitHub package version](https://img.shields.io/github/package-json/v/coconat/design-blocks.svg)](https://github.com/froala/coconat) +[![GitHub package version](https://img.shields.io/badge/version-1.0.0-yellow.svg)](https://github.com/BiosBoy/coconat) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From 4ed0b3f26762250396a110f3584cc233bd8bf820 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:58:12 +0200 Subject: [PATCH 23/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45794a6..c47344d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) -[![GitHub package version](https://img.shields.io/badge/version-1.0.0-yellow.svg)](https://github.com/BiosBoy/coconat) +[![GitHub package version](https://img.shields.io/badge/version-1.8.1-yellow.svg)](https://github.com/BiosBoy/coconat) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From 3fafc8e4f1b43a4f9b702f2f48fc68adbb7c1e78 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 16:58:20 +0200 Subject: [PATCH 24/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c47344d..acdc615 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [![Price](https://img.shields.io/badge/price-FREE-0098f7.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) [![License: MIT](https://img.shields.io/badge/license-MIT-yellow.svg)](https://github.com/BiosBoy/coconat/blob/master/LICENSE) -[![GitHub package version](https://img.shields.io/badge/version-1.8.1-yellow.svg)](https://github.com/BiosBoy/coconat) +[![GitHub package version](https://img.shields.io/badge/version-1.8.1-red.svg)](https://github.com/BiosBoy/coconat) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) [medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. From 7a1516279935621854b41f1a1963a591c768a4c6 Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 17:01:56 +0200 Subject: [PATCH 25/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index acdc615..e50dcb5 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![GitHub package version](https://img.shields.io/badge/version-1.8.1-red.svg)](https://github.com/BiosBoy/coconat) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) -[medium.com/tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. +[medium.com/CocoNat-StarterKit-Builder](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. ![logo_image](https://raw.githubusercontent.com/BiosBoy/coconat/master/LOGO_COCONAT.jpg) From 84256b9491187dd6d38566391fe47ca75cad999f Mon Sep 17 00:00:00 2001 From: Sviat Kuzhelev <30953392+BiosBoy@users.noreply.github.com> Date: Mon, 28 Jan 2019 17:02:49 +0200 Subject: [PATCH 26/26] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e50dcb5..d37fca2 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ [![GitHub package version](https://img.shields.io/badge/version-1.8.1-red.svg)](https://github.com/BiosBoy/coconat) [![Build Status](https://travis-ci.org/BiosBoy/coconat.svg?branch=master)](https://travis-ci.org/BiosBoy/coconat) -[medium.com/CocoNat-StarterKit-Builder](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) — CocoNat StartKit Builder Official Documentation Tutorial. +Check CocoNat StartKit Builder [Official Documentation Tutorial](https://medium.com/@svyat770/lets-kill-create-react-app-452cb55f77d3) on Medium. ![logo_image](https://raw.githubusercontent.com/BiosBoy/coconat/master/LOGO_COCONAT.jpg)