mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
16 lines
216 B
Bash
16 lines
216 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Pack @ionic/core
|
|
npm pack ../../../../../core
|
|
|
|
# Pack @ionic/react
|
|
npm pack ../../../../react
|
|
|
|
# Pack @ionic/react-router
|
|
npm pack ../../../
|
|
|
|
# Install Dependencies
|
|
npm install *.tgz --no-save
|