Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
d23a27eb66 | |||
96ed35e953 |
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-12-13 - 1.3.0 - feat(core)
|
||||||
|
Export CommitResult interface for external use.
|
||||||
|
|
||||||
|
- Changed CommitResult from a local interface to an exported interface, allowing for external usage and integration.
|
||||||
|
|
||||||
## 2024-12-13 - 1.2.1 - fix(core)
|
## 2024-12-13 - 1.2.1 - fix(core)
|
||||||
No changes detected
|
No changes detected
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@foss.global/codefeed",
|
"name": "@foss.global/codefeed",
|
||||||
"version": "1.2.1",
|
"version": "1.3.0",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a module for creating feeds for code development",
|
"description": "a module for creating feeds for code development",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@foss.global/codefeed',
|
name: '@foss.global/codefeed',
|
||||||
version: '1.2.1',
|
version: '1.3.0',
|
||||||
description: 'a module for creating feeds for code development'
|
description: 'a module for creating feeds for code development'
|
||||||
}
|
}
|
||||||
|
@ -33,7 +33,7 @@ interface RepoSearchResponse {
|
|||||||
data: Repository[];
|
data: Repository[];
|
||||||
}
|
}
|
||||||
|
|
||||||
interface CommitResult {
|
export interface CommitResult {
|
||||||
baseUrl: string;
|
baseUrl: string;
|
||||||
org: string;
|
org: string;
|
||||||
repo: string;
|
repo: string;
|
||||||
|
Reference in New Issue
Block a user