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
|
||||
|
||||
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.
|
||||
|
|
|
@ -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",
|
||||
|
|
14
package.json
14
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"
|
||||
|
|
Loading…
Reference in New Issue