[6.8] Upgrade some hapi related packages to their hapi-namespace counterparts (#98753)

This commit is contained in:
Thomas Watson 2021-05-06 18:50:12 +02:00 committed by GitHub
parent f93cd522f9
commit 84fa5add86
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
184 changed files with 318 additions and 231 deletions

View file

@ -4,7 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/
import Boom from 'boom';
import Boom from '@hapi/boom';
/**
* Wraps ES errors into a Boom error response and returns it

View file

@ -5,7 +5,7 @@
*/
import expect from 'expect.js';
import Boom from 'boom';
import Boom from '@hapi/boom';
import { licensePreRoutingFactory } from '../license_pre_routing_factory';
describe('license_pre_routing_factory', () => {

View file

@ -4,7 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/
import Boom from 'boom';
import Boom from '@hapi/boom';
import { PLUGIN } from '../../../common/constants';
export const licensePreRoutingFactory = (server) => {