You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 6, 2021. It is now read-only.
Currently, loadConfig only accepts a file path. However, an equally reasonable approach is to pass the array of plugin definitions directly to loadConfig.
loadConfig supports a JS file, but it requires synchronous loading and return of the plugin list directly via module.exports, which may not be feasible in all applications.
Proposed change adds the following capability:
loadConfig(configArray, base, [callback])
configArray array of plugins to load with their configuration
base location to use as the base for plugins
callback an (optional) callback
PR inbound.
The text was updated successfully, but these errors were encountered:
matmar10
added a commit
to blossomfinance/architect
that referenced
this issue
Feb 12, 2019
Currently,
loadConfig
only accepts a file path. However, an equally reasonable approach is to pass the array of plugin definitions directly toloadConfig
.loadConfig
supports a JS file, but it requires synchronous loading and return of the plugin list directly via module.exports, which may not be feasible in all applications.Proposed change adds the following capability:
loadConfig(configArray, base, [callback])
configArray
array of plugins to load with their configurationbase
location to use as the base for pluginscallback
an (optional) callbackPR inbound.
The text was updated successfully, but these errors were encountered: