From 3dcd82248f628b48b0ff42def27981d283e359b8 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Mon, 6 Feb 2017 20:59:36 -0500 Subject: [PATCH] update readme --- README.md | 4 +++- docs/structuring-application.rst | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c706d7758..fb4c50969 100644 --- a/README.md +++ b/README.md @@ -491,11 +491,13 @@ Embark is quite flexible and you can configure you're own directory structure us "contracts": ["app/contracts/**"], "app": { "css/app.css": ["app/css/**"], + "images/": ["app/images/**"], "js/app.js": ["embark.js", "app/js/**"], "index.html": "app/index.html" }, "buildDir": "dist/", - "config": "config/" + "config": "config/", + "plugins": {} } ``` diff --git a/docs/structuring-application.rst b/docs/structuring-application.rst index bd56cac38..0d70c5c01 100644 --- a/docs/structuring-application.rst +++ b/docs/structuring-application.rst @@ -11,9 +11,12 @@ structure using ``embark.json`` "contracts": ["app/contracts/**"], "app": { "css/app.css": ["app/css/**"], + "images/": ["app/images/**"], "js/app.js": ["embark.js", "app/js/**"], "index.html": "app/index.html" }, "buildDir": "dist/", - "config": "config/" + "config": "config/", + "plugins": {} } +