Skip to content

Commit 08ede46

Browse files
fix something maybe less go?
1 parent ce2b8b6 commit 08ede46

File tree

7 files changed

+197
-57
lines changed

7 files changed

+197
-57
lines changed

.dockerignore

Lines changed: 60 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,134 +1,184 @@
1-
# ---> Node
1+
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
2+
23
# Logs
4+
35
logs
4-
*.log
5-
npm-debug.log*
6+
_.log
7+
npm-debug.log_
68
yarn-debug.log*
79
yarn-error.log*
810
lerna-debug.log*
911
.pnpm-debug.log*
1012

13+
# Caches
14+
15+
.cache
16+
1117
# Diagnostic reports (https://nodejs.org/api/report.html)
12-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
18+
19+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
1320

1421
# Runtime data
22+
1523
pids
16-
*.pid
17-
*.seed
24+
_.pid
25+
_.seed
1826
*.pid.lock
1927

2028
# Directory for instrumented libs generated by jscoverage/JSCover
29+
2130
lib-cov
2231

2332
# Coverage directory used by tools like istanbul
33+
2434
coverage
2535
*.lcov
2636

2737
# nyc test coverage
38+
2839
.nyc_output
2940

3041
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
42+
3143
.grunt
3244

3345
# Bower dependency directory (https://bower.io/)
46+
3447
bower_components
3548

3649
# node-waf configuration
50+
3751
.lock-wscript
3852

3953
# Compiled binary addons (https://nodejs.org/api/addons.html)
54+
4055
build/Release
4156

4257
# Dependency directories
58+
4359
node_modules/
4460
jspm_packages/
4561

4662
# Snowpack dependency directory (https://snowpack.dev/)
63+
4764
web_modules/
4865

4966
# TypeScript cache
67+
5068
*.tsbuildinfo
5169

5270
# Optional npm cache directory
71+
5372
.npm
5473

5574
# Optional eslint cache
75+
5676
.eslintcache
5777

5878
# Optional stylelint cache
79+
5980
.stylelintcache
6081

6182
# Microbundle cache
83+
6284
.rpt2_cache/
6385
.rts2_cache_cjs/
6486
.rts2_cache_es/
6587
.rts2_cache_umd/
6688

6789
# Optional REPL history
90+
6891
.node_repl_history
6992

7093
# Output of 'npm pack'
94+
7195
*.tgz
7296

7397
# Yarn Integrity file
98+
7499
.yarn-integrity
75100

76101
# dotenv environment variable files
102+
77103
.env
78104
.env.development.local
79105
.env.test.local
80106
.env.production.local
81107
.env.local
108+
.env.cluster
109+
.env.bridge
82110

83111
# parcel-bundler cache (https://parceljs.org/)
84-
.cache
112+
85113
.parcel-cache
86114

87115
# Next.js build output
116+
88117
.next
89118
out
90119

91120
# Nuxt.js build / generate output
121+
92122
.nuxt
93123
dist
94124

95125
# Gatsby files
96-
.cache/
126+
97127
# Comment in the public line in if your project uses Gatsby and not Next.js
128+
98129
# https://nextjs.org/blog/next-9-1#public-directory-support
130+
99131
# public
100132

101133
# vuepress build output
134+
102135
.vuepress/dist
103136

104137
# vuepress v2.x temp and cache directory
138+
105139
.temp
106-
.cache
107140

108141
# Docusaurus cache and generated files
142+
109143
.docusaurus
110144

111145
# Serverless directories
146+
112147
.serverless/
113148

114149
# FuseBox cache
150+
115151
.fusebox/
116152

117153
# DynamoDB Local files
154+
118155
.dynamodb/
119156

120157
# TernJS port file
158+
121159
.tern-port
122160

123161
# Stores VSCode versions used for testing VSCode extensions
162+
124163
.vscode-test
125164

126165
# yarn v2
166+
127167
.yarn/cache
128168
.yarn/unplugged
129169
.yarn/build-state.yml
130170
.yarn/install-state.gz
131171
.pnp.*
132172

133-
# Deno lock file
173+
# IntelliJ based IDEs
174+
.idea
175+
176+
# Finder (MacOS) folder config
177+
.DS_Store
178+
179+
package-lock.json
180+
181+
182+
bun.lockb
183+
134184
deno.lock

