Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libs/deep/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { deepEqual } from './deepEqual.js';
import { deepExtend, type Merge } from './deepExtend.js';
import { deepExtend, type Merge, type MergeTwo } from './deepExtend.js';
import { deepFlatten } from './deepFlatten.js';

export { deepEqual, deepExtend, deepFlatten, type Merge };
export { deepEqual, deepExtend, deepFlatten, type Merge, type MergeTwo };
Copy link

Copilot AI Apr 14, 2026

Choose a reason for hiding this comment

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

This adds a new public export (MergeTwo) from the package entrypoint, which changes the package’s public API surface. Per CONTRIBUTING.md (Pull Request Process / Changeset Guidelines), this should be accompanied by a changeset (likely a minor bump if treated as a new API, or patch only if the project considers this a bug fix but still requires a changeset for any behavior/API change).

Copilot uses AI. Check for mistakes.
Loading