@buoy-design/core 0.3.19 → 0.3.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/models/drift.d.ts +1 -1
- package/dist/models/drift.js +1 -1
- package/package.json +1 -1
package/dist/models/drift.d.ts
CHANGED
|
@@ -695,7 +695,7 @@ export declare function createDriftId(type: DriftType, sourceId: string, targetI
|
|
|
695
695
|
/**
|
|
696
696
|
* Create a content-based drift ID that's stable across refactors.
|
|
697
697
|
* Uses the drift content (type, entity name, values) rather than file paths.
|
|
698
|
-
* This means renaming a file won't break the
|
|
698
|
+
* This means renaming a file won't break the ignore list.
|
|
699
699
|
*/
|
|
700
700
|
export declare function createStableDriftId(type: DriftType, entityName: string, details?: {
|
|
701
701
|
expected?: unknown;
|
package/dist/models/drift.js
CHANGED
|
@@ -119,7 +119,7 @@ export function createDriftId(type, sourceId, targetId) {
|
|
|
119
119
|
/**
|
|
120
120
|
* Create a content-based drift ID that's stable across refactors.
|
|
121
121
|
* Uses the drift content (type, entity name, values) rather than file paths.
|
|
122
|
-
* This means renaming a file won't break the
|
|
122
|
+
* This means renaming a file won't break the ignore list.
|
|
123
123
|
*/
|
|
124
124
|
export function createStableDriftId(type, entityName, details) {
|
|
125
125
|
// Build a content fingerprint that doesn't depend on file paths
|