Skip to content

Commit 048f17f

Browse files
committed
publish: bump version to v10.5.1
1 parent 7828694 commit 048f17f

File tree

5 files changed

+8
-13
lines changed

5 files changed

+8
-13
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/jlib.js

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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": "10.5.0",
3+
"version": "10.5.1",
44
"description": "Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

src/tests/issues/issue82.test.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { strict as assert } from "assert";
22
import { compileSchema } from "../../compileSchema";
33

4-
// @todo investigate different requirements on joining url and id
5-
// here json-schemer://schema + stock-assembly is joined to json-schemer://stock-assembly
6-
// in joinId: const trailingFragments = /\/\/*$/; will fix this issue but fail spec tests
74
describe("issue#82", () => {
85
it("should return validation errors for number", () => {
96
const schema = compileSchema({
@@ -35,8 +32,6 @@ describe("issue#82", () => {
3532
"stock-assembly": 1
3633
});
3734

38-
console.log(errors);
39-
4035
assert.equal(valid, false);
4136
});
4237

@@ -71,8 +66,6 @@ describe("issue#82", () => {
7166
"1c_list_Document_СборкаЗапасов": 1
7267
});
7368

74-
console.log(errors);
75-
7669
assert.equal(valid, false);
7770
});
7871
});

0 commit comments

Comments
 (0)