mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-28 16:02:22 -05:00
50 lines
1.3 KiB
Bash
Executable File
50 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e # Stop on error
|
|
set -u # Treat unset variables as errors
|
|
|
|
# Define output targets for models
|
|
TARGETS=(
|
|
"../../apps/browser-extension/src/utils/dist/shared/models"
|
|
"../../apps/mobile-app/utils/dist/shared/models"
|
|
)
|
|
|
|
# Build and distribute models
|
|
package_name="models"
|
|
package_path="."
|
|
|
|
echo "📦 Building $package_name..."
|
|
npm install && npm run lint && npm run build
|
|
|
|
dist_path="dist"
|
|
files_to_copy=("webapi" "vault" "metadata")
|
|
|
|
for target in "${TARGETS[@]}"; do
|
|
echo "📂 Copying $package_name → $target"
|
|
|
|
# Remove any existing files in the target directory
|
|
rm -rf "$target"
|
|
|
|
# (Re)create the target directory
|
|
mkdir -p "$target"
|
|
|
|
# Copy specific build outputs (files and folders)
|
|
for file in "${files_to_copy[@]}"; do
|
|
cp -R "$dist_path/$file" "$target/"
|
|
done
|
|
|
|
# Write README
|
|
cat > "$target/README.md" <<EOF
|
|
# ⚠️ Auto-Generated Files
|
|
|
|
This folder contains the output of the shared \`$package_name\` module from the \`/shared\` directory in the AliasVault project.
|
|
|
|
**Do not edit any of these files manually.**
|
|
|
|
To make changes:
|
|
1. Update the source files in the \`/shared/models/src\` directory
|
|
2. Run the \`build.sh\` script in the module directory to regenerate the outputs and copy them here.
|
|
EOF
|
|
done
|
|
|
|
echo "✅ Models build and copy completed." |