chore: remove useless templates (#330)

This commit is contained in:
tecvan
2025-07-30 17:51:07 +08:00
committed by GitHub
parent ce521dae8a
commit cacdba67cd
54 changed files with 59 additions and 1208 deletions

View File

@@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import type {
IPlugin,
IHooks,
@@ -56,7 +56,7 @@ export default class SelectTeamPlugin implements IPlugin {
projectFolderPrompt.default = (answers) => {
// 文件夹名去除scope如 @coze-arch/foo -> foo
const folderDir = answers.packageName.split('/').slice(-1)[0];
return `packages/${answers.team}/${folderDir}`
return `frontend/packages/${answers.team}/${folderDir}`;
}
});
}