mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
10 lines
295 B
Bash
10 lines
295 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Copy core dist
|
|
rm -rf node_modules/@ionic/core/dist node_modules/@ionic/core/components
|
|
cp -a ../../core/dist node_modules/@ionic/core/dist
|
|
cp -a ../../core/components node_modules/@ionic/core/components
|
|
cp -a ../../core/package.json node_modules/@ionic/core/package.json
|