embedpress
Last commit date
Core
9 months ago
EmbedPress
9 months ago
assets
9 months ago
languages
9 months ago
vendor
9 months ago
.prettierrc
9 months ago
CONTRIBUTING.md
7 years ago
autoloader.php
9 months ago
embedpress.php
9 months ago
includes.php
9 months ago
index.html
9 years ago
providers.php
9 months ago
readme.txt
9 months ago
tsconfig.json
9 months ago
tsconfig.node.json
9 months ago
vite.config.js
9 months ago
watch.sh
9 months ago
wpml-config.xml
4 years ago
watch.sh
15 lines
| 1 | #!/bin/bash |
| 2 | |
| 3 | # EmbedPress Auto-Build Script |
| 4 | # This script automatically rebuilds when files change |
| 5 | |
| 6 | echo "🚀 Starting EmbedPress auto-build..." |
| 7 | echo "📁 Watching src/ directory for changes..." |
| 8 | echo "🔄 Files will auto-rebuild when you save changes" |
| 9 | echo "" |
| 10 | echo "Press Ctrl+C to stop watching" |
| 11 | echo "" |
| 12 | |
| 13 | # Run the watch command |
| 14 | npm run watch |
| 15 |