From 973677e0f70190eeca6ba94d362ed87b94341144 Mon Sep 17 00:00:00 2001 From: Martin Groller Date: Mon, 9 Mar 2015 14:51:01 +0100 Subject: [PATCH] Update README.md --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f51099e..bcc482b 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,27 @@ Addon for [groundskeeper](https://github.com/Couto/groundskeeper) $ npm install --save-dev ember-cli-groundskeeper ``` ## Usage +Example: -See the [broccoli-groundskeeper](https://github.com/MadMG/broccoli-groundskeeper) or Groundskeeper [usage](https://github.com/Couto/groundskeeper#usage). +``` +var app = new EmberApp({ + groundskeeper: { + "processFiles": ['app.js'], + "console": true, + "debugger": false, + "namespace": [ + "logger.debug", + "logger.info"] + } +}); +``` + +__processFiles__ + +Is an array with file names which will be processed. The source path must end with any of the array entries. If the array is empty all files of the source tree will be processed. + +See [broccoli-groundskeeper](https://github.com/MadMG/broccoli-groundskeeper) or Groundskeeper [usage](https://github.com/Couto/groundskeeper#usage) for further options. ## License -MIT © [Martin Groller](https://github.com/MadMG) \ No newline at end of file +MIT © [Martin Groller](https://github.com/MadMG)