mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 02:31:34 +08:00
16 lines
217 B
Bash
16 lines
217 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Pack @ionic/core
|
|
npm pack ../../../../../core
|
|
|
|
# Pack @ionic/vue
|
|
npm pack ../../../
|
|
|
|
# Pack @ionic/vue-router
|
|
npm pack ../../../../vue-router
|
|
|
|
# Install Dependencies
|
|
npm install *.tgz --no-save
|