mirror of
https://github.com/danielmiessler/Fabric.git
synced 2026-01-07 21:44:02 -05:00
## CHANGES - Move legacy documentation files to web/legacy/ - Update web README with installation instructions - Add convenience scripts for npm and pnpm installation - Update all package dependencies to latest versions - Add PDF-to-Markdown installation steps to README - Remove duplicate documentation files
20 lines
433 B
Bash
Executable File
20 lines
433 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")/.." || exit
|
|
|
|
if command -v npm &>/dev/null; then
|
|
echo "pnpm is installed"
|
|
else
|
|
echo "pnpm is not installed. Please install pnpm first."
|
|
exit 1
|
|
fi
|
|
|
|
# Install the GUI and its dependencies
|
|
pnpm install
|
|
# Install PDF-to-Markdown components in this order
|
|
pnpm install -D patch-package
|
|
pnpm install -D pdfjs-dist
|
|
pnpm install -D github:jzillmann/pdf-to-markdown#modularize
|
|
|
|
pnpm exec svelte-kit sync
|