embark/packages
Pascal Precht 4a122499e9
feat: add support for `embark.config.js`
This commit introduces support for using `embark.config.js` to calculate the embark
configuration object, that is otherwise provided via `embark.json`.

If an `embark.config.js` file is present, it will be used over the `embark.json` file.
The `embark.config.js` module needs to exports a function that can be asynchronous and
has to return or resolve with an embark configuration object:

```
// embark.config.js

module.exports = async function () {
  let config = ...; // do lazy calculation of `embarkConfig`;
  return config;
}
```
2020-03-02 17:19:41 +01:00
..
cockpit chore(prerelease): 5.3.0-nightly.0 2020-02-27 00:13:54 +00:00
core feat: add support for `embark.config.js` 2020-03-02 17:19:41 +01:00
embark feat: add support for `embark.config.js` 2020-03-02 17:19:41 +01:00
embarkjs chore(release): 5.2.3 2020-02-25 15:09:29 -06:00
plugins feat: add support for `embark.config.js` 2020-03-02 17:19:41 +01:00
stack feat: add support for `embark.config.js` 2020-03-02 17:19:41 +01:00
utils chore(prerelease): 5.3.0-nightly.0 2020-02-27 00:13:54 +00:00
.yarnrc build: cleanup .yarnrc 2019-02-05 14:15:39 -06:00