Skip to content

Commit 44601d4

Browse files
committed
fix: don't ignore yarn.lock in generated files
Addresses #109 (comment).
1 parent d8c1dbd commit 44601d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ async function main(): Promise<void> {
164164
)
165165

166166
console.log('📄 Adding .gitignore')
167-
await writeFile('.gitignore', ['dist/', 'node_modules/', '.cache/', 'yarn.lock', ''].join('\n'))
167+
await writeFile('.gitignore', ['dist/', 'node_modules/', '.cache/', ''].join('\n'))
168168

169169
if (await exists('package.json')) {
170170
console.log('📄 package.json already exists, skipping creation')

0 commit comments

Comments
 (0)