Skip to content

Commit 45ec383

Browse files
committed
Add Travis CI integration
1 parent 259fb5d commit 45ec383

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: node_js
2+
node_js: "5.1"
3+
before_script:
4+
- npm install -g grunt-cli

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# react-globalize
22

3+
[![Build Status](https://travis-ci.org/jquery-support/react-globalize.svg?branch=master)](https://travis-ci.org/jquery-support/react-globalize)
4+
35
[React](http://facebook.github.io/react/) components that provide internationalization features via [Globalize](https://github.com/jquery/globalize). With a little initialization, you get instantly internationalized values in your application.
46

57
## Install
@@ -192,7 +194,7 @@ Element Replacement.
192194
</FormatMessage>
193195
// Which would render:
194196
// <span>
195-
// For more information, see
197+
// For more information, see
196198
// <a href="https://github.com/jquery-support/react-globalize">React Globalize</a>
197199
// </span>
198200
// when using the default message, in this case `en` (English).

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"README.md",
1111
"src/"
1212
],
13-
"scripts": {},
13+
"scripts": {
14+
"test": "grunt test"
15+
},
1416
"keywords": [
1517
"react",
1618
"globalize",

0 commit comments

Comments
 (0)