Skip to content

Commit

Permalink
[INTERNAL] Fix JSDoc return types
Browse files Browse the repository at this point in the history
  • Loading branch information
larskissel committed Jul 23, 2021
1 parent 692d93b commit e69b951
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/utils/buildHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const log = require("@ui5/logger").getLogger("cli:utils:buildHelper");
* its value is an array of all of its transitive dependencies.
*
* @param {object} tree Project tree as generated by the [@ui5/project.normalizer]{@link module:@ui5/project.normalizer}
* @returns {Object<string, string[]>} An object with dependency names as key and each with an array of its transitive
* @returns {object<string, string[]>} An object with dependency names as key and each with an array of its transitive
* dependencies as value
*/
function getFlattenedDependencyTree(tree) {
Expand Down Expand Up @@ -70,7 +70,8 @@ function getFlattenedDependencyTree(tree) {
* for build settings
* @param {string[]} parameters.defaultIncludeDependencyTree Same as 'includeDependencyTree' parameter; used for
* build settings
* @returns {Object<string, string[]>} An object containing the 'includedDependencies' and 'excludedDependencies'
* @returns {{includedDependencies:string[],excludedDependencies:string[]}} An object containing the
* 'includedDependencies' and 'excludedDependencies'
*/
function createDependencyLists({
tree,
Expand Down

0 comments on commit e69b951

Please sign in to comment.