@tsofist/schema-forge 3.3.0 → 3.3.2

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.
@@ -12,7 +12,7 @@ function dereferenceSchema(raw, options = {}) {
12
12
  const seen = new WeakMap();
13
13
  const { throwOnDereferenceFailure = true, onDereferenceFailure } = options;
14
14
  function resolve(current, path) {
15
- if (current === undefined || typeof current !== 'object')
15
+ if (current == undefined || typeof current !== 'object')
16
16
  return current;
17
17
  // Circular
18
18
  if (seen.has(current))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsofist/schema-forge",
3
- "version": "3.3.0",
3
+ "version": "3.3.2",
4
4
  "description": "Generate JSON schema from TypeScript types",
5
5
  "author": "Andrew Berdnikov <tsofistgudmen@gmail.com>",
6
6
  "license": "LGPL-3.0",
@@ -20,9 +20,9 @@
20
20
  "test:watch": "jest --watch"
21
21
  },
22
22
  "dependencies": {
23
- "@dbml/core": "~3.13.5",
24
- "@faker-js/faker": "^9.8.0",
25
- "@tsofist/stem": "^5.1.0",
23
+ "@dbml/core": "~3.13.7",
24
+ "@faker-js/faker": "^9.9.0",
25
+ "@tsofist/stem": "^5.2.1",
26
26
  "@ungap/structured-clone": "^1.3.0",
27
27
  "ajv": "^8.17.1",
28
28
  "ajv-formats": "^3.0.1",
@@ -34,13 +34,13 @@
34
34
  },
35
35
  "devDependencies": {
36
36
  "@tsofist/web-buddy": "^1.21.0",
37
- "@types/jest": "^29.5.14",
37
+ "@types/jest": "^30.0.0",
38
38
  "@types/node": "^20.19.0",
39
39
  "@types/supertest": "^6.0.3",
40
40
  "@types/ungap__structured-clone": "^1.2.0",
41
- "jest": "~29.7.0",
41
+ "jest": "~30.0.4",
42
42
  "rimraf": "^6.0.1",
43
- "supertest": "^7.1.1",
43
+ "supertest": "^7.1.3",
44
44
  "ts-jest": "~29.4.0",
45
45
  "typescript": "~5.8.3"
46
46
  },