Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
echarles committed Jan 2, 2025
1 parent 6e1b5f8 commit 0eb74f6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/lexical/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ build-prod: ## build-prod
git clean -fdx
python -m build

publish: clean build ## publish
publish-npm: clean build ## publish
($(CONDA_ACTIVATE) ${ENV_NAME}; \
npm publish )
echo open https://www.npmjs.com/package/@datalayer/jupyter-lexical
Expand Down
2 changes: 1 addition & 1 deletion packages/lexical/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@datalayer/jupyter-lexical",
"version": "0.0.2",
"version": "0.0.3",
"description": "Jupyter UI for Lexical",
"license": "MIT",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@datalayer/jupyter-react",
"version": "0.19.1",
"version": "0.19.2",
"description": "Jupyter React - React.js components 100% compatible with Jupyter.",
"license": "MIT",
"main": "lib/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/examples/NotebookCellToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const NotebookCellToolbar = () => {
<JupyterReactTheme>
<Notebook
nbformat={nbformat as INotebookContent}
plugins={[extension]}
extensions={[extension]}
id="notebook-cell-toolbar-id"
height="calc(100vh - 2.6rem)" // (Height - Toolbar Height).
cellSidebarMargin={160}
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/examples/NotebookExtension.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const NotebookExtension = () => {
<JupyterReactTheme>
<Notebook
nbformat={nbformat as INotebookContent}
plugins={[extension]}
extensions={[extension]}
id="notebook-extension-id"
height="calc(100vh - 2.6rem)" // (Height - Toolbar Height).
cellSidebarMargin={160}
Expand Down

0 comments on commit 0eb74f6

Please sign in to comment.