Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ When working with number-to-text conversion, follow these Vietnamese language co
- Only add devDependencies for tooling

### Package Manager
- Use **pnpm** (not npm or yarn)
- **ONLY use pnpm** - npm and yarn are NOT allowed in this repository
- Never use `npm install` or `yarn install` commands
- All dependency management must be done with `pnpm` commands
- Lock files: Only `pnpm-lock.yaml` is allowed (package-lock.json and yarn.lock are ignored)
- Workspaces are configured for the `docs` subdirectory

## Security Best Practices
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -124,3 +124,7 @@ dist

# IDEs
.idea/

# Lock files for other package managers (only use pnpm)
package-lock.json
yarn.lock
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
## Installation

```bash
npm install vn-number
pnpm add vn-number
```

```bash
Expand Down
Loading