From be49c7b16c839972bd83d1e177ebbb838421cba5 Mon Sep 17 00:00:00 2001 From: Webber Takken Date: Wed, 8 Feb 2023 19:04:16 +0100 Subject: [PATCH] chore: adapt .gitignore to include most common node things --- .gitignore | 47 ++++++++++++++++++++++++++++++++--------------- 1 file changed, 32 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index 664e413..f17c3f5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,40 @@ -# npm node_modules -node_modules/ - -# dist folder -dist/ -playground/dist/ - -# Mac DS_Store files -**/.DS_Store - -# IDE +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. .idea/ .vscode/ -# dotenv locals +# Environment variables +.env + +# Dependencies +/node_modules +/.pnp +.pnp.js + +# Testing +/coverage + +# Distributable +/build +/dist/ +/playground/dist/ + +# Misc +.DS_Store + +# Env +.env .env.local -.env.*.local +.env.development.local +.env.test.local +.env.production.local + +# Node +npm-debug.log* +yarn-debug.log* +yarn-error.log* # TypeScript cache *.tsbuildinfo -# Bitburner type definitions -**/NetscriptDefinitions.d.ts \ No newline at end of file +# Netscript definitions is pulled automatically +NetScriptDefinitions.d.ts