-
Notifications
You must be signed in to change notification settings - Fork 10
Replace Bun with Node.js #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,13 +8,13 @@ Use the built-in npm scripts for easy version bumping: | |
|
|
||
| ```bash | ||
| # For patch releases (bug fixes): 0.1.0 -> 0.1.1 | ||
| bun run version:patch | ||
| npm run version:patch | ||
|
|
||
| # For minor releases (new features): 0.1.0 -> 0.2.0 | ||
| bun run version:minor | ||
| npm run version:minor | ||
|
|
||
| # For major releases (breaking changes): 0.1.0 -> 1.0.0 | ||
| bun run version:major | ||
| npm run version:major | ||
| ``` | ||
|
|
||
| These scripts will: | ||
|
|
@@ -31,13 +31,13 @@ If you prefer manual control: | |
| 1. **Update the version in package.json:** | ||
|
|
||
| ```bash | ||
| bun version 0.1.1 # or whatever version you want | ||
| npm version 0.1.1 # or whatever version you want | ||
| ``` | ||
|
|
||
| 2. **Type check the project:** | ||
|
|
||
| ```bash | ||
| bun run typecheck | ||
| npm run typecheck | ||
| ``` | ||
|
|
||
| 3. **Commit the changes:** | ||
|
|
@@ -93,7 +93,7 @@ This allows users to pin to major versions for automatic updates: | |
|
|
||
| **Type check failures:** | ||
|
|
||
| - Run `bun run typecheck` locally to check for TypeScript errors | ||
| - Run `npm run typecheck` locally to check for TypeScript errors | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This also references 🤖 React with 👍 or 👎 to let us know if the comment was useful. |
||
| - Ensure all dependencies are properly installed | ||
|
|
||
| **Release not created:** | ||
|
|
||
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This step references
npm run typecheck, butpackage.jsondoes not define atypecheckscript, so it will fail. Consider aligning the docs with the available scripts (related note also appears later in this file).🤖 React with 👍 or 👎 to let us know if the comment was useful.