Skip to content

Commit 2a97cf7

Browse files
committed
Bump version to: v0.1.8 [skip ci]
1 parent 87a286d commit 2a97cf7

File tree

13 files changed

+48
-48
lines changed

13 files changed

+48
-48
lines changed

example/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "example",
33
"private": true,
4-
"version": "0.1.7",
4+
"version": "0.1.8",
55
"type": "module",
66
"scripts": {
77
"start": "node --watch server.js"
@@ -10,6 +10,6 @@
1010
"esbuild": "^0.21.4",
1111
"react": "^18.3.1",
1212
"react-dom": "^18.3.1",
13-
"teamplay": "^0.1.7"
13+
"teamplay": "^0.1.8"
1414
}
1515
}

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.1.7",
2+
"version": "0.1.8",
33
"npmClient": "yarn",
44
"packages": [
55
"packages/*",

packages/backend/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/backend",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "Create new ShareDB backend instance",
55
"type": "module",
66
"main": "index.js",
@@ -12,11 +12,11 @@
1212
".": "./index.js"
1313
},
1414
"dependencies": {
15-
"@teamplay/schema": "^0.1.7",
16-
"@teamplay/server-aggregate": "^0.1.7",
17-
"@teamplay/sharedb-access": "^0.1.7",
18-
"@teamplay/sharedb-schema": "^0.1.7",
19-
"@teamplay/utils": "^0.1.7",
15+
"@teamplay/schema": "^0.1.8",
16+
"@teamplay/server-aggregate": "^0.1.8",
17+
"@teamplay/sharedb-access": "^0.1.8",
18+
"@teamplay/sharedb-schema": "^0.1.8",
19+
"@teamplay/utils": "^0.1.8",
2020
"@types/ioredis-mock": "^8.2.5",
2121
"ioredis": "^5.3.2",
2222
"ioredis-mock": "^8.9.0",

packages/cache/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/cache",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"type": "module",
55
"description": "Helpers for doing auto-caching and memoization",
66
"main": "index.js",
@@ -12,7 +12,7 @@
1212
"access": "public"
1313
},
1414
"dependencies": {
15-
"@teamplay/debug": "^0.1.7"
15+
"@teamplay/debug": "^0.1.8"
1616
},
1717
"license": "MIT"
1818
}

