Skip to content

Commit

Permalink
Merge branch 'develop' into markdown-sobjects
Browse files Browse the repository at this point in the history
# Conflicts:
#	src/core/changelog/generate-change-log.ts
  • Loading branch information
cesarParra committed Oct 17, 2024
2 parents d0ff5f8 + 0a00470 commit 0fca2eb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/core/shared/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ export function skip(): Skip {
};
}

/**
* Represents a file to be skipped.
*/
export function skip(): Skip {

Check failure on line 18 in src/core/shared/utils.ts

View workflow job for this annotation

GitHub Actions / build

Cannot redeclare exported variable 'skip'.

Check failure on line 18 in src/core/shared/utils.ts

View workflow job for this annotation

GitHub Actions / build

Duplicate function implementation.
return {
_tag: 'Skip',
};
}

export function isSkip(value: unknown): value is Skip {
return Object.prototype.hasOwnProperty.call(value, '_tag') && (value as Skip)._tag === 'Skip';
}
Expand Down

0 comments on commit 0fca2eb

Please sign in to comment.