Skip to content

Commit d6f4a07

Browse files
author
Ivica Batinic
committed
v2.5.1
1 parent 9b04894 commit d6f4a07

File tree

9 files changed

+41
-41
lines changed

9 files changed

+41
-41
lines changed

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"lerna": "2.5.1",
33
"packages": ["packages/*"],
4-
"version": "2.5.0",
4+
"version": "2.5.1",
55
"npmClient": "yarn",
66
"useWorkspaces": true,
77
"publishConfig": {

packages/datx-jsonapi-angular/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datx/jsonapi-angular",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"scripts": {
55
"ng": "ng",
66
"build": "ng build datx-jsonapi-angular && npm run copy-license && npm run copy-readme && node ./prepublish.js",
@@ -27,11 +27,11 @@
2727
"@angular/platform-browser": "~14.2.0",
2828
"@angular/platform-browser-dynamic": "~14.1.2",
2929
"@angular/router": "~14.2.0",
30-
"@datx/core": "2.5.0",
31-
"@datx/jsonapi": "2.5.0",
32-
"@datx/jsonapi-types": "2.5.0",
33-
"@datx/network": "2.5.0",
34-
"@datx/utils": "2.5.0",
30+
"@datx/core": "2.5.1",
31+
"@datx/jsonapi": "2.5.1",
32+
"@datx/jsonapi-types": "2.5.1",
33+
"@datx/network": "2.5.1",
34+
"@datx/utils": "2.5.1",
3535
"@types/jest": "^28.1.1",
3636
"@types/node": "^18.7.6",
3737
"jest": "^28.1.1",

packages/datx-jsonapi-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datx/jsonapi-types",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "DatX JSON:API types",
55
"typings": "dist/index.d.ts",
66
"sideEffects": false,

packages/datx-jsonapi/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datx/jsonapi",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "DatX mixin for JSON API support",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm.js",
@@ -74,9 +74,9 @@
7474
]
7575
},
7676
"dependencies": {
77-
"@datx/core": "2.5.0",
78-
"@datx/jsonapi-types": "2.5.0",
79-
"@datx/network": "2.5.0",
80-
"@datx/utils": "2.5.0"
77+
"@datx/core": "2.5.1",
78+
"@datx/jsonapi-types": "2.5.1",
79+
"@datx/network": "2.5.1",
80+
"@datx/utils": "2.5.1"
8181
}
8282
}

packages/datx-network/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datx/network",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "DatX network layer",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm.js",
@@ -70,7 +70,7 @@
7070
]
7171
},
7272
"dependencies": {
73-
"@datx/core": "2.5.0",
74-
"@datx/utils": "2.5.0"
73+
"@datx/core": "2.5.1",
74+
"@datx/utils": "2.5.1"
7575
}
7676
}

packages/datx-swr/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datx/swr",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "DatX bindings for SWR",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm.js",
@@ -35,8 +35,8 @@
3535
"watch": "rollup --config --watch"
3636
},
3737
"dependencies": {
38-
"@datx/core": "2.5.0",
39-
"@datx/jsonapi": "2.5.0"
38+
"@datx/core": "2.5.1",
39+
"@datx/jsonapi": "2.5.1"
4040
},
4141
"devDependencies": {
4242
"@rollup/plugin-commonjs": "^22.0.0",

packages/datx-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datx/utils",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "DatX lib utils for mixins",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm.js",

packages/datx/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datx/core",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "A MobX data store",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.esm.js",
@@ -63,6 +63,6 @@
6363
]
6464
},
6565
"dependencies": {
66-
"@datx/utils": "2.5.0"
66+
"@datx/utils": "2.5.1"
6767
}
6868
}

yarn.lock

+19-19
Original file line numberDiff line numberDiff line change
@@ -1884,11 +1884,11 @@ __metadata:
18841884
languageName: node
18851885
linkType: hard
18861886

