File tree Expand file tree Collapse file tree 3 files changed +159
-270
lines changed
Expand file tree Collapse file tree 3 files changed +159
-270
lines changed Original file line number Diff line number Diff line change 4545 " schema"
4646 ],
4747 "dependencies" : {
48- "@types/json-schema" : " ^7.0.6 " ,
49- "@types/node" : " ^14.14.13 " ,
48+ "@types/json-schema" : " ^7.0.7 " ,
49+ "@types/node" : " ^14.14.33 " ,
5050 "glob" : " ^7.1.6" ,
5151 "json-stable-stringify" : " ^1.0.1" ,
5252 "ts-node" : " ^9.1.1" ,
53- "typescript" : " ^4.1 .3" ,
53+ "typescript" : " ^4.2 .3" ,
5454 "yargs" : " ^16.2.0"
5555 },
5656 "devDependencies" : {
57- "@types/chai" : " ^4.2.14 " ,
57+ "@types/chai" : " ^4.2.15 " ,
5858 "@types/glob" : " ^7.1.3" ,
5959 "@types/json-stable-stringify" : " ^1.0.32" ,
60- "@types/mocha" : " ^8.2.0 " ,
61- "ajv" : " ^6.12.6 " ,
62- "chai" : " ^4.2.0 " ,
63- "mocha" : " ^8.2 .1" ,
60+ "@types/mocha" : " ^8.2.1 " ,
61+ "ajv" : " ^7.2.1 " ,
62+ "chai" : " ^4.3.3 " ,
63+ "mocha" : " ^8.3 .1" ,
6464 "prettier" : " ^2.2.1" ,
6565 "source-map-support" : " ^0.5.19" ,
6666 "tslint" : " ^6.1.3"
Original file line number Diff line number Diff line change 1- import * as Ajv from "ajv" ;
1+ import Ajv from "ajv" ;
22import { assert } from "chai" ;
33import { readFileSync } from "fs" ;
44import { resolve } from "path" ;
@@ -9,7 +9,7 @@ let ajvWarnings: string[] = [];
99const ajv = new Ajv ( {
1010 logger : {
1111 log : console . log ,
12- warn : ( message ) => {
12+ warn : ( message : string ) => {
1313 ajvWarnings . push ( message ) ;
1414 } ,
1515 error : ( message ) => {
You can’t perform that action at this time.
0 commit comments