You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Install dependencies of the compatibility package (nativescript-angular)
31
33
32
34
```
33
35
$ cd nativescript-angular
34
36
$ npm install
35
37
```
36
38
37
-
### Run the sample application (ng-sample)
39
+
### Install dependencies of the scoped package (@nativescript/angular)
40
+
41
+
```
42
+
$ cd nativescript-angular-package
43
+
$ npm install
44
+
```
45
+
46
+
### Run some of the e2e applications e.g. router-tab-view
38
47
39
48
Install NPM packages (use the local copy of `nativescript-angular`):
40
49
```
41
-
$ cd ng-sample
50
+
$ cd e2e/router-tab-view
42
51
$ npm install
43
52
```
44
53
@@ -49,6 +58,8 @@ $ tns run android
49
58
$ tns run ios
50
59
```
51
60
61
+
Make changes to `nativescript-angular` (in `./nativescript-angular-package` folder) or `@nativescript/angular` (in `./nativescript-angular` folder) and see them applied in the running app.
62
+
52
63
## Running the tests
53
64
54
65
Install the NPM dependencies (use the local copy of `nativescript-angular`):
@@ -95,9 +106,4 @@ NOTE: The steps below describe how to run `renderer` tests, but the same approac
95
106
``` bash
96
107
npm run e2e -- --runType capabilityName
97
108
```
98
-
99
-
## Developer workflow
100
-
101
-
1. Open the `nativescript-angular` folder and start a typescript watcher in it `tsc -w`.
102
-
2. Make changes to the `test`, `ng-sample`, `e2e` app projects or in`nativescript-angular` folder.
103
-
3. Run the `tests`, `ng-sample` or `e2e` apps as shown above.
Copy file name to clipboardExpand all lines: README.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,11 +8,12 @@ This repository contains the code for integration of NativeScript with Angular.
8
8
9
9
<!-- TOC depthFrom:2 -->
10
10
11
-
-[Watch the video explaining Angular and NativeScript](#watch-the-video-explaining-angular-and-nativescript)
12
-
-[Explore the examples](#explore-the-examples)
13
-
-[Contribute](#contribute)
14
-
-[Known issues](#known-issues)
15
-
-[Get Help](#get-help)
11
+
-[NativeScript Angular](#nativescript-angular)
12
+
-[Watch the video explaining Angular and NativeScript](#watch-the-video-explaining-angular-and-nativescript)
13
+
-[Explore the examples](#explore-the-examples)
14
+
-[Contribute](#contribute)
15
+
-[Known issues](#known-issues)
16
+
-[Get Help](#get-help)
16
17
17
18
<!-- /TOC -->
18
19
@@ -22,7 +23,7 @@ This repository contains the code for integration of NativeScript with Angular.
22
23
23
24
## Explore the examples
24
25
25
-
The `ng-sample` app is meant for testing stuff while developing the renderer code, and isn't the best example out there. You can take a look at these sample apps that use the published builds from npm:
26
+
The `e2e` apps are meant for testing stuff. You can take a look at these additional sample apps that use the published builds from npm:
26
27
27
28
*[Hello world starter](https://github.com/NativeScript/nativescript-app-templates/tree/master/packages/template-hello-world-ng)
0 commit comments