fix rx long stack trace support

This commit is contained in:
Berkeley Martinez
2015-08-12 11:46:34 -07:00
parent ca01115674
commit e36dd9970a
2 changed files with 4 additions and 3 deletions

View File

@ -16,7 +16,7 @@ const services = new Fetchr({
xhrPath: '/services' xhrPath: '/services'
}); });
Rx.longStackSupport = !!debug.enabled; Rx.config.longStackSupport = !!debug.enabled;
// returns an observable // returns an observable
app$(history) app$(history)

View File

@ -26,7 +26,8 @@ var Rx = require('rx'),
eslint = require('gulp-eslint'); eslint = require('gulp-eslint');
Rx.longStackSupport = true; Rx.config.longStackSupport = true;
var reloadDelay = 1000; var reloadDelay = 1000;
var reload = sync.reload; var reload = sync.reload;
var paths = { var paths = {
@ -83,7 +84,7 @@ gulp.task('inject', function() {
gulp.src('views/home.jade') gulp.src('views/home.jade')
.pipe(plumber({ errorHandler: errorHandler })) .pipe(plumber({ errorHandler: errorHandler }))
.pipe(inject(gulp.src(bower()), { .pipe(inject(gulp.src(bower()), {
//ignorePath: '/public' // ignorePath: '/public'
})) }))
.pipe(gulp.dest('views')); .pipe(gulp.dest('views'));
}); });