New website building strategy #1575
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 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
.tgz
package files, updates to dependencies inpnpm-lock.yaml
, and modifications to the.vscode/settings.json
file for formatting preferences.Build Process Enhancements:
package:tgz
inpackage.json
to generate.tgz
package files using a newly createddeploy/tgz.ts
script. This script automates the build and packaging process. (package.json
- [1]deploy/tgz.ts
- [2].github/workflows/website.yml
to include thepnpm run package:tgz
step, ensuring.tgz
files are generated during the CI process. (.github/workflows/website.yml
- .github/workflows/website.ymlL22-R28)Dependency Updates:
pnpm-lock.yaml
, including@typescript-eslint
packages,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.json
to enableeditor.formatOnSave
only for specific file types (e.g., JavaScript, TypeScript, JSON) and set Prettier as the default formatter. (.vscode/settings.json
- .vscode/settings.jsonL3-R4)