embark/packages/plugins/graph
Michael Bradley, Jr e0f7913a02 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 export either an
object or a function that can be asynchronous and has to return or resolve with
an embark configuration object:

```js
// embark.config.js

module.exports = async function () {
  let config = ...; // do lazy calculation of `embarkConfig`;
  return config;
}
```
2020-03-06 09:45:43 -06:00
..
src feat: add support for `embark.config.js` 2020-03-06 09:45:43 -06:00
.npmrc move embarkjs packages & remove embark- prefix from some folders (#1879) 2019-09-06 18:26:08 -04:00
CHANGELOG.md chore(prerelease): 5.3.0-nightly.5 2020-03-06 00:15:50 +00:00
README.md chore: update site urls 2020-01-28 12:07:17 -05:00
index.js fix: ensure that packages properly specify their dependencies 2020-02-25 14:52:10 -06:00
package.json chore(prerelease): 5.3.0-nightly.5 2020-03-06 00:15:50 +00:00
tsconfig.json feat: warn about packages not configured as plugins; make geth/parity full plugins 2020-02-13 11:48:43 -05:00

README.md

embark-graph

Smart contract documentation generator for Embark DApps

Visit framework.embarklabs.io to get started with Embark.