Nekmo/angular-django

NPM Package not built

mertheyecan opened this issue · 0 comments

Library didn't built before publish,

Work around is, download the angular library manualy build and link the npm library,

use

ng build
cd /dist
npm link
cd <your-project-path>
npm link angular-django

in tsconfig paste

    "paths": {
      "angular-django": [
        "./node_modules/angular-django/angular-django",
        "./node_modules/angular-django"
      ]
    }