scaffolder-backend: export all preparers and publishers properly
This commit is contained in:
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user