update readme

This commit is contained in:
Iuri Matias 2017-02-06 20:59:36 -05:00
parent dd1c58ff9f
commit 3dcd82248f
2 changed files with 7 additions and 2 deletions

View File

@ -491,11 +491,13 @@ Embark is quite flexible and you can configure you're own directory structure us
"contracts": ["app/contracts/**"], "contracts": ["app/contracts/**"],
"app": { "app": {
"css/app.css": ["app/css/**"], "css/app.css": ["app/css/**"],
"images/": ["app/images/**"],
"js/app.js": ["embark.js", "app/js/**"], "js/app.js": ["embark.js", "app/js/**"],
"index.html": "app/index.html" "index.html": "app/index.html"
}, },
"buildDir": "dist/", "buildDir": "dist/",
"config": "config/" "config": "config/",
"plugins": {}
} }
``` ```

View File

@ -11,9 +11,12 @@ structure using ``embark.json``
"contracts": ["app/contracts/**"], "contracts": ["app/contracts/**"],
"app": { "app": {
"css/app.css": ["app/css/**"], "css/app.css": ["app/css/**"],
"images/": ["app/images/**"],
"js/app.js": ["embark.js", "app/js/**"], "js/app.js": ["embark.js", "app/js/**"],
"index.html": "app/index.html" "index.html": "app/index.html"
}, },
"buildDir": "dist/", "buildDir": "dist/",
"config": "config/" "config": "config/",
"plugins": {}
} }