@@ -121,7 +121,7 @@ async function buildNotifiers (notifier) {
121121async function packNotifiers ( notifier ) {
122122 const notifiers = notifier
123123 ? [ notifier ]
124- : [ 'js' , 'browser' , 'node' , 'web-worker' , 'plugin-angular' , 'plugin-react' , 'plugin-vue' ]
124+ : [ 'js' , 'browser' , 'node' , 'web-worker' , 'plugin-angular' , 'plugin-react' , 'plugin-vue' , 'plugin-http-errors' ]
125125 for ( const n of notifiers ) {
126126 let packageLocation = `packages/${ n } /`
127127 if ( n === 'plugin-angular' ) packageLocation += 'dist/'
@@ -131,7 +131,7 @@ async function packNotifiers (notifier) {
131131
132132async function installNotifiers ( notifier ) {
133133 trace ( 'install notifiers' )
134- if ( notifier && ! [ 'browser' , 'plugin-vue' , 'plugin-react' , 'web-worker' ] . includes ( notifier ) ) return
134+ if ( notifier && ! [ 'browser' , 'plugin-vue' , 'plugin-react' , 'web-worker' , 'plugin-http-errors' ] . includes ( notifier ) ) return
135135 await ex ( `npm` , [
136136 `install` ,
137137 `--no-package-lock` ,
@@ -144,7 +144,8 @@ async function installNotifiers (notifier) {
144144 `../../../../bugsnag-browser-${ require ( '../packages/browser/package.json' ) . version } .tgz` ,
145145 `../../../../bugsnag-web-worker-${ require ( '../packages/web-worker/package.json' ) . version } .tgz` ,
146146 `../../../../bugsnag-plugin-react-${ require ( '../packages/plugin-react/package.json' ) . version } .tgz` ,
147- `../../../../bugsnag-plugin-vue-${ require ( '../packages/plugin-vue/package.json' ) . version } .tgz`
147+ `../../../../bugsnag-plugin-vue-${ require ( '../packages/plugin-vue/package.json' ) . version } .tgz` ,
148+ `../../../../bugsnag-plugin-http-errors-${ require ( '../packages/plugin-http-errors/package.json' ) . version } .tgz`
148149 ]
149150 ) , {
150151 cwd : `${ __dirname } /../test/browser/features/fixtures`
0 commit comments