File tree 8 files changed +1812
-0
lines changed 8 files changed +1812
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Task Cache .gitignore
2
+
3
+ # Dependencies
4
+ node_modules /
5
+ npm-debug.log *
6
+ yarn-debug.log *
7
+ yarn-error.log *
8
+ lerna-debug.log *
9
+
10
+ # Runtime data
11
+ pids
12
+ * .pid
13
+ * .seed
14
+ * .pid.lock
15
+
16
+ # Coverage directory used by tools like istanbul
17
+ coverage /
18
+ * .lcov
19
+
20
+ # nyc test coverage
21
+ .nyc_output
22
+
23
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
24
+ .grunt
25
+
26
+ # Bower dependency directory (https://bower.io/)
27
+ bower_components
28
+
29
+ # node-waf configuration
30
+ .lock-wscript
31
+
32
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
33
+ build /Release
34
+
35
+ # Dependency directories
36
+ jspm_packages /
37
+
38
+ # TypeScript v1 declaration files
39
+ typings /
40
+
41
+ # TypeScript cache
42
+ * .tsbuildinfo
43
+
44
+ # Optional npm cache directory
45
+ .npm
46
+
47
+ # Optional eslint cache
48
+ .eslintcache
49
+
50
+ # Microbundle cache
51
+ .rpt2_cache /
52
+ .rts2_cache_cjs /
53
+ .rts2_cache_es /
54
+ .rts2_cache_umd /
55
+
56
+ # Optional REPL history
57
+ .node_repl_history
58
+
59
+ # Output of 'npm pack'
60
+ * .tgz
61
+
62
+ # Yarn Integrity file
63
+ .yarn-integrity
64
+
65
+ # dotenv environment variables file
66
+ .env
67
+ .env.test
68
+ .env.production
69
+ .env.local
70
+
71
+ # parcel-bundler cache (https://parceljs.org/)
72
+ .cache
73
+ .parcel-cache
74
+
75
+ # Next.js build output
76
+ .next
77
+
78
+ # Nuxt.js build / generate output
79
+ .nuxt
80
+ dist
81
+
82
+ # Gatsby files
83
+ .cache /
84
+ public
85
+
86
+ # Storybook build outputs
87
+ .out
88
+ .storybook-out
89
+
90
+ # Temporary folders
91
+ tmp /
92
+ temp /
93
+
94
+ # Task Cache specific files
95
+ # Don't commit test logs or personal task caches
96
+ test-logs /
97
+ * .test.md
98
+ example-logs /
99
+
100
+ # GitHub configuration files with tokens (these should never be committed)
101
+ .github-config.json
102
+ * github-config.json
103
+
104
+ # Personal task cache directories (for development/testing)
105
+ .task-cache /
106
+ task-cache-test /
107
+
108
+ # IDE and Editor files
109
+ .vscode /
110
+ .idea /
111
+ * .swp
112
+ * .swo
113
+ * ~
114
+
115
+ # OS generated files
116
+ .DS_Store
117
+ .DS_Store ?
118
+ ._ *
119
+ .Spotlight-V100
120
+ .Trashes
121
+ ehthumbs.db
122
+ Thumbs.db
123
+
124
+ # Windows
125
+ Desktop.ini
126
+ $RECYCLE.BIN /
127
+
128
+ # Linux
129
+ .directory
130
+ .fuse_hidden *
131
+ .nfs *
132
+
133
+ # Logs
134
+ logs
135
+ * .log
136
+
137
+ # Runtime directories
138
+ .tmp /
139
+ .temp /
140
+
141
+ # Package lock files (choose one based on your preference)
142
+ # Uncomment the one you DON'T want to track
143
+ # package-lock.json
144
+ # yarn.lock
145
+
146
+ # Build outputs
147
+ dist /
148
+ build /
149
+ lib /
150
+
151
+ # Documentation builds
152
+ docs /build /
153
+
154
+ # Test outputs
155
+ test-results /
156
+ coverage-reports /
157
+
158
+ # Backup files
159
+ * .bak
160
+ * .backup
161
+ * .orig
162
+
163
+ # Archive files (shouldn't be in repo generally)
164
+ * .zip
165
+ * .tar
166
+ * .tar.gz
167
+ * .rar
168
+ * .7z
169
+
170
+ # Database files (if any)
171
+ * .sqlite
172
+ * .sqlite3
173
+ * .db
174
+
175
+ # Screenshots directory (uncomment if you don't want to track screenshots)
176
+ # screenshots/
177
+
178
+ # Config files with sensitive data
179
+ config /local. *
180
+ config /production. *
181
+ secrets.json
182
+
183
+ # NPM publish files
184
+ .npmrc
185
+ .npm /
You can’t perform that action at this time.
0 commit comments