mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
16 lines
359 B
Bash
Executable File
16 lines
359 B
Bash
Executable File
#!/usr/bin/env sh
|
|
. "$(dirname -- "$0")/_/husky.sh"
|
|
|
|
SCRIPT_DIR="$(readlink -f "$(dirname "$0")")"
|
|
MONOREPO_ROOT="$(readlink -f "$SCRIPT_DIR/../")"
|
|
|
|
echo "Copying pdf.js"
|
|
npm run copy:pdfjs --workspace apps/**
|
|
|
|
echo "Copying .well-known/ contents"
|
|
node "$MONOREPO_ROOT/scripts/copy-wellknown.cjs"
|
|
|
|
git add "$MONOREPO_ROOT/apps/remix/public/"
|
|
|
|
npx lint-staged
|