Skip to content

Commit c896ee0

Browse files
authored
Merge pull request #84 from GoTeamEpsilon/travis
Travis
2 parents bd231fc + 1778aa6 commit c896ee0

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

.travis.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
language: node_js
2+
node_js:
3+
- "6"
4+
before_script:
5+
- npm install -g grunt-cli bower

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
![img](http://www.textfiles.com/underconstruction/HeHeartlandBluffs8237Photo_2000construction5_anim.gif)
22

3-
![img](http://i.imgur.com/Gq1eJpa.png)
3+
[![Build Status](https://travis-ci.org/GoTeamEpsilon/angular-to-react-redux.svg?branch=master)](https://travis-ci.org/GoTeamEpsilon/angular-to-react-redux)
44

5-
# Angular to React/Redux
5+
![img](http://i.imgur.com/Gq1eJpa.png)
66

77
This repository is an educational resource for Angular v1 experts that are looking to learn React/Redux. A contrived sample application for managing basic patient information is provided using both technologies' best practices (look under `samples/` to see both versions). This application will be referred to below as we explore the key philosophical differences between Angular v1 and React/Redux so that you can get coding!
88

package.json

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "angular-to-react-redux",
3+
"version": "1.0.0",
4+
"description": "This repository is an educational resource for Angular v1 experts that are looking to learn React/Redux. Edit",
5+
"main": "index.js",
6+
"scripts": {
7+
"angular": "cd samples/angular-patient-demographics-example && npm install && bower install && grunt",
8+
"reactredux": "cd samples/react-redux-patient-demographics-example && npm install && npm run lint && npm run test",
9+
"test": "concurrent \"npm run angular\" \"npm run reactredux\" "
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/GoTeamEpsilon/angular-to-react-redux.git"
14+
},
15+
"author": "Team Epsilon",
16+
"license": "MIT",
17+
"devDependencies": {
18+
"concurrently": "^1.0.0"
19+
},
20+
"bugs": {
21+
"url": "https://github.com/GoTeamEpsilon/angular-to-react-redux/issues"
22+
},
23+
"homepage": "https://github.com/GoTeamEpsilon/angular-to-react-redux#readme"
24+
}

0 commit comments

Comments
 (0)