]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Add Travis CI Support 3157/head
authorChris Aniszczyk <zx@twitter.com>
Thu, 19 Apr 2012 22:32:41 +0000 (15:32 -0700)
committerChris Aniszczyk <zx@twitter.com>
Thu, 19 Apr 2012 23:09:59 +0000 (16:09 -0700)
Continous integration is nice, fixes #3155

Signed-off-by: Chris Aniszczyk <zx@twitter.com>
.gitignore
.travis.yml [new file with mode: 0644]
README.md
package.json [new file with mode: 0644]

index 4086ceec5226c5a5b0946d9d3d35b32fdea074ee..2b1ffbfeb8a254fb39f53e6e4f27aa9d20c859fb 100644 (file)
@@ -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 (file)
index 0000000..037e4e7
--- /dev/null
@@ -0,0 +1,4 @@
+language: node_js
+node_js:
+  - 0.6
+script: "make build"
index cab1d7afdeb949aa88823ed2e3c265d106377ace..f1a66eac3963b9189c60128184c170da1cc96bbc 100644 (file)
--- 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 (file)
index 0000000..0c74adc
--- /dev/null
@@ -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": "*"
+  }
+}