[devServer] shutup

This commit is contained in:
Spencer Alger 2014-10-17 12:26:39 -07:00
parent 697430fd56
commit e2fc5cb475

View file

@ -37,7 +37,6 @@ module.exports = function DevServer(opts) {
root: SRC,
displayRoot: SRC,
filter: function (filename) {
console.log(filename);
return filename.match(/.*\/src\/.*\.js$/)
&& !filename.match(/.*\/src\/kibana\/bower_components\/.*\.js$/)
&& !filename.match(/.*\/src\/kibana\/utils\/(event_emitter|next_tick|rison)\.js$/);
@ -48,7 +47,6 @@ module.exports = function DevServer(opts) {
root: APP,
displayRoot: SRC,
filter: function (filename) {
console.log(filename);
return filename.match(/.*\/src\/.*\.js$/)
&& !filename.match(/.*\/src\/kibana\/bower_components\/.*\.js$/)
&& !filename.match(/.*\/src\/kibana\/utils\/(event_emitter|next_tick|rison)\.js$/);