Skip to content

Commit c25dba7

Browse files
committed
feat:add mfsu cache for development
1 parent 5608b30 commit c25dba7

File tree

62 files changed

+93034
-31
lines changed

Some content is hidden

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

62 files changed

+93034
-31
lines changed

.eslintignore

Lines changed: 246 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,246 @@
1+
### Emacs template
2+
# -*- mode: gitignore; -*-
3+
*~
4+
\#*\#
5+
/.emacs.desktop
6+
/.emacs.desktop.lock
7+
*.elc
8+
auto-save-list
9+
tramp
10+
.\#*
11+
12+
# Org-mode
13+
.org-id-locations
14+
*_archive
15+
16+
# flymake-mode
17+
*_flymake.*
18+
19+
# eshell files
20+
/eshell/history
21+
/eshell/lastdir
22+
23+
# elpa packages
24+
/elpa/
25+
26+
# reftex files
27+
*.rel
28+
29+
# AUCTeX auto folder
30+
/auto/
31+
32+
# cask packages
33+
.cask/
34+
dist/
35+
36+
# Flycheck
37+
flycheck_*.el
38+
39+
# server auth directory
40+
/server/
41+
42+
# projectiles files
43+
.projectile
44+
45+
# directory configuration
46+
.dir-locals.el
47+
48+
# network security
49+
/network-security.data
50+
51+
52+
### Node template
53+
# Logs
54+
logs
55+
*.log
56+
npm-debug.log*
57+
yarn-debug.log*
58+
yarn-error.log*
59+
lerna-debug.log*
60+
61+
# Diagnostic reports (https://nodejs.org/api/report.html)
62+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
63+
64+
# Runtime data
65+
pids
66+
*.pid
67+
*.seed
68+
*.pid.lock
69+
70+
# Directory for instrumented libs generated by jscoverage/JSCover
71+
lib-cov
72+
73+
# Coverage directory used by tools like istanbul
74+
coverage
75+
*.lcov
76+
77+
# nyc test coverage
78+
.nyc_output
79+
80+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
81+
.grunt
82+
83+
# Bower dependency directory (https://bower.io/)
84+
bower_components
85+
86+
# node-waf configuration
87+
.lock-wscript
88+
89+
# Compiled binary addons (https://nodejs.org/api/addons.html)
90+
build/Release
91+
92+
# Dependency directories
93+
node_modules/
94+
jspm_packages/
95+
96+
# Snowpack dependency directory (https://snowpack.dev/)
97+
web_modules/
98+
99+
# TypeScript cache
100+
*.tsbuildinfo
101+
102+
# Optional npm cache directory
103+
.npm
104+
105+
# Optional eslint cache
106+
.eslintcache
107+
108+
# Microbundle cache
109+
.rpt2_cache/
110+
.rts2_cache_cjs/
111+
.rts2_cache_es/
112+
.rts2_cache_umd/
113+
114+
# Optional REPL history
115+
.node_repl_history
116+
117+
# Output of 'npm pack'
118+
*.tgz
119+
120+
# Yarn Integrity file
121+
.yarn-integrity
122+
123+
# dotenv environment variables file
124+
.env
125+
.env.test
126+
127+
# parcel-bundler cache (https://parceljs.org/)
128+
.cache
129+
.parcel-cache
130+
131+
# Next.js build output
132+
.next
133+
out
134+
135+
# Nuxt.js build / generate output
136+
.nuxt
137+
dist
138+
139+
# Gatsby files
140+
.cache/
141+
# Comment in the public line in if your project uses Gatsby and not Next.js
142+
# https://nextjs.org/blog/next-9-1#public-directory-support
143+
# public
144+
145+
# vuepress build output
146+
.vuepress/dist
147+
148+
# Serverless directories
149+
.serverless/
150+
151+
# FuseBox cache
152+
.fusebox/
153+
154+
# DynamoDB Local files
155+
.dynamodb/
156+
157+
# TernJS port file
158+
.tern-port
159+
160+
# Stores VSCode versions used for testing VSCode extensions
161+
.vscode-test
162+
163+
# yarn v2
164+
.yarn/cache
165+
.yarn/unplugged
166+
.yarn/build-state.yml
167+
.yarn/install-state.gz
168+
.pnp.*
169+
170+
### Windows template
171+
# Windows thumbnail cache files
172+
Thumbs.db
173+
Thumbs.db:encryptable
174+
ehthumbs.db
175+
ehthumbs_vista.db
176+
177+
# Dump file
178+
*.stackdump
179+
180+
# Folder config file
181+
[Dd]esktop.ini
182+
183+
# Recycle Bin used on file shares
184+
$RECYCLE.BIN/
185+
186+
# Windows Installer files
187+
*.cab
188+
*.msi
189+
*.msix
190+
*.msm
191+
*.msp
192+
193+
# Windows shortcuts
194+
*.lnk
195+
196+
### Vim template
197+
# Swap
198+
[._]*.s[a-v][a-z]
199+
!*.svg # comment out if you don't need vector files
200+
[._]*.sw[a-p]
201+
[._]s[a-rt-v][a-z]
202+
[._]ss[a-gi-z]
203+
[._]sw[a-p]
204+
205+
# Session
206+
Session.vim
207+
Sessionx.vim
208+
209+
# Temporary
210+
.netrwhist
211+
*~
212+
# Auto-generated tag files
213+
tags
214+
# Persistent undo
215+
[._]*.un~
216+
217+
### macOS template
218+
# General
219+
.DS_Store
220+
.AppleDouble
221+
.LSOverride
222+
223+
# Icon must end with two \r
224+
Icon
225+
226+
# Thumbnails
227+
._*
228+
229+
# Files that might appear in the root of a volume
230+
.DocumentRevisions-V100
231+
.fseventsd
232+
.Spotlight-V100
233+
.TemporaryItems
234+
.Trashes
235+
.VolumeIcon.icns
236+
.com.apple.timemachine.donotpresent
237+
238+
# Directories potentially created on remote AFP share
239+
.AppleDB
240+
.AppleDesktop
241+
Network Trash Folder
242+
Temporary Items
243+
.apdisk
244+
245+
246+
/src/.mfsu/

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ package.json
55
.umi
66
.umi-production
77
.umi-test
8+
9+
/src/.mfsu/

.umirc.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export default defineConfig({
88
analytics: {
99
ga: 'G-DS0MXDKW8N',
1010
},
11+
mfsu: __DEV__ ? {development:{output:'src/.mfsu'}} : undefined,
1112
locales: [['zh-CN', '中文']],
1213
title: 'seasonjs/tools',
1314
mode: 'site',

0 commit comments

Comments
 (0)