chore: remove angular dep for angular-server (#27720)

Issue number: N/A

---------

<!-- Please do not submit updates to dependencies unless it fixes an
issue. -->

<!-- Please try to limit your pull request to one type (bugfix, feature,
etc). Submit multiple pull requests if needed. -->

## What is the current behavior?
<!-- Please describe the current behavior that you are modifying. -->

`@ionic/angular-server` has a dependency on `@ionic/core` not
`@ionic/angular` (see
1f06be4a31/packages/angular-server/package.json).
As a result, once `@ionic/core` is built there is no reason for
`@ionic/angular-server` to also wait for `@ionic/angular` to build
before it can build.

## What is the new behavior?
<!-- Please describe the behavior or changes that are being added by
this PR. -->

- `@ionic/angular-server` now waits for `@ionic/core` to build instead
of `@ionic/angular`

## Does this introduce a breaking change?

- [ ] Yes
- [x] No

<!-- If this introduces a breaking change, please describe the impact
and migration path for existing applications below. -->


## Other information

<!-- Any other information that is important to this PR such as
screenshots of how the component looks before and after the change. -->


Dev build sample run:
https://github.com/ionic-team/ionic-framework/actions/runs/5414097033
This commit is contained in:
Liam DeBeasi
2023-06-29 15:33:32 -04:00
committed by GitHub
parent 1f06be4a31
commit cef4691b5d
3 changed files with 3 additions and 9 deletions

View File

@ -122,7 +122,7 @@ jobs:
- uses: ./.github/workflows/actions/build-angular - uses: ./.github/workflows/actions/build-angular
build-angular-server: build-angular-server:
needs: [build-angular] needs: [build-core]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3

View File

@ -144,7 +144,7 @@ jobs:
paths: packages/vue/dist packages/vue/css paths: packages/vue/dist packages/vue/css
release-angular-server: release-angular-server:
needs: [release-angular] needs: [release-core]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -154,12 +154,6 @@ jobs:
name: ionic-core name: ionic-core
path: ./core path: ./core
filename: CoreBuild.zip filename: CoreBuild.zip
- name: Restore @ionic/angular built cache
uses: ./.github/workflows/actions/download-archive
with:
name: ionic-angular
path: ./angular
filename: AngularBuild.zip
- uses: ./.github/workflows/actions/publish-npm - uses: ./.github/workflows/actions/publish-npm
with: with:
scope: '@ionic/angular-server' scope: '@ionic/angular-server'

View File

@ -133,7 +133,7 @@ jobs:
- uses: ./.github/workflows/actions/build-angular - uses: ./.github/workflows/actions/build-angular
build-angular-server: build-angular-server:
needs: [build-angular] needs: [build-core]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3