Gitignore
coderljw 2024-10-13 小于 1 分钟
# 1. .gitignore
# https://git-scm.com/docs/gitignore
.node
.idea
.cache
.vscode
.history
.DS_Store
.eslintcache
.stylelintcache
dist
build
coverage
node_modules
temp
debug
*.log*
yarn.lock
pnpm-lock.yaml
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23