From b8501e94c4e3809a74a126e84a6d13e1b70fff16 Mon Sep 17 00:00:00 2001 From: Gopakumar Nair Date: Wed, 27 Nov 2024 20:38:14 +0530 Subject: [PATCH] Use npmjs link in README.md for the wrapper projects. --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8034d85..9b3baa3 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ The `simple-state-machine` decouples business logic from the UI code, as it allo This enables a clean, maintainable, and testable application architecture. This project is the core library in the **state-management** suite, and it includes wrappers for popular frameworks: -- [state-machine-react](https://github.com/state-management/state-machine-react): React wrapper providing hooks like `fromState` and `useDispatcher`. -- [ngx-state-machine](https://github.com/state-management/ngx-state-machine): Angular wrapper making the state machine injectable into angular components as a service. +- [state-machine-react](https://www.npmjs.com/package/@state-management/state-machine-react): React wrapper providing hooks like `fromState` and `useDispatcher`. +- [ngx-state-machine](https://www.npmjs.com/package/@state-management/ngx-state-machine): Angular wrapper making the state machine injectable into angular components as a service. By combining **simple-state-machine** with these wrappers, you can seamlessly integrate state management into your preferred framework. diff --git a/package.json b/package.json index 7fa3a6c..2cf3a33 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@state-management/simple-state-machine", - "version": "1.0.8", + "version": "1.0.9", "description": "A simple state management library using StateKey and Command Pattern for Angular, React, and React Native.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js",