quakeml-parser-js
Version:
Quakeml Parser for JavaScript
48 lines (44 loc) • 811 B
JavaScript
;
var config = require('./config');
var connect = {
options: {
hostname: '*'
},
dev: {
options: {
base: [
config.build + '/' + config.src,
config.example,
'etc'
],
livereload: true,
open: 'http://localhost:8000/example.html',
port: 8000
}
},
test: {
options: {
base: [
config.build + '/' + config.src,
config.build + '/' + config.test,
'etc',
'node_modules'
],
open: 'http://localhost:8001/test.html',
port: 8001
}
},
dist: {
options: {
base: [
config.dist,
config.example,
'etc'
],
keepalive: true,
open: 'http://localhost:8002/example.html',
port: 8002
}
}
};
module.exports = connect;