Skip to content

Commit

Permalink
Use Pyodide's version of IPython (#161)
Browse files Browse the repository at this point in the history
* Remove ipython from shinylive_lock.json

* Remove mock for ipython

* Print errors when they occur in build script

* Un-pin ipywidgets, remove tomli
  • Loading branch information
wch authored Jul 24, 2024
1 parent 3d1e2ef commit 896a740
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 292 deletions.
5 changes: 4 additions & 1 deletion scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,5 +323,8 @@ if (serve) {
}
});
})
.catch(() => process.exit(1));
.catch((e) => {
console.log(e);
process.exit(1);
});
}
Loading

0 comments on commit 896a740

Please sign in to comment.