Skip to content

feat: Angular 20 #151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jun 1, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: use Angular 20 final and switch to npm
  • Loading branch information
NathanWalker committed May 29, 2025
commit ee1d340d752f3acc33e74e2ff4aaa07617affca5
10 changes: 4 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: lts/*
cache: 'yarn'
cache: 'npm install'
- uses: nrwl/nx-set-shas@v3
- name: Setup global dependencies
run: npm i -g yarn
- name: yarn install
run: yarn
- name: npm install
run: npm install
- name: Build.all affected
run: yarn nx affected --target=build --exclude nativescript-demo-ng
run: npx nx affected --target=build --exclude nativescript-demo-ng
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
# dependencies
/node_modules
/packages/*/node_modules
package-lock.json
.npmrc
yarn.lock

# IDEs and editors
/.idea
Expand Down
4 changes: 2 additions & 2 deletions DevelopmentWorkflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ cd angular

```
$ cd angular
$ yarn clean.all
$ npm run clean.all
```

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

Start the app:
Expand Down
Loading
Loading