mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 17:42:15 +08:00
16 lines
186 B
Bash
16 lines
186 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Delete old packages
|
|
rm -f *.tgz
|
|
|
|
# Pack @ionic/react
|
|
npm pack ../react
|
|
|
|
# Pack @ionic/core
|
|
npm pack ../../core
|
|
|
|
# Install Dependencies
|
|
npm install *.tgz --no-save
|