From c99dcd2e93a045701278d924470e10a4a180bc39 Mon Sep 17 00:00:00 2001 From: Chris Aniszczyk Date: Thu, 19 Apr 2012 15:32:41 -0700 Subject: [PATCH] Add Travis CI Support Continous integration is nice, fixes #3155 Signed-off-by: Chris Aniszczyk --- .gitignore | 3 ++- .travis.yml | 4 ++++ README.md | 2 +- package.json | 22 ++++++++++++++++++++++ 4 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 .travis.yml create mode 100644 package.json diff --git a/.gitignore b/.gitignore index 4086ceec5226..2b1ffbfeb8a2 100644 --- a/.gitignore +++ b/.gitignore @@ -32,4 +32,5 @@ nbproject .hg .svn .CVS -.idea \ No newline at end of file +.idea +node_modules diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000000..037e4e797d25 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,4 @@ +language: node_js +node_js: + - 0.6 +script: "make build" diff --git a/README.md b/README.md index cab1d7afdeb9..f1a66eac3963 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[Twitter Bootstrap](http://twitter.github.com/bootstrap) +[Twitter Bootstrap](http://twitter.github.com/bootstrap) [![Build Status](https://secure.travis-ci.org/twitter/bootstrap.png)](http://travis-ci.org/twitter/bootstrap) ================= Bootstrap provides simple and flexible HTML, CSS, and Javascript for popular user interface components and interactions. In other words, it's a front-end toolkit for faster, more beautiful web development. It's created and maintained by [Mark Otto](http://twitter.com/mdo) and [Jacob Thornton](http://twitter.com/fat) at Twitter. diff --git a/package.json b/package.json new file mode 100644 index 000000000000..0c74adcd0204 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "bootstrap" + , "description": "HTML, CSS, and JS toolkit from Twitter." + , "version": "2.0.3" + , "keywords": ["bootstrap", "css"] + , "homepage": "http://twitter.github.com/bootstrap/" + , "author": "Twitter Inc." + , "repository": { + "type": "git" + , "url": "https://github.com/twitter/bootstrap.git" + } + , "licenses": [ + { "type": "Apache-2.0" + , "url": "http://www.apache.org/licenses/LICENSE-2.0" + } + ] + , "devDependencies": { + "uglify-js": "*" + , "jshint": "*" + , "recess": "*" + } +}