fix: mentions of npm

This commit is contained in:
Hyteq
2025-06-23 13:39:38 +03:00
parent a71ca538b1
commit fd7ac5fd42
2 changed files with 5 additions and 3 deletions

View File

@ -13,6 +13,7 @@ Thank you for your interest in contributing to OpenCut! This document provides g
### Prerequisites ### Prerequisites
- Node.js 18+ - Node.js 18+
- Bun (latest version)
- Docker (for local database) - Docker (for local database)
### Local Development ### Local Development
@ -37,15 +38,15 @@ Thank you for your interest in contributing to OpenCut! This document provides g
1. Create a new branch: `git checkout -b feature/your-feature-name` 1. Create a new branch: `git checkout -b feature/your-feature-name`
2. Make your changes 2. Make your changes
3. Write tests for new functionality 3. Write tests for new functionality
4. Ensure all tests pass: `npm test` 4. Ensure all tests pass: `bun test`
5. Run the linter: `npm run lint` 5. Run the linter: `bun run lint`
6. Commit your changes with a descriptive message 6. Commit your changes with a descriptive message
7. Push to your fork and create a pull request 7. Push to your fork and create a pull request
## Code Style ## Code Style
- We use Biome for code formatting and linting - We use Biome for code formatting and linting
- Run `npm run format` before committing - Run `bun run format` before committing
- Follow the existing code patterns - Follow the existing code patterns
## Pull Request Process ## Pull Request Process

View File

@ -2,6 +2,7 @@
"name": "next-template", "name": "next-template",
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"packageManager": "bun@1.2.2",
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack",
"build": "next build", "build": "next build",