@superhero/core 4.0.9 → 4.0.10
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/index.js +3 -3
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -589,7 +589,7 @@ export default class Core
|
|
|
589
589
|
async #addConfigPath(configPath)
|
|
590
590
|
{
|
|
591
591
|
const { filepath, config } = await this.config.resolve(configPath)
|
|
592
|
-
this.#addConfigDependencies(filepath, config)
|
|
592
|
+
await this.#addConfigDependencies(filepath, config)
|
|
593
593
|
this.config.add(filepath, config)
|
|
594
594
|
Core.log.info`assigned config ${configPath}`
|
|
595
595
|
|
|
@@ -598,7 +598,7 @@ export default class Core
|
|
|
598
598
|
try
|
|
599
599
|
{
|
|
600
600
|
const { filepath, config } = await this.config.resolve(configPath, this.branch)
|
|
601
|
-
this.#addConfigDependencies(filepath, config)
|
|
601
|
+
await this.#addConfigDependencies(filepath, config)
|
|
602
602
|
this.config.add(filepath, config)
|
|
603
603
|
Core.log.info`assigned config ${configPath + '-' + this.branch}`
|
|
604
604
|
}
|
|
@@ -658,7 +658,7 @@ export default class Core
|
|
|
658
658
|
}
|
|
659
659
|
|
|
660
660
|
const { filepath, config } = await this.config.resolve(dependencyPath)
|
|
661
|
-
this.#addConfigDependencies(filepath, config)
|
|
661
|
+
await this.#addConfigDependencies(filepath, config)
|
|
662
662
|
this.config.add(filepath, config)
|
|
663
663
|
}
|
|
664
664
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superhero/core",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.10",
|
|
4
4
|
"description": "Core functionalities for the superhero framework.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@superhero/locator": "^4.2.5",
|
|
13
|
-
"@superhero/bootstrap": "^4.1.
|
|
13
|
+
"@superhero/bootstrap": "^4.1.4"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
16
16
|
"test": "node --trace-warnings --test --experimental-test-coverage"
|