Skip to content

Commit

Permalink
Merge pull request #22 from ibdafna/webdash_0.0.3 🎉
Browse files Browse the repository at this point in the history
Webdash 0.0.3 🎉
  • Loading branch information
ibdafna authored Feb 11, 2022
2 parents 1ef620a + dfc01ee commit fce4cb2
Show file tree
Hide file tree
Showing 11 changed files with 26,951 additions and 9,584 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ dist
node_modules
.vscode
pyodide
dash
temp
16 changes: 15 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,33 @@
PYODIDE_VERSION=2005c9d231454493b9c140d926ab81e6fa35d018
DASH_VERSION=2.1.0
WEDBASH_VERSION=0.0.2

install_pyodide:
git clone git@github.com:pyodide/pyodide.git; \
cd pyodide; \
git checkout 0.18.1;
git checkout $(PYODIDE_VERSION);

pyodide: install_pyodide
cd pyodide; \
git apply ../patches/webdash.patch;

install_dash:
git clone git@github.com:plotly/dash.git; \
cd dash; \
git checkout tags/v$(DASH_VERSION) -b $(DASH_VERSION)

copy_build:
mkdir -p dist; \
cd dist; \
cp -r ../pyodide/build/*.* .;

delete_dist:
rm -rf dist;

webdash_patch:
cd pyodide; \
git diff --cached > ../patches/webdash.patch

make_dist:
mkdir dist;

Expand Down
Loading

1 comment on commit fce4cb2

@vercel
Copy link

@vercel vercel bot commented on fce4cb2 Feb 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.