Skip to content

Commit 77814f1

Browse files
committed
Rename y-widgets
1 parent c0969a9 commit 77814f1

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Package: ywidget
1+
Package: ywidgets
22
Title: Reactive Widgets Backed by Yr CRDTs
33
Version: 0.0.0.9000
44
Authors@R: person("Antoine", "Prouvost", role = c("aut", "cre"),

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# r-ywidget
1+
# r-ywidgets
22

33
Reactive widget models whose state is synchronised through Conflict-free Replicated
44
Data Type (CRDT) via the `yrs` package.
@@ -17,7 +17,7 @@ shared ydoc. Constructing an instance opens a Jupyter comm and keeps the
1717
attributes in sync with the connected frontend.
1818

1919
```r
20-
library(ywidget)
20+
library(ywidgets)
2121

2222
# Define a widget class with two synced attributes.
2323
Counter <- make_comm_widget("Counter", label = "", count = 0L)

examples/widgets.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"source": [
1010
"# devtools::load_all(\".\")\n",
1111
"\n",
12-
"library(\"ywidget\")"
12+
"library(\"ywidgets\")"
1313
]
1414
},
1515
{

man/CommWidget.Rd

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pixi.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ r-testthat = ">=3.0.0"
1919
yjs-widgets = "*"
2020

2121
[feature.test.tasks]
22-
description = "Run r-ywidget unit tests"
22+
description = "Run r-ywidgets unit tests"
2323
test = "Rscript -e 'testthat::test_local()'"
2424

2525
[feature.dev.dependencies]
@@ -33,12 +33,12 @@ jupyterlab-kernelspy = "*"
3333
yjs-widgets = "*"
3434
yjs-widgets-collection = "*"
3535

36-
[feature.dev.tasks.install-ywidget]
36+
[feature.dev.tasks.install-ywidgets]
3737
cmd = "R CMD INSTALL ."
3838

3939
[feature.dev.tasks.serve-jupyter]
4040
cmd = "jupyter"
41-
depends-on = ["install-ywidget"]
41+
depends-on = ["install-ywidgets"]
4242

4343
[feature.dev.tasks]
4444
# Document

tests/testthat.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
library(testthat)
2-
library(ywidget)
2+
library(ywidgets)
33

4-
test_check("ywidget")
4+
test_check("ywidgets")

0 commit comments

Comments
 (0)