Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 655 Bytes

DEVELOPERS.md

File metadata and controls

46 lines (32 loc) · 655 Bytes

NativeScript - Angular 2 integration

Running stuff locally

Clone the repo and cd to the local dir.

Fetch the git submodules:

    git submodule --init
    git submodule --update

Install the npm requirements:

    npm install

Install the angular npm requirements:

    cd angular
    npm install
    cd ..  # back to the project root

Install the angular typings:

    cd deps/angular/modules/angular2
    tsd reinstall
    cd ../../../../  # back to the project root

Prepare the local angular2 & NativeScript codebases in src/*:

    grunt prepare

Compile the project:

    grunt ts