mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
16 lines
198 B
Bash
16 lines
198 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
|