Trying for another build

This commit is contained in:
Ian Gilman 2013-02-01 15:01:38 -08:00
parent b49d709580
commit f4be17ab7e
4 changed files with 15 additions and 7 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
build/*
node_modules/*
test/*

View File

@ -1,4 +1,4 @@
language: node_js
language:
node_js
node_js:
- 0.8
- 0.6

View File

@ -42,9 +42,16 @@ module.exports = function(grunt) {
dest: 'build/openseadragon.min.js'
}
},
qunit: {
all: ['http://localhost:8000/test/test.html']
},
server: {
port: 8000,
base: '.'
},
watch: {
files: ['grunt.js', 'src/*.js'],
tasks: 'concat'
tasks: 'concat min'
},
jshint: {
options: {
@ -105,7 +112,6 @@ module.exports = function(grunt) {
}
});
// Default task.
grunt.registerTask('default', 'concat min');
grunt.registerTask('test', 'concat min server qunit');
};

View File

@ -2,5 +2,5 @@
"name": "openseadragon",
"version": "0.9.95",
"description": "Provides a smooth, zoomable user interface for HTML/Javascript.",
"dependencies": ["grunt"]
}
"dependencies": ["grunt", "qunitjs", "phantomjs"]
}