File tree 1 file changed +90
-0
lines changed 1 file changed +90
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Explicitly not ignoring node_modules so that they are included in package downloaded by runner
1
2
! node_modules /
2
3
__tests__ /runner /*
4
+
5
+ # Rest of the file pulled from https://github.com/github/gitignore/blob/master/Node.gitignore
6
+ # Logs
7
+ logs
8
+ * .log
9
+ npm-debug.log *
10
+ yarn-debug.log *
11
+ yarn-error.log *
12
+ lerna-debug.log *
13
+
14
+ # Diagnostic reports (https://nodejs.org/api/report.html)
15
+ report. [0-9 ]* . [0-9 ]* . [0-9 ]* . [0-9 ]* .json
16
+
17
+ # Runtime data
18
+ pids
19
+ * .pid
20
+ * .seed
21
+ * .pid.lock
22
+
23
+ # Directory for instrumented libs generated by jscoverage/JSCover
24
+ lib-cov
25
+
26
+ # Coverage directory used by tools like istanbul
27
+ coverage
28
+ * .lcov
29
+
30
+ # nyc test coverage
31
+ .nyc_output
32
+
33
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34
+ .grunt
35
+
36
+ # Bower dependency directory (https://bower.io/)
37
+ bower_components
38
+
39
+ # node-waf configuration
40
+ .lock-wscript
41
+
42
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
43
+ build /Release
44
+
45
+ # Dependency directories
46
+ jspm_packages /
47
+
48
+ # TypeScript v1 declaration files
49
+ typings /
50
+
51
+ # TypeScript cache
52
+ * .tsbuildinfo
53
+
54
+ # Optional npm cache directory
55
+ .npm
56
+
57
+ # Optional eslint cache
58
+ .eslintcache
59
+
60
+ # Optional REPL history
61
+ .node_repl_history
62
+
63
+ # Output of 'npm pack'
64
+ * .tgz
65
+
66
+ # Yarn Integrity file
67
+ .yarn-integrity
68
+
69
+ # dotenv environment variables file
70
+ .env
71
+ .env.test
72
+
73
+ # parcel-bundler cache (https://parceljs.org/)
74
+ .cache
75
+
76
+ # next.js build output
77
+ .next
78
+
79
+ # nuxt.js build output
80
+ .nuxt
81
+
82
+ # vuepress build output
83
+ .vuepress /dist
84
+
85
+ # Serverless directories
86
+ .serverless /
87
+
88
+ # FuseBox cache
89
+ .fusebox /
90
+
91
+ # DynamoDB Local files
92
+ .dynamodb /
You can’t perform that action at this time.
0 commit comments