Skip to content

Commit

Permalink
various
Browse files Browse the repository at this point in the history
  • Loading branch information
mtford90 committed Jan 30, 2015
1 parent a90eac6 commit 742ad7d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 741 deletions.
27 changes: 0 additions & 27 deletions couchdb/config.ini

This file was deleted.

4 changes: 0 additions & 4 deletions couchdb/start.sh

This file was deleted.

20 changes: 11 additions & 9 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,12 @@ var gulp = require('gulp'),
var minimist = require('minimist');

var JS_FILES = (function () {
var glob = _.map(conf.ext.js, function (x) { return './' + conf.scripts + '/**/*.' + x; });
_.each(conf.ext.spec, function (x) { glob.push('./' + conf.tests + '/**/*.' + x) });
var glob = _.map(conf.ext.js, function (x) {
return './' + conf.scripts + '/**/*.' + x;
});
_.each(conf.ext.spec, function (x) {
glob.push('./' + conf.tests + '/**/*.' + x)
});
glob = glob.concat('!' + './' + conf.tests + '/support/preprocessor.js');
glob = glob.concat('../rest/core/**/*.js');
glob = glob.concat('../rest/storage/**/*.js');
Expand Down Expand Up @@ -68,13 +72,11 @@ gulp.task('watch-server', function () {
nodemon({
script: 'devServer.js',
ignore: ignore
})
.on('restart', function () {
console.log('restarting node server');
})
.on('crash', function () {
console.log('\nNode has crashed will restart after next save.');
});
}).on('restart', function () {
console.log('restarting node server');
}).on('crash', function () {
console.log('\nNode has crashed will restart after next save.');
});
});

gulp.task('test-bundle', function () {
Expand Down
Loading

0 comments on commit 742ad7d

Please sign in to comment.