Skip to content

Commit

Permalink
fixup! fix table
Browse files Browse the repository at this point in the history
  • Loading branch information
virkt25 committed Feb 28, 2018
1 parent a2a7e68 commit 72723dd
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pages/en/lb4/Booting-an-Application.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,12 +192,12 @@ You can configure the conventions used in your
project for a Controller by passing a `controllers` object on `BootOptions` property
of your Application. The `controllers` object supports the following options:

| Options | Type | Default | Description |
| ------------ | ------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------- |
| `dirs` | `string | string[]` | `['controllers']` | Paths relative to projectRoot to look in for Controller artifacts |
| `extensions` | `string | string[]` | `['.controller.js']` | File extensions to match for Controller artifacts |
| `nested` | `boolean` | `true` | Look in nested directories in `dirs` for Controller artifacts |
| `glob` | `string` | | A `glob` pattern string. This takes precendence over above 3 options (which are used to make a glob pattern). |
| Options | Type | Default | Description |
| ------------ | -------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------- |
| `dirs` | `string \| string[]` | `['controllers']` | Paths relative to projectRoot to look in for Controller artifacts |
| `extensions` | `string \| string[]` | `['.controller.js']` | File extensions to match for Controller artifacts |
| `nested` | `boolean` | `true` | Look in nested directories in `dirs` for Controller artifacts |
| `glob` | `string` | | A `glob` pattern string. This takes precendence over above 3 options (which are used to make a glob pattern). |

### Repository Booter

Expand All @@ -209,12 +209,12 @@ You can configure the conventions used in your
project for a Repository by passing a `repositories` object on `BootOptions` property
of your Application. The `repositories` object supports the following options:

| Options | Type | Default | Description |
| ------------ | ------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------- |
| `dirs` | `string | string[]` | `['repositories']` | Paths relative to projectRoot to look in for Repository artifacts |
| `extensions` | `string | string[]` | `['.repository.js']` | File extensions to match for Repository artifacts |
| `nested` | `boolean` | `true` | Look in nested directories in `dirs` for Repository artifacts |
| `glob` | `string` | | A `glob` pattern string. This takes precendence over above 3 options (which are used to make a glob pattern). |
| Options | Type | Default | Description |
| ------------ | -------------------- | -------------------- | ------------------------------------------------------------------------------------------------------------- |
| `dirs` | `string \| string[]` | `['repositories']` | Paths relative to projectRoot to look in for Repository artifacts |
| `extensions` | `string \| string[]` | `['.repository.js']` | File extensions to match for Repository artifacts |
| `nested` | `boolean` | `true` | Look in nested directories in `dirs` for Repository artifacts |
| `glob` | `string` | | A `glob` pattern string. This takes precendence over above 3 options (which are used to make a glob pattern). |

### Custom Booters

Expand Down

0 comments on commit 72723dd

Please sign in to comment.