feat(): update dependencies, remove dependabot #295
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes several updates to dependencies, build scripts, and error handling in the project. The most important changes involve updating dependencies in
package.json
, modifying build scripts, and improving error handling inJsxParser.tsx
.Dependency Updates:
package.json
: Updated various development dependencies to newer versions, including@happy-dom/global-registrator
,@types/acorn
,@typescript-eslint/eslint-plugin
,@typescript-eslint/parser
,concurrently
,eslint
,eslint-plugin-import
, andeslint-plugin-react
.Build Script Modifications:
package.json
: Modified thebuild:types
script to include--preserveWatchOutput
and changed theserve
script to usebun ./demo/server.ts
instead ofbun serve --port=8080 --open
.Error Handling Improvement:
source/components/JsxParser.tsx
: Simplified the error handling in theJsxParser
component by removing theerror
parameter from thecatch
block.Configuration Changes:
.github/dependabot.yml
: Removed the Dependabot configuration file..tool-versions
: Updatedbun
version from1.1.27
to1.1.33
.- chore(deps): update dependency eslint to v8.57.1