.gitignore

Lines changed: 60 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,134 +1,183 @@
1-
# ---> Node
1+
# Based on https://raw.githubusercontent.com/github/gitignore/main/Node.gitignore
2+
23
# Logs
4+
35
logs
4-
*.log
5-
npm-debug.log*
6+
_.log
7+
npm-debug.log_
68
yarn-debug.log*
79
yarn-error.log*
810
lerna-debug.log*
911
.pnpm-debug.log*
1012

13+
# Caches
14+
15+
.cache
16+
1117
# Diagnostic reports (https://nodejs.org/api/report.html)
12-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
18+
19+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
1320

1421
# Runtime data
22+
1523
pids
16-
*.pid
17-
*.seed
24+
_.pid
25+
_.seed
1826
*.pid.lock
1927

2028
# Directory for instrumented libs generated by jscoverage/JSCover
29+
2130
lib-cov
2231

2332
# Coverage directory used by tools like istanbul
33+
2434
coverage
2535
*.lcov
2636

2737
# nyc test coverage
38+
2839
.nyc_output
2940

3041
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
42+
3143
.grunt
3244

3345
# Bower dependency directory (https://bower.io/)
46+
3447
bower_components
3548

3649
# node-waf configuration
50+
3751
.lock-wscript
3852

3953
# Compiled binary addons (https://nodejs.org/api/addons.html)
54+
4055
build/Release
4156

4257
# Dependency directories
58+
4359
node_modules/
4460
jspm_packages/
4561

4662
# Snowpack dependency directory (https://snowpack.dev/)
63+
4764
web_modules/
4865

4966
# TypeScript cache
67+
5068
*.tsbuildinfo
5169

5270
# Optional npm cache directory
71+
5372
.npm
5473

5574
# Optional eslint cache
75+
5676
.eslintcache
5777

5878
# Optional stylelint cache
79+
5980
.stylelintcache
6081

6182
# Microbundle cache
83+
6284
.rpt2_cache/
6385
.rts2_cache_cjs/
6486
.rts2_cache_es/
6587
.rts2_cache_umd/
6688

6789
# Optional REPL history
90+
6891
.node_repl_history
6992

7093
# Output of 'npm pack'
94+
7195
*.tgz
7296

7397
# Yarn Integrity file
98+
7499
.yarn-integrity
75100

76101
# dotenv environment variable files
102+
77103
.env
78104
.env.development.local
79105
.env.test.local
80106
.env.production.local
81107
.env.local
108+
.env.cluster
109+
.env.bridge
82110

83111
# parcel-bundler cache (https://parceljs.org/)
84-
.cache
112+
85113
.parcel-cache
86114

87115
# Next.js build output
116+
88117
.next
89118
out
90119

91120
# Nuxt.js build / generate output
121+
92122
.nuxt
93123
dist
94124

95125
# Gatsby files
96-
.cache/
126+
97127
# Comment in the public line in if your project uses Gatsby and not Next.js
128+
98129
# https://nextjs.org/blog/next-9-1#public-directory-support
130+
99131
# public
100132

101133
# vuepress build output
134+
102135
.vuepress/dist
103136

104137
# vuepress v2.x temp and cache directory
138+
105139
.temp
106-
.cache
107140

108141
# Docusaurus cache and generated files
142+
109143
.docusaurus
110144

111145
# Serverless directories
146+
112147
.serverless/
113148

114149
# FuseBox cache
150+
115151
.fusebox/
116152

117153
# DynamoDB Local files
154+
118155
.dynamodb/
119156

120157
# TernJS port file
158+
121159
.tern-port
122160

123161
# Stores VSCode versions used for testing VSCode extensions
162+
124163
.vscode-test
125164

126165
# yarn v2
166+
127167
.yarn/cache
128168
.yarn/unplugged
129169
.yarn/build-state.yml
130170
.yarn/install-state.gz
131171
.pnp.*
132172

133-
# Deno lock file
134-
deno.lock
173+
# IntelliJ based IDEs
174+
.idea
175+
176+
# Finder (MacOS) folder config
177+
.DS_Store
178+
179+
package-lock.json
180+
181+
bun.lockb
182+
183+
deno.lock

0 commit comments

Comments
 (0)