1887-
"@datx/[email protected].0, @datx/core@workspace:packages/datx":
1887+
"@datx/[email protected].1, @datx/core@workspace:packages/datx":
18881888
version: 0.0.0-use.local
18891889
resolution: "@datx/core@workspace:packages/datx"
18901890
dependencies:
1891-
"@datx/utils": 2.5.0
1891+
"@datx/utils": 2.5.1
18921892
"@rollup/plugin-commonjs": ^22.0.0
18931893
"@rollup/plugin-node-resolve": ^13.3.0
18941894
"@rollup/plugin-typescript": ^8.3.2
@@ -1920,11 +1920,11 @@ __metadata:
19201920
"@angular/platform-browser": ~14.2.0
19211921
"@angular/platform-browser-dynamic": ~14.1.2
19221922
"@angular/router": ~14.2.0
1923-
"@datx/core": 2.5.0
1924-
"@datx/jsonapi": 2.5.0
1925-
"@datx/jsonapi-types": 2.5.0
1926-
"@datx/network": 2.5.0
1927-
"@datx/utils": 2.5.0
1923+
"@datx/core": 2.5.1
1924+
"@datx/jsonapi": 2.5.1
1925+
"@datx/jsonapi-types": 2.5.1
1926+
"@datx/network": 2.5.1
1927+
"@datx/utils": 2.5.1
19281928
"@types/jest": ^28.1.1
19291929
"@types/node": ^18.7.6
19301930
jest: ^28.1.1
@@ -1941,7 +1941,7 @@ __metadata:
19411941
languageName: unknown
19421942
linkType: soft
19431943

1944-
"@datx/[email protected].0, @datx/jsonapi-types@workspace:packages/datx-jsonapi-types":
1944+
"@datx/[email protected].1, @datx/jsonapi-types@workspace:packages/datx-jsonapi-types":
19451945
version: 0.0.0-use.local
19461946
resolution: "@datx/jsonapi-types@workspace:packages/datx-jsonapi-types"
19471947
dependencies:
@@ -1962,14 +1962,14 @@ __metadata:
19621962
languageName: unknown
19631963
linkType: soft
19641964

1965-
"@datx/[email protected].0, @datx/jsonapi@workspace:packages/datx-jsonapi":
1965+
"@datx/[email protected].1, @datx/jsonapi@workspace:packages/datx-jsonapi":
19661966
version: 0.0.0-use.local
19671967
resolution: "@datx/jsonapi@workspace:packages/datx-jsonapi"
19681968
dependencies:
1969-
"@datx/core": 2.5.0
1970-
"@datx/jsonapi-types": 2.5.0
1971-
"@datx/network": 2.5.0
1972-
"@datx/utils": 2.5.0
1969+
"@datx/core": 2.5.1
1970+
"@datx/jsonapi-types": 2.5.1
1971+
"@datx/network": 2.5.1
1972+
"@datx/utils": 2.5.1
19731973
"@rollup/plugin-commonjs": ^22.0.0
19741974
"@rollup/plugin-node-resolve": ^13.3.0
19751975
"@rollup/plugin-typescript": ^8.3.2
@@ -1991,12 +1991,12 @@ __metadata:
19911991
languageName: unknown
19921992
linkType: soft
19931993

1994-
"@datx/[email protected].0, @datx/network@workspace:packages/datx-network":
1994+
"@datx/[email protected].1, @datx/network@workspace:packages/datx-network":
19951995
version: 0.0.0-use.local
19961996
resolution: "@datx/network@workspace:packages/datx-network"
19971997
dependencies:
1998-
"@datx/core": 2.5.0
1999-
"@datx/utils": 2.5.0
1998+
"@datx/core": 2.5.1
1999+
"@datx/utils": 2.5.1
20002000
"@rollup/plugin-commonjs": ^22.0.0
20012001
"@rollup/plugin-node-resolve": ^13.3.0
20022002
"@rollup/plugin-typescript": ^8.3.2
@@ -2019,8 +2019,8 @@ __metadata:
20192019
version: 0.0.0-use.local
20202020
resolution: "@datx/swr@workspace:packages/datx-swr"
20212021
dependencies:
2022-
"@datx/core": 2.5.0
2023-
"@datx/jsonapi": 2.5.0
2022+
"@datx/core": 2.5.1
2023+
"@datx/jsonapi": 2.5.1
20242024
"@rollup/plugin-commonjs": ^22.0.0
20252025
"@rollup/plugin-node-resolve": ^13.3.0
20262026
"@rollup/plugin-typescript": ^8.3.2
@@ -2053,7 +2053,7 @@ __metadata:
20532053
languageName: unknown
20542054
linkType: soft
20552055

2056-
"@datx/[email protected].0, @datx/utils@workspace:packages/datx-utils":
2056+
"@datx/[email protected].1, @datx/utils@workspace:packages/datx-utils":
20572057
version: 0.0.0-use.local
20582058
resolution: "@datx/utils@workspace:packages/datx-utils"
20592059
dependencies:

0 commit comments

Comments
 (0)