@pzlr/build-core
Advanced tools
Comparing version 2.3.0 to 2.4.0
@@ -0,0 +0,0 @@ declare namespace PzlrBuildCore { |
@@ -104,3 +104,3 @@ 'use strict'; | ||
* @param {Array<string>=} [names] | ||
* @returns {!Promise<!Array<!Block>>} | ||
* @returns {!Promise<!Map<string, !Block>>} | ||
*/ | ||
@@ -128,3 +128,3 @@ static async getAll(names) { | ||
return $C(names).parallel().reduce( | ||
const blocks = $C(names).parallel().reduce( | ||
async (res, name, i) => { | ||
@@ -143,2 +143,4 @@ const | ||
); | ||
return $C(blocks).reduce((map, decl) => map.set(decl.name, decl), new Map()); | ||
} | ||
@@ -145,0 +147,0 @@ |
@@ -7,3 +7,3 @@ { | ||
"typings": "index.d.ts", | ||
"version": "2.3.0", | ||
"version": "2.4.0", | ||
"license": "MIT", | ||
@@ -34,3 +34,3 @@ "author": { | ||
"is-path-inside": "^1.0.1", | ||
"joi": "^13.0.2", | ||
"joi": "^13.1.1", | ||
"sugar": "^2.0.1" | ||
@@ -41,6 +41,6 @@ }, | ||
"@types/glob": "^5.0.34", | ||
"@types/joi": "^13.0.3", | ||
"babel-eslint": "^8.1.2", | ||
"eslint": "^4.14.0" | ||
"@types/joi": "^13.0.5", | ||
"babel-eslint": "^8.2.1", | ||
"eslint": "^4.16.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
57559
766
Updatedjoi@^13.1.1