diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index ef29ef0..ec062a4 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -60,7 +60,7 @@ You can check the items by adding an `x` between the brackets, like this: `[x]` --> - [ ] I have read the [Contributing Guidelines](/CONTRIBUTING.md) and made commit messages that follow the guideline. -- [ ] I have run `pnpm i` before staging any files, and not bypassed `husky` when committing changes. -- [ ] I have successfully passed local tests. -- [ ] I have successfully run `npm run build` without any website errors. +- [ ] I have run `npx turbo format` to ensure the code follows the style guide. +- [ ] I have run `npx turbo test` to check if all tests are passing. +- [ ] I have run `npx turbo build` to check if the website builds without errors. - [ ] I've covered new added functionality with unit tests if necessary. diff --git a/CHANGELOG.md b/CHANGELOG.md index a782036..1fcaf0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,18 @@ # [2.0.0](https://github.com/rikhall1515/nextjs-project-template/compare/v1.0.0...v2.0.0) (2024-04-12) - ### Bug Fixes -* fix error with react types not being installed during production build ([e6447f6](https://github.com/rikhall1515/nextjs-project-template/commit/e6447f6e8c09ffcaca8f61a2bdbbcd195002c806)) -* **pnpm:** fix package.json and lockfile mismatch ([d18e722](https://github.com/rikhall1515/nextjs-project-template/commit/d18e7225b964d6fc6ea36f8200286e7b07afe453)) - +- fix error with react types not being installed during production build ([e6447f6](https://github.com/rikhall1515/nextjs-project-template/commit/e6447f6e8c09ffcaca8f61a2bdbbcd195002c806)) +- **pnpm:** fix package.json and lockfile mismatch ([d18e722](https://github.com/rikhall1515/nextjs-project-template/commit/d18e7225b964d6fc6ea36f8200286e7b07afe453)) ### Features -* **repo:** converted the repo into a turborepo ([2b07e62](https://github.com/rikhall1515/nextjs-project-template/commit/2b07e6244a0e95d4d8494231fa3914d90d340974)) - +- **repo:** converted the repo into a turborepo ([2b07e62](https://github.com/rikhall1515/nextjs-project-template/commit/2b07e6244a0e95d4d8494231fa3914d90d340974)) ### BREAKING CHANGES -* **repo:** CI scripts will not work. CI and Vercel need to be configured to run with the new -code. +- **repo:** CI scripts will not work. CI and Vercel need to be configured to run with the new + code. # 1.0.0 (2024-04-09)