Skip to content

Commit 421152b

Browse files
author
Leon Si
committed
chore: update deps
1 parent 50a14d2 commit 421152b

File tree

3 files changed

+429
-286
lines changed

3 files changed

+429
-286
lines changed

.prettierignore

+128
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
dist
2+
pnpm-lock.yaml
3+
generated
4+
# Need to ignore for tests, added during build time
5+
# temp
6+
7+
# macOS
8+
.DS_Store
9+
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
30+
31+
# Coverage directory used by tools like istanbul
32+
coverage
33+
*.lcov
34+
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+
# Microbundle cache
67+
.rpt2_cache/
68+
.rts2_cache_cjs/
69+
.rts2_cache_es/
70+
.rts2_cache_umd/
71+
72+
# Optional REPL history
73+
.node_repl_history
74+
75+
# Output of 'npm pack'
76+
*.tgz
77+
78+
# Yarn Integrity file
79+
.yarn-integrity
80+
81+
# parcel-bundler cache (https://parceljs.org/)
82+
.cache
83+
.parcel-cache
84+
85+
# Next.js build output
86+
.next
87+
out
88+
89+
# Nuxt.js build / generate output
90+
.nuxt
91+
dist
92+
dist-ssr
93+
94+
# Gatsby files
95+
.cache/
96+
# Comment in the public line in if your project uses Gatsby and not Next.js
97+
# https://nextjs.org/blog/next-9-1#public-directory-support
98+
# public
99+
100+
# vuepress build output
101+
.vuepress/dist
102+
103+
# Serverless directories
104+
.serverless/
105+
106+
# FuseBox cache
107+
.fusebox/
108+
109+
# DynamoDB Local files
110+
.dynamodb/
111+
112+
# TernJS port file
113+
.tern-port
114+
115+
# Stores VSCode versions used for testing VSCode extensions
116+
.vscode-test
117+
118+
# yarn v2
119+
.yarn/cache
120+
.yarn/unplugged
121+
.yarn/build-state.yml
122+
.yarn/install-state.gz
123+
.pnp.*
124+
125+
# Cache files
126+
.eslintcache
127+
tsconfig.tsbuildinfo
128+

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,23 @@
2929
"tc": "tsc --noEmit"
3030
},
3131
"devDependencies": {
32-
"@leonzalion/configs": "^1.2.5",
32+
"@leonzalion/configs": "^1.2.16",
3333
"@types/lru-cache": "^7.6.1",
3434
"@types/node": "^17.0.23",
3535
"@types/xml-escape": "^1.1.0",
3636
"desm": "^1.2.0",
3737
"eslint-define-config": "^1.3.0",
3838
"execa": "^6.1.0",
39-
"lion-system": "^1.1.3",
39+
"lion-system": "^1.2.1",
4040
"typescript": "^4.6.3",
41-
"vitest": "^0.8.4"
41+
"vitest": "^0.9.3"
4242
},
4343
"dependencies": {
4444
"change-case": "^4.1.2",
4545
"commander": "^9.1.0",
46-
"esbuild": "^0.14.32",
46+
"esbuild": "^0.14.36",
4747
"escape-string-regexp": "^5.0.0",
48-
"lru-cache": "^7.7.3",
48+
"lru-cache": "^7.8.1",
4949
"outdent": "^0.8.0",
5050
"xml-escape": "^1.1.0"
5151
},

0 commit comments

Comments
 (0)