We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent decc2ff commit d0f011eCopy full SHA for d0f011e
1 file changed
scripts/build_wasm.sh
@@ -1,7 +1,7 @@
1
#!/usr/bin/env bash
2
set -euo pipefail
3
4
-# 1. Setup paths and environment
+# Setup paths and environment
5
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
6
cd "${ROOT_DIR}"
7
@@ -50,9 +50,13 @@ WHEEL_FILENAME=$(basename "${SIMDEC_WHEEL_PATH}")
50
OUT_DIR="dist/pyodide"
51
mkdir -p "${OUT_DIR}/_static"
52
53
-# IMPORTANT: Copy the wheel into the output directory so it's accessible via HTTP
+# Copy the wheel into the output directory so it's accessible via HTTP
54
cp "${SIMDEC_WHEEL_PATH}" "${OUT_DIR}/"
55
56
+echo "Checking file existence..."
57
+ls -R panel/
58
+ls -l dist/*.whl
59
+
60
# Convert Panel apps to Pyodide worker
61
echo "Converting Panel apps to Pyodide worker output..."
62
export PYTHONPATH="${ROOT_DIR}/src:${PYTHONPATH:-}"
0 commit comments