mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-16 18:17:31 +08:00
22 lines
324 B
Bash
22 lines
324 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Delete old packages
|
|
rm -f *.tgz
|
|
|
|
# Pack @ionic/core
|
|
npm pack ../../../../../core
|
|
|
|
# Pack @ionic/angular
|
|
npm pack ../../../dist
|
|
|
|
# Pack @ionic/angular-server
|
|
npm pack ../../../../angular-server/dist
|
|
|
|
# Install Dependencies
|
|
npm install *.tgz --no-save
|
|
|
|
# Delete Angular cache directory
|
|
rm -rf .angular/
|