mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
13 lines
161 B
Bash
13 lines
161 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Pack @ionic/core
|
|
npm pack ../../core
|
|
|
|
# Pack @ionic/vue-router
|
|
npm pack ../vue-router
|
|
|
|
# Install Dependencies
|
|
npm install *.tgz --no-save
|