Skip to content

Commit ee1d340

Browse files
committed
feat: use Angular 20 final and switch to npm
1 parent 749f1f3 commit ee1d340

File tree

6 files changed

+30889
-14620
lines changed

6 files changed

+30889
-14620
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ jobs:
2323
- uses: actions/setup-node@v3
2424
with:
2525
node-version: lts/*
26-
cache: 'yarn'
26+
cache: 'npm install'
2727
- 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
3230
- 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

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# dependencies
99
/node_modules
1010
/packages/*/node_modules
11-
package-lock.json
1211
.npmrc
12+
yarn.lock
1313

1414
# IDEs and editors
1515
/.idea

DevelopmentWorkflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ cd angular
3333

3434
```
3535
$ cd angular
36-
$ yarn clean.all
36+
$ npm run clean.all
3737
```
3838

3939
### Run some of the e2e applications e.g. router-tab-view
@@ -43,7 +43,7 @@ $ yarn clean.all
4343
Install NPM packages (use the local copy of `@nativescript/angular`):
4444
```
4545
$ cd e2e/router-tab-view
46-
$ yarn install
46+
$ npm install
4747
```
4848

4949
Start the app:

0 commit comments

Comments
 (0)