mean-expert-official / loopback-sdk-builder

Tool for auto-generating Software Development Kits (SDKs) for LoopBack
Other
399 stars 177 forks source link

User model is not generated #649

Closed PhilippeCorreges closed 5 years ago

PhilippeCorreges commented 5 years ago

What type of issue are you creating?

What version of this module are you using?

Write other if any:

Hello, I have set on my LB server 3 files for diffenrent environments: model-config.json with: "User": { "dataSource": "db", "public": true }, model-config.development.json: "User": { "dataSource": "db", "public": true }, model-config.production.json "User": { "dataSource": "db", "public": false }, and I have a class that extends User (Customer).

When generating the SDK, all that links to USER is not generated, preventing the app to compile except import { UserApi } from './services/custom/User'; . ./services/customer/User does not exists.

PhilippeCorreges commented 5 years ago

seems to be linked to some VScode cache as I stopped it and SDK generation is fine.