Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 68cf6b8

Browse files
sikelioJulien-R44
authored andcommitted
Added files to ignore
Based from the .gitignore collection of GitHub : https://github.com/github/gitignore/blob/main/Node.gitignore
1 parent 2667122 commit 68cf6b8

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tasks/Scaffold/createGitIgnore.ts

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,19 @@ const task: TaskFn = (_, logger, { absPath }) => {
2323
gitignore.add('.DS_STORE')
2424
gitignore.add('.env')
2525
gitignore.add('tmp')
26+
gitignore.add('npm-debug.log*')
27+
gitignore.add('yarn-debug.log*')
28+
gitignore.add('yarn-error.log*')
29+
gitignore.add('lerna-debug.log*')
30+
gitignore.add('.pnpm-debug.log*')
31+
gitignore.add('logs')
32+
gitignore.add('*.log')
33+
gitignore.add('.yarn/cache')
34+
gitignore.add('.yarn/unplugged')
35+
gitignore.add('.yarn/build-state.yml')
36+
gitignore.add('.yarn/install-state.gz')
37+
gitignore.add('.pnp.*')
38+
gitignore.add('.yarn-integrity')
2639

2740
gitignore.commit()
2841
logger.action('create').succeeded('.gitignore')

0 commit comments

Comments
 (0)