|
3 | 3 | /.nyc_output |
4 | 4 | /dist |
5 | 5 | /lib |
6 | | -/package-lock.json |
7 | 6 | /tmp |
8 | 7 | node_modules |
9 | 8 | oclif.manifest.json |
10 | 9 |
|
11 | 10 | .env |
| 11 | + |
| 12 | +# Logs |
| 13 | +logs |
| 14 | +*.log |
| 15 | +npm-debug.log* |
| 16 | +yarn-debug.log* |
| 17 | +yarn-error.log* |
| 18 | +lerna-debug.log* |
| 19 | + |
| 20 | +# Diagnostic reports (https://nodejs.org/api/report.html) |
| 21 | +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json |
| 22 | + |
| 23 | +# Runtime data |
| 24 | +pids |
| 25 | +*.pid |
| 26 | +*.seed |
| 27 | +*.pid.lock |
| 28 | + |
| 29 | +# Directory for instrumented libs generated by jscoverage/JSCover |
| 30 | +lib-cov |
| 31 | + |
| 32 | +# Coverage directory used by tools like istanbul |
| 33 | +coverage |
| 34 | +*.lcov |
| 35 | + |
| 36 | +# nyc test coverage |
| 37 | +.nyc_output |
| 38 | + |
| 39 | +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) |
| 40 | +.grunt |
| 41 | + |
| 42 | +# Bower dependency directory (https://bower.io/) |
| 43 | +bower_components |
| 44 | + |
| 45 | +# node-waf configuration |
| 46 | +.lock-wscript |
| 47 | + |
| 48 | +# Compiled binary addons (https://nodejs.org/api/addons.html) |
| 49 | +build/Release |
| 50 | + |
| 51 | +# Dependency directories |
| 52 | +node_modules/ |
| 53 | +jspm_packages/ |
| 54 | + |
| 55 | +# Snowpack dependency directory (https://snowpack.dev/) |
| 56 | +web_modules/ |
| 57 | + |
| 58 | +# TypeScript cache |
| 59 | +*.tsbuildinfo |
| 60 | + |
| 61 | +# Optional npm cache directory |
| 62 | +.npm |
| 63 | + |
| 64 | +# Optional eslint cache |
| 65 | +.eslintcache |
| 66 | + |
| 67 | +# Optional stylelint cache |
| 68 | +.stylelintcache |
| 69 | + |
| 70 | +# Optional REPL history |
| 71 | +.node_repl_history |
| 72 | + |
| 73 | +# Output of 'npm pack' |
| 74 | +*.tgz |
| 75 | + |
| 76 | +# Yarn Integrity file |
| 77 | +.yarn-integrity |
| 78 | + |
| 79 | +# dotenv environment variable files |
| 80 | +.env |
| 81 | +.env.* |
| 82 | +!.env.example |
| 83 | + |
| 84 | +# parcel-bundler cache (https://parceljs.org/) |
| 85 | +.cache |
| 86 | +.parcel-cache |
| 87 | + |
| 88 | +# Next.js build output |
| 89 | +.next |
| 90 | +out |
| 91 | + |
| 92 | +# Nuxt.js build / generate output |
| 93 | +.nuxt |
| 94 | +dist |
| 95 | +.output |
| 96 | + |
| 97 | +# Gatsby files |
| 98 | +.cache/ |
| 99 | +# Comment in the public line in if your project uses Gatsby and not Next.js |
| 100 | +# https://nextjs.org/blog/next-9-1#public-directory-support |
| 101 | +# public |
| 102 | + |
| 103 | +# vuepress build output |
| 104 | +.vuepress/dist |
| 105 | + |
| 106 | +# vuepress v2.x temp and cache directory |
| 107 | +.temp |
| 108 | +.cache |
| 109 | + |
| 110 | +# Sveltekit cache directory |
| 111 | +.svelte-kit/ |
| 112 | + |
| 113 | +# vitepress build output |
| 114 | +**/.vitepress/dist |
| 115 | + |
| 116 | +# vitepress cache directory |
| 117 | +**/.vitepress/cache |
| 118 | + |
| 119 | +# Docusaurus cache and generated files |
| 120 | +.docusaurus |
| 121 | + |
| 122 | +# Serverless directories |
| 123 | +.serverless/ |
| 124 | + |
| 125 | +# FuseBox cache |
| 126 | +.fusebox/ |
| 127 | + |
| 128 | +# DynamoDB Local files |
| 129 | +.dynamodb/ |
| 130 | + |
| 131 | +# Firebase cache directory |
| 132 | +.firebase/ |
| 133 | + |
| 134 | +# TernJS port file |
| 135 | +.tern-port |
| 136 | + |
| 137 | +# Stores VSCode versions used for testing VSCode extensions |
| 138 | +.vscode-test |
| 139 | + |
| 140 | +# yarn v3 |
| 141 | +.pnp.* |
| 142 | +.yarn/* |
| 143 | +!.yarn/patches |
| 144 | +!.yarn/plugins |
| 145 | +!.yarn/releases |
| 146 | +!.yarn/sdks |
| 147 | +!.yarn/versions |
| 148 | + |
| 149 | +# Vite files |
| 150 | +vite.config.js.timestamp-* |
| 151 | +vite.config.ts.timestamp-* |
| 152 | +.vite/ |
0 commit comments