File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,5 @@ const bulk = require('bulk-require')
22const Path = require ( 'path' )
33
44module . exports = bulk ( Path . join ( __dirname , '..' ) , [
5- '+(app|client|config|log|pull|service)/**/!(browser|*.test).js'
6- ] )
7- // HACK remove circular bulk require artifacts
8- delete module . exports . config . index
9- delete module . exports . service . index
10- delete module . exports . pull . index
11- delete module . exports . log . index
5+ '+(app|browser|client|config|log|pull|service)/**/!(browser|*.test).js'
6+ ] , { index : false } )
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ const Path = require('path')
33
44module . exports = bulk ( Path . join ( __dirname , '..' ) , [
55 '+(app|cli|client|config|log|pull|service|server)/**/!(browser|*.test).js'
6- ] )
6+ ] , { index : false } )
You can’t perform that action at this time.
0 commit comments