mirror of
https://github.com/teableio/teable
synced 2024-11-22 15:31:39 +00:00
98143c0c4b
* refactor: event manager * chore(deps): upgrading several dependencies * fix: unit test * fix: import path * revert: shareDbService `onSubmit` --------- Co-authored-by: pengap <penganpingprivte@gmail.com>
52 lines
513 B
Plaintext
52 lines
513 B
Plaintext
# All node_modules directories
|
|
node_modules
|
|
**/dist
|
|
**/.next
|
|
|
|
# All secrets
|
|
**/.env.local
|
|
**/.env.*.local
|
|
|
|
# By default all git files
|
|
.git
|
|
**/.gitignore
|
|
.gitattributes
|
|
.github
|
|
|
|
# Tools caches
|
|
.cache
|
|
**/*.tsbuildinfo
|
|
**/.eslintcache
|
|
|
|
# eslint
|
|
**/.eslintrc.cjs
|
|
**/lint-staged.config.js
|
|
|
|
# npm
|
|
!.npmrc
|
|
|
|
# Docker related
|
|
.dockerignore
|
|
dockers
|
|
*Dockerfile*
|
|
*docker-compose*
|
|
|
|
# Log files
|
|
logs
|
|
**/*.log
|
|
|
|
# Temp files
|
|
tmp
|
|
*.tmp
|
|
|
|
# IDE related
|
|
.idea
|
|
.vscode
|
|
|
|
# other
|
|
**/db
|
|
**/.assets
|
|
**/.temporary
|
|
**.DS_Store
|
|
docs
|
|
**/*.md |