Skip to content

Commit

Permalink
style: ignore yarn lock and package lock in gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
osdevisnot committed Aug 10, 2020
1 parent 14e2662 commit b07bb60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init-create.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const getDefaults = (pkg, template) =>
},
{
file: '.gitignore',
content: ['node_modules', 'dist', 'coverage', '.idea', '*.log'].join('\n'),
content: ['node_modules', 'dist', 'coverage', '.idea', '*.log', 'yarn.lock', 'package-lock.json'].join('\n'),
},
{
file: 'public/index.html',
Expand Down

0 comments on commit b07bb60

Please sign in to comment.