mirror of
https://github.com/liabru/matter-js.git
synced 2025-01-13 16:18:50 -05:00
fix grunt for travis
This commit is contained in:
parent
3ce6c3a017
commit
f55d806b72
1 changed files with 8 additions and 2 deletions
10
Gruntfile.js
10
Gruntfile.js
|
@ -66,6 +66,11 @@ module.exports = function(grunt) {
|
||||||
open: 'http://localhost:9000/demo/dev.html',
|
open: 'http://localhost:9000/demo/dev.html',
|
||||||
livereload: 9001
|
livereload: 9001
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
serve: {
|
||||||
|
options: {
|
||||||
|
port: 9000
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -134,10 +139,11 @@ module.exports = function(grunt) {
|
||||||
grunt.loadNpmTasks('grunt-shell');
|
grunt.loadNpmTasks('grunt-shell');
|
||||||
|
|
||||||
grunt.registerTask('default', ['test', 'build']);
|
grunt.registerTask('default', ['test', 'build']);
|
||||||
grunt.registerTask('test', ['jshint', 'testDemo']);
|
grunt.registerTask('test', ['jshint', 'test:demo']);
|
||||||
|
grunt.registerTask('test:all', ['build:dev', 'connect:serve', 'test']);
|
||||||
grunt.registerTask('dev', ['build:dev', 'connect:watch', 'watch']);
|
grunt.registerTask('dev', ['build:dev', 'connect:watch', 'watch']);
|
||||||
|
|
||||||
grunt.registerTask('testDemo', function() {
|
grunt.registerTask('test:demo', function() {
|
||||||
var updateAll = grunt.option('updateAll'),
|
var updateAll = grunt.option('updateAll'),
|
||||||
diff = grunt.option('diff');
|
diff = grunt.option('diff');
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue