embark/packages/plugins/deploy-tracker/src
Pascal Precht 73d04433cf feat(@embark/deployment): introduce `interfaces` and `libraries` configuration
This commit adds two new configuration settings for Smart Contract configuration:

- `interfaces` - Any Smart Contract that represent an interface or is used for inheritance
- `libraries` - Any Smart Contract that is used as a library

This makes the configuration less redundant in cases where otherwise the `deploy`
property has been set to `false`, such as:

```
deploy: {
  Ownable: {
    deploy: false
  },
  ...
}
```

The above can now be done via:

```
interfaces: ['Ownable'],
deploy: {
  ...
}
```
2020-01-15 09:45:42 -05:00
..
test feat(@embark/deployment): introduce `interfaces` and `libraries` configuration 2020-01-15 09:45:42 -05:00
deploymentChecks.js feat(@embark/deployment): introduce `interfaces` and `libraries` configuration 2020-01-15 09:45:42 -05:00
index.js feat(@embark/deployment): introduce `interfaces` and `libraries` configuration 2020-01-15 09:45:42 -05:00
trackingFunctions.js fix(@embark/deploy-tracker): fix not storing different chains 2019-10-30 12:39:21 -05:00