Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces improvements in the build process, dependency updates, and project configuration.
- Added a new script, deploy/tgz.ts, and an associated package.json command to generate .tgz package files.
- Updated the GitHub Actions workflow to include the package:tgz step.
- Modified VS Code settings to format specific file types with Prettier.
Reviewed Changes
Copilot reviewed 2 out of 6 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| deploy/tgz.ts | New script to build and package the project into a .tgz file. |
| .github/workflows/website.yml | Updated workflow to install dependencies and package the build. |
Files not reviewed (4)
- .vscode/settings.json: Language not supported
- package.json: Language not supported
- pnpm-lock.yaml: Language not supported
- website/package.json: Language not supported
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
|
commit: |
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 introduces several updates to the build process, dependency management, and project configuration. The most significant changes include the addition of a new script for generating
.tgzpackage files, updates to dependencies inpnpm-lock.yaml, and modifications to the.vscode/settings.jsonfile for formatting preferences.Build Process Enhancements:
package:tgzinpackage.jsonto generate.tgzpackage files using a newly createddeploy/tgz.tsscript. This script automates the build and packaging process. (package.json- [1]deploy/tgz.ts- [2].github/workflows/website.ymlto include thepnpm run package:tgzstep, ensuring.tgzfiles are generated during the CI process. (.github/workflows/website.yml- .github/workflows/website.ymlL22-R28)Dependency Updates:
pnpm-lock.yaml, including@typescript-eslintpackages,fp-ts,zod,openai, and others. These updates ensure compatibility and access to the latest features and fixes. (pnpm-lock.yaml- [1] [2] [3] [4] [5]Project Configuration:
.vscode/settings.jsonto enableeditor.formatOnSaveonly for specific file types (e.g., JavaScript, TypeScript, JSON) and set Prettier as the default formatter. (.vscode/settings.json- .vscode/settings.jsonL3-R4)