Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 809 Bytes

File metadata and controls

45 lines (30 loc) · 809 Bytes

axios-tools

A collection of tools for working with Axios.

Prerequisites

This project uses pnpm as the package manager. Install it globally if you haven't already:

npm install -g pnpm

Installation

pnpm install

Development

This is a pnpm workspace monorepo. Add packages in the packages/ directory.

Project Structure

axios-tools/
├── packages/          # Workspace packages
├── package.json       # Root package.json
├── pnpm-workspace.yaml # Workspace configuration
└── .npmrc            # pnpm configuration

Commands

# Install dependencies
pnpm install

# Add a dependency to root
pnpm add <package>

# Add a dependency to a specific workspace
pnpm add <package> --filter <workspace-name>