Skip to content

Commit 018bd0c

Browse files
author
Orjiewuru Kingdom Isaac
authored
Merge pull request #2 from kingisaac95/feature/develop
Readme, Travis and Tests
2 parents abc71a6 + 6923ef7 commit 018bd0c

File tree

13 files changed

+2592
-170
lines changed

13 files changed

+2592
-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: 68 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,68 @@
1-
# react-webpack-starter
2-
A simple React, Webpack 4 boilerplate.
1+
# React Webpack Starter
2+
3+
> A simple React, Webpack 4 boilerplate to help you kick start your next React project.
4+
5+
![NpmVersion](https://img.shields.io/npm/v/npm.svg)
6+
[![Build Status](https://travis-ci.org/kingisaac95/react-webpack-starter.svg?branch=feature%2Fdevelop)](https://travis-ci.org/kingisaac95/react-webpack-starter)
7+
![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)
8+
9+
<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">
10+
11+
## Installation
12+
13+
```sh
14+
git clone https://github.com/kingisaac95/react-webpack-starter.git
15+
```
16+
17+
Change directory
18+
19+
```sh
20+
cd react-webpack-starter
21+
```
22+
23+
Install Package dependencies
24+
25+
```sh
26+
npm install
27+
```
28+
29+
Run the application
30+
31+
```sh
32+
npm start
33+
```
34+
35+
Run test
36+
37+
```sh
38+
npm run test
39+
```
40+
41+
## Release History
42+
43+
* 0.1.1
44+
* Update Readme and add badges
45+
* Setup Travis build and add tests
46+
* 0.1.0
47+
* The first proper release
48+
* Added first few basic components with styling
49+
* 0.0.1
50+
* Work in progress
51+
52+
## Meta
53+
54+
Your Name – [@kingisaac95](https://twitter.com/kingisaac95)[email protected]
55+
56+
Distributed under the MIT license. See ``LICENSE`` for more information.
57+
58+
[https://github.com/kingisaac95/react-webpack-starter](https://github.com/kingisaac95/)
59+
60+
## Contributing
61+
62+
1. Fork it (<https://github.com/kingisaac95/react-webpack-starter/fork>)
63+
2. Create your feature branch (`git checkout -b feature/fooBar`)
64+
3. Commit your changes (`git commit -am 'Add some fooBar'`)
65+
4. Push to the branch (`git push origin feature/fooBar`)
66+
5. Create a new Pull Request
67+
68+
<!-- Markdown link & img dfn's -->

0 commit comments

Comments
 (0)