Nekmo / angular-django

Django Rest Framework API for Angular with self-building classes, forms, and listings

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NPM Package not built

mertheyecan opened this issue · 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"
      ]
    }