File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 33/* eslint no-prototype-builtins: 0 */
44
55const Ajv = require ( 'ajv' )
6+ const fastUri = require ( 'fast-uri' )
67const ajvFormats = require ( 'ajv-formats' )
78const merge = require ( 'deepmerge' )
89const clone = require ( 'rfdc' ) ( { proto : true } )
@@ -52,7 +53,7 @@ function build (schema, options) {
5253
5354 options = options || { }
5455
55- ajvInstance = new Ajv ( { ...options . ajv , strictSchema : false } )
56+ ajvInstance = new Ajv ( { ...options . ajv , strictSchema : false , uriResolver : fastUri } )
5657 ajvFormats ( ajvInstance )
5758
5859 isValidSchema ( schema )
Original file line number Diff line number Diff line change 4444 "webpack" : " ^5.40.0"
4545 },
4646 "dependencies" : {
47- "ajv" : " ^8.6.2 " ,
47+ "ajv" : " ^8.10.0 " ,
4848 "ajv-formats" : " ^2.1.1" ,
4949 "deepmerge" : " ^4.2.2" ,
50+ "fast-uri" : " ^1.0.1" ,
5051 "rfdc" : " ^1.2.0" ,
5152 "string-similarity" : " ^4.0.1"
5253 },
You can’t perform that action at this time.
0 commit comments