Merged PR 90: Rebrand package from js-utils to utiliyo
Rebrand package from js-utils to utiliyomaster
parent
7ac45f1d86
commit
5461a26a80
13
README.md
13
README.md
|
@ -1,23 +1,23 @@
|
||||||
# js-utils
|
# utiliyo
|
||||||
|
|
||||||
## Introduction
|
## 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
|
## Package installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
// with npm
|
// 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
|
// 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
|
## How to use the package
|
||||||
|
|
||||||
```jsx
|
```jsx
|
||||||
import { typeValidator, localStorage, camelizeKeys } from "@flare/js-utils";
|
import { typeValidator, localStorage, camelizeKeys } from "@flare/utiliyo";
|
||||||
```
|
```
|
||||||
|
|
||||||
## Unit testing
|
## 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.2 - Utility functions export fix
|
||||||
1.0.3 - Typescript warnings fix
|
1.0.3 - Typescript warnings fix
|
||||||
1.0.4 - Added "camelizeKeys" function
|
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.
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@flare/js-utils",
|
"name": "@flare/utiliyo",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@flare/js-utils",
|
"name": "@flare/utiliyo",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/jest": "^29.4.0",
|
"@types/jest": "^29.4.0",
|
||||||
|
|
14
package.json
14
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@flare/js-utils",
|
"name": "@flare/utiliyo",
|
||||||
"version": "1.1.0",
|
"version": "1.2.0",
|
||||||
"description": "js-utils is a collection of utilities that facilitate software development in a javascript environment.",
|
"description": "utiliyo is a collection of utilities that facilitate software development in a javascript environment.",
|
||||||
"main": "./lib/index.js",
|
"main": "./lib/index.js",
|
||||||
"types": "./lib/index.d.ts",
|
"types": "./lib/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -29,16 +29,16 @@
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://lab.code-rove.com/gitea/bricks/js-utils"
|
"url": "https://lab.code-rove.com/gitea/bricks/utiliyo"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"flare",
|
"flare",
|
||||||
"js-utils"
|
"utiliyo"
|
||||||
],
|
],
|
||||||
"bugs": {
|
"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": [
|
"files": [
|
||||||
"lib/**/*",
|
"lib/**/*",
|
||||||
"LICENSE"
|
"LICENSE"
|
||||||
|
|
Loading…
Reference in New Issue