Update plan and add install script

This commit is contained in:
nav
2026-03-07 05:05:17 +00:00
parent a5ed1ef614
commit f8bdfacb73
2 changed files with 46 additions and 1 deletions

20
scripts/install.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/usr/bin/env bash
set -euo pipefail
# Yonexus install script
# - Registers plugin name: yonexus
# - Places build output in dist/yonexus
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
DIST_DIR="$ROOT_DIR/dist/yonexus"
mkdir -p "$DIST_DIR"
# Build step placeholder (replace with actual build command when ready)
# e.g., npm run build
# Example: copy plugin manifest and compiled assets into dist/yonexus
# cp -r "$ROOT_DIR/plugin.json" "$DIST_DIR/"
# cp -r "$ROOT_DIR/dist-build/*" "$DIST_DIR/"
echo "[yonexus] install complete -> $DIST_DIR"