@ui5/dts-generator
Advanced tools
Comparing version 2.0.0 to 2.0.1
@@ -0,1 +1,5 @@ | ||
## 2.0.1 | ||
fix: skipping/ignoring symbols by fqn only worked on library deps. | ||
## 2.0.0 | ||
@@ -2,0 +6,0 @@ |
@@ -23,3 +23,6 @@ const _ = require("lodash"); | ||
const actualOptions = _.defaultsDeep(options, defaultOptions); | ||
const targetLibFixedJson = fixApiJson(targetLibJson); | ||
const targetLibFixedJson = fixApiJson( | ||
targetLibJson, | ||
actualOptions.directives.badSymbols | ||
); | ||
const depsFixedJsons = timer(function fixJson() { | ||
@@ -26,0 +29,0 @@ return _.map(actualOptions.dependencies, _ => |
{ | ||
"name": "@ui5/dts-generator", | ||
"description": "Generates TypeScript Definitions from UI5 api.json files", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"license": "Apache-2.0", | ||
@@ -28,3 +28,3 @@ "repository": { | ||
}, | ||
"gitHead": "ad677836eb5cd12ad65c68bc8b7aece1e024097a" | ||
"gitHead": "1a0504232e6dda49668e45adbb97ef069cf31b67" | ||
} |
72151
1943