Skip to content

Commit

Permalink
Merge pull request #2476 from kishorliv/update-gitignore
Browse files Browse the repository at this point in the history
Update gitignore to include more common files or folders
  • Loading branch information
kamilmysliwiec committed Feb 5, 2024
2 parents da825e6 + 086aef8 commit 73ad8a2
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion lib/configuration/defaults.ts
Expand Up @@ -30,6 +30,7 @@ export const defaultOutDir = 'dist';
export const defaultGitIgnore = `# compiled output
/dist
/node_modules
/build
# Logs
logs
Expand Down Expand Up @@ -61,4 +62,25 @@ lerna-debug.log*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json`;
!.vscode/extensions.json
# dotenv environment variable files
.env
.env.development.local
.env.test.local
.env.production.local
.env.local
# temp directory
.temp
.tmp
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
`;

0 comments on commit 73ad8a2

Please sign in to comment.