summaryrefslogtreecommitdiffstats
path: root/scripts/download-deps.sh
diff options
context:
space:
mode:
authorivar <i@oiee.no>2026-04-04 16:34:46 +0200
committerivar <i@oiee.no>2026-04-04 16:34:46 +0200
commita6355e7a6530af3335c4cd8af05f1e9c8b978169 (patch)
treec9d920d1e996ef1c42d3455825731598df6b56c2 /scripts/download-deps.sh
parent8a093aacd162d3fd9f142b53aab9edfa061fd66a (diff)
downloadnebbet.no-a6355e7a6530af3335c4cd8af05f1e9c8b978169.tar.xz
nebbet.no-a6355e7a6530af3335c4cd8af05f1e9c8b978169.zip
.
Diffstat (limited to 'scripts/download-deps.sh')
-rw-r--r--scripts/download-deps.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/scripts/download-deps.sh b/scripts/download-deps.sh
deleted file mode 100644
index 6d1b2e4..0000000
--- a/scripts/download-deps.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/bash
-
-# Download Milkdown Crepe from jsDelivr CDN and extract to lib/
-
-set -e
-
-LIB_DIR="lib/milkdown-crepe"
-CREPE_VERSION="7.7.0"
-CREPE_URL="https://cdn.jsdelivr.net/npm/@milkdown/crepe@${CREPE_VERSION}/dist"
-
-echo "📦 Downloading Milkdown Crepe v${CREPE_VERSION}..."
-
-mkdir -p "$LIB_DIR"
-
-# Download key files
-echo " → index.js"
-curl -fsSL "${CREPE_URL}/index.js" -o "${LIB_DIR}/index.js"
-
-echo " → index.d.ts"
-curl -fsSL "${CREPE_URL}/index.d.ts" -o "${LIB_DIR}/index.d.ts"
-
-echo " → style.css"
-curl -fsSL "${CREPE_URL}/style.css" -o "${LIB_DIR}/style.css"
-
-echo "✓ Milkdown Crepe installed to ${LIB_DIR}"