Skip to content

Latest commit

 

History

History
55 lines (36 loc) · 1.12 KB

File metadata and controls

55 lines (36 loc) · 1.12 KB

use

⚡️ Under heavy development. Pin your NPM version!!!! before consumption. ⚡️

Installation

pnpm install @nefty/use
yarn add @nefty/use

Usage

import { ... } from '@nefty/use';

see lib/README.md for all methodes

💻 Development

  • Clone this repository
  • Run pnpm install to install dependencies
  • Run pnpm build to build the library and rebuild after a change, I don't have a nice setup for this yet
  • Run pnpm dev to start the development server

📦 Publishing

  • Commit all changes (no need to push)
  • Run pnpm pub to publish the package

I like pnpm just not the command (let's rename to P)

  1. Open the ~/.zshrc file in your preferred text editor.

  2. Next, add your alias to the end of the file, save the changes and close the editor.

alias p='pnpm'
  1. Run the below source command, which does not provide output, but sources the ~/.zshrc file to make the alias available in your current shell. source ~/.zshrc
source ~/.zshrc
  1. Now you can use the alias to run the command.
p dev