Skip to content

Commit

Permalink
chore: update username
Browse files Browse the repository at this point in the history
  • Loading branch information
seungok Jeong committed Jun 2, 2024
1 parent 61ac41e commit 938e0e1
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
## @puresky/utils
## @luxcaeli/utils

Typescript, Javascript utility collection

![npm](https://img.shields.io/npm/v/@puresky/utils) ![@puresky/utils tests](https://github.com/vsnm25/utils/actions/workflows/main.yml/badge.svg) [![tree-shaking](https://badgen.net/bundlephobia/tree-shaking/@puresky/utils)](https://bundlephobia.com/result?p=@puresky/utils) ![npm](https://img.shields.io/npm/dw/@puresky/utils) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/@puresky/utils)
![npm](https://img.shields.io/npm/v/@luxcaeli/utils) ![@luxcaeli/utils tests](https://github.com/luxcaeli/utils/actions/workflows/main.yml/badge.svg) [![tree-shaking](https://badgen.net/bundlephobia/tree-shaking/@luxcaeli/utils)](https://bundlephobia.com/result?p=@luxcaeli/utils) ![npm](https://img.shields.io/npm/dw/@luxcaeli/utils) ![npm bundle size](https://img.shields.io/bundlephobia/minzip/@luxcaeli/utils)


## Installation
```shell
## npm
npm install @puresky/utils
npm install @luxcaeli/utils

## yarn
yarn add @puresky/utils
yarn add @luxcaeli/utils
```


## API Documentation
You can check entire api documentation in [here](https://github.com/vsnm25/utils/blob/main/README_API.md)
You can check entire api documentation in [here](https://github.com/luxcaeli/utils/blob/main/README_API.md)

8 changes: 4 additions & 4 deletions README_API.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

| API | API spec |
| -- | -- |
| deepClone | [deepClone.md](https://github.com/vsnm25/utils/blob/main/src/deepClone.md) |
| hexToRgba | [hexToRgba.md](https://github.com/vsnm25/utils/blob/main/src/hexToRgba.md) |
| isEmptyObject | [isEmptyObject.md](https://github.com/vsnm25/utils/blob/main/src/isEmptyObject.md) |
| minMaxBetween | [minMaxBetween.md](https://github.com/vsnm25/utils/blob/main/src/minMaxBetween.md) |
| deepClone | [deepClone.md](https://github.com/luxcaeli/utils/blob/main/src/deepClone.md) |
| hexToRgba | [hexToRgba.md](https://github.com/luxcaeli/utils/blob/main/src/hexToRgba.md) |
| isEmptyObject | [isEmptyObject.md](https://github.com/luxcaeli/utils/blob/main/src/isEmptyObject.md) |
| minMaxBetween | [minMaxBetween.md](https://github.com/luxcaeli/utils/blob/main/src/minMaxBetween.md) |
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@puresky/utils",
"name": "@luxcaeli/utils",
"version": "1.0.0",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"author": "vsnm25 <vsnm25@gmail.com> (https://github.com/vsnm25)",
"author": "luxcaeli <vsnm25@gmail.com> (https://github.com/luxcaeli)",
"license": "MIT",
"description": "Typescript, Javascript utility collection",
"homepage": "https://github.com/vsnm25/utils",
"homepage": "https://github.com/luxcaeli/utils",
"bugs": {
"url": "https://github.com/vsnm25/utils/issues"
"url": "https://github.com/luxcaeli/utils/issues"
},
"keywords": [
"typescript",
Expand Down
2 changes: 1 addition & 1 deletion scripts/updateApiDocumentation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const updateApiDocumentation = async () => {
for (let i = 0; i < utilityReadmeList.length; i += 1) {
const utilityReadme = utilityReadmeList[i];
const utilityName = utilityReadme.split(".md")[0];
API_DOCUMENTATION_TEMPLATE += `| ${utilityName} | [${utilityReadme}](https://github.com/vsnm25/utils/blob/main/src/${utilityReadme}) | \n`;
API_DOCUMENTATION_TEMPLATE += `| ${utilityName} | [${utilityReadme}](https://github.com/luxcaeli/utils/blob/main/src/${utilityReadme}) | \n`;
}
fs.writeFile("README_API.md", API_DOCUMENTATION_TEMPLATE);
} catch (err) {
Expand Down
2 changes: 1 addition & 1 deletion src/deepClone.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function deepClone<T>(value: T): T;

## Usage
```typescript
import { deepClone } from '@puresky/utils';
import { deepClone } from '@luxcaeli/utils';

const originManky = { manky: { banana: 1 } };
const deepCopiedManky = deepClone(originManky);
Expand Down
2 changes: 1 addition & 1 deletion src/hexToRgba.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function hexToRgba(hexColor: string, alpha?: number): string;

## Usage
```typescript
import { hexToRgba } from '@puresky/utils';
import { hexToRgba } from '@luxcaeli/utils';

const green = hexToRgba("#5eba7d"); // rgba(94, 186, 125, 1)
const lightGreen = hexToRgba("#5eba7d", 0.5); // rgba(94, 186, 125, 0.5)
Expand Down
2 changes: 1 addition & 1 deletion src/isEmptyObject.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ function isEmptyObject(value: unknown): boolean;

## Usage
```typescript
import { isEmptyObject } from '@puresky/utils';
import { isEmptyObject } from '@luxcaeli/utils';

console.log(isEmptyObject({})); // true
```

0 comments on commit 938e0e1

Please sign in to comment.