mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-15 23:26:39 +00:00
Effectively deprecate the `embarkjs-connector-web3` package but don't introduce a breaking change by simply not loading the plugin if it's specified in a DApp's `embark.json`. If the deprecated plugin is specified, display a message indicating the plugin was ignored and suggesting it be removed from the project's `embark.json` and `package.json`.
26 lines
526 B
JSON
26 lines
526 B
JSON
{
|
|
"contracts": ["contracts/**"],
|
|
"app": {
|
|
"js/dapp.js": ["app/dapp.js"],
|
|
"index.html": "app/index.html",
|
|
"images/": ["app/images/**"],
|
|
"css/bootstrap.min.css": "node_modules/bootstrap/dist/css/bootstrap.min.css"
|
|
},
|
|
"buildDir": "dist/",
|
|
"config": "config/",
|
|
"versions": {
|
|
"web3": "1.0.0-beta",
|
|
"solc": "0.5.0",
|
|
"ipfs-api": "17.2.4"
|
|
},
|
|
"plugins": {
|
|
},
|
|
"options": {
|
|
"solc": {
|
|
"optimize": true,
|
|
"optimize-runs": 200
|
|
}
|
|
},
|
|
"generationDir": "embarkArtifacts"
|
|
}
|