Skip to content

Commit 85ef6ec

Browse files
fix: exclude CHANGELOG.md when copying app templates (#464)
1 parent 9dca62d commit 85ef6ec

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/ten-cheetahs-sit.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@rainbow-me/create-rainbowkit': patch
3+
---
4+
5+
Exclude `CHANGELOG.md` when copying app templates

packages/create-rainbowkit/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ async function run() {
144144
)
145145
);
146146

147-
const ignore: string[] = ['node_modules', '.next'];
147+
const ignore: string[] = ['node_modules', '.next', 'CHANGELOG.md'];
148148

149149
await cpy(path.join(selectedTemplatePath, '**', '*'), targetPath, {
150150
filter: src => ignore.every(i => !src.path.includes(i)),

0 commit comments

Comments
 (0)