From e5e8f29d308a8a263ba3e4cd04d84e263e92c71b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Mon, 16 Jun 2014 15:15:36 +0200 Subject: [PATCH] Wrap too long lines ... introduced by the previous commit. --- index.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 081a5e9..e95efa4 100644 --- a/index.js +++ b/index.js @@ -6,11 +6,11 @@ var addInstructionsToBrowserify = require('./lib/bundler'); /** * Initialize an application from an options object or * a set of JSON and JavaScript files. - * + * * > **NOTE**: This module is primarily intended for use with LoopBack 2.0. * It _does_ work with LoopBack 1.x applications, but * none of the LoopBack 1.x examples or generated code (scaffolding) use it. - * + * * This function takes an optional argument that is either a string * or an object. * @@ -36,7 +36,8 @@ var addInstructionsToBrowserify = require('./lib/bundler'); * In both cases, the function loads JavaScript files in the `/models` and * `/boot` subdirectories of the application root directory with `require()`. * - * **NOTE:** Mixing `bootLoopBackApp(app, bootConfig)` and `app.model(name, modelConfig)` in multiple + * **NOTE:** Mixing `bootLoopBackApp(app, bootConfig)` and + * `app.model(name, modelConfig)` in multiple * files may result in models being undefined due to race conditions. * To avoid this when using `bootLoopBackApp()` make sure all models are passed * as part of the `models` definition.