Skip to content

Commit d8c3f98

Browse files
Merge branch 'v1' to 'main'
2 parents 76ddab1 + b44cc69 commit d8c3f98

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+4169
-4039
lines changed

.gitignore

Lines changed: 25 additions & 130 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,28 @@
1-
output/
2-
memo/
1+
# dependencies (bun install)
2+
node_modules
33

4-
##########################################
4+
/*.exe
5+
build
56

6-
# Created by https://www.toptal.com/developers/gitignore/api/node
7-
# Edit at https://www.toptal.com/developers/gitignore?templates=node
7+
memo.md
8+
memo
89

9-
### Node ###
10-
# Logs
11-
logs
12-
*.log
13-
npm-debug.log*
14-
yarn-debug.log*
15-
yarn-error.log*
16-
lerna-debug.log*
17-
.pnpm-debug.log*
18-
19-
# Diagnostic reports (https://nodejs.org/api/report.html)
20-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
21-
22-
# Runtime data
23-
pids
24-
*.pid
25-
*.seed
26-
*.pid.lock
27-
28-
# Directory for instrumented libs generated by jscoverage/JSCover
29-
lib-cov
10+
# output
11+
out
12+
output
13+
config
14+
dist
15+
dist_bundled
16+
*.tgz
3017

31-
# Coverage directory used by tools like istanbul
18+
# code coverage
3219
coverage
3320
*.lcov
3421

35-
# nyc test coverage
36-
.nyc_output
37-
38-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
39-
.grunt
40-
41-
# Bower dependency directory (https://bower.io/)
42-
bower_components
43-
44-
# node-waf configuration
45-
.lock-wscript
46-
47-
# Compiled binary addons (https://nodejs.org/api/addons.html)
48-
build/Release
49-
50-
# Dependency directories
51-
node_modules/
52-
jspm_packages/
53-
54-
# Snowpack dependency directory (https://snowpack.dev/)
55-
web_modules/
56-
57-
# TypeScript cache
58-
*.tsbuildinfo
59-
60-
# Optional npm cache directory
61-
.npm
62-
63-
# Optional eslint cache
64-
.eslintcache
65-
66-
# Optional stylelint cache
67-
.stylelintcache
68-
69-
# Microbundle cache
70-
.rpt2_cache/
71-
.rts2_cache_cjs/
72-
.rts2_cache_es/
73-
.rts2_cache_umd/
74-
75-
# Optional REPL history
76-
.node_repl_history
77-
78-
# Output of 'npm pack'
79-
*.tgz
80-
81-
# Yarn Integrity file
82-
.yarn-integrity
22+
# logs
23+
logs
24+
_.log
25+
report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json
8326

8427
# dotenv environment variable files
8528
.env
@@ -88,62 +31,14 @@ web_modules/
8831
.env.production.local
8932
.env.local
9033

91-
# parcel-bundler cache (https://parceljs.org/)
34+
# caches
35+
.eslintcache
9236
.cache
9337
.parcel-cache
38+
*.tsbuildinfo
9439

95-
# Next.js build output
96-
.next
97-
out
98-
99-
# Nuxt.js build / generate output
100-
.nuxt
101-
dist
102-
103-
# Gatsby files
104-
.cache/
105-
# Comment in the public line in if your project uses Gatsby and not Next.js
106-
# https://nextjs.org/blog/next-9-1#public-directory-support
107-
# public
108-
109-
# vuepress build output
110-
.vuepress/dist
111-
112-
# vuepress v2.x temp and cache directory
113-
.temp
114-
115-
# Docusaurus cache and generated files
116-
.docusaurus
117-
118-
# Serverless directories
119-
.serverless/
120-
121-
# FuseBox cache
122-
.fusebox/
123-
124-
# DynamoDB Local files
125-
.dynamodb/
126-
127-
# TernJS port file
128-
.tern-port
129-
130-
# Stores VSCode versions used for testing VSCode extensions
131-
.vscode-test
132-
133-
# yarn v2
134-
.yarn/cache
135-
.yarn/unplugged
136-
.yarn/build-state.yml
137-
.yarn/install-state.gz
138-
.pnp.*
139-
140-
### Node Patch ###
141-
# Serverless Webpack directories
142-
.webpack/
143-
144-
# Optional stylelint cache
145-
146-
# SvelteKit build / generate output
147-
.svelte-kit
40+
# IntelliJ based IDEs
41+
.idea
14842

149-
# End of https://www.toptal.com/developers/gitignore/api/node
43+
# Finder (MacOS) folder config
44+
.DS_Store

.parcelrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "@parcel/config-default",
3+
"transformers": {
4+
"*.{ts,tsx}": ["@parcel/transformer-typescript-tsc"]
5+
}
6+
}

.prettierrc

Lines changed: 0 additions & 9 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"editor.formatOnSave": true,
3-
"editor.defaultFormatter": "esbenp.prettier-vscode",
3+
"editor.defaultFormatter": "biomejs.biome",
4+
"[json]": {
5+
"editor.defaultFormatter": "biomejs.biome"
6+
},
47
"[javascript]": {
58
"editor.defaultFormatter": "biomejs.biome"
69
},
@@ -12,9 +15,9 @@
1215
},
1316
"[typescriptreact]": {
1417
"editor.defaultFormatter": "biomejs.biome"
18+
},
19+
"editor.codeActionsOnSave": {
20+
"source.fixAll.biome": "explicit",
21+
"source.organizeImports.biome": "explicit"
1522
}
16-
// "editor.codeActionsOnSave": {
17-
// "quickfix.biome": true,
18-
// "source.organizeImports.biome": true
19-
// }
2023
}

0 commit comments

Comments
 (0)