Skip to content

Commit eeec038

Browse files
committed
Release 1.0.10
1 parent 9fb1ea8 commit eeec038

7 files changed

+298
-284
lines changed

.npmignore

+165-153
Original file line numberDiff line numberDiff line change
@@ -1,153 +1,165 @@
1-
# .npmignore
2-
# Ignore source code
3-
src
4-
5-
# ------------- Defaults ------------- #
6-
7-
# gitHub actions
8-
.github
9-
10-
# eslint
11-
.eslintrc
12-
.eslintignore
13-
14-
# typescript
15-
tsconfig.json
16-
tsconfig.eslint.json
17-
18-
# vscode
19-
.vscode
20-
21-
# nodemon
22-
nodemon.json
23-
24-
# Logs
25-
logs
26-
*.log
27-
npm-debug.log*
28-
yarn-debug.log*
29-
yarn-error.log*
30-
lerna-debug.log*
31-
32-
# Diagnostic reports (https://nodejs.org/api/report.html)
33-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
34-
35-
# Runtime data
36-
pids
37-
*.pid
38-
*.seed
39-
*.pid.lock
40-
41-
# Directory for instrumented libs generated by jscoverage/JSCover
42-
lib-cov
43-
44-
# Coverage directory used by tools like istanbul
45-
coverage
46-
*.lcov
47-
48-
# nyc test coverage
49-
.nyc_output
50-
51-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
52-
.grunt
53-
54-
# Bower dependency directory (https://bower.io/)
55-
bower_components
56-
57-
# node-waf configuration
58-
.lock-wscript
59-
60-
# Compiled binary addons (https://nodejs.org/api/addons.html)
61-
build/Release
62-
63-
# Dependency directories
64-
node_modules/
65-
jspm_packages/
66-
67-
# Snowpack dependency directory (https://snowpack.dev/)
68-
web_modules/
69-
70-
# TypeScript cache
71-
*.tsbuildinfo
72-
73-
# Optional npm cache directory
74-
.npm
75-
76-
# Optional eslint cache
77-
.eslintcache
78-
79-
# Microbundle cache
80-
.rpt2_cache/
81-
.rts2_cache_cjs/
82-
.rts2_cache_es/
83-
.rts2_cache_umd/
84-
85-
# Optional REPL history
86-
.node_repl_history
87-
88-
# Output of 'npm pack'
89-
*.tgz
90-
91-
# Yarn Integrity file
92-
.yarn-integrity
93-
94-
# dotenv environment variables file
95-
.env
96-
.env.test
97-
98-
# parcel-bundler cache (https://parceljs.org/)
99-
.cache
100-
.parcel-cache
101-
102-
# Next.js build output
103-
.next
104-
105-
# Nuxt.js build / generate output
106-
.nuxt
107-
108-
# Gatsby files
109-
.cache/
110-
# Comment in the public line in if your project uses Gatsby and not Next.js
111-
# https://nextjs.org/blog/next-9-1#public-directory-support
112-
# public
113-
114-
# vuepress build output
115-
.vuepress/dist
116-
117-
# Serverless directories
118-
.serverless/
119-
120-
# FuseBox cache
121-
.fusebox/
122-
123-
# DynamoDB Local files
124-
.dynamodb/
125-
126-
# TernJS port file
127-
.tern-port
128-
129-
# Stores VSCode versions used for testing VSCode extensions
130-
.vscode-test
131-
132-
# yarn v2
133-
134-
.yarn/cache
135-
.yarn/unplugged
136-
.yarn/build-state.yml
137-
.pnp.*
138-
139-
# jest
140-
jest.config.mjs
141-
__test__
142-
143-
# git
144-
.gitattributes
145-
146-
# eslint
147-
.eslintrc
148-
.eslintrc.json
149-
.eslintignore
150-
151-
# prettier
152-
.prettierignore
153-
.prettierrc.json
1+
# .npmignore
2+
# Ignore source code
3+
src
4+
5+
# ------------- Defaults ------------- #
6+
7+
# gitHub actions
8+
.github
9+
10+
# eslint
11+
.eslintrc
12+
.eslintignore
13+
14+
# typescript
15+
tsconfig.json
16+
tsconfig.eslint.json
17+
18+
# vscode
19+
.vscode
20+
21+
# nodemon
22+
nodemon.json
23+
24+
# Logs
25+
logs
26+
*.log
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
lerna-debug.log*
31+
32+
# Diagnostic reports (https://nodejs.org/api/report.html)
33+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
34+
35+
# Runtime data
36+
pids
37+
*.pid
38+
*.seed
39+
*.pid.lock
40+
41+
# Directory for instrumented libs generated by jscoverage/JSCover
42+
lib-cov
43+
44+
# Coverage directory used by tools like istanbul
45+
coverage
46+
*.lcov
47+
48+
# nyc test coverage
49+
.nyc_output
50+
51+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
52+
.grunt
53+
54+
# Bower dependency directory (https://bower.io/)
55+
bower_components
56+
57+
# node-waf configuration
58+
.lock-wscript
59+
60+
# Compiled binary addons (https://nodejs.org/api/addons.html)
61+
build/Release
62+
63+
# Dependency directories
64+
node_modules/
65+
jspm_packages/
66+
67+
# Snowpack dependency directory (https://snowpack.dev/)
68+
web_modules/
69+
70+
# TypeScript cache
71+
*.tsbuildinfo
72+
73+
# Optional npm cache directory
74+
.npm
75+
76+
# Optional eslint cache
77+
.eslintcache
78+
79+
# Microbundle cache
80+
.rpt2_cache/
81+
.rts2_cache_cjs/
82+
.rts2_cache_es/
83+
.rts2_cache_umd/
84+
85+
# Optional REPL history
86+
.node_repl_history
87+
88+
# Output of 'npm pack'
89+
*.tgz
90+
91+
# Yarn Integrity file
92+
.yarn-integrity
93+
94+
# dotenv environment variables file
95+
.env
96+
.env.test
97+
98+
# parcel-bundler cache (https://parceljs.org/)
99+
.cache
100+
.parcel-cache
101+
102+
# Next.js build output
103+
.next
104+
105+
# Nuxt.js build / generate output
106+
.nuxt
107+
108+
# Gatsby files
109+
.cache/
110+
# Comment in the public line in if your project uses Gatsby and not Next.js
111+
# https://nextjs.org/blog/next-9-1#public-directory-support
112+
# public
113+
114+
# vuepress build output
115+
.vuepress/dist
116+
117+
# Serverless directories
118+
.serverless/
119+
120+
# FuseBox cache
121+
.fusebox/
122+
123+
# DynamoDB Local files
124+
.dynamodb/
125+
126+
# TernJS port file
127+
.tern-port
128+
129+
# Stores VSCode versions used for testing VSCode extensions
130+
.vscode-test
131+
132+
# yarn v2
133+
134+
.yarn/cache
135+
.yarn/unplugged
136+
.yarn/build-state.yml
137+
.pnp.*
138+
139+
# jest
140+
jest.config.mjs
141+
__test__
142+
143+
# git
144+
.gitattributes
145+
146+
# eslint
147+
.eslintrc
148+
.eslintrc.json
149+
.eslintignore
150+
eslint.config.js
151+
152+
# prettier
153+
.prettierignore
154+
.prettierrc.json
155+
prettier.config.js
156+
157+
# jest
158+
jest.config.js
159+
160+
# screenshot
161+
screenshot
162+
163+
# other stuff
164+
TODO.md
165+
yellow-button.png

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.10] - 2024-06-16
6+
7+
### Added
8+
9+
- [dependencies]: Update dependencies
10+
11+
<a href="https://www.buymeacoffee.com/luligugithub">
12+
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
13+
</a>
14+
515
## [1.0.9] - 2024-06-01
616

717
### Added

0 commit comments

Comments
 (0)