joi 17.2.1 → 17.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/template.js CHANGED
@@ -3,7 +3,7 @@
3
3
  const Assert = require('@hapi/hoek/lib/assert');
4
4
  const Clone = require('@hapi/hoek/lib/clone');
5
5
  const EscapeHtml = require('@hapi/hoek/lib/escapeHtml');
6
- const Formula = require('@hapi/formula');
6
+ const Formula = require('@sideway/formula');
7
7
 
8
8
  const Common = require('./common');
9
9
  const Errors = require('./errors');
package/lib/trace.js CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  const DeepEqual = require('@hapi/hoek/lib/deepEqual');
4
- const Pinpoint = require('@hapi/pinpoint');
4
+ const Pinpoint = require('@sideway/pinpoint');
5
5
 
6
6
  const Errors = require('./errors');
7
7
 
@@ -1,12 +1,12 @@
1
1
  'use strict';
2
2
 
3
3
  const Assert = require('@hapi/hoek/lib/assert');
4
- const Domain = require('@hapi/address/lib/domain');
5
- const Email = require('@hapi/address/lib/email');
6
- const Ip = require('@hapi/address/lib/ip');
4
+ const Domain = require('@sideway/address/lib/domain');
5
+ const Email = require('@sideway/address/lib/email');
6
+ const Ip = require('@sideway/address/lib/ip');
7
7
  const EscapeRegex = require('@hapi/hoek/lib/escapeRegex');
8
- const Tlds = require('@hapi/address/lib/tlds');
9
- const Uri = require('@hapi/address/lib/uri');
8
+ const Tlds = require('@sideway/address/lib/tlds');
9
+ const Uri = require('@sideway/address/lib/uri');
10
10
 
11
11
  const Any = require('./any');
12
12
  const Common = require('../common');