Skip to content

1.2. Update Builder

Jonathan Casarrubias edited this page Aug 26, 2016 · 3 revisions

LoopBack SDK Builder

Updating Builder

If you have been working with the LoopBack SDK Builder before its stable release, you will need to remove the old deprecated module and install the stable release:

$ npm uninstall --save-dev loopback-sdk-builder
$ npm install --save-dev @mean-expert/loopback-sdk-builder

Updating Imports

If you are migrating from Angular RC4 to RC5 and from SystemJS to WebPack then you will adjust your imports, this because WebPack does not handle the modules routes as well as SystemJS.

#### Import Models

import { Model } from './shared/sdk/models';

#### Import Models

import { ModelApi } from './shared/sdk/services';
Clone this wiki locally