From 72723ddb145e43931a0bb57f1e868b179840dd2e Mon Sep 17 00:00:00 2001 From: Taranveer Virk Date: Wed, 28 Feb 2018 00:39:54 -0500 Subject: [PATCH] fixup! fix table --- pages/en/lb4/Booting-an-Application.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pages/en/lb4/Booting-an-Application.md b/pages/en/lb4/Booting-an-Application.md index 13eaa1a06..291175059 100644 --- a/pages/en/lb4/Booting-an-Application.md +++ b/pages/en/lb4/Booting-an-Application.md @@ -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 @@ -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