Skip to content

Commit

Permalink
package manager fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elkolotfi committed Aug 30, 2024
1 parent bffd74f commit eff2b89
Show file tree
Hide file tree
Showing 3 changed files with 190 additions and 1 deletion.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,17 @@ Our pipeline ensures:
3. `pnpm dev` to start your local server
4. Visit the dev URL shown on your console and start exploring!

(you can use pnpm as I do or any package manager like regular npm or yarn)

## 🧪 Testing

We take testing seriously around here. Run the tests with:

```bash
npm test
# or
yarn test
# or
pnpm test
```

Expand All @@ -74,6 +80,10 @@ Got ideas? Found a bug? We're all ears! Feel free to open an issue or submit a P
Make sure to successfully run:

```bash
npm prebuild
# or
yarn prebuild
# or
pnpm prebuild
```

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"lint": "eslint .",
"preview": "vite preview",
"check-coverage": "tsx src/coverage-check.ts",
"prebuild": "pnpm run lint && pnpm run check-coverage"
"prebuild": "run-s lint check-coverage"
},
"dependencies": {
"@types/react-select": "^5.0.1",
Expand Down Expand Up @@ -49,6 +49,7 @@
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^24.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"tsx": "^4.19.0",
Expand Down
178 changes: 178 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit eff2b89

Please sign in to comment.