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