mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 11:17:19 +08:00
16 lines
223 B
Bash
Executable File
16 lines
223 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Pack @ionic/core
|
|
npm pack ../../../../../core
|
|
|
|
# Pack @ionic/react
|
|
npm pack ../../../
|
|
|
|
# Pack @ionic/react-router
|
|
npm pack ../../../../react-router
|
|
|
|
# Install Dependencies
|
|
npm install *.tgz --no-save
|