Skip to content

Commit

Permalink
fix: add 'config.d.ts' to files
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Aronsson committed Jan 14, 2025
1 parent 63bad8e commit 1f7f4fa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
5 changes: 5 additions & 0 deletions .changeset/nine-tips-carry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@axis-backstage/plugin-jira-dashboard': patch
---

Add the "config.d.ts" file to the "files" in package.json.
22 changes: 7 additions & 15 deletions plugins/jira-dashboard/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,11 @@ export interface Config {
/**
* Configuration options for the Jira Dashboard plugin
*/
jiraDashboard:
| {
/**
* Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com
* @visibility frontend
*/
annotationPrefix?: string;
}
| {
/**
* Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com
* @visibility frontend
*/
annotationPrefix?: string;
};
jiraDashboard: {
/**
* Optional annotation prefix for retrieving a custom annotation. Defaut value is jira.com
* @visibility frontend
*/
annotationPrefix?: string;
};
}
3 changes: 2 additions & 1 deletion plugins/jira-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
"msw": "^1.0.0"
},
"files": [
"dist"
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts"
}

0 comments on commit 1f7f4fa

Please sign in to comment.