Skip to content

Commit 0eb74f6

Browse files
committed
fix: build
1 parent 6e1b5f8 commit 0eb74f6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/lexical/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ build-prod: ## build-prod
3333
git clean -fdx
3434
python -m build
3535

36-
publish: clean build ## publish
36+
publish-npm: clean build ## publish
3737
($(CONDA_ACTIVATE) ${ENV_NAME}; \
3838
npm publish )
3939
echo open https://www.npmjs.com/package/@datalayer/jupyter-lexical

packages/lexical/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datalayer/jupyter-lexical",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "Jupyter UI for Lexical",
55
"license": "MIT",
66
"main": "lib/index.js",

packages/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datalayer/jupyter-react",
3-
"version": "0.19.1",
3+
"version": "0.19.2",
44
"description": "Jupyter React - React.js components 100% compatible with Jupyter.",
55
"license": "MIT",
66
"main": "lib/index.js",

packages/react/src/examples/NotebookCellToolbar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const NotebookCellToolbar = () => {
2121
<JupyterReactTheme>
2222
<Notebook
2323
nbformat={nbformat as INotebookContent}
24-
plugins={[extension]}
24+
extensions={[extension]}
2525
id="notebook-cell-toolbar-id"
2626
height="calc(100vh - 2.6rem)" // (Height - Toolbar Height).
2727
cellSidebarMargin={160}

packages/react/src/examples/NotebookExtension.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const NotebookExtension = () => {
2121
<JupyterReactTheme>
2222
<Notebook
2323
nbformat={nbformat as INotebookContent}
24-
plugins={[extension]}
24+
extensions={[extension]}
2525
id="notebook-extension-id"
2626
height="calc(100vh - 2.6rem)" // (Height - Toolbar Height).
2727
cellSidebarMargin={160}

0 commit comments

Comments
 (0)