* Adds an async function that runs after the plugins are run. * @param task The function to run after start. * @return Returns the current FrameworkConfiguration instance.
(task: Function)
| 274 | * @return Returns the current FrameworkConfiguration instance. |
| 275 | */ |
| 276 | postTask(task: Function): FrameworkConfiguration { |
| 277 | assertProcessed(this); |
| 278 | this.postTasks.push(task); |
| 279 | return this; |
| 280 | } |
| 281 | |
| 282 | /** |
| 283 | * Configures an internal feature plugin before Aurelia starts. |
no test coverage detected