quakeml-parser-js
Version:
Quakeml Parser for JavaScript
37 lines (32 loc) • 605 B
JavaScript
;
var config = require('./config');
var watch = {
scripts: {
files: [
config.example + '/**/*.js',
config.src + '/**/*.js',
config.test + '/**/*.js'
],
tasks: ['jshint:scripts', 'browserify', 'mocha_phantomjs']
},
html: {
files: [
config.test + '/**/*.html'
],
tasks: ['copy:test']
},
reload: {
files: [
config.build + '/**/*',
config.example + '**/*'
],
options: {
livereload: true
}
},
gruntfile: {
files: ['Gruntfile.js'],
tasks: ['jshint:gruntfile']
}
};
module.exports = watch;