From 142d7fd11f44082fe253ad35463947f10398fd71 Mon Sep 17 00:00:00 2001 From: Ameer Jhan Date: Tue, 12 Nov 2019 12:20:54 +0530 Subject: [PATCH 1/4] docs(README): add cba on how to install instruction --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index ba139c6..903e403 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,10 @@ # Brahmos Supercharged JavaScript library to build user interfaces with modern React API and native templates. +## Installation + +[Create a New Brahmos App](https://www.npmjs.com/package/create-brahmos-app) if you're looking for a powerful JavaScript toolchain. + ## Features - Lightweight and Fast. - Exact same React's Declarative APIs with JSX. From 2869d6438e37d3cfc9093f3d09da112c59ae22da Mon Sep 17 00:00:00 2001 From: Sudhanshu Yadav Date: Sat, 16 Nov 2019 11:42:39 +0530 Subject: [PATCH 2/4] Update demo link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 903e403..a9889b9 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ Check how it internally works [HOW_IT_WORKS.md](docs/HOW_IT_WORKS.md) ## Demo Todo MVC with Brahmos -[https://s-yadav.github.io/brahmos-todo-mvc](https://s-yadav.github.io/brahmos-todo-mvc) +[https://brahmosjs.github.io/brahmos-todo-mvc](https://brahmosjs.github.io/brahmos-todo-mvc) ## Slack Channel https://brahmoscommunity.slack.com/join/shared_invite/enQtNjYxODIzMzA3NTg3LWY5ZWY4ZjczNThhMTZjN2Q3NTNmMTBjNjVlZGM5ZWMzNDIyYWI2OTUwMTZiOGQ5MjEwN2Q0ZGRkM2UxZjFiZTM From 751d3200d205644cf1023e8d7a683edbd31455d8 Mon Sep 17 00:00:00 2001 From: Sudhanshu Yadav Date: Sat, 16 Nov 2019 11:50:51 +0530 Subject: [PATCH 3/4] Update slack link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a9889b9..2410b28 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Todo MVC with Brahmos [https://brahmosjs.github.io/brahmos-todo-mvc](https://brahmosjs.github.io/brahmos-todo-mvc) ## Slack Channel -https://brahmoscommunity.slack.com/join/shared_invite/enQtNjYxODIzMzA3NTg3LWY5ZWY4ZjczNThhMTZjN2Q3NTNmMTBjNjVlZGM5ZWMzNDIyYWI2OTUwMTZiOGQ5MjEwN2Q0ZGRkM2UxZjFiZTM +https://join.slack.com/t/brahmoscommunity/shared_invite/enQtODM5NDMwODgwMzQyLTc4YjJlZjY3Mzk1ODJkNTRkODljYjhmM2NhMGIxNzFjMjZjODk0MmVjZTVkNmE5Y2MwYzZkMzk5NTUxYmI5OWE ## Progress - [x] Component and props From 94524266258e4042766e49b83635264fd85047c1 Mon Sep 17 00:00:00 2001 From: Ameer Jhan Date: Mon, 18 Nov 2019 15:03:51 +0530 Subject: [PATCH 4/4] feat(ci): add circleci --- .circleci/config.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..552d564 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,40 @@ +version: 2 +workflows: + version: 2 + build_and_test: + jobs: + - build +jobs: + build: + docker: + - image: circleci/node:8 + + working_directory: ~/repo + + steps: + - checkout + + - restore_cache: + keys: + - v1-dependencies-{{ checksum "package.json" }} + - v1-dependencies- + + - run: + name: Install dependencies + command: yarn install + + - save_cache: + paths: + - node_modules + key: v1-dependencies-{{ checksum "package.json" }} + + # run tests! + - run: + name: Run tests + command: yarn test + + # test the bundlesize + - run: + name: Test bundlesize + command: yarn test:bundlesize + \ No newline at end of file