Skip to content

Commit 555b196

Browse files
committed
publish: bump version to v11.1.0
1 parent 2d796f6 commit 555b196

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "json-schema-library",
3-
"version": "11.0.5",
3+
"version": "11.1.0",
44
"description": "Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.mjs",

src/validateSchema.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ describe("validateSchema", () => {
1717
it("should error if `$defs` is not an object", () => {
1818
const { schemaErrors } = compileSchema({ $defs: true });
1919
assert.equal(schemaErrors?.length, 1);
20-
console.log(schemaErrors[0]);
2120
});
2221
it("should throw an error if schema is invalid and option 'throwOnInvalidSchema = true'", () => {
2322
assert.throws(() => {

0 commit comments

Comments
 (0)