waibu-mpa 2.14.1 → 2.14.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.
- package/lib/class/component.js +2 -2
- package/package.json +1 -1
- package/wiki/CHANGES.md +4 -0
package/lib/class/component.js
CHANGED
|
@@ -303,14 +303,14 @@ async function componentFactory () {
|
|
|
303
303
|
* @param {string} tag - The tag name.
|
|
304
304
|
* @param {Object} params - The parameters for the tag.
|
|
305
305
|
*/
|
|
306
|
-
beforeBuildTag = (tag, params) => {}
|
|
306
|
+
beforeBuildTag = async (tag, params) => {}
|
|
307
307
|
|
|
308
308
|
/**
|
|
309
309
|
* Hook executed after building a tag.
|
|
310
310
|
* @param {string} tag - The tag name.
|
|
311
311
|
* @param {Object} params - The parameters for the tag.
|
|
312
312
|
*/
|
|
313
|
-
afterBuildTag = (tag, params) => {}
|
|
313
|
+
afterBuildTag = async (tag, params) => {}
|
|
314
314
|
|
|
315
315
|
/**
|
|
316
316
|
* Builds a child tag based on a detector attribute.
|
package/package.json
CHANGED