Skip to content

Commit

Permalink
Use krmx 0.6.x version throughout state packages
Browse files Browse the repository at this point in the history
  • Loading branch information
simonkarman committed Oct 21, 2024
1 parent 520307b commit d1dfe97
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 138 deletions.
12 changes: 6 additions & 6 deletions state/base/package-lock.json

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

6 changes: 3 additions & 3 deletions state/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@krmx/state",
"description": "krmx state",
"author": "Simon Karman",
"version": "0.0.1",
"version": "0.0.2",
"main": "dist/src/index.js",
"scripts": {
"test": "jest --coverage --silent --verbose",
Expand All @@ -15,7 +15,7 @@
"prepublishOnly": "npm install && npm run validate"
},
"dependencies": {
"@krmx/base": "^0.5.6",
"@krmx/base": "^0.6.3",
"immer": "^10.1.1",
"jsondiffpatch": "0.5.0",
"zod": "^3.23.8"
Expand Down Expand Up @@ -46,6 +46,6 @@
},
"publishConfig": {
"access": "public",
"provenance": true
"provenance": false
}
}
2 changes: 1 addition & 1 deletion state/base/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.0.1';
export const VERSION = '0.0.2';
84 changes: 24 additions & 60 deletions state/client-react/package-lock.json

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

12 changes: 6 additions & 6 deletions state/client-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@krmx/state-client-react",
"description": "krmx state client for react",
"author": "Simon Karman",
"version": "0.0.1",
"version": "0.0.2",
"main": "dist/src/index.js",
"scripts": {
"test": "jest --coverage --silent --verbose",
Expand All @@ -13,17 +13,17 @@
"prepublishOnly": "npm install && npm run validate"
},
"dependencies": {
"@krmx/base": "^0.5.6",
"@krmx/client": "^0.5.4",
"@krmx/state": "^0.0.1"
"@krmx/base": "^0.6.3",
"@krmx/client": "^0.6.3",
"@krmx/state": "^0.0.2"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@krmx/server": "^0.5.4",
"@krmx/server": "^0.6.7",
"@types/jest": "^29.5.1",
"@types/react-test-renderer": "^18.0.0",
"@types/ws": "^8.5.9",
Expand Down Expand Up @@ -56,6 +56,6 @@
},
"publishConfig": {
"access": "public",
"provenance": true
"provenance": false
}
}
2 changes: 1 addition & 1 deletion state/client-react/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = '0.0.1';
export const VERSION = '0.0.2';
2 changes: 1 addition & 1 deletion state/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"postinstall": "npm --prefix base install && npm --prefix server install && npm --prefix client-react install",
"validate": "npm run --prefix base validate && npm run --prefix server validate && npm run --prefix client-react validate",
"versions": "npm --prefix base run postversion && npm --prefix server run postversion && npm --prefix client-react run postversion"
"versions": "npm install && npm --prefix base run postversion && npm --prefix server run postversion && npm --prefix client-react run postversion"
},
"devDependencies": {
"husky": "^4.3.8"
Expand Down
71 changes: 16 additions & 55 deletions state/server/package-lock.json

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

Loading

0 comments on commit d1dfe97

Please sign in to comment.