packages/channel/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@teamplay/channel",
33
"type": "module",
4-
"version": "0.1.7",
4+
"version": "0.1.8",
55
"description": "WebSocket/SockJS 2-way communication channel",
66
"main": "index.js",
77
"exports": {

packages/debug/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/debug",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"type": "module",
55
"description": "Debugging helpers",
66
"main": "index.js",

packages/schema/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@teamplay/schema",
33
"type": "module",
4-
"version": "0.1.7",
4+
"version": "0.1.8",
55
"description": "Utils to work with json-schema",
66
"main": "index.js",
77
"exports": {

packages/server-aggregate/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/server-aggregate",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "ShareDB middleware to allow defining aggregations only on the server",
55
"publishConfig": {
66
"access": "public"

packages/sharedb-access/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/sharedb-access",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "ShareDB access-control middleware",
55
"publishConfig": {
66
"access": "public"

packages/sharedb-schema/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@teamplay/sharedb-schema",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "ShareDB schema validation middleware",
55
"type": "module",
66
"main": "lib/index.js",

packages/teamplay/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "teamplay",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "Full-stack signals ORM with multiplayer",
55
"type": "module",
66
"main": "index.js",
@@ -23,12 +23,12 @@
2323
},
2424
"dependencies": {
2525
"@nx-js/observer-util": "^4.1.3",
26-
"@teamplay/backend": "^0.1.7",
27-
"@teamplay/cache": "^0.1.7",
28-
"@teamplay/channel": "^0.1.7",
29-
"@teamplay/debug": "^0.1.7",
30-
"@teamplay/schema": "^0.1.7",
31-
"@teamplay/utils": "^0.1.7",
26+
"@teamplay/backend": "^0.1.8",
27+
"@teamplay/cache": "^0.1.8",
28+
"@teamplay/channel": "^0.1.8",
29+
"@teamplay/debug": "^0.1.8",
30+
"@teamplay/schema": "^0.1.8",
31+
"@teamplay/utils": "^0.1.8",
3232
"diff-match-patch": "^1.0.5",
3333
"events": "^3.3.0",
3434
"json0-ot-diff": "^1.1.2",

packages/utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@teamplay/utils",
33
"type": "module",
4-
"version": "0.1.7",
4+
"version": "0.1.8",
55
"description": "Isomorphic utils for internal cross-package usage",
66
"main": "index.js",
77
"exports": {

yarn.lock

+23-23
Original file line numberDiff line numberDiff line change
@@ -2014,15 +2014,15 @@ __metadata:
20142014
languageName: node
20152015
linkType: hard
20162016

2017-
"@teamplay/backend@npm:^0.1.7, @teamplay/backend@workspace:packages/backend":
2017+
"@teamplay/backend@npm:^0.1.8, @teamplay/backend@workspace:packages/backend":
20182018
version: 0.0.0-use.local
20192019
resolution: "@teamplay/backend@workspace:packages/backend"
20202020
dependencies:
2021-
"@teamplay/schema": "npm:^0.1.7"
2022-
"@teamplay/server-aggregate": "npm:^0.1.7"
2023-
"@teamplay/sharedb-access": "npm:^0.1.7"
2024-
"@teamplay/sharedb-schema": "npm:^0.1.7"
2025-
"@teamplay/utils": "npm:^0.1.7"
2021+
"@teamplay/schema": "npm:^0.1.8"
2022+
"@teamplay/server-aggregate": "npm:^0.1.8"
2023+
"@teamplay/sharedb-access": "npm:^0.1.8"
2024+
"@teamplay/sharedb-schema": "npm:^0.1.8"
2025+
"@teamplay/utils": "npm:^0.1.8"
20262026
"@types/ioredis-mock": "npm:^8.2.5"
20272027
ioredis: "npm:^5.3.2"
20282028
ioredis-mock: "npm:^8.9.0"
@@ -2037,15 +2037,15 @@ __metadata:
20372037
languageName: unknown
20382038
linkType: soft
20392039

2040-
"@teamplay/cache@npm:^0.1.7, @teamplay/cache@workspace:packages/cache":
2040+
"@teamplay/cache@npm:^0.1.8, @teamplay/cache@workspace:packages/cache":
20412041
version: 0.0.0-use.local
20422042
resolution: "@teamplay/cache@workspace:packages/cache"
20432043
dependencies:
2044-
"@teamplay/debug": "npm:^0.1.7"
2044+
"@teamplay/debug": "npm:^0.1.8"
20452045
languageName: unknown
20462046
linkType: soft
20472047

2048-
"@teamplay/channel@npm:^0.1.7, @teamplay/channel@workspace:packages/channel":
2048+
"@teamplay/channel@npm:^0.1.8, @teamplay/channel@workspace:packages/channel":
20492049
version: 0.0.0-use.local
20502050
resolution: "@teamplay/channel@workspace:packages/channel"
20512051
dependencies:
@@ -2055,13 +2055,13 @@ __metadata:
20552055
languageName: unknown
20562056
linkType: soft
20572057

2058-
"@teamplay/debug@npm:^0.1.7, @teamplay/debug@workspace:packages/debug":
2058+
"@teamplay/debug@npm:^0.1.8, @teamplay/debug@workspace:packages/debug":
20592059
version: 0.0.0-use.local
20602060
resolution: "@teamplay/debug@workspace:packages/debug"
20612061
languageName: unknown
20622062
linkType: soft
20632063

2064-
"@teamplay/schema@npm:^0.1.7, @teamplay/schema@workspace:packages/schema":
2064+
"@teamplay/schema@npm:^0.1.8, @teamplay/schema@workspace:packages/schema":
20652065
version: 0.0.0-use.local
20662066
resolution: "@teamplay/schema@workspace:packages/schema"
20672067
dependencies:
@@ -2070,13 +2070,13 @@ __metadata:
20702070
languageName: unknown
20712071
linkType: soft
20722072

2073-
"@teamplay/server-aggregate@npm:^0.1.7, @teamplay/server-aggregate@workspace:packages/server-aggregate":
2073+
"@teamplay/server-aggregate@npm:^0.1.8, @teamplay/server-aggregate@workspace:packages/server-aggregate":
20742074
version: 0.0.0-use.local
20752075
resolution: "@teamplay/server-aggregate@workspace:packages/server-aggregate"
20762076
languageName: unknown
20772077
linkType: soft
20782078

2079-
"@teamplay/sharedb-access@npm:^0.1.7, @teamplay/sharedb-access@workspace:packages/sharedb-access":
2079+
"@teamplay/sharedb-access@npm:^0.1.8, @teamplay/sharedb-access@workspace:packages/sharedb-access":
20802080
version: 0.0.0-use.local
20812081
resolution: "@teamplay/sharedb-access@workspace:packages/sharedb-access"
20822082
dependencies:
@@ -2088,7 +2088,7 @@ __metadata:
20882088
languageName: unknown
20892089
linkType: soft
20902090

2091-
"@teamplay/sharedb-schema@npm:^0.1.7, @teamplay/sharedb-schema@workspace:packages/sharedb-schema":
2091+
"@teamplay/sharedb-schema@npm:^0.1.8, @teamplay/sharedb-schema@workspace:packages/sharedb-schema":
20922092
version: 0.0.0-use.local
20932093
resolution: "@teamplay/sharedb-schema@workspace:packages/sharedb-schema"
20942094
dependencies:
@@ -2099,7 +2099,7 @@ __metadata:
20992099
languageName: unknown
21002100
linkType: soft
21012101

2102-
"@teamplay/utils@npm:^0.1.7, @teamplay/utils@workspace:packages/utils":
2102+
"@teamplay/utils@npm:^0.1.8, @teamplay/utils@workspace:packages/utils":
21032103
version: 0.0.0-use.local
21042104
resolution: "@teamplay/utils@workspace:packages/utils"
21052105
dependencies:
@@ -5493,7 +5493,7 @@ __metadata:
54935493
esbuild: "npm:^0.21.4"
54945494
react: "npm:^18.3.1"
54955495
react-dom: "npm:^18.3.1"
5496-
teamplay: "npm:^0.1.7"
5496+
teamplay: "npm:^0.1.8"
54975497
languageName: unknown
54985498
linkType: soft
54995499

@@ -12066,18 +12066,18 @@ __metadata:
1206612066
languageName: node
1206712067
linkType: hard
1206812068

12069-
"teamplay@npm:^0.1.7, teamplay@workspace:packages/teamplay":
12069+
"teamplay@npm:^0.1.8, teamplay@workspace:packages/teamplay":
1207012070
version: 0.0.0-use.local
1207112071
resolution: "teamplay@workspace:packages/teamplay"
1207212072
dependencies:
1207312073
"@jest/globals": "npm:^29.7.0"
1207412074
"@nx-js/observer-util": "npm:^4.1.3"
12075-
"@teamplay/backend": "npm:^0.1.7"
12076-
"@teamplay/cache": "npm:^0.1.7"
12077-
"@teamplay/channel": "npm:^0.1.7"
12078-
"@teamplay/debug": "npm:^0.1.7"
12079-
"@teamplay/schema": "npm:^0.1.7"
12080-
"@teamplay/utils": "npm:^0.1.7"
12075+
"@teamplay/backend": "npm:^0.1.8"
12076+
"@teamplay/cache": "npm:^0.1.8"
12077+
"@teamplay/channel": "npm:^0.1.8"
12078+
"@teamplay/debug": "npm:^0.1.8"
12079+
"@teamplay/schema": "npm:^0.1.8"
12080+
"@teamplay/utils": "npm:^0.1.8"
1208112081
"@testing-library/react": "npm:^15.0.7"
1208212082
diff-match-patch: "npm:^1.0.5"
1208312083
events: "npm:^3.3.0"

0 commit comments

Comments
 (0)