embark/packages
Pascal Precht 1aeb6fd83b feat(@embark/embark-specialconfigs): introduce new beforeDeploy hooks
This commit enables new `beforeDeploy` deployment hooks. With this change
it's possible to add `beforeDeploy` to either `contracts: {}` within the contracts
configuration, or an individual contract.

For example:

```
contracts: {
  SimpleStorage: {
    beforeDeploy: async (context) => {

    }
  }
}
```

Runs the hook before `SimpleStorage` will be deployed. Whereas

```
contracts: {
  ...
  beforeDeploy: async () => {

  }
}

will be executed before *all* Smart Contracts will be deployed.
2019-04-12 14:54:16 -04:00
..
2019-03-18 18:26:56 -05:00
2019-03-18 18:26:56 -05:00
2019-03-18 18:26:56 -05:00
2019-03-18 18:26:56 -05:00
2019-03-18 18:26:56 -05:00
2019-02-05 14:15:39 -06:00