diff options
author | Brian Douglas <bdougie@users.noreply.github.com> | 2021-12-04 16:03:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-04 16:03:19 -0800 |
commit | 687e822167ea48b6f4b64d8781ca97de569acd43 (patch) | |
tree | 77a71e6a42ad8dc4486e0cb7c4c8fcb38a68bfc5 /Node.gitignore | |
parent | ea2c3d43c9e4a182b072f988430ae398019f1cf6 (diff) | |
parent | 0f33384147baf6e01b08bff41d32023297186ff3 (diff) | |
download | gitignore-687e822167ea48b6f4b64d8781ca97de569acd43.tar.gz gitignore-687e822167ea48b6f4b64d8781ca97de569acd43.zip |
Merge branch 'main' into patch-1
Diffstat (limited to 'Node.gitignore')
-rw-r--r-- | Node.gitignore | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/Node.gitignore b/Node.gitignore index 76d22146..96fd2254 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -5,6 +5,7 @@ npm-debug.log* yarn-debug.log* yarn-error.log* lerna-debug.log* +.pnpm-debug.log* # Diagnostic reports (https://nodejs.org/api/report.html) report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json @@ -44,9 +45,6 @@ jspm_packages/ # Snowpack dependency directory (https://snowpack.dev/) web_modules/ -# TypeScript v1 declaration files -typings/ - # TypeScript cache *.tsbuildinfo @@ -56,6 +54,9 @@ typings/ # Optional eslint cache .eslintcache +# Optional stylelint cache +.stylelintcache + # Microbundle cache .rpt2_cache/ .rts2_cache_cjs/ @@ -79,9 +80,11 @@ typings/ # parcel-bundler cache (https://parceljs.org/) .cache +.parcel-cache # Next.js build output .next +out # Nuxt.js build / generate output .nuxt @@ -96,6 +99,10 @@ dist # vuepress build output .vuepress/dist +# vuepress v2.x temp and cache directory +.temp +.cache + # Serverless directories .serverless/ @@ -110,3 +117,10 @@ dist # Stores VSCode versions used for testing VSCode extensions .vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* |