forked from jackyzha0/quartz
-
Notifications
You must be signed in to change notification settings - Fork 0
merge: sync with upstream jackyzha0/quartz v5 (23 commits) #18
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
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
5b34917
feat: support npm scoped package specifiers for plugins
saberzero1 69571de
chore: remove dev-mode local config (should not be committed)
saberzero1 de21613
style: format loader files
saberzero1 af583c1
chore: remove dev-mode config
saberzero1 f45b9d4
chore: gitignore quartz.config.yaml (user-generated)
saberzero1 ab8e773
revert: do not gitignore quartz.config.yaml (user config file)
saberzero1 97eea3e
feat: migrate default config and templates to npm specifiers
saberzero1 57094a8
fix: make quartz.lock.json optional in Dockerfile
saberzero1 fe1f1d3
fix: add npm plugin dependencies and fix fonts package name
saberzero1 7ed01dd
fix: add legacy-peer-deps for plugin peer dependency conflicts
saberzero1 eefff26
chore: retrigger deploy after lockfile fix
saberzero1 6fdeaef
fix: use npm install instead of npm ci in deploy
saberzero1 b6939da
fix: use npm install in all CI workflows for lockfile compatibility
saberzero1 a71cbfb
fix: use npm install in Dockerfile and copy .npmrc for peer dep config
saberzero1 4b7ecb9
revert: restore github: specifiers in default config and templates
saberzero1 11b9960
feat: migrate to npm specifiers with type-safe plugin index
saberzero1 e8ccb79
chore: updated package-lock.json
saberzero1 4978591
chore: pin plugin dependencies to semver ranges
saberzero1 ebdbb3d
chore: keep legacy-peer-deps (required for 44 plugins with varying pe…
saberzero1 966307e
style: format docs/hosting.md and loader/index.ts
saberzero1 3d99dca
style: fix whitespace in docs/hosting.md
saberzero1 555b2ba
docs: add npm plugin specifier migration guide
saberzero1 581f670
fix: decouple Head.tsx from og-image plugin import (#2495)
saberzero1 e055ead
merge: sync with upstream jackyzha0/quartz v5 (23 commits)
Faustze a0851cb
fix: avoid shell interpolation in npm install call
Faustze File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| engine-strict=true | ||
| legacy-peer-deps=true |
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
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
Oops, something went wrong.
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.
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.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
Remove the deleted lockfile from the Docker copy step.
quartz.lock.jsonis removed in this PR, soCOPY quartz.lock.json* .has no source match and the image build fails beforenpm install. Remove this instruction.🤖 Prompt for AI Agents