File tree Expand file tree Collapse file tree 1 file changed +140
-8
lines changed Expand file tree Collapse file tree 1 file changed +140
-8
lines changed Original file line number Diff line number Diff line change 1
1
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
2
3
- # ts
4
-
5
- * .tsbuildinfo
6
-
7
3
# dependencies
8
4
node_modules
9
5
.pnp
10
6
.pnp.js
7
+ . /package-lock.json
8
+ package-lock.json
11
9
12
10
# testing
13
11
coverage
14
12
15
13
# next.js
16
14
.next /
17
15
out /
18
- build
16
+
17
+ # production
18
+ /build
19
19
20
20
# misc
21
21
.DS_Store
22
22
* .pem
23
23
24
- # debug
24
+ # Logs
25
+ logs
26
+ * .log
25
27
npm-debug.log *
26
28
yarn-debug.log *
27
29
yarn-error.log *
30
+ lerna-debug.log *
28
31
.pnpm-debug.log *
29
32
30
- # local env files
33
+ # dotenv environment variable files
34
+ .env * .local
31
35
.env.local
32
36
.env.development.local
33
37
.env.test.local
34
38
.env.production.local
39
+ .env
35
40
36
41
# turbo
37
42
.turbo
38
43
39
44
.contentlayer
40
- .env
45
+
46
+ # vercel
47
+ .vercel
48
+
49
+ # typescript cache
50
+ * .tsbuildinfo
51
+
52
+ # typeScript declaration
53
+ next-env.d.ts
54
+
55
+ # Diagnostic reports (https://nodejs.org/api/report.html)
56
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
57
+
58
+ # Runtime data
59
+ pids
60
+ * .pid
61
+ * .seed
62
+ * .pid.lock
63
+
64
+ # Directory for instrumented libs generated by jscoverage/JSCover
65
+ lib-cov
66
+
67
+ # Coverage directory used by tools like istanbul
68
+ * .lcov
69
+
70
+ # nyc test coverage
71
+ .nyc_output
72
+
73
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
74
+ .grunt
75
+
76
+ # Bower dependency directory (https://bower.io/)
77
+ bower_components
78
+
79
+ # node-waf configuration
80
+ .lock-wscript
81
+
82
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
83
+ build /Release
84
+
85
+ # Dependency directories
86
+ node_modules /
87
+ jspm_packages /
88
+
89
+ # Snowpack dependency directory (https://snowpack.dev/)
90
+ web_modules /
91
+
92
+ # Optional npm cache directory
93
+ .npm
94
+
95
+ # Optional eslint cache
96
+ .eslintcache
97
+
98
+ # Optional stylelint cache
99
+ .stylelintcache
100
+
101
+ # Microbundle cache
102
+ .rpt2_cache /
103
+ .rts2_cache_cjs /
104
+ .rts2_cache_es /
105
+ .rts2_cache_umd /
106
+
107
+ # Optional REPL history
108
+ .node_repl_history
109
+
110
+ # Output of 'npm pack'
111
+ * .tgz
112
+
113
+ # Yarn Integrity file
114
+ .yarn-integrity
115
+
116
+ # parcel-bundler cache (https://parceljs.org/)
117
+ .cache
118
+ .parcel-cache
119
+
120
+ # Next.js build output
121
+ .next
122
+ out
123
+
124
+ # Nuxt.js build / generate output
125
+ .nuxt
126
+ dist
127
+
128
+ # Gatsby files
129
+ .cache /
130
+
131
+ # Comment in the public line in if your project uses Gatsby and not Next.js
132
+ # https://nextjs.org/blog/next-9-1#public-directory-support
133
+ # public
134
+ # vuepress build output
135
+ .vuepress /dist
136
+
137
+ # vuepress v2.x temp and cache directory
138
+ .temp
139
+ .cache
140
+
141
+ # Docusaurus cache and generated files
142
+ .docusaurus
143
+
144
+ # Serverless directories
145
+ .serverless /
146
+
147
+ # FuseBox cache
148
+ .fusebox /
149
+
150
+ # DynamoDB Local files
151
+ .dynamodb /
152
+
153
+ # TernJS port file
154
+ .tern-port
155
+
156
+ # Stores VSCode versions used for testing VSCode extensions
157
+ .vscode-test
158
+ .vscode
159
+
160
+ # yarn v2
161
+ .yarn /cache
162
+ .yarn /unplugged
163
+ .yarn /build-state.yml
164
+ .yarn /install-state.gz
165
+ .pnp. *
166
+
167
+ # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
168
+ # dependencies
169
+ /pnp.js
170
+
171
+ # Runtime data
172
+ * .pid.lock
You can’t perform that action at this time.
0 commit comments