Commit 2cd4f8b9 authored by David Schnur's avatar David Schnur

Merge pull request #961 from brianpeiris/master

Add basic Travis CI setup with test script that runs JSHint.
parents d4f93a28 c39053d8
*.min.js
!excanvas.min.js
node_modules/
language: node_js
node_js:
- 0.8
......@@ -7,3 +7,6 @@ all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))
%.min.js: %.js
yui-compressor $< -o $@
test:
./node_modules/.bin/jshint *jquery.flot.js
# Flot [![Build status](https://travis-ci.org/flot/flot.png)](https://travis-ci.org/flot/flot)
## About ##
Flot is a Javascript plotting library for jQuery.
......
{
"name": "Flot",
"version": "0.8.0-alpha",
"main": "jquery.flot.js",
"scripts": {
"test": "make test"
},
"devDependencies": {
"jshint": "0.9.1"
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment