Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ publish_to_npm () {
fi

echo "I'm ready to publish $PKGNAME to NPM, under $VERSION!"
npm publish --tag private
npm publish --tag privaterollout
}

# Turns "packages/liveblocks-core" => "@liveblocks/core"
Expand All @@ -95,9 +95,9 @@ for pkgdir in "$@"; do
( cd "$pkgdir" && publish_to_npm "$pkgname" )
done

# By now, all packages should be published under a "private" tag.
# By now, all packages should be published under a "privaterollout" tag.
# We'll verify that now, and if indeed correct, we'll "assign" the intended tag
# instead. Afterwards, we'll remove the "private" tags again.
# instead. Afterwards, we'll remove the "privaterollout" tags again.
echo ""
echo "Assigning definitive NPM tags"
for pkgdir in "$@"; do
Expand All @@ -114,10 +114,10 @@ for pkgdir in "$@"; do
done
done

# Clean up those temporary "private" tags
# Clean up those temporary "privaterollout" tags
for pkgdir in "$@"; do
pkgname="$(npm_pkgname "$pkgdir")"
npm dist-tag rm "$pkgname@$VERSION" private || echo "Continuing despite error..."
npm dist-tag rm "$pkgname@$VERSION" privaterollout || echo "Continuing despite error..."
done

echo ""
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/validate-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ check_git_tag_exists () {

check_is_valid_github_tag "$1"
check_npm_tag_allowed_on_branch "$1"
check_git_tag_exists "$1"
check_git_tag_exists "$1"
98 changes: 49 additions & 49 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/liveblocks-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/client",
"version": "3.3.1",
"version": "3.3.3",
"description": "A client that lets you interact with Liveblocks servers. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -34,7 +34,7 @@
"test:watch": "jest --silent --verbose --color=always --passWithNoTests --watch"
},
"dependencies": {
"@liveblocks/core": "3.3.1"
"@liveblocks/core": "3.3.3"
},
"devDependencies": {
"@liveblocks/eslint-config": "*",
Expand Down
2 changes: 1 addition & 1 deletion packages/liveblocks-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/core",
"version": "3.3.1",
"version": "3.3.3",
"description": "Private internals for Liveblocks. DO NOT import directly from this package!",
"type": "module",
"main": "./dist/index.cjs",
Expand Down
6 changes: 3 additions & 3 deletions packages/liveblocks-emails/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/emails",
"version": "3.3.1",
"version": "3.3.3",
"description": "A set of functions and utilities to make sending emails based on Liveblocks notification events easy. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -35,8 +35,8 @@
"test:watch": "jest --silent --verbose --color=always --watch"
},
"dependencies": {
"@liveblocks/core": "3.3.1",
"@liveblocks/node": "3.3.1"
"@liveblocks/core": "3.3.3",
"@liveblocks/node": "3.3.3"
},
"peerDependencies": {
"react": "^18 || ^19 || ^19.0.0-rc"
Expand Down
6 changes: 3 additions & 3 deletions packages/liveblocks-node-lexical/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/node-lexical",
"version": "3.3.1",
"version": "3.3.3",
"description": "A server-side utility that lets you modify lexical documents hosted in Liveblocks.",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -34,8 +34,8 @@
"test:watch": "jest --silent --verbose --color=always --watch"
},
"dependencies": {
"@liveblocks/core": "3.3.1",
"@liveblocks/node": "3.3.1",
"@liveblocks/core": "3.3.3",
"@liveblocks/node": "3.3.3",
"yjs": "^13.6.18"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/liveblocks-node-prosemirror/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/node-prosemirror",
"version": "3.3.1",
"version": "3.3.3",
"description": "A server-side utility that lets you modify prosemirror and tiptap documents hosted in Liveblocks.",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -34,8 +34,8 @@
"test:watch": "jest --silent --verbose --color=always --watch"
},
"dependencies": {
"@liveblocks/core": "3.3.1",
"@liveblocks/node": "3.3.1",
"@liveblocks/core": "3.3.3",
"@liveblocks/node": "3.3.3",
"yjs": "^13.6.20"
},
"peerDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/liveblocks-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/node",
"version": "3.3.1",
"version": "3.3.3",
"description": "A server-side utility that lets you set up a Liveblocks authentication endpoint. Liveblocks is the all-in-one toolkit to build collaborative products like Figma, Notion, and more.",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -34,7 +34,7 @@
"test:watch": "jest --silent --verbose --color=always --watch"
},
"dependencies": {
"@liveblocks/core": "3.3.1",
"@liveblocks/core": "3.3.3",
"@stablelib/base64": "^1.0.1",
"fast-sha256": "^1.3.0",
"node-fetch": "^2.6.1"
Expand Down
14 changes: 7 additions & 7 deletions packages/liveblocks-react-blocknote/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@liveblocks/react-blocknote",
"version": "3.3.1",
"version": "3.3.3",
"description": "An integration of BlockNote + React to enable collaboration, comments, live cursors, and more with Liveblocks.",
"license": "Apache-2.0",
"type": "module",
Expand Down Expand Up @@ -42,12 +42,12 @@
"test:watch": "vitest"
},
"dependencies": {
"@liveblocks/client": "3.3.1",
"@liveblocks/core": "3.3.1",
"@liveblocks/react": "3.3.1",
"@liveblocks/react-tiptap": "3.3.1",
"@liveblocks/react-ui": "3.3.1",
"@liveblocks/yjs": "3.3.1",
"@liveblocks/client": "3.3.3",
"@liveblocks/core": "3.3.3",
"@liveblocks/react": "3.3.3",
"@liveblocks/react-tiptap": "3.3.3",
"@liveblocks/react-ui": "3.3.3",
"@liveblocks/yjs": "3.3.3",
"@tiptap/core": "^2.7.2",
"vitest-tsconfig-paths": "^3.4.1"
},
Expand Down
Loading
Loading