mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 10:01:59 +08:00

BREAKING CHANGE: Angular v14 is now required to use `@ionic/angular` and `@ionic/angular-server`. Upgrade your project to Angular v14 by following the [Angular v14 update guide](https://update.angular.io/?l=3&v=13.0-14.0). The dev-preview `environmentInjector` property has been removed from `ion-tabs` and `ion-router-outlet`. Standalone component routing is now available without additional custom configuration. Remove the `environmentInjector` property from your `ion-tabs` and `ion-router-outlet` components.
19 lines
295 B
Bash
19 lines
295 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Pack @ionic/core
|
|
npm pack ../../../../core
|
|
|
|
# Pack @ionic/angular
|
|
npm pack ../../../dist
|
|
|
|
# Pack @ionic/angular-server
|
|
npm pack ../../../../packages/angular-server/dist
|
|
|
|
# Install Dependencies
|
|
npm install *.tgz --no-save
|
|
|
|
# Delete Angular cache directory
|
|
rm -rf .angular/
|