diff options
| author | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-09-03 00:08:53 +0300 |
|---|---|---|
| committer | Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> | 2024-09-03 00:08:53 +0300 |
| commit | a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98 (patch) | |
| tree | edf8630e9d6426124dd49854af0cb703ebc5b710 /frontend/.gitignore | |
| parent | fix: revert to static homepage (#195) (diff) | |
| download | lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.tar.gz lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.tar.bz2 lphub-a65d6d9127c3fa7f6a8ecaec5d1ffd1f47c2bc98.zip | |
refactor: port to typescript
Diffstat (limited to 'frontend/.gitignore')
| -rw-r--r-- | frontend/.gitignore | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/frontend/.gitignore b/frontend/.gitignore index 5d7b14b..4d29575 100644 --- a/frontend/.gitignore +++ b/frontend/.gitignore | |||
| @@ -1,25 +1,23 @@ | |||
| 1 | # Logs | 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. |
| 2 | logs | 2 | |
| 3 | *.log | 3 | # dependencies |
| 4 | npm-debug.log* | 4 | /node_modules |
| 5 | yarn-debug.log* | 5 | /.pnp |
| 6 | yarn-error.log* | 6 | .pnp.js |
| 7 | pnpm-debug.log* | 7 | |
| 8 | lerna-debug.log* | 8 | # testing |
| 9 | /coverage | ||
| 9 | 10 | ||
| 10 | node_modules | 11 | # production |
| 11 | dist | 12 | /build |
| 12 | dist-ssr | ||
| 13 | *.local | ||
| 14 | build | ||
| 15 | 13 | ||
| 16 | # Editor directories and files | 14 | # misc |
| 17 | .vscode/* | ||
| 18 | !.vscode/extensions.json | ||
| 19 | .idea | ||
| 20 | .DS_Store | 15 | .DS_Store |
| 21 | *.suo | 16 | .env.local |
| 22 | *.ntvs* | 17 | .env.development.local |
| 23 | *.njsproj | 18 | .env.test.local |
| 24 | *.sln | 19 | .env.production.local |
| 25 | *.sw? | 20 | |
| 21 | npm-debug.log* | ||
| 22 | yarn-debug.log* | ||
| 23 | yarn-error.log* | ||