Skip to content

Commit

Permalink
Release 2.1.0-beta.4 🚀
Browse files Browse the repository at this point in the history
- Hot Fix: #133
  • Loading branch information
Jonathan Casarrubias committed Oct 3, 2016
1 parent 92d0dca commit 963dd12
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This file is created to keep history of the LoopBack SDK Builder, it does not consider or keeps any history of its parent module `loopback-sdk-angular`.

## Release 2.1.0-beta.4

- Fix: https://github.com/mean-expert-official/loopback-sdk-builder/issues/133

## Release 2.1.0-beta.3

- Fix: https://github.com/mean-expert-official/loopback-sdk-builder/issues/131
Expand Down
5 changes: 3 additions & 2 deletions lib/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ exports.describeModels = function describeModels(app) {
c.description = c.sharedClass.ctor.settings.description;
// Tell SDK Builder to generate model by default, unless user
c.sharedClass.ctor.settings = Object.assign(
{ sdk: { enabled: true } },
c.sharedClass.ctor.settings
{},
c.sharedClass.ctor.settings,
{ sdk: { enabled: true }}
);
// Tell SDK to blacklist specific methods
c.sharedClass.ctor.settings.sdk.blacklist = Object.assign(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mean-expert/loopback-sdk-builder",
"version": "2.1.0-beta.3",
"version": "2.1.0-beta.4",
"description": "Tool for auto-generating Software Development Kits (SDKs) for LoopBack",
"bin": {
"lb-sdk": "bin/lb-sdk"
Expand Down

0 comments on commit 963dd12

Please sign in to comment.