scaffolder-backend: export all preparers and publishers properly

This commit is contained in:
Fredrik Adelöw
2021-01-11 07:51:01 +01:00
parent ded5005799
commit 711ba55a24
3 changed files with 25 additions and 11 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Export all preparers and publishers properly
@@ -13,9 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './preparers';
export * from './types';
export * from './file';
export * from './github';
export * from './gitlab';
export * from './azure';
export { AzurePreparer } from './azure';
export { BitbucketPreparer } from './bitbucket';
export { FilePreparer } from './file';
export { GithubPreparer } from './github';
export { GitlabPreparer } from './gitlab';
export { Preparers } from './preparers';
export type { PreparerBase, PreparerBuilder, PreparerOptions } from './types';
@@ -13,8 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './publishers';
export * from './github';
export * from './gitlab';
export * from './azure';
export * from './types';
export { AzurePublisher } from './azure';
export { BitbucketPublisher } from './bitbucket';
export { GithubPublisher } from './github';
export type { RepoVisibilityOptions } from './github';
export { GitlabPublisher } from './gitlab';
export { Publishers } from './publishers';
export type {
PublisherBase,
PublisherBuilder,
PublisherOptions,
PublisherResult,
} from './types';