mirror of
https://github.com/teableio/teable
synced 2024-11-22 15:31:39 +00:00
79658b58d5
* feat: yarn move pnpm * fix: docker build * fix: pnpm docker build * feat: upgrade eslint related * chore: upgrade depend * fix: pnpm-install action * feat: make integration test * feat: jest config * revert: tsconfig.jest.json * fix: eslintrc and typecheck --------- Co-authored-by: pengap <penganpingprivte@gmail.com>
53 lines
584 B
Plaintext
53 lines
584 B
Plaintext
# All node_modules directories
|
|
node_modules
|
|
**/node_modules
|
|
**/dist
|
|
**/.next
|
|
|
|
# All secrets
|
|
**/.env.local
|
|
**/.env.*.local
|
|
|
|
# By default all git files
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.github
|
|
|
|
# Tools caches
|
|
.cache/*
|
|
**.tsbuildinfo
|
|
**/.eslintcache
|
|
|
|
# Used when building with nextjs (next-eslint)
|
|
!.eslintrc.base.json
|
|
!.prettierignore
|
|
!.prettierrc.js
|
|
!.eslintignore
|
|
|
|
# npm
|
|
!.npmrc
|
|
|
|
# Docker related
|
|
.dockerignore
|
|
Dockerfile
|
|
docker-compose.yml
|
|
docker-compose.*.yml
|
|
dockers/**
|
|
|
|
# Log files
|
|
logs
|
|
*.log
|
|
|
|
# Temp files
|
|
tmp
|
|
*.tmp
|
|
|
|
# IDE related
|
|
.idea
|
|
.vscode
|
|
|
|
# other
|
|
**/.assets
|
|
**.DS_Store
|
|
*.md |