mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
d72f177be0
* Build packages with latest pyodide, compile wheels to use pyc files, output package_filenames.json
16 lines
272 B
Bash
Executable File
16 lines
272 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo ""
|
|
echo "###############################################################"
|
|
echo "## Get pyodide node package"
|
|
|
|
if [[ ! -e _build/worker ]]; then
|
|
mkdir -p _build/worker
|
|
cd _build/worker
|
|
yarn init --yes
|
|
yarn add pyodide@0.23.4
|
|
cd ../..
|
|
fi
|