cli/new: index files for subdirs

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2025-02-07 16:16:16 +01:00
parent 80ec7909e4
commit bc3bf545de
3 changed files with 44 additions and 5 deletions
+7 -5
View File
@@ -14,11 +14,13 @@
* limitations under the License.
*/
import { collectPortableTemplateParams } from './preparation/collectPortableTemplateParams';
import { loadPortableTemplateConfig } from './preparation/loadPortableTemplateConfig';
import { executePortableTemplate } from './execution/executePortableTemplate';
import { selectTemplateInteractively } from './preparation/selectTemplateInteractively';
import { loadPortableTemplate } from './preparation/loadPortableTemplate';
import {
collectPortableTemplateParams,
loadPortableTemplate,
loadPortableTemplateConfig,
selectTemplateInteractively,
} from './preparation';
import { executePortableTemplate } from './execution';
export type CreateNewPackageOptions = {
preselectedTemplateId?: string;
@@ -0,0 +1,17 @@
/*
* Copyright 2025 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export { executePortableTemplate } from './executePortableTemplate';
@@ -0,0 +1,20 @@
/*
* Copyright 2025 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export { collectPortableTemplateParams } from './collectPortableTemplateParams';
export { loadPortableTemplateConfig } from './loadPortableTemplateConfig';
export { selectTemplateInteractively } from './selectTemplateInteractively';
export { loadPortableTemplate } from './loadPortableTemplate';