Skip to content

Commit

Permalink
remove cli-only opts in app.js section of readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemac committed May 19, 2016
1 parent c4b16d7 commit 5f6c0d6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions readme.md
Expand Up @@ -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`
Expand Down

0 comments on commit 5f6c0d6

Please sign in to comment.