diff --git a/templates/components/ui/shadcn/README.md b/templates/components/ui/shadcn/README-template.md similarity index 100% rename from templates/components/ui/shadcn/README.md rename to templates/components/ui/shadcn/README-template.md diff --git a/templates/index.ts b/templates/index.ts index c7e0db4970c3a897f596f1a481202dbcd3f88997..732bedf3be75422d5f62be7cb37fe30c715325fa 100644 --- a/templates/index.ts +++ b/templates/index.ts @@ -57,25 +57,27 @@ const installTSTemplate = async ({ const copySource = ["**"]; if (!eslint) copySource.push("!eslintrc.json"); + const rename = (name: string) => { + switch (name) { + case "gitignore": + case "eslintrc.json": { + return `.${name}`; + } + // README.md is ignored by webpack-asset-relocator-loader used by ncc: + // https://github.com/vercel/webpack-asset-relocator-loader/blob/e9308683d47ff507253e37c9bcbb99474603192b/src/asset-relocator.js#L227 + case "README-template.md": { + return "README.md"; + } + default: { + return name; + } + } + }; + await copy(copySource, root, { parents: true, cwd: templatePath, - rename(name) { - switch (name) { - case "gitignore": - case "eslintrc.json": { - return `.${name}`; - } - // README.md is ignored by webpack-asset-relocator-loader used by ncc: - // https://github.com/vercel/webpack-asset-relocator-loader/blob/e9308683d47ff507253e37c9bcbb99474603192b/src/asset-relocator.js#L227 - case "README-template.md": { - return "README.md"; - } - default: { - return name; - } - } - }, + rename, }); /** @@ -109,6 +111,7 @@ const installTSTemplate = async ({ await copy("**", destUiPath, { parents: true, cwd: uiPath, + rename, }); }