@json-schema-tools/transpiler
Advanced tools
Comparing version 1.4.1 to 1.4.2
@@ -6,3 +6,3 @@ "use strict"; | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
@@ -9,0 +9,0 @@ }; |
@@ -6,3 +6,3 @@ "use strict"; | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
@@ -9,0 +9,0 @@ }; |
@@ -6,3 +6,3 @@ "use strict"; | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
@@ -9,0 +9,0 @@ }; |
@@ -6,3 +6,3 @@ "use strict"; | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; | ||
return extendStatics(d, b); | ||
@@ -9,0 +9,0 @@ }; |
@@ -17,3 +17,3 @@ "use strict"; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
@@ -20,0 +20,0 @@ return result; |
@@ -17,3 +17,3 @@ "use strict"; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
@@ -20,0 +20,0 @@ return result; |
@@ -0,1 +1,9 @@ | ||
## [1.4.2](https://github.com/json-schema-tools/transpiler/compare/1.4.1...1.4.2) (2020-09-09) | ||
### Bug Fixes | ||
* add a couple more test assertions ([4e567dd](https://github.com/json-schema-tools/transpiler/commit/4e567dda33a1e81a74893e71c017b8b5aeb1f6bf)) | ||
* more testing ([7169139](https://github.com/json-schema-tools/transpiler/commit/7169139a21a9aac9c75db4c75e0c2d9b0f2ea804)) | ||
## [1.4.1](https://github.com/json-schema-tools/transpiler/compare/1.4.0...1.4.1) (2020-07-28) | ||
@@ -2,0 +10,0 @@ |
{ | ||
"name": "@json-schema-tools/transpiler", | ||
"version": "1.4.1", | ||
"version": "1.4.2", | ||
"description": "Turn your json schema into typings for various languages. Achieve master class dev tooling.", | ||
@@ -46,4 +46,4 @@ "main": "build/index.js", | ||
"tslint": "^6.1.2", | ||
"typedoc": "^0.17.8", | ||
"typescript": "^3.7.3" | ||
"typedoc": "^0.19.1", | ||
"typescript": "^4.0.2" | ||
}, | ||
@@ -50,0 +50,0 @@ "dependencies": { |
117340