Skip to content

Commit b307e32

Browse files
committed
chore: replace stale pnpm references with npm equivalents
The repository migrated from pnpm workspaces to npm in 4071cbc but several files were not updated at that time: - .github/pull_request_template.md: checklist items still referenced `pnpm -r run lint/typecheck/test`; replaced with the npm --prefix equivalents used by CI. - .gitignore: removed pnpm-debug.log* (pnpm is no longer installed). - apps/web/.gitignore: same pnpm-debug.log* removal. - apps/mobile/jest.config.js: removed the \.pnpm/ virtual-store branch from the transformIgnorePatterns regex (dead code under npm).
1 parent b69d55d commit b307e32

4 files changed

Lines changed: 4 additions & 6 deletions

File tree

.github/pull_request_template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ Closes #
4343

4444
## Checklist
4545

46-
- [ ] My code follows the project's coding style (`pnpm -r run lint` passes).
47-
- [ ] TypeScript compiles without errors (`pnpm -r run typecheck`).
46+
- [ ] My code follows the project's coding style (`npm --prefix apps/backend run lint` passes).
47+
- [ ] TypeScript compiles without errors (`npm --prefix apps/backend run typecheck`).
4848
- [ ] I have added or updated tests for the changes I made.
49-
- [ ] All tests pass locally (`pnpm -r run test`).
49+
- [ ] All tests pass locally (`npm --prefix apps/backend run test`).
5050
- [ ] I have updated documentation where necessary.
5151
- [ ] No new `console.log` or debug statements left in the code.
5252
- [ ] Breaking changes are documented in this PR description.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,5 @@ coverage/
4545
*.log
4646
npm-debug.log*
4747
yarn-debug.log*
48-
pnpm-debug.log*
4948
.cache/
5049
tmp/

apps/mobile/jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ module.exports = {
22
preset: 'react-native',
33
setupFiles: ['<rootDir>/jest.setup.js'],
44
transformIgnorePatterns: [
5-
'node_modules/(?!((react-native|@react-native|@react-navigation|@gorhom)/|\\.pnpm/(react-native|@react-native|@react-navigation|@gorhom)[^/]*))',
5+
'node_modules/(?!((react-native|@react-native|@react-navigation|@gorhom)/))',
66
],
77
};

apps/web/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ logs
44
npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
7-
pnpm-debug.log*
87
lerna-debug.log*
98

109
node_modules

0 commit comments

Comments
 (0)