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