diff --git a/readme.md b/readme.md index 2a37cf2..0e745e0 100644 --- a/readme.md +++ b/readme.md @@ -65,14 +65,12 @@ You can configure your spike projects through a single config file at the root, Option | Description | Default :--------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------- -**root** | **[CLI Only]** An absolute path to the root of your project. | `process.cwd()` **matchers** | An object with `jade`, `css`, and `js` keys. Each key is a [micromatch](https://github.com/jonschlinkert/micromatch) string, and represents which files should be pulled into the pipeline to be processed. Be very careful if you are trying to change this. | `**/*.jade`, `**/*.css`, and `**/*.js` **postcss** | An object that can contain a `plugins` key, which is an array of [plugins to be passed to PostCSS](http://postcss.parts/) for CSS processing, and a `parser`, `stringifier`, and/or `syntax` key, each of which are objects and take [any of the postcss-loader options](https://github.com/postcss/postcss-loader#custom-syntaxes) | **babel** | A [configuration object for Babel](http://babeljs.io/docs/usage/options/) for JS processing. | **jade** | A [configuration object for jade](http://jade-lang.com/api/). | **dumpDirs** | An array of directories which, if direct children of the project root, will dump their contents to the root on compile. | `['views', 'assets']`. **locals** | An object containing locals to be passed to jade views. This can be used for values, functions, any sort of view helper you need. | -**env** | **[CLI Only]** The environment you would like to use when compiling. See [environments](#environments) for more information about this option. | **ignore** | An array of [micromatch](https://github.com/jonschlinkert/micromatch) strings, each one defining a file pattern to be ignored from compilation. | **outputDir** | The name or path of the folder your project will be compiled into, on top of the project's root. | `'public'` **cleanUrls** | Remove `.html` from your paths during `spike.watch`. | `true`