mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 09:34:19 +08:00
16 lines
244 B
Bash
16 lines
244 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
|