From 94fa8414e71a1dd6cc4e17364b60537e87b2064d Mon Sep 17 00:00:00 2001 From: Harsh Raj Date: Sat, 18 Mar 2023 12:27:24 +0530 Subject: [PATCH] v0.0.3 --- README.md | 16 ++++++++++++---- package.json | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 51a421b..1f78fc2 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ [![CodeFactor](https://www.codefactor.io/repository/github/codinasion/tools/badge)](https://www.codefactor.io/repository/github/codinasion/tools) ![Code Size](https://img.shields.io/github/languages/code-size/codinasion/tools) ![version](https://img.shields.io/github/package-json/v/codinasion/tools?color=lightgreen) ![MIT](https://img.shields.io/github/license/codinasion/tools) -This is a collection of open source tools, developed by `Codinasion` team. +This is a collection of open source tools, written in TypeScript, that can be used in any JavaScript project. ## Tools -You can find the list of tools in the [`src`](src) directory. +You can find the documentation for each tool in the `src` directory. ## Getting Started @@ -22,8 +22,16 @@ yarn add codinasion/tools ## Usage -```js -import { tool_name } from '@codinasion/tools'; +You can import the tools individually: + +```javascript +import { FormatStringToTitleCase } from 'codinasion/tools'; +``` + +or, if you prefer to import all the tools: + +```javascript +import * as tools from 'codinasion/tools'; ``` ## License diff --git a/package.json b/package.json index b75fc61..cfe564e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codinasion/tools", - "version": "0.0.2", + "version": "0.0.3", "private": false, "description": "Collection of open source tools", "main": "lib/index.js",