Skip to content

Commit 7a17ee2

Browse files
author
Orjiewuru Kingdom
committed
update readme, add travis and setup testing
1 parent 77bf414 commit 7a17ee2

File tree

13 files changed

+2582
-170
lines changed

13 files changed

+2582
-170
lines changed

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
sudo: required
2+
dist: trusty
3+
language: node_js
4+
5+
node_js:
6+
- 10.8.0
7+
8+
before_script:
9+
- nvm install 6
10+
- npm install
11+
12+
script:
13+
- npm test

README.md

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,60 @@
1-
# react-webpack-starter
2-
A simple React, Webpack 4 boilerplate.
1+
# React Webpack Starter
2+
> A simple React, Webpack 4 boilerplate to help you kick start your next React project.
33
44
<img width="1440" alt="screen shot 2018-08-21 at 9 02 00 pm" src="https://user-images.githubusercontent.com/26261917/44426324-42d11700-a586-11e8-8e05-8d09bafb9f84.png">
5+
6+
## Installation
7+
8+
```sh
9+
git clone https://github.com/kingisaac95/react-webpack-starter.git
10+
```
11+
12+
Change directory
13+
14+
```sh
15+
cd react-webpack-starter
16+
```
17+
18+
Install Package dependencies
19+
20+
```sh
21+
npm install
22+
```
23+
24+
Run the application
25+
26+
```sh
27+
npm start
28+
```
29+
30+
Run test
31+
32+
```sh
33+
npm run test
34+
```
35+
36+
## Release History
37+
38+
* 0.1.0
39+
* The first proper release
40+
* Added first few basic components with styling
41+
* 0.0.1
42+
* Work in progress
43+
44+
## Meta
45+
46+
Your Name – [@kingisaac95](https://twitter.com/kingisaac95)[email protected]
47+
48+
Distributed under the MIT license. See ``LICENSE`` for more information.
49+
50+
[https://github.com/kingisaac95/react-webpack-starter](https://github.com/kingisaac95/)
51+
52+
## Contributing
53+
54+
1. Fork it (<https://github.com/kingisaac95/react-webpack-starter/fork>)
55+
2. Create your feature branch (`git checkout -b feature/fooBar`)
56+
3. Commit your changes (`git commit -am 'Add some fooBar'`)
57+
4. Push to the branch (`git push origin feature/fooBar`)
58+
5. Create a new Pull Request
59+
60+
<!-- Markdown link & img dfn's -->

0 commit comments

Comments
 (0)