fix(@embark/site): fix strategy not put in the right section

This commit is contained in:
Jonathan Rainville 2019-05-08 12:57:41 -04:00
parent 8b94419670
commit 8781585341

View File

@ -137,15 +137,10 @@ There are two possible strategy options:
- **explicit** - Setting this option to `explicit` tells Embark to deploy the Smart Contracts specified in the `contracts` configuration without their dependencies. This can be combined with [disabling deployment](#Disabling-deployment) of individual Smart Contracts for fine control. - **explicit** - Setting this option to `explicit` tells Embark to deploy the Smart Contracts specified in the `contracts` configuration without their dependencies. This can be combined with [disabling deployment](#Disabling-deployment) of individual Smart Contracts for fine control.
``` ```
contracts: {
strategy: 'explicit' // 'implicit' is the default strategy: 'explicit' // 'implicit' is the default
SimpleStorage: { contracts: {
deploy: false
},
AnotherStorage: {
... ...
} }
}
``` ```