Separate test module from main. #173
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 changes across multiple files to streamline the build process, update dependencies, and improve code functionality. The most important changes are grouped by theme below.
Build Process Improvements:
.github/workflows/build.yml
: Changed the test job to run both the build and start commands, and set the working directory totest
..github/workflows/release.yml
: Simplified the build command to use a single build script.package.json
: Consolidated build scripts and updated the development script to watch the main build directory.Dependency Updates:
package.json
: Updated several development dependencies to their latest versions and removed unused dependencies.Code Functionality:
src/utils/internal/JsonDescriptionUtil.ts
: Refactored thetake
function to improve readability and ensure it returnsundefined
for empty results. [1] [2]Miscellaneous:
pnpm-workspace.yaml
: Added thetest
directory to the workspace packages.test/.gitignore
: Added new entries to ignore thebin/
,examples/converted/
, and.env
files.