You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`pnpm dev:cli`| Builds and starts the CLI in watch-mode |
56
-
|`pnpm dev:www`| Starts the development server for the docs with HMR |
57
-
|`pnpm build:cli`| Builds the CLI |
58
-
|`pnpm build:www`| Builds the docs |
59
-
|`pnpm build`| Builds CLI and docs |
60
-
|`pnpm format`| Formats the code |
61
-
|`pnpm lint`| Lints the code |
62
-
|`pnpm lint:fix`| Lints the code and fixes any errors |
63
-
|`pnpm check`| Checks your code for typeerrors, formatting and linting |
55
+
|`bun dev:cli`| Builds and starts the CLI in watch-mode |
56
+
|`bun dev:www`| Starts the development server for the docs with HMR |
57
+
|`bun build:cli`| Builds the CLI |
58
+
|`bun build:www`| Builds the docs |
59
+
|`bun build`| Builds CLI and docs |
60
+
|`bun format`| Formats the code |
61
+
|`bun lint`| Lints the code |
62
+
|`bun lint:fix`| Lints the code and fixes any errors |
63
+
|`bun check`| Checks your code for typeerrors, formatting and linting |
64
64
65
65
When making commits, make sure to follow the [conventional commit](https://www.conventionalcommits.org/en/v1.0.0/) guidelines, i.e. prepending the message with `feat:`, `fix:`, `chore:`, `docs:`, etc... You can use `git status` to double check which files have not yet been staged for commit:
Check that your code follows the project's style guidelines by running:
74
74
75
75
```bash
76
-
pnpm check
76
+
bun check
77
77
```
78
78
79
79
Please also make a manual, functional test of your changes.
80
80
81
81
If your change should appear in the changelog, i.e. it changes some behavior of either the CLI or the outputted application, it must be captured by `changeset` which is done by running
82
82
83
83
```bash
84
-
pnpm changeset
84
+
bun changeset
85
85
```
86
86
87
87
and filling out the form with the appropriate information. Then, add the generated changeset to git:
Copy file name to clipboardExpand all lines: cli/CHANGELOG.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1031,7 +1031,7 @@
1031
1031
- added JSDoc type to clientEnv in all env-schema ([#240](https://github.com/t3-oss/create-t3-app/issues/240)) ([9cb5ebb](https://github.com/t3-oss/create-t3-app/commit/9cb5ebbb2a0147ce15726c7e1a6c6be4065bc2dc))
1032
1032
- clarify some comments and rename some files in env ([#245](https://github.com/t3-oss/create-t3-app/issues/245)) ([2048783](https://github.com/t3-oss/create-t3-app/commit/2048783bd26f7f0522357a3ab1e74e6f560a221c))
1033
1033
- remove semicolon in \_app.tsx with next-auth to avoid early return ([1be7713](https://github.com/t3-oss/create-t3-app/commit/1be771393628631b818b46d3f3bf1ca41ad99dce))
1034
-
- title being offset when using yarn/pnpm ([c881f00](https://github.com/t3-oss/create-t3-app/commit/c881f00430f606040a448eecc41e779ab0c728a7))
1034
+
- title being offset when using yarn/bun ([c881f00](https://github.com/t3-oss/create-t3-app/commit/c881f00430f606040a448eecc41e779ab0c728a7))
- incompatible git version ([#127](https://github.com/t3-oss/create-t3-app/issues/127)) ([34f44f8](https://github.com/t3-oss/create-t3-app/commit/34f44f817df52b317afea5b8d55c87eea487833f))
1112
-
- invalid pnpm action version ([2a1f6e3](https://github.com/t3-oss/create-t3-app/commit/2a1f6e32aedb8f86ee7ca403e481be8e474b76b2))
1112
+
- invalid bun action version ([2a1f6e3](https://github.com/t3-oss/create-t3-app/commit/2a1f6e32aedb8f86ee7ca403e481be8e474b76b2))
1113
1113
- language prompt short answer should both be ts ([#142](https://github.com/t3-oss/create-t3-app/issues/142)) ([5e4f80d](https://github.com/t3-oss/create-t3-app/commit/5e4f80d7aa930f16add3bb2273a23f5829548f49))
1114
1114
- **markup:** multiple h1 replaced to h2 ([6bf9040](https://github.com/t3-oss/create-t3-app/commit/6bf90407b9a9774348a77927d37c47f3ded5552a))
1115
1115
- **prompts:** show correct package manager in prompts ([#153](https://github.com/t3-oss/create-t3-app/issues/153)) ([fe66ae9](https://github.com/t3-oss/create-t3-app/commit/fe66ae9f60cbe6a2e429be406a1cd548c51e7bbd))
0 commit comments