From 71f9b03865486e473f7eb4ba14158a2b453eb3a4 Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Thu, 14 Sep 2023 10:34:58 -0400 Subject: [PATCH] Update git configuration --- .gitattributes | 2 +- .gitignore | 52 ++++++++++++++++++++++++++++++++++++++++++-------- 2 files changed, 45 insertions(+), 9 deletions(-) diff --git a/.gitattributes b/.gitattributes index 2e051e1..2e2c7b2 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1 @@ -dist/** -diff linguist-generated=true \ No newline at end of file +dist/** -diff linguist-generated=true \ No newline at end of file diff --git a/.gitignore b/.gitignore index 7e874de..47fb503 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,17 @@ -node_modules/ - -# Editors -.vscode/ -.idea/ -*.iml +# Dependency directory +node_modules +# Rest pulled from https://github.com/github/gitignore/blob/master/Node.gitignore # Logs logs *.log npm-debug.log* yarn-debug.log* yarn-error.log* +lerna-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json # Runtime data pids @@ -23,11 +24,12 @@ lib-cov # Coverage directory used by tools like istanbul coverage +*.lcov # nyc test coverage .nyc_output -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) .grunt # Bower dependency directory (https://bower.io/) @@ -39,12 +41,15 @@ bower_components # Compiled binary addons (https://nodejs.org/api/addons.html) build/Release -# Other Dependency directories +# Dependency directories jspm_packages/ # TypeScript v1 declaration files typings/ +# TypeScript cache +*.tsbuildinfo + # Optional npm cache directory .npm @@ -62,6 +67,37 @@ typings/ # dotenv environment variables file .env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache # next.js build output .next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# OS metadata +.DS_Store +Thumbs.db + +# Ignore built ts files +__tests__/runner/* + +# IDE files +.idea +.vscode +*.code-workspace