diff options
| author | Chris Aniszczyk <[email protected]> | 2012-04-19 15:32:41 -0700 |
|---|---|---|
| committer | Chris Aniszczyk <[email protected]> | 2012-04-19 16:09:59 -0700 |
| commit | c99dcd2e93a045701278d924470e10a4a180bc39 (patch) | |
| tree | 1a445a230cd11f4859864d0b94cf9d58263aa3fc | |
| parent | fd009597b67fc8bbd599248ce832a3930c85a966 (diff) | |
| download | bootstrap-c99dcd2e93a045701278d924470e10a4a180bc39.tar.xz bootstrap-c99dcd2e93a045701278d924470e10a4a180bc39.zip | |
Add Travis CI Support
Continous integration is nice, fixes #3155
Signed-off-by: Chris Aniszczyk <[email protected]>
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | .travis.yml | 4 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | package.json | 22 |
4 files changed, 29 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 4086ceec5..2b1ffbfeb 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 000000000..037e4e797 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,4 @@ +language: node_js +node_js: + - 0.6 +script: "make build" @@ -1,4 +1,4 @@ -[Twitter Bootstrap](http://twitter.github.com/bootstrap) +[Twitter Bootstrap](http://twitter.github.com/bootstrap) [](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 000000000..0c74adcd0 --- /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": "*" + } +} |
