tangled
alpha
login
or
join now
cass.cityboundforest.com
/
kingdom-homebrew
0
fork
atom
A repository for a FoundryVTT plugin for Kingmaker homebrew.
0
fork
atom
overview
issues
pulls
pipelines
Adding node gitignore
cass.cityboundforest.com
5 months ago
2143070c
2ea14041
+144
1 changed file
expand all
collapse all
unified
split
.gitignore
+144
.gitignore
···
1
1
+
# Created by https://www.toptal.com/developers/gitignore/api/node
2
2
+
# Edit at https://www.toptal.com/developers/gitignore?templates=node
3
3
+
4
4
+
### Node ###
5
5
+
# Logs
6
6
+
logs
7
7
+
*.log
8
8
+
npm-debug.log*
9
9
+
yarn-debug.log*
10
10
+
yarn-error.log*
11
11
+
lerna-debug.log*
12
12
+
.pnpm-debug.log*
13
13
+
14
14
+
# Diagnostic reports (https://nodejs.org/api/report.html)
15
15
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
16
16
+
17
17
+
# Runtime data
18
18
+
pids
19
19
+
*.pid
20
20
+
*.seed
21
21
+
*.pid.lock
22
22
+
23
23
+
# Directory for instrumented libs generated by jscoverage/JSCover
24
24
+
lib-cov
25
25
+
26
26
+
# Coverage directory used by tools like istanbul
27
27
+
coverage
28
28
+
*.lcov
29
29
+
30
30
+
# nyc test coverage
31
31
+
.nyc_output
32
32
+
33
33
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
34
34
+
.grunt
35
35
+
36
36
+
# Bower dependency directory (https://bower.io/)
37
37
+
bower_components
38
38
+
39
39
+
# node-waf configuration
40
40
+
.lock-wscript
41
41
+
42
42
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
43
43
+
build/Release
44
44
+
45
45
+
# Dependency directories
46
46
+
node_modules/
47
47
+
jspm_packages/
48
48
+
49
49
+
# Snowpack dependency directory (https://snowpack.dev/)
50
50
+
web_modules/
51
51
+
52
52
+
# TypeScript cache
53
53
+
*.tsbuildinfo
54
54
+
55
55
+
# Optional npm cache directory
56
56
+
.npm
57
57
+
58
58
+
# Optional eslint cache
59
59
+
.eslintcache
60
60
+
61
61
+
# Optional stylelint cache
62
62
+
.stylelintcache
63
63
+
64
64
+
# Microbundle cache
65
65
+
.rpt2_cache/
66
66
+
.rts2_cache_cjs/
67
67
+
.rts2_cache_es/
68
68
+
.rts2_cache_umd/
69
69
+
70
70
+
# Optional REPL history
71
71
+
.node_repl_history
72
72
+
73
73
+
# Output of 'npm pack'
74
74
+
*.tgz
75
75
+
76
76
+
# Yarn Integrity file
77
77
+
.yarn-integrity
78
78
+
79
79
+
# dotenv environment variable files
80
80
+
.env
81
81
+
.env.development.local
82
82
+
.env.test.local
83
83
+
.env.production.local
84
84
+
.env.local
85
85
+
86
86
+
# parcel-bundler cache (https://parceljs.org/)
87
87
+
.cache
88
88
+
.parcel-cache
89
89
+
90
90
+
# Next.js build output
91
91
+
.next
92
92
+
out
93
93
+
94
94
+
# Nuxt.js build / generate output
95
95
+
.nuxt
96
96
+
dist
97
97
+
98
98
+
# Gatsby files
99
99
+
.cache/
100
100
+
# Comment in the public line in if your project uses Gatsby and not Next.js
101
101
+
# https://nextjs.org/blog/next-9-1#public-directory-support
102
102
+
# public
103
103
+
104
104
+
# vuepress build output
105
105
+
.vuepress/dist
106
106
+
107
107
+
# vuepress v2.x temp and cache directory
108
108
+
.temp
109
109
+
110
110
+
# Docusaurus cache and generated files
111
111
+
.docusaurus
112
112
+
113
113
+
# Serverless directories
114
114
+
.serverless/
115
115
+
116
116
+
# FuseBox cache
117
117
+
.fusebox/
118
118
+
119
119
+
# DynamoDB Local files
120
120
+
.dynamodb/
121
121
+
122
122
+
# TernJS port file
123
123
+
.tern-port
124
124
+
125
125
+
# Stores VSCode versions used for testing VSCode extensions
126
126
+
.vscode-test
127
127
+
128
128
+
# yarn v2
129
129
+
.yarn/cache
130
130
+
.yarn/unplugged
131
131
+
.yarn/build-state.yml
132
132
+
.yarn/install-state.gz
133
133
+
.pnp.*
134
134
+
135
135
+
### Node Patch ###
136
136
+
# Serverless Webpack directories
137
137
+
.webpack/
138
138
+
139
139
+
# Optional stylelint cache
140
140
+
141
141
+
# SvelteKit build / generate output
142
142
+
.svelte-kit
143
143
+
144
144
+
# End of https://www.toptal.com/developers/gitignore/api/node