Skip to content

(SP: 1) [PLATFORM] update CODEOWNERS, add missing packages, and adjus…#420

Merged
LesiaUKR merged 2 commits intodevelopfrom
lso/feat/shop-legal
Mar 27, 2026
Merged

(SP: 1) [PLATFORM] update CODEOWNERS, add missing packages, and adjus…#420
LesiaUKR merged 2 commits intodevelopfrom
lso/feat/shop-legal

Conversation

@liudmylasovetovs
Copy link
Copy Markdown
Collaborator

@liudmylasovetovs liudmylasovetovs commented Mar 27, 2026

Description

This PR fixes a production build blocker and updates related platform metadata/content.

It adds the missing TipTap dependencies required by the admin blog editor so next build no longer fails, updates CODEOWNERS, and refreshes the About section social-proof metric for LinkedIn.


Related Issue

Issue: #<issue_number>


Changes

  • Added missing TipTap packages required by components/admin/blog/BlogTiptapEditor.tsx
  • Updated package.json and package-lock.json to reflect the new dependencies
  • Updated CODEOWNERS
  • Refreshed the LinkedIn followers metric in frontend/components/about/HeroSection.tsx

Database Changes (if applicable)

  • Schema migration required
  • Seed data updated
  • Breaking changes to existing queries
  • Transaction-safe migration
  • Migration tested locally on Neon

How Has This Been Tested?

  • Tested locally
  • Verified in development environment
  • Checked responsive layout (if UI-related)
  • Tested accessibility (keyboard / screen reader)

Additional notes:

  • Confirmed the missing-module build error for TipTap extensions was resolved after installing the packages
  • Verified the About section still renders correctly after the LinkedIn metric update

Screenshots (if applicable)


Checklist

Before submitting

  • Code has been self-reviewed
  • No TypeScript or console errors
  • Code follows project conventions
  • Scope is limited to this feature/fix
  • No unrelated refactors included
  • English used in code, commits, and docs
  • New dependencies discussed with team
  • Database migration tested locally (if applicable)
  • GitHub Projects card moved to In Review

Reviewers

Summary by CodeRabbit

  • Chores
    • Updated TipTap editor dependencies to latest compatible 3.21.x versions.
    • Adjusted default displayed LinkedIn follower count from 1800 to 1900.
    • Updated repository code ownership file to add an additional owner entry.

@vercel
Copy link
Copy Markdown
Contributor

vercel bot commented Mar 27, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
Project Deployment Actions Updated (UTC)
devlovers-net Ignored Ignored Preview Mar 30, 2026 11:10pm

Request Review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Mar 27, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 6cdf5432-6e0e-49d4-be0c-1bb9b2e112e0

📥 Commits

Reviewing files that changed from the base of the PR and between c1bad03 and eed8dae.

⛔ Files ignored due to path filters (1)
  • frontend/package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (1)
  • frontend/package.json
✅ Files skipped from review due to trivial changes (1)
  • frontend/package.json

📝 Walkthrough

Walkthrough

Three minor updates: added a new code owner, adjusted the default LinkedIn follower count, and bumped several TipTap-related frontend dependencies to 3.21.0.

Changes

Cohort / File(s) Summary
Code Ownership
.github/CODEOWNERS
Added liudmylasovetovs to the existing wildcard ownership line (additional owner only).
Frontend Constants
frontend/lib/about/stats.ts
Changed default linkedinCount fallback from 1800 to 1900 when process.env.LINKEDIN_FOLLOWER_COUNT is missing/falsy.
Dependencies
frontend/package.json
Bumped TipTap packages to ^3.21.0 (@tiptap/core, @tiptap/react, @tiptap/starter-kit, @tiptap/extension-image, @tiptap/extension-code-block-lowlight, @tiptap/extension-task-item, @tiptap/extension-task-list).

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

Suggested reviewers

  • AM1007
  • ViktorSvertoka

Poem

🐰 A twitch of a whisker, a tiny new name,
Counts nudged to nineteen hundred, dependencies tame,
Owners updated, packages climb,
A hop, a small change, and all is in time 🥕✨

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Title check ❓ Inconclusive The title is truncated and vague, using 'adjus…' without clarifying what was adjusted, making it unclear whether it refers to the LinkedIn count, TipTap versions, or other changes. Expand the title to be complete and specific, such as 'Update CODEOWNERS, upgrade TipTap dependencies, and refresh LinkedIn follower count' to clearly convey all main changes.
✅ Passed checks (2 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch lso/feat/shop-legal

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
frontend/package.json (1)

40-43: Consider aligning all @tiptap/* package versions to a consistent minor release.

The current mix of ^3.20.x and ^3.21.x ranges is being resolved by npm (e.g., @tiptap/core resolves to 3.21.0 despite ^3.20.0 in package.json), but standardizing to a single minor version across all @tiptap packages would avoid subtle version skew and simplify dependency maintenance. Consider updating the ^3.20.x packages (core, extension-code-block-lowlight, react, starter-kit) to ^3.21.0 for consistency, or audit whether all packages actually require 3.21.x before aligning.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@frontend/package.json` around lines 40 - 43, The `@tiptap` packages in
package.json are on mixed minor versions causing potential skew; update the
entries for `@tiptap/core`, `@tiptap/extension-code-block-lowlight`, `@tiptap/react`,
and `@tiptap/starter-kit` (the ones currently at ^3.20.x) to match ^3.21.0 (the
same minor as `@tiptap/extension-image`, `@tiptap/extension-task-item`,
`@tiptap/extension-task-list` and any other `@tiptap/`* deps), then run npm install
and verify the app builds and tests pass; alternatively, if some packages
require 3.20.x, perform a quick compatibility check and align all `@tiptap/`*
entries to the same minor version accordingly.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@frontend/package.json`:
- Around line 40-43: The `@tiptap` packages in package.json are on mixed minor
versions causing potential skew; update the entries for `@tiptap/core`,
`@tiptap/extension-code-block-lowlight`, `@tiptap/react`, and `@tiptap/starter-kit`
(the ones currently at ^3.20.x) to match ^3.21.0 (the same minor as
`@tiptap/extension-image`, `@tiptap/extension-task-item`,
`@tiptap/extension-task-list` and any other `@tiptap/`* deps), then run npm install
and verify the app builds and tests pass; alternatively, if some packages
require 3.20.x, perform a quick compatibility check and align all `@tiptap/`*
entries to the same minor version accordingly.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 9fb90661-808d-4569-8755-8c2aaea8cfee

📥 Commits

Reviewing files that changed from the base of the PR and between 9200267 and c1bad03.

⛔ Files ignored due to path filters (1)
  • frontend/package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (3)
  • .github/CODEOWNERS
  • frontend/lib/about/stats.ts
  • frontend/package.json

@LesiaUKR LesiaUKR merged commit 87694c3 into develop Mar 27, 2026
7 checks passed
@LesiaUKR LesiaUKR deleted the lso/feat/shop-legal branch March 27, 2026 20:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants