@@ -19,14 +19,14 @@ This library solves these problems by providing a declarative way to define your
1919- ✅ ** Next.js** (App Router & Pages Router)
2020- ✅ ** Vanilla JavaScript** (Framework agnostic)
2121- ✅ ** TypeScript** (Full type support)
22- - ✅ ** Any JavaScript bundler** (Webpack, Vite, Rollup, etc.)# @mksingh/ utils
22+ - ✅ ** Any JavaScript bundler** (Webpack, Vite, Rollup, etc.)# @mk-singh/web- utils
2323
2424A collection of JavaScript utility functions designed for modern web development, with special focus on React.js applications. Modular and tree-shakeable for optimal bundle sizes.
2525
2626## Installation
2727
2828``` javascript
29- import { createRoutes } from " @mksingh/ utils" ;
29+ import { createRoutes } from " @mk-singh/web- utils" ;
3030```
3131
3232## Modular Imports
@@ -35,7 +35,7 @@ Import only what you need to keep your bundle size small:
3535
3636``` javascript
3737// Import specific utilities
38- import { createRoutes } from " @mksingh/ utils/factories/route-factory" ;
38+ import { createRoutes } from " @mk-singh/web- utils/factories/route-factory" ;
3939```
4040
4141## Features
@@ -60,7 +60,7 @@ Transforms a route configuration object into a fully resolved route structure wi
6060``` tsx
6161import React from ' react' ;
6262import { BrowserRouter , Routes , Route , Link } from ' react-router-dom' ;
63- import { createRoutes } from " @mksingh/ utils/factories/route-factory" ;
63+ import { createRoutes } from " @mk-singh/web- utils/factories/route-factory" ;
6464
6565// Define your route configuration
6666const routeConfig = {
@@ -126,7 +126,7 @@ function Settings() {
126126#### Basic Example
127127
128128``` javascript
129- import { createRoutes } from " @mksingh/ utils/factories/route-factory" ;
129+ import { createRoutes } from " @mk-singh/web- utils/factories/route-factory" ;
130130
131131const routeConfig = {
132132 start: { path: " start" },
0 commit comments