File tree Expand file tree Collapse file tree 6 files changed +30889
-14620
lines changed Expand file tree Collapse file tree 6 files changed +30889
-14620
lines changed Original file line number Diff line number Diff line change 23
23
- uses : actions/setup-node@v3
24
24
with :
25
25
node-version : lts/*
26
- cache : ' yarn '
26
+ cache : ' npm install '
27
27
- uses : nrwl/nx-set-shas@v3
28
- - name : Setup global dependencies
29
- run : npm i -g yarn
30
- - name : yarn install
31
- run : yarn
28
+ - name : npm install
29
+ run : npm install
32
30
- name : Build.all affected
33
- run : yarn nx affected --target=build --exclude nativescript-demo-ng
31
+ run : npx nx affected --target=build --exclude nativescript-demo-ng
Original file line number Diff line number Diff line change 8
8
# dependencies
9
9
/node_modules
10
10
/packages /* /node_modules
11
- package-lock.json
12
11
.npmrc
12
+ yarn.lock
13
13
14
14
# IDEs and editors
15
15
/.idea
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ $ cd angular
33
33
34
34
```
35
35
$ cd angular
36
- $ yarn clean.all
36
+ $ npm run clean.all
37
37
```
38
38
39
39
### Run some of the e2e applications e.g. router-tab-view
@@ -43,7 +43,7 @@ $ yarn clean.all
43
43
Install NPM packages (use the local copy of ` @nativescript/angular ` ):
44
44
```
45
45
$ cd e2e/router-tab-view
46
- $ yarn install
46
+ $ npm install
47
47
```
48
48
49
49
Start the app:
You can’t perform that action at this time.
0 commit comments