From 5461a26a80d51e49526ab256b50d937291e8cf78 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sun, 30 Mar 2025 00:35:41 +0000 Subject: [PATCH] Merged PR 90: Rebrand package from js-utils to utiliyo Rebrand package from js-utils to utiliyo --- README.md | 13 +++++++------ package-lock.json | 8 ++++---- package.json | 14 +++++++------- 3 files changed, 18 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index f99433f..1b24805 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,23 @@ -# js-utils +# utiliyo ## Introduction -js-utils is a collection of utilities that facilitate software development in a javascript environment. +utiliyo is a collection of utilities that facilitate software development in a javascript environment. ## Package installation ```bash // with npm -npm i --save @flare/js-utils --registry https://lab.code-rove.com/public-node-registry +npm i --save @flare/utiliyo --registry https://lab.code-rove.com/public-node-registry // with yarn -yarn add @flare/js-utils --registry https://lab.code-rove.com/public-node-registry +yarn add @flare/utiliyo --registry https://lab.code-rove.com/public-node-registry ``` ## How to use the package ```jsx -import { typeValidator, localStorage, camelizeKeys } from "@flare/js-utils"; +import { typeValidator, localStorage, camelizeKeys } from "@flare/utiliyo"; ``` ## Unit testing @@ -33,4 +33,5 @@ All tests in the package can be executed by running: `npm test`. 1.0.2 - Utility functions export fix 1.0.3 - Typescript warnings fix 1.0.4 - Added "camelizeKeys" function -1.1.0 - The package has been migrated to TypeScript. Unit tests using Jest have also been added. +1.1.0 - The package has been migrated to TypeScript. Unit tests using Jest have also been added. +1.2.0 - Rebranding from js-utils to utiliyo. diff --git a/package-lock.json b/package-lock.json index 6eb8456..706abd1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "@flare/js-utils", - "version": "1.1.0", + "name": "@flare/utiliyo", + "version": "1.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { - "name": "@flare/js-utils", - "version": "1.1.0", + "name": "@flare/utiliyo", + "version": "1.2.0", "license": "MIT", "devDependencies": { "@types/jest": "^29.4.0", diff --git a/package.json b/package.json index fe942ab..6bd44d9 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "@flare/js-utils", - "version": "1.1.0", - "description": "js-utils is a collection of utilities that facilitate software development in a javascript environment.", + "name": "@flare/utiliyo", + "version": "1.2.0", + "description": "utiliyo is a collection of utilities that facilitate software development in a javascript environment.", "main": "./lib/index.js", "types": "./lib/index.d.ts", "scripts": { @@ -29,16 +29,16 @@ "license": "MIT", "repository": { "type": "git", - "url": "https://lab.code-rove.com/gitea/bricks/js-utils" + "url": "https://lab.code-rove.com/gitea/bricks/utiliyo" }, "keywords": [ "flare", - "js-utils" + "utiliyo" ], "bugs": { - "url": "https://lab.code-rove.com/gitea/bricks/js-utils/issues" + "url": "https://lab.code-rove.com/gitea/bricks/utiliyo/issues" }, - "homepage": "https://lab.code-rove.com/gitea/bricks/js-utils#readme", + "homepage": "https://lab.code-rove.com/gitea/bricks/utiliyo#readme", "files": [ "lib/**/*", "LICENSE"